1. Packages
  2. Azure Native v2
  3. API Docs
  4. datafactory
  5. LinkedService
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.datafactory.LinkedService

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 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",
    });

});
Copy
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
	})
}
Copy
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());

    }
}
Copy
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",
});
Copy
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")
Copy
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
Copy

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",
    });

});
Copy
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
	})
}
Copy
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());

    }
}
Copy
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",
});
Copy
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")
Copy
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
Copy

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 This property is required. string
The unique name of the resource.
args This property is required. LinkedServiceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. LinkedServiceArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. LinkedServiceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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 = 
    {
        { "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", new[]
        {
            "any",
        } },
        { "useEncryptedEndpoints", "any" },
        { "useHostVerification", "any" },
        { "usePeerVerification", "any" },
        { "version", "string" },
    },
    ResourceGroupName = "string",
    LinkedServiceName = "string",
});
Copy
example, err := datafactory.NewLinkedService(ctx, "linkedServiceResource", &datafactory.LinkedServiceArgs{
	FactoryName: "string",
	Properties: map[string]interface{}{
		"endpoint":      "any",
		"type":          "AmazonMWS",
		"sellerID":      "any",
		"accessKeyId":   "any",
		"marketplaceID": "any",
		"parameters": map[string]interface{}{
			"string": map[string]interface{}{
				"type":         "string",
				"defaultValue": "any",
			},
		},
		"encryptedCredential": "string",
		"mwsAuthToken": map[string]interface{}{
			"secretName": "any",
			"store": map[string]interface{}{
				"referenceName": "string",
				"type":          "string",
				"parameters": map[string]interface{}{
					"string": "any",
				},
			},
			"type":          "AzureKeyVaultSecret",
			"secretVersion": "any",
		},
		"description": "string",
		"secretKey": map[string]interface{}{
			"secretName": "any",
			"store": map[string]interface{}{
				"referenceName": "string",
				"type":          "string",
				"parameters": map[string]interface{}{
					"string": "any",
				},
			},
			"type":          "AzureKeyVaultSecret",
			"secretVersion": "any",
		},
		"connectVia": map[string]interface{}{
			"referenceName": "string",
			"type":          "string",
			"parameters": map[string]interface{}{
				"string": "any",
			},
		},
		"annotations": []string{
			"any",
		},
		"useEncryptedEndpoints": "any",
		"useHostVerification":   "any",
		"usePeerVerification":   "any",
		"version":               "string",
	},
	ResourceGroupName: "string",
	LinkedServiceName: "string",
})
Copy
var linkedServiceResource = new LinkedService("linkedServiceResource", LinkedServiceArgs.builder()
    .factoryName("string")
    .properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .resourceGroupName("string")
    .linkedServiceName("string")
    .build());
Copy
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)
Copy
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",
});
Copy
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
Copy

LinkedService Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The LinkedService resource accepts the following input properties:

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

Outputs

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

Etag string
Etag identifies change in the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The resource name.
Type string
The resource type.
Etag string
Etag identifies change in the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The resource name.
Type string
The resource type.
etag String
Etag identifies change in the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The resource name.
type String
The resource type.
etag string
Etag identifies change in the resource.
id string
The provider-assigned unique ID for this managed resource.
name string
The resource name.
type string
The resource type.
etag str
Etag identifies change in the resource.
id str
The provider-assigned unique ID for this managed resource.
name str
The resource name.
type str
The resource type.
etag String
Etag identifies change in the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The resource name.
type String
The resource type.

Supporting Types

AmazonMWSLinkedService
, AmazonMWSLinkedServiceArgs

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

AmazonMWSLinkedServiceResponse
, AmazonMWSLinkedServiceResponseArgs

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

AmazonRdsForOracleLinkedService
, AmazonRdsForOracleLinkedServiceArgs

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

AmazonRdsForOracleLinkedServiceResponse
, AmazonRdsForOracleLinkedServiceResponseArgs

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

AmazonRdsForSqlAuthenticationType
, AmazonRdsForSqlAuthenticationTypeArgs

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

AmazonRdsForSqlServerLinkedService
, AmazonRdsForSqlServerLinkedServiceArgs

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

AmazonRdsForSqlServerLinkedServiceResponse
, AmazonRdsForSqlServerLinkedServiceResponseArgs

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

AmazonRedshiftLinkedService
, AmazonRedshiftLinkedServiceArgs

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

AmazonRedshiftLinkedServiceResponse
, AmazonRedshiftLinkedServiceResponseArgs

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

AmazonS3CompatibleLinkedService
, AmazonS3CompatibleLinkedServiceArgs

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

AmazonS3CompatibleLinkedServiceResponse
, AmazonS3CompatibleLinkedServiceResponseArgs

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

AmazonS3LinkedService
, AmazonS3LinkedServiceArgs

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

AmazonS3LinkedServiceResponse
, AmazonS3LinkedServiceResponseArgs

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

AppFiguresLinkedService
, AppFiguresLinkedServiceArgs

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

AppFiguresLinkedServiceResponse
, AppFiguresLinkedServiceResponseArgs

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

AsanaLinkedService
, AsanaLinkedServiceArgs

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

AsanaLinkedServiceResponse
, AsanaLinkedServiceResponseArgs

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

AzureBatchLinkedService
, AzureBatchLinkedServiceArgs

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

AzureBatchLinkedServiceResponse
, AzureBatchLinkedServiceResponseArgs

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

AzureBlobFSLinkedService
, AzureBlobFSLinkedServiceArgs

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

AzureBlobFSLinkedServiceResponse
, AzureBlobFSLinkedServiceResponseArgs

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

AzureBlobStorageLinkedService
, AzureBlobStorageLinkedServiceArgs

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

AzureBlobStorageLinkedServiceResponse
, AzureBlobStorageLinkedServiceResponseArgs

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

AzureDataExplorerLinkedService
, AzureDataExplorerLinkedServiceArgs

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

AzureDataExplorerLinkedServiceResponse
, AzureDataExplorerLinkedServiceResponseArgs

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

AzureDataLakeAnalyticsLinkedService
, AzureDataLakeAnalyticsLinkedServiceArgs

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

AzureDataLakeAnalyticsLinkedServiceResponse
, AzureDataLakeAnalyticsLinkedServiceResponseArgs

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

AzureDataLakeStoreLinkedService
, AzureDataLakeStoreLinkedServiceArgs

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

AzureDataLakeStoreLinkedServiceResponse
, AzureDataLakeStoreLinkedServiceResponseArgs

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

AzureDatabricksDeltaLakeLinkedService
, AzureDatabricksDeltaLakeLinkedServiceArgs

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

AzureDatabricksDeltaLakeLinkedServiceResponse
, AzureDatabricksDeltaLakeLinkedServiceResponseArgs

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

AzureDatabricksLinkedService
, AzureDatabricksLinkedServiceArgs

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

AzureDatabricksLinkedServiceResponse
, AzureDatabricksLinkedServiceResponseArgs

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

AzureFileStorageLinkedService
, AzureFileStorageLinkedServiceArgs

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

AzureFileStorageLinkedServiceResponse
, AzureFileStorageLinkedServiceResponseArgs

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

AzureFunctionLinkedService
, AzureFunctionLinkedServiceArgs

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

AzureFunctionLinkedServiceResponse
, AzureFunctionLinkedServiceResponseArgs

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

AzureKeyVaultLinkedService
, AzureKeyVaultLinkedServiceArgs

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

AzureKeyVaultLinkedServiceResponse
, AzureKeyVaultLinkedServiceResponseArgs

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

AzureKeyVaultSecretReference
, AzureKeyVaultSecretReferenceArgs

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

AzureKeyVaultSecretReferenceResponse
, AzureKeyVaultSecretReferenceResponseArgs

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

AzureMLLinkedService
, AzureMLLinkedServiceArgs

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

AzureMLLinkedServiceResponse
, AzureMLLinkedServiceResponseArgs

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

AzureMLServiceLinkedService
, AzureMLServiceLinkedServiceArgs

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

AzureMLServiceLinkedServiceResponse
, AzureMLServiceLinkedServiceResponseArgs

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

AzureMariaDBLinkedService
, AzureMariaDBLinkedServiceArgs

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

AzureMariaDBLinkedServiceResponse
, AzureMariaDBLinkedServiceResponseArgs

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

AzureMySqlLinkedService
, AzureMySqlLinkedServiceArgs

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

AzureMySqlLinkedServiceResponse
, AzureMySqlLinkedServiceResponseArgs

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

AzurePostgreSqlLinkedService
, AzurePostgreSqlLinkedServiceArgs

Annotations List<object>
List of tags that can be used for describing the linked service.
CommandTimeout object
The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
ConnectionString object
An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
Database object
Database name for connection. Type: string.
Description string
Linked service description.
Encoding object
Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference
The Azure key vault secret reference of password in connection string.
Port object
The port for the connection. Type: integer.
ReadBufferSize object
Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
Server object
Server name for connection. Type: string.
SslMode object
SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
Timeout object
The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
Timezone object
Gets or sets the session timezone. Type: string.
TrustServerCertificate object
Whether to trust the server certificate without validating it. Type: boolean.
Username object
Username for authentication. Type: string.
Version string
Version of the linked service.
Annotations []interface{}
List of tags that can be used for describing the linked service.
CommandTimeout interface{}
The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
ConnectionString interface{}
An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
Database interface{}
Database name for connection. Type: string.
Description string
Linked service description.
Encoding interface{}
Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecification
Parameters for linked service.
Password AzureKeyVaultSecretReference
The Azure key vault secret reference of password in connection string.
Port interface{}
The port for the connection. Type: integer.
ReadBufferSize interface{}
Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
Server interface{}
Server name for connection. Type: string.
SslMode interface{}
SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
Timeout interface{}
The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
Timezone interface{}
Gets or sets the session timezone. Type: string.
TrustServerCertificate interface{}
Whether to trust the server certificate without validating it. Type: boolean.
Username interface{}
Username for authentication. Type: string.
Version string
Version of the linked service.
annotations List<Object>
List of tags that can be used for describing the linked service.
commandTimeout Object
The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
connectVia IntegrationRuntimeReference
The integration runtime reference.
connectionString Object
An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
database Object
Database name for connection. Type: string.
description String
Linked service description.
encoding Object
Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
password AzureKeyVaultSecretReference
The Azure key vault secret reference of password in connection string.
port Object
The port for the connection. Type: integer.
readBufferSize Object
Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
server Object
Server name for connection. Type: string.
sslMode Object
SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
timeout Object
The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
timezone Object
Gets or sets the session timezone. Type: string.
trustServerCertificate Object
Whether to trust the server certificate without validating it. Type: boolean.
username Object
Username for authentication. Type: string.
version String
Version of the linked service.
annotations any[]
List of tags that can be used for describing the linked service.
commandTimeout any
The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
connectVia IntegrationRuntimeReference
The integration runtime reference.
connectionString any
An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
database any
Database name for connection. Type: string.
description string
Linked service description.
encoding any
Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
password AzureKeyVaultSecretReference
The Azure key vault secret reference of password in connection string.
port any
The port for the connection. Type: integer.
readBufferSize any
Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
server any
Server name for connection. Type: string.
sslMode any
SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
timeout any
The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
timezone any
Gets or sets the session timezone. Type: string.
trustServerCertificate any
Whether to trust the server certificate without validating it. Type: boolean.
username any
Username for authentication. Type: string.
version string
Version of the linked service.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
command_timeout Any
The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
connect_via IntegrationRuntimeReference
The integration runtime reference.
connection_string Any
An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
database Any
Database name for connection. Type: string.
description str
Linked service description.
encoding Any
Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
password AzureKeyVaultSecretReference
The Azure key vault secret reference of password in connection string.
port Any
The port for the connection. Type: integer.
read_buffer_size Any
Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
server Any
Server name for connection. Type: string.
ssl_mode Any
SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
timeout Any
The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
timezone Any
Gets or sets the session timezone. Type: string.
trust_server_certificate Any
Whether to trust the server certificate without validating it. Type: boolean.
username Any
Username for authentication. Type: string.
version str
Version of the linked service.
annotations List<Any>
List of tags that can be used for describing the linked service.
commandTimeout Any
The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
connectVia Property Map
The integration runtime reference.
connectionString Any
An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
database Any
Database name for connection. Type: string.
description String
Linked service description.
encoding Any
Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map
The Azure key vault secret reference of password in connection string.
port Any
The port for the connection. Type: integer.
readBufferSize Any
Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
server Any
Server name for connection. Type: string.
sslMode Any
SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
timeout Any
The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
timezone Any
Gets or sets the session timezone. Type: string.
trustServerCertificate Any
Whether to trust the server certificate without validating it. Type: boolean.
username Any
Username for authentication. Type: string.
version String
Version of the linked service.

AzurePostgreSqlLinkedServiceResponse
, AzurePostgreSqlLinkedServiceResponseArgs

Annotations List<object>
List of tags that can be used for describing the linked service.
CommandTimeout object
The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
ConnectionString object
An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
Database object
Database name for connection. Type: string.
Description string
Linked service description.
Encoding object
Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse
The Azure key vault secret reference of password in connection string.
Port object
The port for the connection. Type: integer.
ReadBufferSize object
Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
Server object
Server name for connection. Type: string.
SslMode object
SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
Timeout object
The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
Timezone object
Gets or sets the session timezone. Type: string.
TrustServerCertificate object
Whether to trust the server certificate without validating it. Type: boolean.
Username object
Username for authentication. Type: string.
Version string
Version of the linked service.
Annotations []interface{}
List of tags that can be used for describing the linked service.
CommandTimeout interface{}
The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
ConnectionString interface{}
An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
Database interface{}
Database name for connection. Type: string.
Description string
Linked service description.
Encoding interface{}
Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Password AzureKeyVaultSecretReferenceResponse
The Azure key vault secret reference of password in connection string.
Port interface{}
The port for the connection. Type: integer.
ReadBufferSize interface{}
Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
Server interface{}
Server name for connection. Type: string.
SslMode interface{}
SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
Timeout interface{}
The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
Timezone interface{}
Gets or sets the session timezone. Type: string.
TrustServerCertificate interface{}
Whether to trust the server certificate without validating it. Type: boolean.
Username interface{}
Username for authentication. Type: string.
Version string
Version of the linked service.
annotations List<Object>
List of tags that can be used for describing the linked service.
commandTimeout Object
The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
connectionString Object
An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
database Object
Database name for connection. Type: string.
description String
Linked service description.
encoding Object
Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse
The Azure key vault secret reference of password in connection string.
port Object
The port for the connection. Type: integer.
readBufferSize Object
Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
server Object
Server name for connection. Type: string.
sslMode Object
SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
timeout Object
The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
timezone Object
Gets or sets the session timezone. Type: string.
trustServerCertificate Object
Whether to trust the server certificate without validating it. Type: boolean.
username Object
Username for authentication. Type: string.
version String
Version of the linked service.
annotations any[]
List of tags that can be used for describing the linked service.
commandTimeout any
The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
connectionString any
An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
database any
Database name for connection. Type: string.
description string
Linked service description.
encoding any
Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse
The Azure key vault secret reference of password in connection string.
port any
The port for the connection. Type: integer.
readBufferSize any
Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
server any
Server name for connection. Type: string.
sslMode any
SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
timeout any
The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
timezone any
Gets or sets the session timezone. Type: string.
trustServerCertificate any
Whether to trust the server certificate without validating it. Type: boolean.
username any
Username for authentication. Type: string.
version string
Version of the linked service.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
command_timeout Any
The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
connection_string Any
An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
database Any
Database name for connection. Type: string.
description str
Linked service description.
encoding Any
Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse
The Azure key vault secret reference of password in connection string.
port Any
The port for the connection. Type: integer.
read_buffer_size Any
Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
server Any
Server name for connection. Type: string.
ssl_mode Any
SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
timeout Any
The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
timezone Any
Gets or sets the session timezone. Type: string.
trust_server_certificate Any
Whether to trust the server certificate without validating it. Type: boolean.
username Any
Username for authentication. Type: string.
version str
Version of the linked service.
annotations List<Any>
List of tags that can be used for describing the linked service.
commandTimeout Any
The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
connectVia Property Map
The integration runtime reference.
connectionString Any
An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
database Any
Database name for connection. Type: string.
description String
Linked service description.
encoding Any
Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map
The Azure key vault secret reference of password in connection string.
port Any
The port for the connection. Type: integer.
readBufferSize Any
Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
server Any
Server name for connection. Type: string.
sslMode Any
SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
timeout Any
The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
timezone Any
Gets or sets the session timezone. Type: string.
trustServerCertificate Any
Whether to trust the server certificate without validating it. Type: boolean.
username Any
Username for authentication. Type: string.
version String
Version of the linked service.

AzureSearchLinkedService
, AzureSearchLinkedServiceArgs

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

AzureSearchLinkedServiceResponse
, AzureSearchLinkedServiceResponseArgs

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

AzureSqlDWAuthenticationType
, AzureSqlDWAuthenticationTypeArgs

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

AzureSqlDWLinkedService
, AzureSqlDWLinkedServiceArgs

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

AzureSqlDWLinkedServiceResponse
, AzureSqlDWLinkedServiceResponseArgs

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

AzureSqlDatabaseAuthenticationType
, AzureSqlDatabaseAuthenticationTypeArgs

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

AzureSqlDatabaseLinkedService
, AzureSqlDatabaseLinkedServiceArgs

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

AzureSqlDatabaseLinkedServiceResponse
, AzureSqlDatabaseLinkedServiceResponseArgs

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

AzureSqlMIAuthenticationType
, AzureSqlMIAuthenticationTypeArgs

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

AzureSqlMILinkedService
, AzureSqlMILinkedServiceArgs

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

AzureSqlMILinkedServiceResponse
, AzureSqlMILinkedServiceResponseArgs

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

AzureStorageAuthenticationType
, AzureStorageAuthenticationTypeArgs

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

AzureStorageLinkedService
, AzureStorageLinkedServiceArgs

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

AzureStorageLinkedServiceResponse
, AzureStorageLinkedServiceResponseArgs

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

AzureSynapseArtifactsLinkedService
, AzureSynapseArtifactsLinkedServiceArgs

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

AzureSynapseArtifactsLinkedServiceResponse
, AzureSynapseArtifactsLinkedServiceResponseArgs

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

AzureTableStorageLinkedService
, AzureTableStorageLinkedServiceArgs

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

AzureTableStorageLinkedServiceResponse
, AzureTableStorageLinkedServiceResponseArgs

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

CassandraLinkedService
, CassandraLinkedServiceArgs

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

CassandraLinkedServiceResponse
, CassandraLinkedServiceResponseArgs

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

CommonDataServiceForAppsLinkedService
, CommonDataServiceForAppsLinkedServiceArgs

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

CommonDataServiceForAppsLinkedServiceResponse
, CommonDataServiceForAppsLinkedServiceResponseArgs

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

ConcurLinkedService
, ConcurLinkedServiceArgs

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

ConcurLinkedServiceResponse
, ConcurLinkedServiceResponseArgs

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

CosmosDbConnectionMode
, CosmosDbConnectionModeArgs

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

CosmosDbLinkedService
, CosmosDbLinkedServiceArgs

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

CosmosDbLinkedServiceResponse
, CosmosDbLinkedServiceResponseArgs

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

CosmosDbMongoDbApiLinkedService
, CosmosDbMongoDbApiLinkedServiceArgs

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

CosmosDbMongoDbApiLinkedServiceResponse
, CosmosDbMongoDbApiLinkedServiceResponseArgs

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

CouchbaseLinkedService
, CouchbaseLinkedServiceArgs

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

CouchbaseLinkedServiceResponse
, CouchbaseLinkedServiceResponseArgs

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

CredentialReference
, CredentialReferenceArgs

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

CredentialReferenceResponse
, CredentialReferenceResponseArgs

ReferenceName This property is required. string
Reference credential name.
Type This property is required. string
Credential reference type.
ReferenceName This property is required. string
Reference credential name.
Type This property is required. string
Credential reference type.
referenceName This property is required. String
Reference credential name.
type This property is required. String
Credential reference type.
referenceName This property is required. string
Reference credential name.
type This property is required. string
Credential reference type.
reference_name This property is required. str
Reference credential name.
type This property is required. str
Credential reference type.
referenceName This property is required. String
Reference credential name.
type This property is required. String
Credential reference type.

CredentialReferenceType
, CredentialReferenceTypeArgs

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

CustomDataSourceLinkedService
, CustomDataSourceLinkedServiceArgs

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

CustomDataSourceLinkedServiceResponse
, CustomDataSourceLinkedServiceResponseArgs

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

DataworldLinkedService
, DataworldLinkedServiceArgs

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

DataworldLinkedServiceResponse
, DataworldLinkedServiceResponseArgs

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

Db2AuthenticationType
, Db2AuthenticationTypeArgs

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

Db2LinkedService
, Db2LinkedServiceArgs

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

Db2LinkedServiceResponse
, Db2LinkedServiceResponseArgs

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

DrillLinkedService
, DrillLinkedServiceArgs

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

DrillLinkedServiceResponse
, DrillLinkedServiceResponseArgs

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

DynamicsAXLinkedService
, DynamicsAXLinkedServiceArgs

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

DynamicsAXLinkedServiceResponse
, DynamicsAXLinkedServiceResponseArgs

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

DynamicsCrmLinkedService
, DynamicsCrmLinkedServiceArgs

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

DynamicsCrmLinkedServiceResponse
, DynamicsCrmLinkedServiceResponseArgs

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

DynamicsLinkedService
, DynamicsLinkedServiceArgs

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

DynamicsLinkedServiceResponse
, DynamicsLinkedServiceResponseArgs

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

EloquaLinkedService
, EloquaLinkedServiceArgs

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

EloquaLinkedServiceResponse
, EloquaLinkedServiceResponseArgs

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

FileServerLinkedService
, FileServerLinkedServiceArgs

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

FileServerLinkedServiceResponse
, FileServerLinkedServiceResponseArgs

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

FtpAuthenticationType
, FtpAuthenticationTypeArgs

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

FtpServerLinkedService
, FtpServerLinkedServiceArgs

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

FtpServerLinkedServiceResponse
, FtpServerLinkedServiceResponseArgs

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

GoogleAdWordsAuthenticationType
, GoogleAdWordsAuthenticationTypeArgs

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

GoogleAdWordsLinkedService
, GoogleAdWordsLinkedServiceArgs

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

GoogleAdWordsLinkedServiceResponse
, GoogleAdWordsLinkedServiceResponseArgs

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

GoogleBigQueryAuthenticationType
, GoogleBigQueryAuthenticationTypeArgs

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

GoogleBigQueryLinkedService
, GoogleBigQueryLinkedServiceArgs

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

GoogleBigQueryLinkedServiceResponse
, GoogleBigQueryLinkedServiceResponseArgs

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

GoogleBigQueryV2AuthenticationType
, GoogleBigQueryV2AuthenticationTypeArgs

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

GoogleBigQueryV2LinkedService
, GoogleBigQueryV2LinkedServiceArgs

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

GoogleBigQueryV2LinkedServiceResponse
, GoogleBigQueryV2LinkedServiceResponseArgs

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

GoogleCloudStorageLinkedService
, GoogleCloudStorageLinkedServiceArgs

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

GoogleCloudStorageLinkedServiceResponse
, GoogleCloudStorageLinkedServiceResponseArgs

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

GoogleSheetsLinkedService
, GoogleSheetsLinkedServiceArgs

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

GoogleSheetsLinkedServiceResponse
, GoogleSheetsLinkedServiceResponseArgs

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

GreenplumLinkedService
, GreenplumLinkedServiceArgs

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

GreenplumLinkedServiceResponse
, GreenplumLinkedServiceResponseArgs

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

HBaseAuthenticationType
, HBaseAuthenticationTypeArgs

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

HBaseLinkedService
, HBaseLinkedServiceArgs

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

HBaseLinkedServiceResponse
, HBaseLinkedServiceResponseArgs

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

HDInsightLinkedService
, HDInsightLinkedServiceArgs

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

HDInsightLinkedServiceResponse
, HDInsightLinkedServiceResponseArgs

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

HDInsightOnDemandLinkedService
, HDInsightOnDemandLinkedServiceArgs

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

HDInsightOnDemandLinkedServiceResponse
, HDInsightOnDemandLinkedServiceResponseArgs

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

HdfsLinkedService
, HdfsLinkedServiceArgs

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

HdfsLinkedServiceResponse
, HdfsLinkedServiceResponseArgs

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

HiveAuthenticationType
, HiveAuthenticationTypeArgs

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

HiveLinkedService
, HiveLinkedServiceArgs

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

HiveLinkedServiceResponse
, HiveLinkedServiceResponseArgs

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

HiveServerType
, HiveServerTypeArgs

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

HiveThriftTransportProtocol
, HiveThriftTransportProtocolArgs

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

HttpAuthenticationType
, HttpAuthenticationTypeArgs

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

HttpLinkedService
, HttpLinkedServiceArgs

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

HttpLinkedServiceResponse
, HttpLinkedServiceResponseArgs

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

HubspotLinkedService
, HubspotLinkedServiceArgs

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

HubspotLinkedServiceResponse
, HubspotLinkedServiceResponseArgs

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

ImpalaAuthenticationType
, ImpalaAuthenticationTypeArgs

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

ImpalaLinkedService
, ImpalaLinkedServiceArgs

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

ImpalaLinkedServiceResponse
, ImpalaLinkedServiceResponseArgs

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

InformixLinkedService
, InformixLinkedServiceArgs

ConnectionString This property is required. object
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
Annotations List<object>
List of tags that can be used for describing the linked service.
AuthenticationType object
Type of authentication used to connect to the Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Credential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The access credential portion of the connection string specified in driver-specific property-value format.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
Password for Basic authentication.
UserName object
User name for Basic authentication. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
ConnectionString This property is required. interface{}
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
Annotations []interface{}
List of tags that can be used for describing the linked service.
AuthenticationType interface{}
Type of authentication used to connect to the Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Credential AzureKeyVaultSecretReference | SecureString
The access credential portion of the connection string specified in driver-specific property-value format.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecification
Parameters for linked service.
Password AzureKeyVaultSecretReference | SecureString
Password for Basic authentication.
UserName interface{}
User name for Basic authentication. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
connectionString This property is required. Object
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
annotations List<Object>
List of tags that can be used for describing the linked service.
authenticationType Object
Type of authentication used to connect to the Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReference
The integration runtime reference.
credential AzureKeyVaultSecretReference | SecureString
The access credential portion of the connection string specified in driver-specific property-value format.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password for Basic authentication.
userName Object
User name for Basic authentication. Type: string (or Expression with resultType string).
version String
Version of the linked service.
connectionString This property is required. any
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
annotations any[]
List of tags that can be used for describing the linked service.
authenticationType any
Type of authentication used to connect to the Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReference
The integration runtime reference.
credential AzureKeyVaultSecretReference | SecureString
The access credential portion of the connection string specified in driver-specific property-value format.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password for Basic authentication.
userName any
User name for Basic authentication. Type: string (or Expression with resultType string).
version string
Version of the linked service.
connection_string This property is required. Any
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
authentication_type Any
Type of authentication used to connect to the Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
connect_via IntegrationRuntimeReference
The integration runtime reference.
credential AzureKeyVaultSecretReference | SecureString
The access credential portion of the connection string specified in driver-specific property-value format.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password for Basic authentication.
user_name Any
User name for Basic authentication. Type: string (or Expression with resultType string).
version str
Version of the linked service.
connectionString This property is required. Any
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
annotations List<Any>
List of tags that can be used for describing the linked service.
authenticationType Any
Type of authentication used to connect to the Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
connectVia Property Map
The integration runtime reference.
credential Property Map | Property Map
The access credential portion of the connection string specified in driver-specific property-value format.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
Password for Basic authentication.
userName Any
User name for Basic authentication. Type: string (or Expression with resultType string).
version String
Version of the linked service.

InformixLinkedServiceResponse
, InformixLinkedServiceResponseArgs

ConnectionString This property is required. object
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
Annotations List<object>
List of tags that can be used for describing the linked service.
AuthenticationType object
Type of authentication used to connect to the Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Credential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The access credential portion of the connection string specified in driver-specific property-value format.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
Password for Basic authentication.
UserName object
User name for Basic authentication. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
ConnectionString This property is required. interface{}
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
Annotations []interface{}
List of tags that can be used for describing the linked service.
AuthenticationType interface{}
Type of authentication used to connect to the Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The access credential portion of the connection string specified in driver-specific property-value format.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password for Basic authentication.
UserName interface{}
User name for Basic authentication. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
connectionString This property is required. Object
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
annotations List<Object>
List of tags that can be used for describing the linked service.
authenticationType Object
Type of authentication used to connect to the Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The access credential portion of the connection string specified in driver-specific property-value format.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password for Basic authentication.
userName Object
User name for Basic authentication. Type: string (or Expression with resultType string).
version String
Version of the linked service.
connectionString This property is required. any
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
annotations any[]
List of tags that can be used for describing the linked service.
authenticationType any
Type of authentication used to connect to the Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The access credential portion of the connection string specified in driver-specific property-value format.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password for Basic authentication.
userName any
User name for Basic authentication. Type: string (or Expression with resultType string).
version string
Version of the linked service.
connection_string This property is required. Any
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
authentication_type Any
Type of authentication used to connect to the Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The access credential portion of the connection string specified in driver-specific property-value format.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password for Basic authentication.
user_name Any
User name for Basic authentication. Type: string (or Expression with resultType string).
version str
Version of the linked service.
connectionString This property is required. Any
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
annotations List<Any>
List of tags that can be used for describing the linked service.
authenticationType Any
Type of authentication used to connect to the Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
connectVia Property Map
The integration runtime reference.
credential Property Map | Property Map
The access credential portion of the connection string specified in driver-specific property-value format.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
Password for Basic authentication.
userName Any
User name for Basic authentication. Type: string (or Expression with resultType string).
version String
Version of the linked service.

IntegrationRuntimeReference
, IntegrationRuntimeReferenceArgs

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

IntegrationRuntimeReferenceResponse
, IntegrationRuntimeReferenceResponseArgs

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

JiraLinkedService
, JiraLinkedServiceArgs

Host This property is required. object
The IP address or host name of the Jira service. (e.g. jira.example.com)
Username This property is required. object
The user name that you use to access Jira Service.
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The password corresponding to the user name that you provided in the username field.
Port object
The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
UseEncryptedEndpoints object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
Host This property is required. interface{}
The IP address or host name of the Jira service. (e.g. jira.example.com)
Username This property is required. interface{}
The user name that you use to access Jira Service.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecification
Parameters for linked service.
Password AzureKeyVaultSecretReference | SecureString
The password corresponding to the user name that you provided in the username field.
Port interface{}
The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
UseEncryptedEndpoints interface{}
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification interface{}
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification interface{}
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
host This property is required. Object
The IP address or host name of the Jira service. (e.g. jira.example.com)
username This property is required. Object
The user name that you use to access Jira Service.
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password corresponding to the user name that you provided in the username field.
port Object
The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
useEncryptedEndpoints Object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.
host This property is required. any
The IP address or host name of the Jira service. (e.g. jira.example.com)
username This property is required. any
The user name that you use to access Jira Service.
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password corresponding to the user name that you provided in the username field.
port any
The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
useEncryptedEndpoints any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version string
Version of the linked service.
host This property is required. Any
The IP address or host name of the Jira service. (e.g. jira.example.com)
username This property is required. Any
The user name that you use to access Jira Service.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password corresponding to the user name that you provided in the username field.
port Any
The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
use_encrypted_endpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
use_host_verification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
use_peer_verification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version str
Version of the linked service.
host This property is required. Any
The IP address or host name of the Jira service. (e.g. jira.example.com)
username This property is required. Any
The user name that you use to access Jira Service.
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
The password corresponding to the user name that you provided in the username field.
port Any
The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
useEncryptedEndpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.

JiraLinkedServiceResponse
, JiraLinkedServiceResponseArgs

Host This property is required. object
The IP address or host name of the Jira service. (e.g. jira.example.com)
Username This property is required. object
The user name that you use to access Jira Service.
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The password corresponding to the user name that you provided in the username field.
Port object
The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
UseEncryptedEndpoints object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
Host This property is required. interface{}
The IP address or host name of the Jira service. (e.g. jira.example.com)
Username This property is required. interface{}
The user name that you use to access Jira Service.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password corresponding to the user name that you provided in the username field.
Port interface{}
The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
UseEncryptedEndpoints interface{}
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification interface{}
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification interface{}
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
host This property is required. Object
The IP address or host name of the Jira service. (e.g. jira.example.com)
username This property is required. Object
The user name that you use to access Jira Service.
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password corresponding to the user name that you provided in the username field.
port Object
The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
useEncryptedEndpoints Object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.
host This property is required. any
The IP address or host name of the Jira service. (e.g. jira.example.com)
username This property is required. any
The user name that you use to access Jira Service.
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password corresponding to the user name that you provided in the username field.
port any
The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
useEncryptedEndpoints any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version string
Version of the linked service.
host This property is required. Any
The IP address or host name of the Jira service. (e.g. jira.example.com)
username This property is required. Any
The user name that you use to access Jira Service.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password corresponding to the user name that you provided in the username field.
port Any
The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
use_encrypted_endpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
use_host_verification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
use_peer_verification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version str
Version of the linked service.
host This property is required. Any
The IP address or host name of the Jira service. (e.g. jira.example.com)
username This property is required. Any
The user name that you use to access Jira Service.
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
The password corresponding to the user name that you provided in the username field.
port Any
The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
useEncryptedEndpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.

LakeHouseLinkedService
, LakeHouseLinkedServiceArgs

Annotations List<object>
List of tags that can be used for describing the linked service.
ArtifactId object
The ID of Microsoft Fabric LakeHouse artifact. Type: string (or Expression with resultType string).
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
ServicePrincipalCredential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
ServicePrincipalCredentialType object
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
ServicePrincipalId object
The ID of the application used to authenticate against Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string).
ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The Key of the application used to authenticate against Microsoft Fabric LakeHouse.
Tenant object
The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
WorkspaceId object
The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
Annotations []interface{}
List of tags that can be used for describing the linked service.
ArtifactId interface{}
The ID of Microsoft Fabric LakeHouse artifact. Type: string (or Expression with resultType string).
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecification
Parameters for linked service.
ServicePrincipalCredential AzureKeyVaultSecretReference | SecureString
The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
ServicePrincipalCredentialType interface{}
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
ServicePrincipalId interface{}
The ID of the application used to authenticate against Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string).
ServicePrincipalKey AzureKeyVaultSecretReference | SecureString
The Key of the application used to authenticate against Microsoft Fabric LakeHouse.
Tenant interface{}
The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
WorkspaceId interface{}
The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
annotations List<Object>
List of tags that can be used for describing the linked service.
artifactId Object
The ID of Microsoft Fabric LakeHouse artifact. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
servicePrincipalCredential AzureKeyVaultSecretReference | SecureString
The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
servicePrincipalCredentialType Object
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
servicePrincipalId Object
The ID of the application used to authenticate against Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string).
servicePrincipalKey AzureKeyVaultSecretReference | SecureString
The Key of the application used to authenticate against Microsoft Fabric LakeHouse.
tenant Object
The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
version String
Version of the linked service.
workspaceId Object
The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
annotations any[]
List of tags that can be used for describing the linked service.
artifactId any
The ID of Microsoft Fabric LakeHouse artifact. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
servicePrincipalCredential AzureKeyVaultSecretReference | SecureString
The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
servicePrincipalCredentialType any
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
servicePrincipalId any
The ID of the application used to authenticate against Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string).
servicePrincipalKey AzureKeyVaultSecretReference | SecureString
The Key of the application used to authenticate against Microsoft Fabric LakeHouse.
tenant any
The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
version string
Version of the linked service.
workspaceId any
The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
artifact_id Any
The ID of Microsoft Fabric LakeHouse artifact. Type: string (or Expression with resultType string).
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
service_principal_credential AzureKeyVaultSecretReference | SecureString
The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
service_principal_credential_type Any
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
service_principal_id Any
The ID of the application used to authenticate against Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string).
service_principal_key AzureKeyVaultSecretReference | SecureString
The Key of the application used to authenticate against Microsoft Fabric LakeHouse.
tenant Any
The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
version str
Version of the linked service.
workspace_id Any
The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
annotations List<Any>
List of tags that can be used for describing the linked service.
artifactId Any
The ID of Microsoft Fabric LakeHouse artifact. Type: string (or Expression with resultType string).
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
servicePrincipalCredential Property Map | Property Map
The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
servicePrincipalCredentialType Any
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
servicePrincipalId Any
The ID of the application used to authenticate against Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string).
servicePrincipalKey Property Map | Property Map
The Key of the application used to authenticate against Microsoft Fabric LakeHouse.
tenant Any
The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
version String
Version of the linked service.
workspaceId Any
The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).

LakeHouseLinkedServiceResponse
, LakeHouseLinkedServiceResponseArgs

Annotations List<object>
List of tags that can be used for describing the linked service.
ArtifactId object
The ID of Microsoft Fabric LakeHouse artifact. Type: string (or Expression with resultType string).
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
ServicePrincipalCredential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
ServicePrincipalCredentialType object
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
ServicePrincipalId object
The ID of the application used to authenticate against Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string).
ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The Key of the application used to authenticate against Microsoft Fabric LakeHouse.
Tenant object
The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
WorkspaceId object
The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
Annotations []interface{}
List of tags that can be used for describing the linked service.
ArtifactId interface{}
The ID of Microsoft Fabric LakeHouse artifact. Type: string (or Expression with resultType string).
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
ServicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
ServicePrincipalCredentialType interface{}
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
ServicePrincipalId interface{}
The ID of the application used to authenticate against Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string).
ServicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The Key of the application used to authenticate against Microsoft Fabric LakeHouse.
Tenant interface{}
The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
WorkspaceId interface{}
The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
annotations List<Object>
List of tags that can be used for describing the linked service.
artifactId Object
The ID of Microsoft Fabric LakeHouse artifact. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
servicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
servicePrincipalCredentialType Object
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
servicePrincipalId Object
The ID of the application used to authenticate against Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string).
servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The Key of the application used to authenticate against Microsoft Fabric LakeHouse.
tenant Object
The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
version String
Version of the linked service.
workspaceId Object
The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
annotations any[]
List of tags that can be used for describing the linked service.
artifactId any
The ID of Microsoft Fabric LakeHouse artifact. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
servicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
servicePrincipalCredentialType any
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
servicePrincipalId any
The ID of the application used to authenticate against Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string).
servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The Key of the application used to authenticate against Microsoft Fabric LakeHouse.
tenant any
The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
version string
Version of the linked service.
workspaceId any
The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
artifact_id Any
The ID of Microsoft Fabric LakeHouse artifact. Type: string (or Expression with resultType string).
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
service_principal_credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
service_principal_credential_type Any
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
service_principal_id Any
The ID of the application used to authenticate against Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string).
service_principal_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The Key of the application used to authenticate against Microsoft Fabric LakeHouse.
tenant Any
The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
version str
Version of the linked service.
workspace_id Any
The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
annotations List<Any>
List of tags that can be used for describing the linked service.
artifactId Any
The ID of Microsoft Fabric LakeHouse artifact. Type: string (or Expression with resultType string).
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
servicePrincipalCredential Property Map | Property Map
The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
servicePrincipalCredentialType Any
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
servicePrincipalId Any
The ID of the application used to authenticate against Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string).
servicePrincipalKey Property Map | Property Map
The Key of the application used to authenticate against Microsoft Fabric LakeHouse.
tenant Any
The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
version String
Version of the linked service.
workspaceId Any
The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).

LinkedServiceReference
, LinkedServiceReferenceArgs

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

LinkedServiceReferenceResponse
, LinkedServiceReferenceResponseArgs

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

MagentoLinkedService
, MagentoLinkedServiceArgs

Host This property is required. object
The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
AccessToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The access token from Magento.
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
UseEncryptedEndpoints object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
Host This property is required. interface{}
The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
AccessToken AzureKeyVaultSecretReference | SecureString
The access token from Magento.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecification
Parameters for linked service.
UseEncryptedEndpoints interface{}
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification interface{}
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification interface{}
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
host This property is required. Object
The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
accessToken AzureKeyVaultSecretReference | SecureString
The access token from Magento.
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
useEncryptedEndpoints Object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.
host This property is required. any
The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
accessToken AzureKeyVaultSecretReference | SecureString
The access token from Magento.
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
useEncryptedEndpoints any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version string
Version of the linked service.
host This property is required. Any
The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
access_token AzureKeyVaultSecretReference | SecureString
The access token from Magento.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
use_encrypted_endpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
use_host_verification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
use_peer_verification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version str
Version of the linked service.
host This property is required. Any
The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
accessToken Property Map | Property Map
The access token from Magento.
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
useEncryptedEndpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.

MagentoLinkedServiceResponse
, MagentoLinkedServiceResponseArgs

Host This property is required. object
The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
AccessToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The access token from Magento.
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
UseEncryptedEndpoints object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
Host This property is required. interface{}
The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
AccessToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The access token from Magento.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
UseEncryptedEndpoints interface{}
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification interface{}
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification interface{}
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
host This property is required. Object
The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
accessToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The access token from Magento.
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
useEncryptedEndpoints Object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.
host This property is required. any
The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
accessToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The access token from Magento.
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
useEncryptedEndpoints any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version string
Version of the linked service.
host This property is required. Any
The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
access_token AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The access token from Magento.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
use_encrypted_endpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
use_host_verification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
use_peer_verification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version str
Version of the linked service.
host This property is required. Any
The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
accessToken Property Map | Property Map
The access token from Magento.
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
useEncryptedEndpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.

MariaDBLinkedService
, MariaDBLinkedServiceArgs

Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
ConnectionString object
An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
Database object
Database name for connection. Type: string.
Description string
Linked service description.
DriverVersion object
The version of the MariaDB driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string. The legacy driver is scheduled for deprecation by October 2024.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference
The Azure key vault secret reference of password in connection string.
Port object
The port for the connection. Type: integer.
Server object
Server name for connection. Type: string.
SslMode object
This option specifies whether the driver uses TLS encryption and verification when connecting to MariaDB. E.g., SSLMode=<0/1/2/3/4>. Options: DISABLED (0) / PREFERRED (1) (Default) / REQUIRED (2) / VERIFY_CA (3) / VERIFY_IDENTITY (4), REQUIRED (2) is recommended to only allow connections encrypted with SSL/TLS.
UseSystemTrustStore object
This option specifies whether to use a CA certificate from the system trust store, or from a specified PEM file. E.g. UseSystemTrustStore=<0/1>; Options: Enabled (1) / Disabled (0) (Default)
Username object
Username for authentication. Type: string.
Version string
Version of the linked service.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
ConnectionString interface{}
An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
Database interface{}
Database name for connection. Type: string.
Description string
Linked service description.
DriverVersion interface{}
The version of the MariaDB driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string. The legacy driver is scheduled for deprecation by October 2024.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecification
Parameters for linked service.
Password AzureKeyVaultSecretReference
The Azure key vault secret reference of password in connection string.
Port interface{}
The port for the connection. Type: integer.
Server interface{}
Server name for connection. Type: string.
SslMode interface{}
This option specifies whether the driver uses TLS encryption and verification when connecting to MariaDB. E.g., SSLMode=<0/1/2/3/4>. Options: DISABLED (0) / PREFERRED (1) (Default) / REQUIRED (2) / VERIFY_CA (3) / VERIFY_IDENTITY (4), REQUIRED (2) is recommended to only allow connections encrypted with SSL/TLS.
UseSystemTrustStore interface{}
This option specifies whether to use a CA certificate from the system trust store, or from a specified PEM file. E.g. UseSystemTrustStore=<0/1>; Options: Enabled (1) / Disabled (0) (Default)
Username interface{}
Username for authentication. Type: string.
Version string
Version of the linked service.
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
connectionString Object
An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
database Object
Database name for connection. Type: string.
description String
Linked service description.
driverVersion Object
The version of the MariaDB driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string. The legacy driver is scheduled for deprecation by October 2024.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
password AzureKeyVaultSecretReference
The Azure key vault secret reference of password in connection string.
port Object
The port for the connection. Type: integer.
server Object
Server name for connection. Type: string.
sslMode Object
This option specifies whether the driver uses TLS encryption and verification when connecting to MariaDB. E.g., SSLMode=<0/1/2/3/4>. Options: DISABLED (0) / PREFERRED (1) (Default) / REQUIRED (2) / VERIFY_CA (3) / VERIFY_IDENTITY (4), REQUIRED (2) is recommended to only allow connections encrypted with SSL/TLS.
useSystemTrustStore Object
This option specifies whether to use a CA certificate from the system trust store, or from a specified PEM file. E.g. UseSystemTrustStore=<0/1>; Options: Enabled (1) / Disabled (0) (Default)
username Object
Username for authentication. Type: string.
version String
Version of the linked service.
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
connectionString any
An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
database any
Database name for connection. Type: string.
description string
Linked service description.
driverVersion any
The version of the MariaDB driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string. The legacy driver is scheduled for deprecation by October 2024.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
password AzureKeyVaultSecretReference
The Azure key vault secret reference of password in connection string.
port any
The port for the connection. Type: integer.
server any
Server name for connection. Type: string.
sslMode any
This option specifies whether the driver uses TLS encryption and verification when connecting to MariaDB. E.g., SSLMode=<0/1/2/3/4>. Options: DISABLED (0) / PREFERRED (1) (Default) / REQUIRED (2) / VERIFY_CA (3) / VERIFY_IDENTITY (4), REQUIRED (2) is recommended to only allow connections encrypted with SSL/TLS.
useSystemTrustStore any
This option specifies whether to use a CA certificate from the system trust store, or from a specified PEM file. E.g. UseSystemTrustStore=<0/1>; Options: Enabled (1) / Disabled (0) (Default)
username any
Username for authentication. Type: string.
version string
Version of the linked service.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReference
The integration runtime reference.
connection_string Any
An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
database Any
Database name for connection. Type: string.
description str
Linked service description.
driver_version Any
The version of the MariaDB driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string. The legacy driver is scheduled for deprecation by October 2024.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
password AzureKeyVaultSecretReference
The Azure key vault secret reference of password in connection string.
port Any
The port for the connection. Type: integer.
server Any
Server name for connection. Type: string.
ssl_mode Any
This option specifies whether the driver uses TLS encryption and verification when connecting to MariaDB. E.g., SSLMode=<0/1/2/3/4>. Options: DISABLED (0) / PREFERRED (1) (Default) / REQUIRED (2) / VERIFY_CA (3) / VERIFY_IDENTITY (4), REQUIRED (2) is recommended to only allow connections encrypted with SSL/TLS.
use_system_trust_store Any
This option specifies whether to use a CA certificate from the system trust store, or from a specified PEM file. E.g. UseSystemTrustStore=<0/1>; Options: Enabled (1) / Disabled (0) (Default)
username Any
Username for authentication. Type: string.
version str
Version of the linked service.
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
connectionString Any
An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
database Any
Database name for connection. Type: string.
description String
Linked service description.
driverVersion Any
The version of the MariaDB driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string. The legacy driver is scheduled for deprecation by October 2024.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map
The Azure key vault secret reference of password in connection string.
port Any
The port for the connection. Type: integer.
server Any
Server name for connection. Type: string.
sslMode Any
This option specifies whether the driver uses TLS encryption and verification when connecting to MariaDB. E.g., SSLMode=<0/1/2/3/4>. Options: DISABLED (0) / PREFERRED (1) (Default) / REQUIRED (2) / VERIFY_CA (3) / VERIFY_IDENTITY (4), REQUIRED (2) is recommended to only allow connections encrypted with SSL/TLS.
useSystemTrustStore Any
This option specifies whether to use a CA certificate from the system trust store, or from a specified PEM file. E.g. UseSystemTrustStore=<0/1>; Options: Enabled (1) / Disabled (0) (Default)
username Any
Username for authentication. Type: string.
version String
Version of the linked service.

MariaDBLinkedServiceResponse
, MariaDBLinkedServiceResponseArgs

Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
ConnectionString object
An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
Database object
Database name for connection. Type: string.
Description string
Linked service description.
DriverVersion object
The version of the MariaDB driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string. The legacy driver is scheduled for deprecation by October 2024.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse
The Azure key vault secret reference of password in connection string.
Port object
The port for the connection. Type: integer.
Server object
Server name for connection. Type: string.
SslMode object
This option specifies whether the driver uses TLS encryption and verification when connecting to MariaDB. E.g., SSLMode=<0/1/2/3/4>. Options: DISABLED (0) / PREFERRED (1) (Default) / REQUIRED (2) / VERIFY_CA (3) / VERIFY_IDENTITY (4), REQUIRED (2) is recommended to only allow connections encrypted with SSL/TLS.
UseSystemTrustStore object
This option specifies whether to use a CA certificate from the system trust store, or from a specified PEM file. E.g. UseSystemTrustStore=<0/1>; Options: Enabled (1) / Disabled (0) (Default)
Username object
Username for authentication. Type: string.
Version string
Version of the linked service.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
ConnectionString interface{}
An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
Database interface{}
Database name for connection. Type: string.
Description string
Linked service description.
DriverVersion interface{}
The version of the MariaDB driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string. The legacy driver is scheduled for deprecation by October 2024.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Password AzureKeyVaultSecretReferenceResponse
The Azure key vault secret reference of password in connection string.
Port interface{}
The port for the connection. Type: integer.
Server interface{}
Server name for connection. Type: string.
SslMode interface{}
This option specifies whether the driver uses TLS encryption and verification when connecting to MariaDB. E.g., SSLMode=<0/1/2/3/4>. Options: DISABLED (0) / PREFERRED (1) (Default) / REQUIRED (2) / VERIFY_CA (3) / VERIFY_IDENTITY (4), REQUIRED (2) is recommended to only allow connections encrypted with SSL/TLS.
UseSystemTrustStore interface{}
This option specifies whether to use a CA certificate from the system trust store, or from a specified PEM file. E.g. UseSystemTrustStore=<0/1>; Options: Enabled (1) / Disabled (0) (Default)
Username interface{}
Username for authentication. Type: string.
Version string
Version of the linked service.
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
connectionString Object
An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
database Object
Database name for connection. Type: string.
description String
Linked service description.
driverVersion Object
The version of the MariaDB driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string. The legacy driver is scheduled for deprecation by October 2024.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse
The Azure key vault secret reference of password in connection string.
port Object
The port for the connection. Type: integer.
server Object
Server name for connection. Type: string.
sslMode Object
This option specifies whether the driver uses TLS encryption and verification when connecting to MariaDB. E.g., SSLMode=<0/1/2/3/4>. Options: DISABLED (0) / PREFERRED (1) (Default) / REQUIRED (2) / VERIFY_CA (3) / VERIFY_IDENTITY (4), REQUIRED (2) is recommended to only allow connections encrypted with SSL/TLS.
useSystemTrustStore Object
This option specifies whether to use a CA certificate from the system trust store, or from a specified PEM file. E.g. UseSystemTrustStore=<0/1>; Options: Enabled (1) / Disabled (0) (Default)
username Object
Username for authentication. Type: string.
version String
Version of the linked service.
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
connectionString any
An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
database any
Database name for connection. Type: string.
description string
Linked service description.
driverVersion any
The version of the MariaDB driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string. The legacy driver is scheduled for deprecation by October 2024.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse
The Azure key vault secret reference of password in connection string.
port any
The port for the connection. Type: integer.
server any
Server name for connection. Type: string.
sslMode any
This option specifies whether the driver uses TLS encryption and verification when connecting to MariaDB. E.g., SSLMode=<0/1/2/3/4>. Options: DISABLED (0) / PREFERRED (1) (Default) / REQUIRED (2) / VERIFY_CA (3) / VERIFY_IDENTITY (4), REQUIRED (2) is recommended to only allow connections encrypted with SSL/TLS.
useSystemTrustStore any
This option specifies whether to use a CA certificate from the system trust store, or from a specified PEM file. E.g. UseSystemTrustStore=<0/1>; Options: Enabled (1) / Disabled (0) (Default)
username any
Username for authentication. Type: string.
version string
Version of the linked service.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
connection_string Any
An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
database Any
Database name for connection. Type: string.
description str
Linked service description.
driver_version Any
The version of the MariaDB driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string. The legacy driver is scheduled for deprecation by October 2024.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse
The Azure key vault secret reference of password in connection string.
port Any
The port for the connection. Type: integer.
server Any
Server name for connection. Type: string.
ssl_mode Any
This option specifies whether the driver uses TLS encryption and verification when connecting to MariaDB. E.g., SSLMode=<0/1/2/3/4>. Options: DISABLED (0) / PREFERRED (1) (Default) / REQUIRED (2) / VERIFY_CA (3) / VERIFY_IDENTITY (4), REQUIRED (2) is recommended to only allow connections encrypted with SSL/TLS.
use_system_trust_store Any
This option specifies whether to use a CA certificate from the system trust store, or from a specified PEM file. E.g. UseSystemTrustStore=<0/1>; Options: Enabled (1) / Disabled (0) (Default)
username Any
Username for authentication. Type: string.
version str
Version of the linked service.
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
connectionString Any
An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
database Any
Database name for connection. Type: string.
description String
Linked service description.
driverVersion Any
The version of the MariaDB driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string. The legacy driver is scheduled for deprecation by October 2024.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map
The Azure key vault secret reference of password in connection string.
port Any
The port for the connection. Type: integer.
server Any
Server name for connection. Type: string.
sslMode Any
This option specifies whether the driver uses TLS encryption and verification when connecting to MariaDB. E.g., SSLMode=<0/1/2/3/4>. Options: DISABLED (0) / PREFERRED (1) (Default) / REQUIRED (2) / VERIFY_CA (3) / VERIFY_IDENTITY (4), REQUIRED (2) is recommended to only allow connections encrypted with SSL/TLS.
useSystemTrustStore Any
This option specifies whether to use a CA certificate from the system trust store, or from a specified PEM file. E.g. UseSystemTrustStore=<0/1>; Options: Enabled (1) / Disabled (0) (Default)
username Any
Username for authentication. Type: string.
version String
Version of the linked service.

MarketoLinkedService
, MarketoLinkedServiceArgs

ClientId This property is required. object
The client Id of your Marketo service.
Endpoint This property is required. object
The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
Annotations List<object>
List of tags that can be used for describing the linked service.
ClientSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The client secret of your Marketo service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
UseEncryptedEndpoints object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
ClientId This property is required. interface{}
The client Id of your Marketo service.
Endpoint This property is required. interface{}
The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
Annotations []interface{}
List of tags that can be used for describing the linked service.
ClientSecret AzureKeyVaultSecretReference | SecureString
The client secret of your Marketo service.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecification
Parameters for linked service.
UseEncryptedEndpoints interface{}
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification interface{}
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification interface{}
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
clientId This property is required. Object
The client Id of your Marketo service.
endpoint This property is required. Object
The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
annotations List<Object>
List of tags that can be used for describing the linked service.
clientSecret AzureKeyVaultSecretReference | SecureString
The client secret of your Marketo service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
useEncryptedEndpoints Object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.
clientId This property is required. any
The client Id of your Marketo service.
endpoint This property is required. any
The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
annotations any[]
List of tags that can be used for describing the linked service.
clientSecret AzureKeyVaultSecretReference | SecureString
The client secret of your Marketo service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
useEncryptedEndpoints any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version string
Version of the linked service.
client_id This property is required. Any
The client Id of your Marketo service.
endpoint This property is required. Any
The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
client_secret AzureKeyVaultSecretReference | SecureString
The client secret of your Marketo service.
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
use_encrypted_endpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
use_host_verification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
use_peer_verification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version str
Version of the linked service.
clientId This property is required. Any
The client Id of your Marketo service.
endpoint This property is required. Any
The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
annotations List<Any>
List of tags that can be used for describing the linked service.
clientSecret Property Map | Property Map
The client secret of your Marketo service.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
useEncryptedEndpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.

MarketoLinkedServiceResponse
, MarketoLinkedServiceResponseArgs

ClientId This property is required. object
The client Id of your Marketo service.
Endpoint This property is required. object
The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
Annotations List<object>
List of tags that can be used for describing the linked service.
ClientSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The client secret of your Marketo service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
UseEncryptedEndpoints object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
ClientId This property is required. interface{}
The client Id of your Marketo service.
Endpoint This property is required. interface{}
The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
Annotations []interface{}
List of tags that can be used for describing the linked service.
ClientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret of your Marketo service.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
UseEncryptedEndpoints interface{}
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification interface{}
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification interface{}
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
clientId This property is required. Object
The client Id of your Marketo service.
endpoint This property is required. Object
The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
annotations List<Object>
List of tags that can be used for describing the linked service.
clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret of your Marketo service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
useEncryptedEndpoints Object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.
clientId This property is required. any
The client Id of your Marketo service.
endpoint This property is required. any
The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
annotations any[]
List of tags that can be used for describing the linked service.
clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret of your Marketo service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
useEncryptedEndpoints any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version string
Version of the linked service.
client_id This property is required. Any
The client Id of your Marketo service.
endpoint This property is required. Any
The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
client_secret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret of your Marketo service.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
use_encrypted_endpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
use_host_verification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
use_peer_verification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version str
Version of the linked service.
clientId This property is required. Any
The client Id of your Marketo service.
endpoint This property is required. Any
The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
annotations List<Any>
List of tags that can be used for describing the linked service.
clientSecret Property Map | Property Map
The client secret of your Marketo service.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
useEncryptedEndpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.

MicrosoftAccessLinkedService
, MicrosoftAccessLinkedServiceArgs

ConnectionString This property is required. object
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
Annotations List<object>
List of tags that can be used for describing the linked service.
AuthenticationType object
Type of authentication used to connect to the Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Credential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The access credential portion of the connection string specified in driver-specific property-value format.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
Password for Basic authentication.
UserName object
User name for Basic authentication. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
ConnectionString This property is required. interface{}
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
Annotations []interface{}
List of tags that can be used for describing the linked service.
AuthenticationType interface{}
Type of authentication used to connect to the Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Credential AzureKeyVaultSecretReference | SecureString
The access credential portion of the connection string specified in driver-specific property-value format.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecification
Parameters for linked service.
Password AzureKeyVaultSecretReference | SecureString
Password for Basic authentication.
UserName interface{}
User name for Basic authentication. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
connectionString This property is required. Object
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
annotations List<Object>
List of tags that can be used for describing the linked service.
authenticationType Object
Type of authentication used to connect to the Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReference
The integration runtime reference.
credential AzureKeyVaultSecretReference | SecureString
The access credential portion of the connection string specified in driver-specific property-value format.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password for Basic authentication.
userName Object
User name for Basic authentication. Type: string (or Expression with resultType string).
version String
Version of the linked service.
connectionString This property is required. any
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
annotations any[]
List of tags that can be used for describing the linked service.
authenticationType any
Type of authentication used to connect to the Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReference
The integration runtime reference.
credential AzureKeyVaultSecretReference | SecureString
The access credential portion of the connection string specified in driver-specific property-value format.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password for Basic authentication.
userName any
User name for Basic authentication. Type: string (or Expression with resultType string).
version string
Version of the linked service.
connection_string This property is required. Any
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
authentication_type Any
Type of authentication used to connect to the Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
connect_via IntegrationRuntimeReference
The integration runtime reference.
credential AzureKeyVaultSecretReference | SecureString
The access credential portion of the connection string specified in driver-specific property-value format.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password for Basic authentication.
user_name Any
User name for Basic authentication. Type: string (or Expression with resultType string).
version str
Version of the linked service.
connectionString This property is required. Any
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
annotations List<Any>
List of tags that can be used for describing the linked service.
authenticationType Any
Type of authentication used to connect to the Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
connectVia Property Map
The integration runtime reference.
credential Property Map | Property Map
The access credential portion of the connection string specified in driver-specific property-value format.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
Password for Basic authentication.
userName Any
User name for Basic authentication. Type: string (or Expression with resultType string).
version String
Version of the linked service.

MicrosoftAccessLinkedServiceResponse
, MicrosoftAccessLinkedServiceResponseArgs

ConnectionString This property is required. object
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
Annotations List<object>
List of tags that can be used for describing the linked service.
AuthenticationType object
Type of authentication used to connect to the Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Credential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The access credential portion of the connection string specified in driver-specific property-value format.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
Password for Basic authentication.
UserName object
User name for Basic authentication. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
ConnectionString This property is required. interface{}
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
Annotations []interface{}
List of tags that can be used for describing the linked service.
AuthenticationType interface{}
Type of authentication used to connect to the Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The access credential portion of the connection string specified in driver-specific property-value format.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password for Basic authentication.
UserName interface{}
User name for Basic authentication. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
connectionString This property is required. Object
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
annotations List<Object>
List of tags that can be used for describing the linked service.
authenticationType Object
Type of authentication used to connect to the Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The access credential portion of the connection string specified in driver-specific property-value format.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password for Basic authentication.
userName Object
User name for Basic authentication. Type: string (or Expression with resultType string).
version String
Version of the linked service.
connectionString This property is required. any
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
annotations any[]
List of tags that can be used for describing the linked service.
authenticationType any
Type of authentication used to connect to the Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The access credential portion of the connection string specified in driver-specific property-value format.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password for Basic authentication.
userName any
User name for Basic authentication. Type: string (or Expression with resultType string).
version string
Version of the linked service.
connection_string This property is required. Any
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
authentication_type Any
Type of authentication used to connect to the Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The access credential portion of the connection string specified in driver-specific property-value format.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password for Basic authentication.
user_name Any
User name for Basic authentication. Type: string (or Expression with resultType string).
version str
Version of the linked service.
connectionString This property is required. Any
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
annotations List<Any>
List of tags that can be used for describing the linked service.
authenticationType Any
Type of authentication used to connect to the Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
connectVia Property Map
The integration runtime reference.
credential Property Map | Property Map
The access credential portion of the connection string specified in driver-specific property-value format.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
Password for Basic authentication.
userName Any
User name for Basic authentication. Type: string (or Expression with resultType string).
version String
Version of the linked service.

MongoDbAtlasLinkedService
, MongoDbAtlasLinkedServiceArgs

ConnectionString This property is required. object
The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
Database This property is required. object
The name of the MongoDB Atlas database that you want to access. Type: string (or Expression with resultType string).
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
DriverVersion object
The driver version that you want to choose. Allowed value are v1 and v2. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Version string
Version of the linked service.
ConnectionString This property is required. interface{}
The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
Database This property is required. interface{}
The name of the MongoDB Atlas database that you want to access. Type: string (or Expression with resultType string).
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
DriverVersion interface{}
The driver version that you want to choose. Allowed value are v1 and v2. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecification
Parameters for linked service.
Version string
Version of the linked service.
connectionString This property is required. Object
The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
database This property is required. Object
The name of the MongoDB Atlas database that you want to access. Type: string (or Expression with resultType string).
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
driverVersion Object
The driver version that you want to choose. Allowed value are v1 and v2. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecification>
Parameters for linked service.
version String
Version of the linked service.
connectionString This property is required. any
The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
database This property is required. any
The name of the MongoDB Atlas database that you want to access. Type: string (or Expression with resultType string).
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
driverVersion any
The driver version that you want to choose. Allowed value are v1 and v2. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
version string
Version of the linked service.
connection_string This property is required. Any
The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
database This property is required. Any
The name of the MongoDB Atlas database that you want to access. Type: string (or Expression with resultType string).
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
driver_version Any
The driver version that you want to choose. Allowed value are v1 and v2. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
version str
Version of the linked service.
connectionString This property is required. Any
The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
database This property is required. Any
The name of the MongoDB Atlas database that you want to access. Type: string (or Expression with resultType string).
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
driverVersion Any
The driver version that you want to choose. Allowed value are v1 and v2. Type: string (or Expression with resultType string).
parameters Map<Property Map>
Parameters for linked service.
version String
Version of the linked service.

MongoDbAtlasLinkedServiceResponse
, MongoDbAtlasLinkedServiceResponseArgs

ConnectionString This property is required. object
The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
Database This property is required. object
The name of the MongoDB Atlas database that you want to access. Type: string (or Expression with resultType string).
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
DriverVersion object
The driver version that you want to choose. Allowed value are v1 and v2. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Version string
Version of the linked service.
ConnectionString This property is required. interface{}
The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
Database This property is required. interface{}
The name of the MongoDB Atlas database that you want to access. Type: string (or Expression with resultType string).
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
DriverVersion interface{}
The driver version that you want to choose. Allowed value are v1 and v2. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Version string
Version of the linked service.
connectionString This property is required. Object
The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
database This property is required. Object
The name of the MongoDB Atlas database that you want to access. Type: string (or Expression with resultType string).
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
driverVersion Object
The driver version that you want to choose. Allowed value are v1 and v2. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
version String
Version of the linked service.
connectionString This property is required. any
The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
database This property is required. any
The name of the MongoDB Atlas database that you want to access. Type: string (or Expression with resultType string).
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
driverVersion any
The driver version that you want to choose. Allowed value are v1 and v2. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
version string
Version of the linked service.
connection_string This property is required. Any
The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
database This property is required. Any
The name of the MongoDB Atlas database that you want to access. Type: string (or Expression with resultType string).
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
driver_version Any
The driver version that you want to choose. Allowed value are v1 and v2. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
version str
Version of the linked service.
connectionString This property is required. Any
The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
database This property is required. Any
The name of the MongoDB Atlas database that you want to access. Type: string (or Expression with resultType string).
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
driverVersion Any
The driver version that you want to choose. Allowed value are v1 and v2. Type: string (or Expression with resultType string).
parameters Map<Property Map>
Parameters for linked service.
version String
Version of the linked service.

MongoDbAuthenticationType
, MongoDbAuthenticationTypeArgs

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

MongoDbLinkedService
, MongoDbLinkedServiceArgs

DatabaseName This property is required. object
The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
Server This property is required. object
The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
AllowSelfSignedServerCert object
Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
Annotations List<object>
List of tags that can be used for describing the linked service.
AuthSource object
Database to verify the username and password. Type: string (or Expression with resultType string).
AuthenticationType string | Pulumi.AzureNative.DataFactory.MongoDbAuthenticationType
The authentication type to be used to connect to the MongoDB database.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EnableSsl object
Specifies whether the connections to the server are encrypted using SSL. The default value is false. Type: boolean (or Expression with resultType boolean).
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
Password for authentication.
Port object
The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
Username object
Username for authentication. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
DatabaseName This property is required. interface{}
The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
Server This property is required. interface{}
The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
AllowSelfSignedServerCert interface{}
Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
Annotations []interface{}
List of tags that can be used for describing the linked service.
AuthSource interface{}
Database to verify the username and password. Type: string (or Expression with resultType string).
AuthenticationType string | MongoDbAuthenticationType
The authentication type to be used to connect to the MongoDB database.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EnableSsl interface{}
Specifies whether the connections to the server are encrypted using SSL. The default value is false. Type: boolean (or Expression with resultType boolean).
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecification
Parameters for linked service.
Password AzureKeyVaultSecretReference | SecureString
Password for authentication.
Port interface{}
The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
Username interface{}
Username for authentication. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
databaseName This property is required. Object
The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
server This property is required. Object
The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
allowSelfSignedServerCert Object
Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
annotations List<Object>
List of tags that can be used for describing the linked service.
authSource Object
Database to verify the username and password. Type: string (or Expression with resultType string).
authenticationType String | MongoDbAuthenticationType
The authentication type to be used to connect to the MongoDB database.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
enableSsl Object
Specifies whether the connections to the server are encrypted using SSL. The default value is false. Type: boolean (or Expression with resultType boolean).
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password for authentication.
port Object
The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
username Object
Username for authentication. Type: string (or Expression with resultType string).
version String
Version of the linked service.
databaseName This property is required. any
The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
server This property is required. any
The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
allowSelfSignedServerCert any
Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
annotations any[]
List of tags that can be used for describing the linked service.
authSource any
Database to verify the username and password. Type: string (or Expression with resultType string).
authenticationType string | MongoDbAuthenticationType
The authentication type to be used to connect to the MongoDB database.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
enableSsl any
Specifies whether the connections to the server are encrypted using SSL. The default value is false. Type: boolean (or Expression with resultType boolean).
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password for authentication.
port any
The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
username any
Username for authentication. Type: string (or Expression with resultType string).
version string
Version of the linked service.
database_name This property is required. Any
The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
server This property is required. Any
The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
allow_self_signed_server_cert Any
Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
auth_source Any
Database to verify the username and password. Type: string (or Expression with resultType string).
authentication_type str | MongoDbAuthenticationType
The authentication type to be used to connect to the MongoDB database.
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
enable_ssl Any
Specifies whether the connections to the server are encrypted using SSL. The default value is false. Type: boolean (or Expression with resultType boolean).
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password for authentication.
port Any
The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
username Any
Username for authentication. Type: string (or Expression with resultType string).
version str
Version of the linked service.
databaseName This property is required. Any
The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
server This property is required. Any
The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
allowSelfSignedServerCert Any
Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
annotations List<Any>
List of tags that can be used for describing the linked service.
authSource Any
Database to verify the username and password. Type: string (or Expression with resultType string).
authenticationType String | "Basic" | "Anonymous"
The authentication type to be used to connect to the MongoDB database.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
enableSsl Any
Specifies whether the connections to the server are encrypted using SSL. The default value is false. Type: boolean (or Expression with resultType boolean).
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
Password for authentication.
port Any
The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
username Any
Username for authentication. Type: string (or Expression with resultType string).
version String
Version of the linked service.

MongoDbLinkedServiceResponse
, MongoDbLinkedServiceResponseArgs

DatabaseName This property is required. object
The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
Server This property is required. object
The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
AllowSelfSignedServerCert object
Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
Annotations List<object>
List of tags that can be used for describing the linked service.
AuthSource object
Database to verify the username and password. Type: string (or Expression with resultType string).
AuthenticationType string
The authentication type to be used to connect to the MongoDB database.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EnableSsl object
Specifies whether the connections to the server are encrypted using SSL. The default value is false. Type: boolean (or Expression with resultType boolean).
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
Password for authentication.
Port object
The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
Username object
Username for authentication. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
DatabaseName This property is required. interface{}
The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
Server This property is required. interface{}
The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
AllowSelfSignedServerCert interface{}
Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
Annotations []interface{}
List of tags that can be used for describing the linked service.
AuthSource interface{}
Database to verify the username and password. Type: string (or Expression with resultType string).
AuthenticationType string
The authentication type to be used to connect to the MongoDB database.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EnableSsl interface{}
Specifies whether the connections to the server are encrypted using SSL. The default value is false. Type: boolean (or Expression with resultType boolean).
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password for authentication.
Port interface{}
The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
Username interface{}
Username for authentication. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
databaseName This property is required. Object
The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
server This property is required. Object
The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
allowSelfSignedServerCert Object
Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
annotations List<Object>
List of tags that can be used for describing the linked service.
authSource Object
Database to verify the username and password. Type: string (or Expression with resultType string).
authenticationType String
The authentication type to be used to connect to the MongoDB database.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
enableSsl Object
Specifies whether the connections to the server are encrypted using SSL. The default value is false. Type: boolean (or Expression with resultType boolean).
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password for authentication.
port Object
The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
username Object
Username for authentication. Type: string (or Expression with resultType string).
version String
Version of the linked service.
databaseName This property is required. any
The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
server This property is required. any
The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
allowSelfSignedServerCert any
Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
annotations any[]
List of tags that can be used for describing the linked service.
authSource any
Database to verify the username and password. Type: string (or Expression with resultType string).
authenticationType string
The authentication type to be used to connect to the MongoDB database.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
enableSsl any
Specifies whether the connections to the server are encrypted using SSL. The default value is false. Type: boolean (or Expression with resultType boolean).
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password for authentication.
port any
The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
username any
Username for authentication. Type: string (or Expression with resultType string).
version string
Version of the linked service.
database_name This property is required. Any
The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
server This property is required. Any
The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
allow_self_signed_server_cert Any
Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
auth_source Any
Database to verify the username and password. Type: string (or Expression with resultType string).
authentication_type str
The authentication type to be used to connect to the MongoDB database.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
enable_ssl Any
Specifies whether the connections to the server are encrypted using SSL. The default value is false. Type: boolean (or Expression with resultType boolean).
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password for authentication.
port Any
The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
username Any
Username for authentication. Type: string (or Expression with resultType string).
version str
Version of the linked service.
databaseName This property is required. Any
The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
server This property is required. Any
The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
allowSelfSignedServerCert Any
Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
annotations List<Any>
List of tags that can be used for describing the linked service.
authSource Any
Database to verify the username and password. Type: string (or Expression with resultType string).
authenticationType String
The authentication type to be used to connect to the MongoDB database.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
enableSsl Any
Specifies whether the connections to the server are encrypted using SSL. The default value is false. Type: boolean (or Expression with resultType boolean).
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
Password for authentication.
port Any
The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
username Any
Username for authentication. Type: string (or Expression with resultType string).
version String
Version of the linked service.

MongoDbV2LinkedService
, MongoDbV2LinkedServiceArgs

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

MongoDbV2LinkedServiceResponse
, MongoDbV2LinkedServiceResponseArgs

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

MySqlLinkedService
, MySqlLinkedServiceArgs

AllowZeroDateTime object
This allows the special “zero” date value 0000-00-00 to be retrieved from the database. Type: boolean.
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
ConnectionString object
The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
ConnectionTimeout object
The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error. Type: integer.
ConvertZeroDateTime object
True to return DateTime.MinValue for date or datetime columns that have disallowed values. Type: boolean.
Database object
Database name for connection. Type: string.
Description string
Linked service description.
DriverVersion object
The version of the MySQL driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
GuidFormat object
Determines which column type (if any) should be read as a GUID. Type: string. None: No column types are automatically read as a Guid; Char36: All CHAR(36) columns are read/written as a Guid using lowercase hex with hyphens, which matches UUID.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference
The Azure key vault secret reference of password in connection string.
Port object
The port for the connection. Type: integer.
Server object
Server name for connection. Type: string.
SslCert object
The path to the client’s SSL certificate file in PEM format. SslKey must also be specified. Type: string.
SslKey object
The path to the client’s SSL private key in PEM format. SslCert must also be specified. Type: string.
SslMode object
SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full.
TreatTinyAsBoolean object
When set to true, TINYINT(1) values are returned as booleans. Type: bool.
UseSystemTrustStore object
Use system trust store for connection. Type: integer. 0: enable, 1: disable.
Username object
Username for authentication. Type: string.
Version string
Version of the linked service.
AllowZeroDateTime interface{}
This allows the special “zero” date value 0000-00-00 to be retrieved from the database. Type: boolean.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
ConnectionString interface{}
The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
ConnectionTimeout interface{}
The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error. Type: integer.
ConvertZeroDateTime interface{}
True to return DateTime.MinValue for date or datetime columns that have disallowed values. Type: boolean.
Database interface{}
Database name for connection. Type: string.
Description string
Linked service description.
DriverVersion interface{}
The version of the MySQL driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
GuidFormat interface{}
Determines which column type (if any) should be read as a GUID. Type: string. None: No column types are automatically read as a Guid; Char36: All CHAR(36) columns are read/written as a Guid using lowercase hex with hyphens, which matches UUID.
Parameters map[string]ParameterSpecification
Parameters for linked service.
Password AzureKeyVaultSecretReference
The Azure key vault secret reference of password in connection string.
Port interface{}
The port for the connection. Type: integer.
Server interface{}
Server name for connection. Type: string.
SslCert interface{}
The path to the client’s SSL certificate file in PEM format. SslKey must also be specified. Type: string.
SslKey interface{}
The path to the client’s SSL private key in PEM format. SslCert must also be specified. Type: string.
SslMode interface{}
SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full.
TreatTinyAsBoolean interface{}
When set to true, TINYINT(1) values are returned as booleans. Type: bool.
UseSystemTrustStore interface{}
Use system trust store for connection. Type: integer. 0: enable, 1: disable.
Username interface{}
Username for authentication. Type: string.
Version string
Version of the linked service.
allowZeroDateTime Object
This allows the special “zero” date value 0000-00-00 to be retrieved from the database. Type: boolean.
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
connectionString Object
The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
connectionTimeout Object
The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error. Type: integer.
convertZeroDateTime Object
True to return DateTime.MinValue for date or datetime columns that have disallowed values. Type: boolean.
database Object
Database name for connection. Type: string.
description String
Linked service description.
driverVersion Object
The version of the MySQL driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
guidFormat Object
Determines which column type (if any) should be read as a GUID. Type: string. None: No column types are automatically read as a Guid; Char36: All CHAR(36) columns are read/written as a Guid using lowercase hex with hyphens, which matches UUID.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
password AzureKeyVaultSecretReference
The Azure key vault secret reference of password in connection string.
port Object
The port for the connection. Type: integer.
server Object
Server name for connection. Type: string.
sslCert Object
The path to the client’s SSL certificate file in PEM format. SslKey must also be specified. Type: string.
sslKey Object
The path to the client’s SSL private key in PEM format. SslCert must also be specified. Type: string.
sslMode Object
SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full.
treatTinyAsBoolean Object
When set to true, TINYINT(1) values are returned as booleans. Type: bool.
useSystemTrustStore Object
Use system trust store for connection. Type: integer. 0: enable, 1: disable.
username Object
Username for authentication. Type: string.
version String
Version of the linked service.
allowZeroDateTime any
This allows the special “zero” date value 0000-00-00 to be retrieved from the database. Type: boolean.
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
connectionString any
The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
connectionTimeout any
The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error. Type: integer.
convertZeroDateTime any
True to return DateTime.MinValue for date or datetime columns that have disallowed values. Type: boolean.
database any
Database name for connection. Type: string.
description string
Linked service description.
driverVersion any
The version of the MySQL driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
guidFormat any
Determines which column type (if any) should be read as a GUID. Type: string. None: No column types are automatically read as a Guid; Char36: All CHAR(36) columns are read/written as a Guid using lowercase hex with hyphens, which matches UUID.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
password AzureKeyVaultSecretReference
The Azure key vault secret reference of password in connection string.
port any
The port for the connection. Type: integer.
server any
Server name for connection. Type: string.
sslCert any
The path to the client’s SSL certificate file in PEM format. SslKey must also be specified. Type: string.
sslKey any
The path to the client’s SSL private key in PEM format. SslCert must also be specified. Type: string.
sslMode any
SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full.
treatTinyAsBoolean any
When set to true, TINYINT(1) values are returned as booleans. Type: bool.
useSystemTrustStore any
Use system trust store for connection. Type: integer. 0: enable, 1: disable.
username any
Username for authentication. Type: string.
version string
Version of the linked service.
allow_zero_date_time Any
This allows the special “zero” date value 0000-00-00 to be retrieved from the database. Type: boolean.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReference
The integration runtime reference.
connection_string Any
The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
connection_timeout Any
The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error. Type: integer.
convert_zero_date_time Any
True to return DateTime.MinValue for date or datetime columns that have disallowed values. Type: boolean.
database Any
Database name for connection. Type: string.
description str
Linked service description.
driver_version Any
The version of the MySQL driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
guid_format Any
Determines which column type (if any) should be read as a GUID. Type: string. None: No column types are automatically read as a Guid; Char36: All CHAR(36) columns are read/written as a Guid using lowercase hex with hyphens, which matches UUID.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
password AzureKeyVaultSecretReference
The Azure key vault secret reference of password in connection string.
port Any
The port for the connection. Type: integer.
server Any
Server name for connection. Type: string.
ssl_cert Any
The path to the client’s SSL certificate file in PEM format. SslKey must also be specified. Type: string.
ssl_key Any
The path to the client’s SSL private key in PEM format. SslCert must also be specified. Type: string.
ssl_mode Any
SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full.
treat_tiny_as_boolean Any
When set to true, TINYINT(1) values are returned as booleans. Type: bool.
use_system_trust_store Any
Use system trust store for connection. Type: integer. 0: enable, 1: disable.
username Any
Username for authentication. Type: string.
version str
Version of the linked service.
allowZeroDateTime Any
This allows the special “zero” date value 0000-00-00 to be retrieved from the database. Type: boolean.
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
connectionString Any
The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
connectionTimeout Any
The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error. Type: integer.
convertZeroDateTime Any
True to return DateTime.MinValue for date or datetime columns that have disallowed values. Type: boolean.
database Any
Database name for connection. Type: string.
description String
Linked service description.
driverVersion Any
The version of the MySQL driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
guidFormat Any
Determines which column type (if any) should be read as a GUID. Type: string. None: No column types are automatically read as a Guid; Char36: All CHAR(36) columns are read/written as a Guid using lowercase hex with hyphens, which matches UUID.
parameters Map<Property Map>
Parameters for linked service.
password Property Map
The Azure key vault secret reference of password in connection string.
port Any
The port for the connection. Type: integer.
server Any
Server name for connection. Type: string.
sslCert Any
The path to the client’s SSL certificate file in PEM format. SslKey must also be specified. Type: string.
sslKey Any
The path to the client’s SSL private key in PEM format. SslCert must also be specified. Type: string.
sslMode Any
SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full.
treatTinyAsBoolean Any
When set to true, TINYINT(1) values are returned as booleans. Type: bool.
useSystemTrustStore Any
Use system trust store for connection. Type: integer. 0: enable, 1: disable.
username Any
Username for authentication. Type: string.
version String
Version of the linked service.

MySqlLinkedServiceResponse
, MySqlLinkedServiceResponseArgs

AllowZeroDateTime object
This allows the special “zero” date value 0000-00-00 to be retrieved from the database. Type: boolean.
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
ConnectionString object
The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
ConnectionTimeout object
The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error. Type: integer.
ConvertZeroDateTime object
True to return DateTime.MinValue for date or datetime columns that have disallowed values. Type: boolean.
Database object
Database name for connection. Type: string.
Description string
Linked service description.
DriverVersion object
The version of the MySQL driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
GuidFormat object
Determines which column type (if any) should be read as a GUID. Type: string. None: No column types are automatically read as a Guid; Char36: All CHAR(36) columns are read/written as a Guid using lowercase hex with hyphens, which matches UUID.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse
The Azure key vault secret reference of password in connection string.
Port object
The port for the connection. Type: integer.
Server object
Server name for connection. Type: string.
SslCert object
The path to the client’s SSL certificate file in PEM format. SslKey must also be specified. Type: string.
SslKey object
The path to the client’s SSL private key in PEM format. SslCert must also be specified. Type: string.
SslMode object
SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full.
TreatTinyAsBoolean object
When set to true, TINYINT(1) values are returned as booleans. Type: bool.
UseSystemTrustStore object
Use system trust store for connection. Type: integer. 0: enable, 1: disable.
Username object
Username for authentication. Type: string.
Version string
Version of the linked service.
AllowZeroDateTime interface{}
This allows the special “zero” date value 0000-00-00 to be retrieved from the database. Type: boolean.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
ConnectionString interface{}
The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
ConnectionTimeout interface{}
The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error. Type: integer.
ConvertZeroDateTime interface{}
True to return DateTime.MinValue for date or datetime columns that have disallowed values. Type: boolean.
Database interface{}
Database name for connection. Type: string.
Description string
Linked service description.
DriverVersion interface{}
The version of the MySQL driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
GuidFormat interface{}
Determines which column type (if any) should be read as a GUID. Type: string. None: No column types are automatically read as a Guid; Char36: All CHAR(36) columns are read/written as a Guid using lowercase hex with hyphens, which matches UUID.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Password AzureKeyVaultSecretReferenceResponse
The Azure key vault secret reference of password in connection string.
Port interface{}
The port for the connection. Type: integer.
Server interface{}
Server name for connection. Type: string.
SslCert interface{}
The path to the client’s SSL certificate file in PEM format. SslKey must also be specified. Type: string.
SslKey interface{}
The path to the client’s SSL private key in PEM format. SslCert must also be specified. Type: string.
SslMode interface{}
SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full.
TreatTinyAsBoolean interface{}
When set to true, TINYINT(1) values are returned as booleans. Type: bool.
UseSystemTrustStore interface{}
Use system trust store for connection. Type: integer. 0: enable, 1: disable.
Username interface{}
Username for authentication. Type: string.
Version string
Version of the linked service.
allowZeroDateTime Object
This allows the special “zero” date value 0000-00-00 to be retrieved from the database. Type: boolean.
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
connectionString Object
The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
connectionTimeout Object
The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error. Type: integer.
convertZeroDateTime Object
True to return DateTime.MinValue for date or datetime columns that have disallowed values. Type: boolean.
database Object
Database name for connection. Type: string.
description String
Linked service description.
driverVersion Object
The version of the MySQL driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
guidFormat Object
Determines which column type (if any) should be read as a GUID. Type: string. None: No column types are automatically read as a Guid; Char36: All CHAR(36) columns are read/written as a Guid using lowercase hex with hyphens, which matches UUID.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse
The Azure key vault secret reference of password in connection string.
port Object
The port for the connection. Type: integer.
server Object
Server name for connection. Type: string.
sslCert Object
The path to the client’s SSL certificate file in PEM format. SslKey must also be specified. Type: string.
sslKey Object
The path to the client’s SSL private key in PEM format. SslCert must also be specified. Type: string.
sslMode Object
SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full.
treatTinyAsBoolean Object
When set to true, TINYINT(1) values are returned as booleans. Type: bool.
useSystemTrustStore Object
Use system trust store for connection. Type: integer. 0: enable, 1: disable.
username Object
Username for authentication. Type: string.
version String
Version of the linked service.
allowZeroDateTime any
This allows the special “zero” date value 0000-00-00 to be retrieved from the database. Type: boolean.
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
connectionString any
The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
connectionTimeout any
The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error. Type: integer.
convertZeroDateTime any
True to return DateTime.MinValue for date or datetime columns that have disallowed values. Type: boolean.
database any
Database name for connection. Type: string.
description string
Linked service description.
driverVersion any
The version of the MySQL driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
guidFormat any
Determines which column type (if any) should be read as a GUID. Type: string. None: No column types are automatically read as a Guid; Char36: All CHAR(36) columns are read/written as a Guid using lowercase hex with hyphens, which matches UUID.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse
The Azure key vault secret reference of password in connection string.
port any
The port for the connection. Type: integer.
server any
Server name for connection. Type: string.
sslCert any
The path to the client’s SSL certificate file in PEM format. SslKey must also be specified. Type: string.
sslKey any
The path to the client’s SSL private key in PEM format. SslCert must also be specified. Type: string.
sslMode any
SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full.
treatTinyAsBoolean any
When set to true, TINYINT(1) values are returned as booleans. Type: bool.
useSystemTrustStore any
Use system trust store for connection. Type: integer. 0: enable, 1: disable.
username any
Username for authentication. Type: string.
version string
Version of the linked service.
allow_zero_date_time Any
This allows the special “zero” date value 0000-00-00 to be retrieved from the database. Type: boolean.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
connection_string Any
The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
connection_timeout Any
The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error. Type: integer.
convert_zero_date_time Any
True to return DateTime.MinValue for date or datetime columns that have disallowed values. Type: boolean.
database Any
Database name for connection. Type: string.
description str
Linked service description.
driver_version Any
The version of the MySQL driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
guid_format Any
Determines which column type (if any) should be read as a GUID. Type: string. None: No column types are automatically read as a Guid; Char36: All CHAR(36) columns are read/written as a Guid using lowercase hex with hyphens, which matches UUID.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse
The Azure key vault secret reference of password in connection string.
port Any
The port for the connection. Type: integer.
server Any
Server name for connection. Type: string.
ssl_cert Any
The path to the client’s SSL certificate file in PEM format. SslKey must also be specified. Type: string.
ssl_key Any
The path to the client’s SSL private key in PEM format. SslCert must also be specified. Type: string.
ssl_mode Any
SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full.
treat_tiny_as_boolean Any
When set to true, TINYINT(1) values are returned as booleans. Type: bool.
use_system_trust_store Any
Use system trust store for connection. Type: integer. 0: enable, 1: disable.
username Any
Username for authentication. Type: string.
version str
Version of the linked service.
allowZeroDateTime Any
This allows the special “zero” date value 0000-00-00 to be retrieved from the database. Type: boolean.
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
connectionString Any
The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
connectionTimeout Any
The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error. Type: integer.
convertZeroDateTime Any
True to return DateTime.MinValue for date or datetime columns that have disallowed values. Type: boolean.
database Any
Database name for connection. Type: string.
description String
Linked service description.
driverVersion Any
The version of the MySQL driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
guidFormat Any
Determines which column type (if any) should be read as a GUID. Type: string. None: No column types are automatically read as a Guid; Char36: All CHAR(36) columns are read/written as a Guid using lowercase hex with hyphens, which matches UUID.
parameters Map<Property Map>
Parameters for linked service.
password Property Map
The Azure key vault secret reference of password in connection string.
port Any
The port for the connection. Type: integer.
server Any
Server name for connection. Type: string.
sslCert Any
The path to the client’s SSL certificate file in PEM format. SslKey must also be specified. Type: string.
sslKey Any
The path to the client’s SSL private key in PEM format. SslCert must also be specified. Type: string.
sslMode Any
SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full.
treatTinyAsBoolean Any
When set to true, TINYINT(1) values are returned as booleans. Type: bool.
useSystemTrustStore Any
Use system trust store for connection. Type: integer. 0: enable, 1: disable.
username Any
Username for authentication. Type: string.
version String
Version of the linked service.

NetezzaLinkedService
, NetezzaLinkedServiceArgs

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

NetezzaLinkedServiceResponse
, NetezzaLinkedServiceResponseArgs

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

ODataAadServicePrincipalCredentialType
, ODataAadServicePrincipalCredentialTypeArgs

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

ODataAuthenticationType
, ODataAuthenticationTypeArgs

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

ODataLinkedService
, ODataLinkedServiceArgs

Url This property is required. object
The URL of the OData service endpoint. Type: string (or Expression with resultType string).
AadResourceId object
Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
AadServicePrincipalCredentialType string | Pulumi.AzureNative.DataFactory.ODataAadServicePrincipalCredentialType
Specify the credential type (key or cert) is used for service principal.
Annotations List<object>
List of tags that can be used for describing the linked service.
AuthHeaders object
The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
AuthenticationType string | Pulumi.AzureNative.DataFactory.ODataAuthenticationType
Type of authentication used to connect to the OData service.
AzureCloudType object
Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
Password of the OData service.
ServicePrincipalEmbeddedCert Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
ServicePrincipalEmbeddedCertPassword Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
ServicePrincipalId object
Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
Tenant object
Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
UserName object
User name of the OData service. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
Url This property is required. interface{}
The URL of the OData service endpoint. Type: string (or Expression with resultType string).
AadResourceId interface{}
Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
AadServicePrincipalCredentialType string | ODataAadServicePrincipalCredentialType
Specify the credential type (key or cert) is used for service principal.
Annotations []interface{}
List of tags that can be used for describing the linked service.
AuthHeaders interface{}
The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
AuthenticationType string | ODataAuthenticationType
Type of authentication used to connect to the OData service.
AzureCloudType interface{}
Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecification
Parameters for linked service.
Password AzureKeyVaultSecretReference | SecureString
Password of the OData service.
ServicePrincipalEmbeddedCert AzureKeyVaultSecretReference | SecureString
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
ServicePrincipalEmbeddedCertPassword AzureKeyVaultSecretReference | SecureString
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
ServicePrincipalId interface{}
Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
ServicePrincipalKey AzureKeyVaultSecretReference | SecureString
Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
Tenant interface{}
Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
UserName interface{}
User name of the OData service. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
url This property is required. Object
The URL of the OData service endpoint. Type: string (or Expression with resultType string).
aadResourceId Object
Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
aadServicePrincipalCredentialType String | ODataAadServicePrincipalCredentialType
Specify the credential type (key or cert) is used for service principal.
annotations List<Object>
List of tags that can be used for describing the linked service.
authHeaders Object
The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
authenticationType String | ODataAuthenticationType
Type of authentication used to connect to the OData service.
azureCloudType Object
Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password of the OData service.
servicePrincipalEmbeddedCert AzureKeyVaultSecretReference | SecureString
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCertPassword AzureKeyVaultSecretReference | SecureString
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
servicePrincipalId Object
Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
servicePrincipalKey AzureKeyVaultSecretReference | SecureString
Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
tenant Object
Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
userName Object
User name of the OData service. Type: string (or Expression with resultType string).
version String
Version of the linked service.
url This property is required. any
The URL of the OData service endpoint. Type: string (or Expression with resultType string).
aadResourceId any
Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
aadServicePrincipalCredentialType string | ODataAadServicePrincipalCredentialType
Specify the credential type (key or cert) is used for service principal.
annotations any[]
List of tags that can be used for describing the linked service.
authHeaders any
The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
authenticationType string | ODataAuthenticationType
Type of authentication used to connect to the OData service.
azureCloudType any
Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password of the OData service.
servicePrincipalEmbeddedCert AzureKeyVaultSecretReference | SecureString
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCertPassword AzureKeyVaultSecretReference | SecureString
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
servicePrincipalId any
Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
servicePrincipalKey AzureKeyVaultSecretReference | SecureString
Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
tenant any
Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
userName any
User name of the OData service. Type: string (or Expression with resultType string).
version string
Version of the linked service.
url This property is required. Any
The URL of the OData service endpoint. Type: string (or Expression with resultType string).
aad_resource_id Any
Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
aad_service_principal_credential_type str | ODataAadServicePrincipalCredentialType
Specify the credential type (key or cert) is used for service principal.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
auth_headers Any
The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
authentication_type str | ODataAuthenticationType
Type of authentication used to connect to the OData service.
azure_cloud_type Any
Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password of the OData service.
service_principal_embedded_cert AzureKeyVaultSecretReference | SecureString
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
service_principal_embedded_cert_password AzureKeyVaultSecretReference | SecureString
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
service_principal_id Any
Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
service_principal_key AzureKeyVaultSecretReference | SecureString
Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
tenant Any
Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
user_name Any
User name of the OData service. Type: string (or Expression with resultType string).
version str
Version of the linked service.
url This property is required. Any
The URL of the OData service endpoint. Type: string (or Expression with resultType string).
aadResourceId Any
Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
aadServicePrincipalCredentialType String | "ServicePrincipalKey" | "ServicePrincipalCert"
Specify the credential type (key or cert) is used for service principal.
annotations List<Any>
List of tags that can be used for describing the linked service.
authHeaders Any
The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
authenticationType String | "Basic" | "Anonymous" | "Windows" | "AadServicePrincipal" | "ManagedServiceIdentity"
Type of authentication used to connect to the OData service.
azureCloudType Any
Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
Password of the OData service.
servicePrincipalEmbeddedCert Property Map | Property Map
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCertPassword Property Map | Property Map
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
servicePrincipalId Any
Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
servicePrincipalKey Property Map | Property Map
Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
tenant Any
Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
userName Any
User name of the OData service. Type: string (or Expression with resultType string).
version String
Version of the linked service.

ODataLinkedServiceResponse
, ODataLinkedServiceResponseArgs

Url This property is required. object
The URL of the OData service endpoint. Type: string (or Expression with resultType string).
AadResourceId object
Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
AadServicePrincipalCredentialType string
Specify the credential type (key or cert) is used for service principal.
Annotations List<object>
List of tags that can be used for describing the linked service.
AuthHeaders object
The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
AuthenticationType string
Type of authentication used to connect to the OData service.
AzureCloudType object
Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
Password of the OData service.
ServicePrincipalEmbeddedCert Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
ServicePrincipalEmbeddedCertPassword Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
ServicePrincipalId object
Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
Tenant object
Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
UserName object
User name of the OData service. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
Url This property is required. interface{}
The URL of the OData service endpoint. Type: string (or Expression with resultType string).
AadResourceId interface{}
Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
AadServicePrincipalCredentialType string
Specify the credential type (key or cert) is used for service principal.
Annotations []interface{}
List of tags that can be used for describing the linked service.
AuthHeaders interface{}
The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
AuthenticationType string
Type of authentication used to connect to the OData service.
AzureCloudType interface{}
Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password of the OData service.
ServicePrincipalEmbeddedCert AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
ServicePrincipalEmbeddedCertPassword AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
ServicePrincipalId interface{}
Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
ServicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
Tenant interface{}
Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
UserName interface{}
User name of the OData service. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
url This property is required. Object
The URL of the OData service endpoint. Type: string (or Expression with resultType string).
aadResourceId Object
Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
aadServicePrincipalCredentialType String
Specify the credential type (key or cert) is used for service principal.
annotations List<Object>
List of tags that can be used for describing the linked service.
authHeaders Object
The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
authenticationType String
Type of authentication used to connect to the OData service.
azureCloudType Object
Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password of the OData service.
servicePrincipalEmbeddedCert AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCertPassword AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
servicePrincipalId Object
Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
tenant Object
Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
userName Object
User name of the OData service. Type: string (or Expression with resultType string).
version String
Version of the linked service.
url This property is required. any
The URL of the OData service endpoint. Type: string (or Expression with resultType string).
aadResourceId any
Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
aadServicePrincipalCredentialType string
Specify the credential type (key or cert) is used for service principal.
annotations any[]
List of tags that can be used for describing the linked service.
authHeaders any
The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
authenticationType string
Type of authentication used to connect to the OData service.
azureCloudType any
Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password of the OData service.
servicePrincipalEmbeddedCert AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCertPassword AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
servicePrincipalId any
Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
tenant any
Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
userName any
User name of the OData service. Type: string (or Expression with resultType string).
version string
Version of the linked service.
url This property is required. Any
The URL of the OData service endpoint. Type: string (or Expression with resultType string).
aad_resource_id Any
Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
aad_service_principal_credential_type str
Specify the credential type (key or cert) is used for service principal.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
auth_headers Any
The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
authentication_type str
Type of authentication used to connect to the OData service.
azure_cloud_type Any
Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password of the OData service.
service_principal_embedded_cert AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
service_principal_embedded_cert_password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
service_principal_id Any
Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
service_principal_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
tenant Any
Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
user_name Any
User name of the OData service. Type: string (or Expression with resultType string).
version str
Version of the linked service.
url This property is required. Any
The URL of the OData service endpoint. Type: string (or Expression with resultType string).
aadResourceId Any
Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
aadServicePrincipalCredentialType String
Specify the credential type (key or cert) is used for service principal.
annotations List<Any>
List of tags that can be used for describing the linked service.
authHeaders Any
The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
authenticationType String
Type of authentication used to connect to the OData service.
azureCloudType Any
Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
Password of the OData service.
servicePrincipalEmbeddedCert Property Map | Property Map
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCertPassword Property Map | Property Map
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
servicePrincipalId Any
Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
servicePrincipalKey Property Map | Property Map
Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
tenant Any
Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
userName Any
User name of the OData service. Type: string (or Expression with resultType string).
version String
Version of the linked service.

OdbcLinkedService
, OdbcLinkedServiceArgs

ConnectionString This property is required. object
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
Annotations List<object>
List of tags that can be used for describing the linked service.
AuthenticationType object
Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Credential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The access credential portion of the connection string specified in driver-specific property-value format.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
Password for Basic authentication.
UserName object
User name for Basic authentication. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
ConnectionString This property is required. interface{}
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
Annotations []interface{}
List of tags that can be used for describing the linked service.
AuthenticationType interface{}
Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Credential AzureKeyVaultSecretReference | SecureString
The access credential portion of the connection string specified in driver-specific property-value format.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecification
Parameters for linked service.
Password AzureKeyVaultSecretReference | SecureString
Password for Basic authentication.
UserName interface{}
User name for Basic authentication. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
connectionString This property is required. Object
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
annotations List<Object>
List of tags that can be used for describing the linked service.
authenticationType Object
Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReference
The integration runtime reference.
credential AzureKeyVaultSecretReference | SecureString
The access credential portion of the connection string specified in driver-specific property-value format.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password for Basic authentication.
userName Object
User name for Basic authentication. Type: string (or Expression with resultType string).
version String
Version of the linked service.
connectionString This property is required. any
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
annotations any[]
List of tags that can be used for describing the linked service.
authenticationType any
Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReference
The integration runtime reference.
credential AzureKeyVaultSecretReference | SecureString
The access credential portion of the connection string specified in driver-specific property-value format.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password for Basic authentication.
userName any
User name for Basic authentication. Type: string (or Expression with resultType string).
version string
Version of the linked service.
connection_string This property is required. Any
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
authentication_type Any
Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
connect_via IntegrationRuntimeReference
The integration runtime reference.
credential AzureKeyVaultSecretReference | SecureString
The access credential portion of the connection string specified in driver-specific property-value format.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password for Basic authentication.
user_name Any
User name for Basic authentication. Type: string (or Expression with resultType string).
version str
Version of the linked service.
connectionString This property is required. Any
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
annotations List<Any>
List of tags that can be used for describing the linked service.
authenticationType Any
Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
connectVia Property Map
The integration runtime reference.
credential Property Map | Property Map
The access credential portion of the connection string specified in driver-specific property-value format.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
Password for Basic authentication.
userName Any
User name for Basic authentication. Type: string (or Expression with resultType string).
version String
Version of the linked service.

OdbcLinkedServiceResponse
, OdbcLinkedServiceResponseArgs

ConnectionString This property is required. object
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
Annotations List<object>
List of tags that can be used for describing the linked service.
AuthenticationType object
Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Credential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The access credential portion of the connection string specified in driver-specific property-value format.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
Password for Basic authentication.
UserName object
User name for Basic authentication. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
ConnectionString This property is required. interface{}
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
Annotations []interface{}
List of tags that can be used for describing the linked service.
AuthenticationType interface{}
Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The access credential portion of the connection string specified in driver-specific property-value format.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password for Basic authentication.
UserName interface{}
User name for Basic authentication. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
connectionString This property is required. Object
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
annotations List<Object>
List of tags that can be used for describing the linked service.
authenticationType Object
Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The access credential portion of the connection string specified in driver-specific property-value format.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password for Basic authentication.
userName Object
User name for Basic authentication. Type: string (or Expression with resultType string).
version String
Version of the linked service.
connectionString This property is required. any
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
annotations any[]
List of tags that can be used for describing the linked service.
authenticationType any
Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The access credential portion of the connection string specified in driver-specific property-value format.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password for Basic authentication.
userName any
User name for Basic authentication. Type: string (or Expression with resultType string).
version string
Version of the linked service.
connection_string This property is required. Any
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
authentication_type Any
Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The access credential portion of the connection string specified in driver-specific property-value format.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password for Basic authentication.
user_name Any
User name for Basic authentication. Type: string (or Expression with resultType string).
version str
Version of the linked service.
connectionString This property is required. Any
The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
annotations List<Any>
List of tags that can be used for describing the linked service.
authenticationType Any
Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
connectVia Property Map
The integration runtime reference.
credential Property Map | Property Map
The access credential portion of the connection string specified in driver-specific property-value format.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
Password for Basic authentication.
userName Any
User name for Basic authentication. Type: string (or Expression with resultType string).
version String
Version of the linked service.

Office365LinkedService
, Office365LinkedServiceArgs

Office365TenantId This property is required. object
Azure tenant ID to which the Office 365 account belongs. Type: string (or Expression with resultType string).
ServicePrincipalId This property is required. object
Specify the application's client ID. Type: string (or Expression with resultType string).
ServicePrincipalKey This property is required. Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
Specify the application's key.
ServicePrincipalTenantId This property is required. object
Specify the tenant information under which your Azure AD web application resides. Type: string (or Expression with resultType string).
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Version string
Version of the linked service.
Office365TenantId This property is required. interface{}
Azure tenant ID to which the Office 365 account belongs. Type: string (or Expression with resultType string).
ServicePrincipalId This property is required. interface{}
Specify the application's client ID. Type: string (or Expression with resultType string).
ServicePrincipalKey This property is required. AzureKeyVaultSecretReference | SecureString
Specify the application's key.
ServicePrincipalTenantId This property is required. interface{}
Specify the tenant information under which your Azure AD web application resides. Type: string (or Expression with resultType string).
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecification
Parameters for linked service.
Version string
Version of the linked service.
office365TenantId This property is required. Object
Azure tenant ID to which the Office 365 account belongs. Type: string (or Expression with resultType string).
servicePrincipalId This property is required. Object
Specify the application's client ID. Type: string (or Expression with resultType string).
servicePrincipalKey This property is required. AzureKeyVaultSecretReference | SecureString
Specify the application's key.
servicePrincipalTenantId This property is required. Object
Specify the tenant information under which your Azure AD web application resides. Type: string (or Expression with resultType string).
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
version String
Version of the linked service.
office365TenantId This property is required. any
Azure tenant ID to which the Office 365 account belongs. Type: string (or Expression with resultType string).
servicePrincipalId This property is required. any
Specify the application's client ID. Type: string (or Expression with resultType string).
servicePrincipalKey This property is required. AzureKeyVaultSecretReference | SecureString
Specify the application's key.
servicePrincipalTenantId This property is required. any
Specify the tenant information under which your Azure AD web application resides. Type: string (or Expression with resultType string).
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
version string
Version of the linked service.
office365_tenant_id This property is required. Any
Azure tenant ID to which the Office 365 account belongs. Type: string (or Expression with resultType string).
service_principal_id This property is required. Any
Specify the application's client ID. Type: string (or Expression with resultType string).
service_principal_key This property is required. AzureKeyVaultSecretReference | SecureString
Specify the application's key.
service_principal_tenant_id This property is required. Any
Specify the tenant information under which your Azure AD web application resides. Type: string (or Expression with resultType string).
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
version str
Version of the linked service.
office365TenantId This property is required. Any
Azure tenant ID to which the Office 365 account belongs. Type: string (or Expression with resultType string).
servicePrincipalId This property is required. Any
Specify the application's client ID. Type: string (or Expression with resultType string).
servicePrincipalKey This property is required. Property Map | Property Map
Specify the application's key.
servicePrincipalTenantId This property is required. Any
Specify the tenant information under which your Azure AD web application resides. Type: string (or Expression with resultType string).
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
version String
Version of the linked service.

Office365LinkedServiceResponse
, Office365LinkedServiceResponseArgs

Office365TenantId This property is required. object
Azure tenant ID to which the Office 365 account belongs. Type: string (or Expression with resultType string).
ServicePrincipalId This property is required. object
Specify the application's client ID. Type: string (or Expression with resultType string).
ServicePrincipalKey This property is required. Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
Specify the application's key.
ServicePrincipalTenantId This property is required. object
Specify the tenant information under which your Azure AD web application resides. Type: string (or Expression with resultType string).
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Version string
Version of the linked service.
Office365TenantId This property is required. interface{}
Azure tenant ID to which the Office 365 account belongs. Type: string (or Expression with resultType string).
ServicePrincipalId This property is required. interface{}
Specify the application's client ID. Type: string (or Expression with resultType string).
ServicePrincipalKey This property is required. AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the application's key.
ServicePrincipalTenantId This property is required. interface{}
Specify the tenant information under which your Azure AD web application resides. Type: string (or Expression with resultType string).
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Version string
Version of the linked service.
office365TenantId This property is required. Object
Azure tenant ID to which the Office 365 account belongs. Type: string (or Expression with resultType string).
servicePrincipalId This property is required. Object
Specify the application's client ID. Type: string (or Expression with resultType string).
servicePrincipalKey This property is required. AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the application's key.
servicePrincipalTenantId This property is required. Object
Specify the tenant information under which your Azure AD web application resides. Type: string (or Expression with resultType string).
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
version String
Version of the linked service.
office365TenantId This property is required. any
Azure tenant ID to which the Office 365 account belongs. Type: string (or Expression with resultType string).
servicePrincipalId This property is required. any
Specify the application's client ID. Type: string (or Expression with resultType string).
servicePrincipalKey This property is required. AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the application's key.
servicePrincipalTenantId This property is required. any
Specify the tenant information under which your Azure AD web application resides. Type: string (or Expression with resultType string).
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
version string
Version of the linked service.
office365_tenant_id This property is required. Any
Azure tenant ID to which the Office 365 account belongs. Type: string (or Expression with resultType string).
service_principal_id This property is required. Any
Specify the application's client ID. Type: string (or Expression with resultType string).
service_principal_key This property is required. AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the application's key.
service_principal_tenant_id This property is required. Any
Specify the tenant information under which your Azure AD web application resides. Type: string (or Expression with resultType string).
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
version str
Version of the linked service.
office365TenantId This property is required. Any
Azure tenant ID to which the Office 365 account belongs. Type: string (or Expression with resultType string).
servicePrincipalId This property is required. Any
Specify the application's client ID. Type: string (or Expression with resultType string).
servicePrincipalKey This property is required. Property Map | Property Map
Specify the application's key.
servicePrincipalTenantId This property is required. Any
Specify the tenant information under which your Azure AD web application resides. Type: string (or Expression with resultType string).
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
version String
Version of the linked service.

OracleCloudStorageLinkedService
, OracleCloudStorageLinkedServiceArgs

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

OracleCloudStorageLinkedServiceResponse
, OracleCloudStorageLinkedServiceResponseArgs

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

OracleLinkedService
, OracleLinkedServiceArgs

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

OracleLinkedServiceResponse
, OracleLinkedServiceResponseArgs

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

OracleServiceCloudLinkedService
, OracleServiceCloudLinkedServiceArgs

Host This property is required. object
The URL of the Oracle Service Cloud instance.
Password This property is required. Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The password corresponding to the user name that you provided in the username key.
Username This property is required. object
The user name that you use to access Oracle Service Cloud server.
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
UseEncryptedEndpoints object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
UseHostVerification object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
UsePeerVerification object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
Version string
Version of the linked service.
Host This property is required. interface{}
The URL of the Oracle Service Cloud instance.
Password This property is required. AzureKeyVaultSecretReference | SecureString
The password corresponding to the user name that you provided in the username key.
Username This property is required. interface{}
The user name that you use to access Oracle Service Cloud server.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecification
Parameters for linked service.
UseEncryptedEndpoints interface{}
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
UseHostVerification interface{}
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
UsePeerVerification interface{}
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
Version string
Version of the linked service.
host This property is required. Object
The URL of the Oracle Service Cloud instance.
password This property is required. AzureKeyVaultSecretReference | SecureString
The password corresponding to the user name that you provided in the username key.
username This property is required. Object
The user name that you use to access Oracle Service Cloud server.
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
useEncryptedEndpoints Object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
useHostVerification Object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
usePeerVerification Object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
version String
Version of the linked service.
host This property is required. any
The URL of the Oracle Service Cloud instance.
password This property is required. AzureKeyVaultSecretReference | SecureString
The password corresponding to the user name that you provided in the username key.
username This property is required. any
The user name that you use to access Oracle Service Cloud server.
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
useEncryptedEndpoints any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
useHostVerification any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
usePeerVerification any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
version string
Version of the linked service.
host This property is required. Any
The URL of the Oracle Service Cloud instance.
password This property is required. AzureKeyVaultSecretReference | SecureString
The password corresponding to the user name that you provided in the username key.
username This property is required. Any
The user name that you use to access Oracle Service Cloud server.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
use_encrypted_endpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
use_host_verification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
use_peer_verification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
version str
Version of the linked service.
host This property is required. Any
The URL of the Oracle Service Cloud instance.
password This property is required. Property Map | Property Map
The password corresponding to the user name that you provided in the username key.
username This property is required. Any
The user name that you use to access Oracle Service Cloud server.
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
useEncryptedEndpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
useHostVerification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
usePeerVerification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
version String
Version of the linked service.

OracleServiceCloudLinkedServiceResponse
, OracleServiceCloudLinkedServiceResponseArgs

Host This property is required. object
The URL of the Oracle Service Cloud instance.
Password This property is required. Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The password corresponding to the user name that you provided in the username key.
Username This property is required. object
The user name that you use to access Oracle Service Cloud server.
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
UseEncryptedEndpoints object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
UseHostVerification object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
UsePeerVerification object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
Version string
Version of the linked service.
Host This property is required. interface{}
The URL of the Oracle Service Cloud instance.
Password This property is required. AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password corresponding to the user name that you provided in the username key.
Username This property is required. interface{}
The user name that you use to access Oracle Service Cloud server.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
UseEncryptedEndpoints interface{}
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
UseHostVerification interface{}
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
UsePeerVerification interface{}
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
Version string
Version of the linked service.
host This property is required. Object
The URL of the Oracle Service Cloud instance.
password This property is required. AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password corresponding to the user name that you provided in the username key.
username This property is required. Object
The user name that you use to access Oracle Service Cloud server.
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
useEncryptedEndpoints Object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
useHostVerification Object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
usePeerVerification Object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
version String
Version of the linked service.
host This property is required. any
The URL of the Oracle Service Cloud instance.
password This property is required. AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password corresponding to the user name that you provided in the username key.
username This property is required. any
The user name that you use to access Oracle Service Cloud server.
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
useEncryptedEndpoints any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
useHostVerification any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
usePeerVerification any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
version string
Version of the linked service.
host This property is required. Any
The URL of the Oracle Service Cloud instance.
password This property is required. AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password corresponding to the user name that you provided in the username key.
username This property is required. Any
The user name that you use to access Oracle Service Cloud server.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
use_encrypted_endpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
use_host_verification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
use_peer_verification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
version str
Version of the linked service.
host This property is required. Any
The URL of the Oracle Service Cloud instance.
password This property is required. Property Map | Property Map
The password corresponding to the user name that you provided in the username key.
username This property is required. Any
The user name that you use to access Oracle Service Cloud server.
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
useEncryptedEndpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
useHostVerification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
usePeerVerification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
version String
Version of the linked service.

ParameterSpecification
, ParameterSpecificationArgs

Type This property is required. string | Pulumi.AzureNative.DataFactory.ParameterType
Parameter type.
DefaultValue object
Default value of parameter.
Type This property is required. string | ParameterType
Parameter type.
DefaultValue interface{}
Default value of parameter.
type This property is required. String | ParameterType
Parameter type.
defaultValue Object
Default value of parameter.
type This property is required. string | ParameterType
Parameter type.
defaultValue any
Default value of parameter.
type This property is required. str | ParameterType
Parameter type.
default_value Any
Default value of parameter.
type This property is required. String | "Object" | "String" | "Int" | "Float" | "Bool" | "Array" | "SecureString"
Parameter type.
defaultValue Any
Default value of parameter.

ParameterSpecificationResponse
, ParameterSpecificationResponseArgs

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

ParameterType
, ParameterTypeArgs

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

PaypalLinkedService
, PaypalLinkedServiceArgs

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

PaypalLinkedServiceResponse
, PaypalLinkedServiceResponseArgs

ClientId This property is required. object
The client ID associated with your PayPal application.
Host This property is required. object
The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
Annotations List<object>
List of tags that can be used for describing the linked service.
ClientSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The client secret associated with your PayPal application.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
UseEncryptedEndpoints object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
ClientId This property is required. interface{}
The client ID associated with your PayPal application.
Host This property is required. interface{}
The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
Annotations []interface{}
List of tags that can be used for describing the linked service.
ClientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret associated with your PayPal application.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
UseEncryptedEndpoints interface{}
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification interface{}
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification interface{}
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
clientId This property is required. Object
The client ID associated with your PayPal application.
host This property is required. Object
The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
annotations List<Object>
List of tags that can be used for describing the linked service.
clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret associated with your PayPal application.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
useEncryptedEndpoints Object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.
clientId This property is required. any
The client ID associated with your PayPal application.
host This property is required. any
The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
annotations any[]
List of tags that can be used for describing the linked service.
clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret associated with your PayPal application.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
useEncryptedEndpoints any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version string
Version of the linked service.
client_id This property is required. Any
The client ID associated with your PayPal application.
host This property is required. Any
The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
client_secret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret associated with your PayPal application.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
use_encrypted_endpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
use_host_verification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
use_peer_verification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version str
Version of the linked service.
clientId This property is required. Any
The client ID associated with your PayPal application.
host This property is required. Any
The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
annotations List<Any>
List of tags that can be used for describing the linked service.
clientSecret Property Map | Property Map
The client secret associated with your PayPal application.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
useEncryptedEndpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.

PhoenixAuthenticationType
, PhoenixAuthenticationTypeArgs

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

PhoenixLinkedService
, PhoenixLinkedServiceArgs

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

PhoenixLinkedServiceResponse
, PhoenixLinkedServiceResponseArgs

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

PostgreSqlLinkedService
, PostgreSqlLinkedServiceArgs

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

PostgreSqlLinkedServiceResponse
, PostgreSqlLinkedServiceResponseArgs

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

PostgreSqlV2LinkedService
, PostgreSqlV2LinkedServiceArgs

AuthenticationType This property is required. object
The authentication type to use. Type: string.
Database This property is required. object
Database name for connection. Type: string.
Server This property is required. object
Server name for connection. Type: string.
SslMode This property is required. object
SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
Username This property is required. object
Username for authentication. Type: string.
Annotations List<object>
List of tags that can be used for describing the linked service.
CommandTimeout object
The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
ConnectionTimeout object
The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
Description string
Linked service description.
Encoding object
Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
LogParameters object
When enabled, parameter values are logged when commands are executed. Type: boolean.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference
The Azure key vault secret reference of password in connection string. Type: string.
Pooling object
Whether connection pooling should be used. Type: boolean.
Port object
The port for the connection. Type: integer.
ReadBufferSize object
Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
Schema object
Sets the schema search path. Type: string.
SslCertificate object
Location of a client certificate to be sent to the server. Type: string.
SslKey object
Location of a client key for a client certificate to be sent to the server. Type: string.
SslPassword object
Password for a key for a client certificate. Type: string.
Timezone object
Gets or sets the session timezone. Type: string.
TrustServerCertificate object
Whether to trust the server certificate without validating it. Type: boolean.
Version string
Version of the linked service.
AuthenticationType This property is required. interface{}
The authentication type to use. Type: string.
Database This property is required. interface{}
Database name for connection. Type: string.
Server This property is required. interface{}
Server name for connection. Type: string.
SslMode This property is required. interface{}
SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
Username This property is required. interface{}
Username for authentication. Type: string.
Annotations []interface{}
List of tags that can be used for describing the linked service.
CommandTimeout interface{}
The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
ConnectionTimeout interface{}
The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
Description string
Linked service description.
Encoding interface{}
Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
LogParameters interface{}
When enabled, parameter values are logged when commands are executed. Type: boolean.
Parameters map[string]ParameterSpecification
Parameters for linked service.
Password AzureKeyVaultSecretReference
The Azure key vault secret reference of password in connection string. Type: string.
Pooling interface{}
Whether connection pooling should be used. Type: boolean.
Port interface{}
The port for the connection. Type: integer.
ReadBufferSize interface{}
Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
Schema interface{}
Sets the schema search path. Type: string.
SslCertificate interface{}
Location of a client certificate to be sent to the server. Type: string.
SslKey interface{}
Location of a client key for a client certificate to be sent to the server. Type: string.
SslPassword interface{}
Password for a key for a client certificate. Type: string.
Timezone interface{}
Gets or sets the session timezone. Type: string.
TrustServerCertificate interface{}
Whether to trust the server certificate without validating it. Type: boolean.
Version string
Version of the linked service.
authenticationType This property is required. Object
The authentication type to use. Type: string.
database This property is required. Object
Database name for connection. Type: string.
server This property is required. Object
Server name for connection. Type: string.
sslMode This property is required. Object
SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
username This property is required. Object
Username for authentication. Type: string.
annotations List<Object>
List of tags that can be used for describing the linked service.
commandTimeout Object
The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
connectVia IntegrationRuntimeReference
The integration runtime reference.
connectionTimeout Object
The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
description String
Linked service description.
encoding Object
Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
logParameters Object
When enabled, parameter values are logged when commands are executed. Type: boolean.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
password AzureKeyVaultSecretReference
The Azure key vault secret reference of password in connection string. Type: string.
pooling Object
Whether connection pooling should be used. Type: boolean.
port Object
The port for the connection. Type: integer.
readBufferSize Object
Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
schema Object
Sets the schema search path. Type: string.
sslCertificate Object
Location of a client certificate to be sent to the server. Type: string.
sslKey Object
Location of a client key for a client certificate to be sent to the server. Type: string.
sslPassword Object
Password for a key for a client certificate. Type: string.
timezone Object
Gets or sets the session timezone. Type: string.
trustServerCertificate Object
Whether to trust the server certificate without validating it. Type: boolean.
version String
Version of the linked service.
authenticationType This property is required. any
The authentication type to use. Type: string.
database This property is required. any
Database name for connection. Type: string.
server This property is required. any
Server name for connection. Type: string.
sslMode This property is required. any
SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
username This property is required. any
Username for authentication. Type: string.
annotations any[]
List of tags that can be used for describing the linked service.
commandTimeout any
The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
connectVia IntegrationRuntimeReference
The integration runtime reference.
connectionTimeout any
The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
description string
Linked service description.
encoding any
Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
logParameters any
When enabled, parameter values are logged when commands are executed. Type: boolean.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
password AzureKeyVaultSecretReference
The Azure key vault secret reference of password in connection string. Type: string.
pooling any
Whether connection pooling should be used. Type: boolean.
port any
The port for the connection. Type: integer.
readBufferSize any
Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
schema any
Sets the schema search path. Type: string.
sslCertificate any
Location of a client certificate to be sent to the server. Type: string.
sslKey any
Location of a client key for a client certificate to be sent to the server. Type: string.
sslPassword any
Password for a key for a client certificate. Type: string.
timezone any
Gets or sets the session timezone. Type: string.
trustServerCertificate any
Whether to trust the server certificate without validating it. Type: boolean.
version string
Version of the linked service.
authentication_type This property is required. Any
The authentication type to use. Type: string.
database This property is required. Any
Database name for connection. Type: string.
server This property is required. Any
Server name for connection. Type: string.
ssl_mode This property is required. Any
SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
username This property is required. Any
Username for authentication. Type: string.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
command_timeout Any
The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
connect_via IntegrationRuntimeReference
The integration runtime reference.
connection_timeout Any
The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
description str
Linked service description.
encoding Any
Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
log_parameters Any
When enabled, parameter values are logged when commands are executed. Type: boolean.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
password AzureKeyVaultSecretReference
The Azure key vault secret reference of password in connection string. Type: string.
pooling Any
Whether connection pooling should be used. Type: boolean.
port Any
The port for the connection. Type: integer.
read_buffer_size Any
Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
schema Any
Sets the schema search path. Type: string.
ssl_certificate Any
Location of a client certificate to be sent to the server. Type: string.
ssl_key Any
Location of a client key for a client certificate to be sent to the server. Type: string.
ssl_password Any
Password for a key for a client certificate. Type: string.
timezone Any
Gets or sets the session timezone. Type: string.
trust_server_certificate Any
Whether to trust the server certificate without validating it. Type: boolean.
version str
Version of the linked service.
authenticationType This property is required. Any
The authentication type to use. Type: string.
database This property is required. Any
Database name for connection. Type: string.
server This property is required. Any
Server name for connection. Type: string.
sslMode This property is required. Any
SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
username This property is required. Any
Username for authentication. Type: string.
annotations List<Any>
List of tags that can be used for describing the linked service.
commandTimeout Any
The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
connectVia Property Map
The integration runtime reference.
connectionTimeout Any
The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
description String
Linked service description.
encoding Any
Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
logParameters Any
When enabled, parameter values are logged when commands are executed. Type: boolean.
parameters Map<Property Map>
Parameters for linked service.
password Property Map
The Azure key vault secret reference of password in connection string. Type: string.
pooling Any
Whether connection pooling should be used. Type: boolean.
port Any
The port for the connection. Type: integer.
readBufferSize Any
Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
schema Any
Sets the schema search path. Type: string.
sslCertificate Any
Location of a client certificate to be sent to the server. Type: string.
sslKey Any
Location of a client key for a client certificate to be sent to the server. Type: string.
sslPassword Any
Password for a key for a client certificate. Type: string.
timezone Any
Gets or sets the session timezone. Type: string.
trustServerCertificate Any
Whether to trust the server certificate without validating it. Type: boolean.
version String
Version of the linked service.

PostgreSqlV2LinkedServiceResponse
, PostgreSqlV2LinkedServiceResponseArgs

AuthenticationType This property is required. object
The authentication type to use. Type: string.
Database This property is required. object
Database name for connection. Type: string.
Server This property is required. object
Server name for connection. Type: string.
SslMode This property is required. object
SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
Username This property is required. object
Username for authentication. Type: string.
Annotations List<object>
List of tags that can be used for describing the linked service.
CommandTimeout object
The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
ConnectionTimeout object
The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
Description string
Linked service description.
Encoding object
Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
LogParameters object
When enabled, parameter values are logged when commands are executed. Type: boolean.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse
The Azure key vault secret reference of password in connection string. Type: string.
Pooling object
Whether connection pooling should be used. Type: boolean.
Port object
The port for the connection. Type: integer.
ReadBufferSize object
Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
Schema object
Sets the schema search path. Type: string.
SslCertificate object
Location of a client certificate to be sent to the server. Type: string.
SslKey object
Location of a client key for a client certificate to be sent to the server. Type: string.
SslPassword object
Password for a key for a client certificate. Type: string.
Timezone object
Gets or sets the session timezone. Type: string.
TrustServerCertificate object
Whether to trust the server certificate without validating it. Type: boolean.
Version string
Version of the linked service.
AuthenticationType This property is required. interface{}
The authentication type to use. Type: string.
Database This property is required. interface{}
Database name for connection. Type: string.
Server This property is required. interface{}
Server name for connection. Type: string.
SslMode This property is required. interface{}
SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
Username This property is required. interface{}
Username for authentication. Type: string.
Annotations []interface{}
List of tags that can be used for describing the linked service.
CommandTimeout interface{}
The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
ConnectionTimeout interface{}
The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
Description string
Linked service description.
Encoding interface{}
Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
LogParameters interface{}
When enabled, parameter values are logged when commands are executed. Type: boolean.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Password AzureKeyVaultSecretReferenceResponse
The Azure key vault secret reference of password in connection string. Type: string.
Pooling interface{}
Whether connection pooling should be used. Type: boolean.
Port interface{}
The port for the connection. Type: integer.
ReadBufferSize interface{}
Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
Schema interface{}
Sets the schema search path. Type: string.
SslCertificate interface{}
Location of a client certificate to be sent to the server. Type: string.
SslKey interface{}
Location of a client key for a client certificate to be sent to the server. Type: string.
SslPassword interface{}
Password for a key for a client certificate. Type: string.
Timezone interface{}
Gets or sets the session timezone. Type: string.
TrustServerCertificate interface{}
Whether to trust the server certificate without validating it. Type: boolean.
Version string
Version of the linked service.
authenticationType This property is required. Object
The authentication type to use. Type: string.
database This property is required. Object
Database name for connection. Type: string.
server This property is required. Object
Server name for connection. Type: string.
sslMode This property is required. Object
SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
username This property is required. Object
Username for authentication. Type: string.
annotations List<Object>
List of tags that can be used for describing the linked service.
commandTimeout Object
The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
connectionTimeout Object
The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
description String
Linked service description.
encoding Object
Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
logParameters Object
When enabled, parameter values are logged when commands are executed. Type: boolean.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse
The Azure key vault secret reference of password in connection string. Type: string.
pooling Object
Whether connection pooling should be used. Type: boolean.
port Object
The port for the connection. Type: integer.
readBufferSize Object
Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
schema Object
Sets the schema search path. Type: string.
sslCertificate Object
Location of a client certificate to be sent to the server. Type: string.
sslKey Object
Location of a client key for a client certificate to be sent to the server. Type: string.
sslPassword Object
Password for a key for a client certificate. Type: string.
timezone Object
Gets or sets the session timezone. Type: string.
trustServerCertificate Object
Whether to trust the server certificate without validating it. Type: boolean.
version String
Version of the linked service.
authenticationType This property is required. any
The authentication type to use. Type: string.
database This property is required. any
Database name for connection. Type: string.
server This property is required. any
Server name for connection. Type: string.
sslMode This property is required. any
SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
username This property is required. any
Username for authentication. Type: string.
annotations any[]
List of tags that can be used for describing the linked service.
commandTimeout any
The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
connectionTimeout any
The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
description string
Linked service description.
encoding any
Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
logParameters any
When enabled, parameter values are logged when commands are executed. Type: boolean.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse
The Azure key vault secret reference of password in connection string. Type: string.
pooling any
Whether connection pooling should be used. Type: boolean.
port any
The port for the connection. Type: integer.
readBufferSize any
Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
schema any
Sets the schema search path. Type: string.
sslCertificate any
Location of a client certificate to be sent to the server. Type: string.
sslKey any
Location of a client key for a client certificate to be sent to the server. Type: string.
sslPassword any
Password for a key for a client certificate. Type: string.
timezone any
Gets or sets the session timezone. Type: string.
trustServerCertificate any
Whether to trust the server certificate without validating it. Type: boolean.
version string
Version of the linked service.
authentication_type This property is required. Any
The authentication type to use. Type: string.
database This property is required. Any
Database name for connection. Type: string.
server This property is required. Any
Server name for connection. Type: string.
ssl_mode This property is required. Any
SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
username This property is required. Any
Username for authentication. Type: string.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
command_timeout Any
The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
connection_timeout Any
The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
description str
Linked service description.
encoding Any
Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
log_parameters Any
When enabled, parameter values are logged when commands are executed. Type: boolean.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse
The Azure key vault secret reference of password in connection string. Type: string.
pooling Any
Whether connection pooling should be used. Type: boolean.
port Any
The port for the connection. Type: integer.
read_buffer_size Any
Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
schema Any
Sets the schema search path. Type: string.
ssl_certificate Any
Location of a client certificate to be sent to the server. Type: string.
ssl_key Any
Location of a client key for a client certificate to be sent to the server. Type: string.
ssl_password Any
Password for a key for a client certificate. Type: string.
timezone Any
Gets or sets the session timezone. Type: string.
trust_server_certificate Any
Whether to trust the server certificate without validating it. Type: boolean.
version str
Version of the linked service.
authenticationType This property is required. Any
The authentication type to use. Type: string.
database This property is required. Any
Database name for connection. Type: string.
server This property is required. Any
Server name for connection. Type: string.
sslMode This property is required. Any
SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
username This property is required. Any
Username for authentication. Type: string.
annotations List<Any>
List of tags that can be used for describing the linked service.
commandTimeout Any
The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
connectVia Property Map
The integration runtime reference.
connectionTimeout Any
The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
description String
Linked service description.
encoding Any
Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
logParameters Any
When enabled, parameter values are logged when commands are executed. Type: boolean.
parameters Map<Property Map>
Parameters for linked service.
password Property Map
The Azure key vault secret reference of password in connection string. Type: string.
pooling Any
Whether connection pooling should be used. Type: boolean.
port Any
The port for the connection. Type: integer.
readBufferSize Any
Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
schema Any
Sets the schema search path. Type: string.
sslCertificate Any
Location of a client certificate to be sent to the server. Type: string.
sslKey Any
Location of a client key for a client certificate to be sent to the server. Type: string.
sslPassword Any
Password for a key for a client certificate. Type: string.
timezone Any
Gets or sets the session timezone. Type: string.
trustServerCertificate Any
Whether to trust the server certificate without validating it. Type: boolean.
version String
Version of the linked service.

PrestoAuthenticationType
, PrestoAuthenticationTypeArgs

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

PrestoLinkedService
, PrestoLinkedServiceArgs

AuthenticationType This property is required. string | Pulumi.AzureNative.DataFactory.PrestoAuthenticationType
The authentication mechanism used to connect to the Presto server.
Catalog This property is required. object
The catalog context for all request against the server.
Host This property is required. object
The IP address or host name of the Presto server. (i.e. 192.168.222.160)
ServerVersion This property is required. object
The version of the Presto server. (i.e. 0.148-t)
AllowHostNameCNMismatch object
Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
AllowSelfSignedServerCert object
Specifies whether to allow self-signed certificates from the server. The default value is false.
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EnableSsl object
Specifies whether the connections to the server are encrypted using SSL. The default value is false.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The password corresponding to the user name.
Port object
The TCP port that the Presto server uses to listen for client connections. The default value is 8080.
TimeZoneID object
The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
TrustedCertPath object
The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
UseSystemTrustStore object
Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
Username object
The user name used to connect to the Presto server.
Version string
Version of the linked service.
AuthenticationType This property is required. string | PrestoAuthenticationType
The authentication mechanism used to connect to the Presto server.
Catalog This property is required. interface{}
The catalog context for all request against the server.
Host This property is required. interface{}
The IP address or host name of the Presto server. (i.e. 192.168.222.160)
ServerVersion This property is required. interface{}
The version of the Presto server. (i.e. 0.148-t)
AllowHostNameCNMismatch interface{}
Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
AllowSelfSignedServerCert interface{}
Specifies whether to allow self-signed certificates from the server. The default value is false.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EnableSsl interface{}
Specifies whether the connections to the server are encrypted using SSL. The default value is false.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecification
Parameters for linked service.
Password AzureKeyVaultSecretReference | SecureString
The password corresponding to the user name.
Port interface{}
The TCP port that the Presto server uses to listen for client connections. The default value is 8080.
TimeZoneID interface{}
The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
TrustedCertPath interface{}
The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
UseSystemTrustStore interface{}
Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
Username interface{}
The user name used to connect to the Presto server.
Version string
Version of the linked service.
authenticationType This property is required. String | PrestoAuthenticationType
The authentication mechanism used to connect to the Presto server.
catalog This property is required. Object
The catalog context for all request against the server.
host This property is required. Object
The IP address or host name of the Presto server. (i.e. 192.168.222.160)
serverVersion This property is required. Object
The version of the Presto server. (i.e. 0.148-t)
allowHostNameCNMismatch Object
Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
allowSelfSignedServerCert Object
Specifies whether to allow self-signed certificates from the server. The default value is false.
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
enableSsl Object
Specifies whether the connections to the server are encrypted using SSL. The default value is false.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password corresponding to the user name.
port Object
The TCP port that the Presto server uses to listen for client connections. The default value is 8080.
timeZoneID Object
The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
trustedCertPath Object
The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
useSystemTrustStore Object
Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
username Object
The user name used to connect to the Presto server.
version String
Version of the linked service.
authenticationType This property is required. string | PrestoAuthenticationType
The authentication mechanism used to connect to the Presto server.
catalog This property is required. any
The catalog context for all request against the server.
host This property is required. any
The IP address or host name of the Presto server. (i.e. 192.168.222.160)
serverVersion This property is required. any
The version of the Presto server. (i.e. 0.148-t)
allowHostNameCNMismatch any
Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
allowSelfSignedServerCert any
Specifies whether to allow self-signed certificates from the server. The default value is false.
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
enableSsl any
Specifies whether the connections to the server are encrypted using SSL. The default value is false.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password corresponding to the user name.
port any
The TCP port that the Presto server uses to listen for client connections. The default value is 8080.
timeZoneID any
The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
trustedCertPath any
The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
useSystemTrustStore any
Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
username any
The user name used to connect to the Presto server.
version string
Version of the linked service.
authentication_type This property is required. str | PrestoAuthenticationType
The authentication mechanism used to connect to the Presto server.
catalog This property is required. Any
The catalog context for all request against the server.
host This property is required. Any
The IP address or host name of the Presto server. (i.e. 192.168.222.160)
server_version This property is required. Any
The version of the Presto server. (i.e. 0.148-t)
allow_host_name_cn_mismatch Any
Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
allow_self_signed_server_cert Any
Specifies whether to allow self-signed certificates from the server. The default value is false.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
enable_ssl Any
Specifies whether the connections to the server are encrypted using SSL. The default value is false.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password corresponding to the user name.
port Any
The TCP port that the Presto server uses to listen for client connections. The default value is 8080.
time_zone_id Any
The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
trusted_cert_path Any
The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
use_system_trust_store Any
Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
username Any
The user name used to connect to the Presto server.
version str
Version of the linked service.
authenticationType This property is required. String | "Anonymous" | "LDAP"
The authentication mechanism used to connect to the Presto server.
catalog This property is required. Any
The catalog context for all request against the server.
host This property is required. Any
The IP address or host name of the Presto server. (i.e. 192.168.222.160)
serverVersion This property is required. Any
The version of the Presto server. (i.e. 0.148-t)
allowHostNameCNMismatch Any
Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
allowSelfSignedServerCert Any
Specifies whether to allow self-signed certificates from the server. The default value is false.
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
enableSsl Any
Specifies whether the connections to the server are encrypted using SSL. The default value is false.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
The password corresponding to the user name.
port Any
The TCP port that the Presto server uses to listen for client connections. The default value is 8080.
timeZoneID Any
The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
trustedCertPath Any
The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
useSystemTrustStore Any
Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
username Any
The user name used to connect to the Presto server.
version String
Version of the linked service.

PrestoLinkedServiceResponse
, PrestoLinkedServiceResponseArgs

AuthenticationType This property is required. string
The authentication mechanism used to connect to the Presto server.
Catalog This property is required. object
The catalog context for all request against the server.
Host This property is required. object
The IP address or host name of the Presto server. (i.e. 192.168.222.160)
ServerVersion This property is required. object
The version of the Presto server. (i.e. 0.148-t)
AllowHostNameCNMismatch object
Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
AllowSelfSignedServerCert object
Specifies whether to allow self-signed certificates from the server. The default value is false.
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EnableSsl object
Specifies whether the connections to the server are encrypted using SSL. The default value is false.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The password corresponding to the user name.
Port object
The TCP port that the Presto server uses to listen for client connections. The default value is 8080.
TimeZoneID object
The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
TrustedCertPath object
The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
UseSystemTrustStore object
Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
Username object
The user name used to connect to the Presto server.
Version string
Version of the linked service.
AuthenticationType This property is required. string
The authentication mechanism used to connect to the Presto server.
Catalog This property is required. interface{}
The catalog context for all request against the server.
Host This property is required. interface{}
The IP address or host name of the Presto server. (i.e. 192.168.222.160)
ServerVersion This property is required. interface{}
The version of the Presto server. (i.e. 0.148-t)
AllowHostNameCNMismatch interface{}
Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
AllowSelfSignedServerCert interface{}
Specifies whether to allow self-signed certificates from the server. The default value is false.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EnableSsl interface{}
Specifies whether the connections to the server are encrypted using SSL. The default value is false.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password corresponding to the user name.
Port interface{}
The TCP port that the Presto server uses to listen for client connections. The default value is 8080.
TimeZoneID interface{}
The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
TrustedCertPath interface{}
The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
UseSystemTrustStore interface{}
Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
Username interface{}
The user name used to connect to the Presto server.
Version string
Version of the linked service.
authenticationType This property is required. String
The authentication mechanism used to connect to the Presto server.
catalog This property is required. Object
The catalog context for all request against the server.
host This property is required. Object
The IP address or host name of the Presto server. (i.e. 192.168.222.160)
serverVersion This property is required. Object
The version of the Presto server. (i.e. 0.148-t)
allowHostNameCNMismatch Object
Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
allowSelfSignedServerCert Object
Specifies whether to allow self-signed certificates from the server. The default value is false.
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
enableSsl Object
Specifies whether the connections to the server are encrypted using SSL. The default value is false.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password corresponding to the user name.
port Object
The TCP port that the Presto server uses to listen for client connections. The default value is 8080.
timeZoneID Object
The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
trustedCertPath Object
The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
useSystemTrustStore Object
Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
username Object
The user name used to connect to the Presto server.
version String
Version of the linked service.
authenticationType This property is required. string
The authentication mechanism used to connect to the Presto server.
catalog This property is required. any
The catalog context for all request against the server.
host This property is required. any
The IP address or host name of the Presto server. (i.e. 192.168.222.160)
serverVersion This property is required. any
The version of the Presto server. (i.e. 0.148-t)
allowHostNameCNMismatch any
Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
allowSelfSignedServerCert any
Specifies whether to allow self-signed certificates from the server. The default value is false.
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
enableSsl any
Specifies whether the connections to the server are encrypted using SSL. The default value is false.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password corresponding to the user name.
port any
The TCP port that the Presto server uses to listen for client connections. The default value is 8080.
timeZoneID any
The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
trustedCertPath any
The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
useSystemTrustStore any
Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
username any
The user name used to connect to the Presto server.
version string
Version of the linked service.
authentication_type This property is required. str
The authentication mechanism used to connect to the Presto server.
catalog This property is required. Any
The catalog context for all request against the server.
host This property is required. Any
The IP address or host name of the Presto server. (i.e. 192.168.222.160)
server_version This property is required. Any
The version of the Presto server. (i.e. 0.148-t)
allow_host_name_cn_mismatch Any
Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
allow_self_signed_server_cert Any
Specifies whether to allow self-signed certificates from the server. The default value is false.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
enable_ssl Any
Specifies whether the connections to the server are encrypted using SSL. The default value is false.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password corresponding to the user name.
port Any
The TCP port that the Presto server uses to listen for client connections. The default value is 8080.
time_zone_id Any
The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
trusted_cert_path Any
The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
use_system_trust_store Any
Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
username Any
The user name used to connect to the Presto server.
version str
Version of the linked service.
authenticationType This property is required. String
The authentication mechanism used to connect to the Presto server.
catalog This property is required. Any
The catalog context for all request against the server.
host This property is required. Any
The IP address or host name of the Presto server. (i.e. 192.168.222.160)
serverVersion This property is required. Any
The version of the Presto server. (i.e. 0.148-t)
allowHostNameCNMismatch Any
Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
allowSelfSignedServerCert Any
Specifies whether to allow self-signed certificates from the server. The default value is false.
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
enableSsl Any
Specifies whether the connections to the server are encrypted using SSL. The default value is false.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
The password corresponding to the user name.
port Any
The TCP port that the Presto server uses to listen for client connections. The default value is 8080.
timeZoneID Any
The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
trustedCertPath Any
The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
useSystemTrustStore Any
Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
username Any
The user name used to connect to the Presto server.
version String
Version of the linked service.

QuickBooksLinkedService
, QuickBooksLinkedServiceArgs

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

QuickBooksLinkedServiceResponse
, QuickBooksLinkedServiceResponseArgs

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

QuickbaseLinkedService
, QuickbaseLinkedServiceArgs

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

QuickbaseLinkedServiceResponse
, QuickbaseLinkedServiceResponseArgs

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

ResponsysLinkedService
, ResponsysLinkedServiceArgs

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

ResponsysLinkedServiceResponse
, ResponsysLinkedServiceResponseArgs

ClientId This property is required. object
The client ID associated with the Responsys application. Type: string (or Expression with resultType string).
Endpoint This property is required. object
The endpoint of the Responsys server.
Annotations List<object>
List of tags that can be used for describing the linked service.
ClientSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The client secret associated with the Responsys application. Type: string (or Expression with resultType string).
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
UseEncryptedEndpoints object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
UseHostVerification object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
UsePeerVerification object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
Version string
Version of the linked service.
ClientId This property is required. interface{}
The client ID associated with the Responsys application. Type: string (or Expression with resultType string).
Endpoint This property is required. interface{}
The endpoint of the Responsys server.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ClientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret associated with the Responsys application. Type: string (or Expression with resultType string).
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
UseEncryptedEndpoints interface{}
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
UseHostVerification interface{}
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
UsePeerVerification interface{}
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
Version string
Version of the linked service.
clientId This property is required. Object
The client ID associated with the Responsys application. Type: string (or Expression with resultType string).
endpoint This property is required. Object
The endpoint of the Responsys server.
annotations List<Object>
List of tags that can be used for describing the linked service.
clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret associated with the Responsys application. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
useEncryptedEndpoints Object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
useHostVerification Object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
usePeerVerification Object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
version String
Version of the linked service.
clientId This property is required. any
The client ID associated with the Responsys application. Type: string (or Expression with resultType string).
endpoint This property is required. any
The endpoint of the Responsys server.
annotations any[]
List of tags that can be used for describing the linked service.
clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret associated with the Responsys application. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
useEncryptedEndpoints any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
useHostVerification any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
usePeerVerification any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
version string
Version of the linked service.
client_id This property is required. Any
The client ID associated with the Responsys application. Type: string (or Expression with resultType string).
endpoint This property is required. Any
The endpoint of the Responsys server.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
client_secret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret associated with the Responsys application. Type: string (or Expression with resultType string).
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
use_encrypted_endpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
use_host_verification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
use_peer_verification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
version str
Version of the linked service.
clientId This property is required. Any
The client ID associated with the Responsys application. Type: string (or Expression with resultType string).
endpoint This property is required. Any
The endpoint of the Responsys server.
annotations List<Any>
List of tags that can be used for describing the linked service.
clientSecret Property Map | Property Map
The client secret associated with the Responsys application. Type: string (or Expression with resultType string).
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
useEncryptedEndpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
useHostVerification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
usePeerVerification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
version String
Version of the linked service.

RestServiceAuthenticationType
, RestServiceAuthenticationTypeArgs

Anonymous
Anonymous
Basic
Basic
AadServicePrincipal
AadServicePrincipal
ManagedServiceIdentity
ManagedServiceIdentity
OAuth2ClientCredential
OAuth2ClientCredential
RestServiceAuthenticationTypeAnonymous
Anonymous
RestServiceAuthenticationTypeBasic
Basic
RestServiceAuthenticationTypeAadServicePrincipal
AadServicePrincipal
RestServiceAuthenticationTypeManagedServiceIdentity
ManagedServiceIdentity
RestServiceAuthenticationTypeOAuth2ClientCredential
OAuth2ClientCredential
Anonymous
Anonymous
Basic
Basic
AadServicePrincipal
AadServicePrincipal
ManagedServiceIdentity
ManagedServiceIdentity
OAuth2ClientCredential
OAuth2ClientCredential
Anonymous
Anonymous
Basic
Basic
AadServicePrincipal
AadServicePrincipal
ManagedServiceIdentity
ManagedServiceIdentity
OAuth2ClientCredential
OAuth2ClientCredential
ANONYMOUS
Anonymous
BASIC
Basic
AAD_SERVICE_PRINCIPAL
AadServicePrincipal
MANAGED_SERVICE_IDENTITY
ManagedServiceIdentity
O_AUTH2_CLIENT_CREDENTIAL
OAuth2ClientCredential
"Anonymous"
Anonymous
"Basic"
Basic
"AadServicePrincipal"
AadServicePrincipal
"ManagedServiceIdentity"
ManagedServiceIdentity
"OAuth2ClientCredential"
OAuth2ClientCredential

RestServiceLinkedService
, RestServiceLinkedServiceArgs

AuthenticationType This property is required. string | Pulumi.AzureNative.DataFactory.RestServiceAuthenticationType
Type of authentication used to connect to the REST service.
Url This property is required. object
The base URL of the REST service. Type: string (or Expression with resultType string).
AadResourceId object
The resource you are requesting authorization to use. Type: string (or Expression with resultType string).
Annotations List<object>
List of tags that can be used for describing the linked service.
AuthHeaders object
The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
AzureCloudType object
Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
ClientId object
The client ID associated with your application. Type: string (or Expression with resultType string).
ClientSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The client secret associated with your application.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReference
The credential reference containing authentication information.
Description string
Linked service description.
EnableServerCertificateValidation object
Whether to validate server side SSL certificate when connecting to the endpoint.The default value is true. Type: boolean (or Expression with resultType boolean).
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The password used in Basic authentication type.
Resource object
The target service or resource to which the access will be requested. Type: string (or Expression with resultType string).
Scope object
The scope of the access required. It describes what kind of access will be requested. Type: string (or Expression with resultType string).
ServicePrincipalCredentialType object
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
ServicePrincipalEmbeddedCert Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
ServicePrincipalEmbeddedCertPassword Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
ServicePrincipalId object
The application's client ID used in AadServicePrincipal authentication type. Type: string (or Expression with resultType string).
ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The application's key used in AadServicePrincipal authentication type.
Tenant object
The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. Type: string (or Expression with resultType string).
TokenEndpoint object
The token endpoint of the authorization server to acquire access token. Type: string (or Expression with resultType string).
UserName object
The user name used in Basic authentication type. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
AuthenticationType This property is required. string | RestServiceAuthenticationType
Type of authentication used to connect to the REST service.
Url This property is required. interface{}
The base URL of the REST service. Type: string (or Expression with resultType string).
AadResourceId interface{}
The resource you are requesting authorization to use. Type: string (or Expression with resultType string).
Annotations []interface{}
List of tags that can be used for describing the linked service.
AuthHeaders interface{}
The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
AzureCloudType interface{}
Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
ClientId interface{}
The client ID associated with your application. Type: string (or Expression with resultType string).
ClientSecret AzureKeyVaultSecretReference | SecureString
The client secret associated with your application.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Credential CredentialReference
The credential reference containing authentication information.
Description string
Linked service description.
EnableServerCertificateValidation interface{}
Whether to validate server side SSL certificate when connecting to the endpoint.The default value is true. Type: boolean (or Expression with resultType boolean).
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecification
Parameters for linked service.
Password AzureKeyVaultSecretReference | SecureString
The password used in Basic authentication type.
Resource interface{}
The target service or resource to which the access will be requested. Type: string (or Expression with resultType string).
Scope interface{}
The scope of the access required. It describes what kind of access will be requested. Type: string (or Expression with resultType string).
ServicePrincipalCredentialType interface{}
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
ServicePrincipalEmbeddedCert AzureKeyVaultSecretReference | SecureString
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
ServicePrincipalEmbeddedCertPassword AzureKeyVaultSecretReference | SecureString
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
ServicePrincipalId interface{}
The application's client ID used in AadServicePrincipal authentication type. Type: string (or Expression with resultType string).
ServicePrincipalKey AzureKeyVaultSecretReference | SecureString
The application's key used in AadServicePrincipal authentication type.
Tenant interface{}
The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. Type: string (or Expression with resultType string).
TokenEndpoint interface{}
The token endpoint of the authorization server to acquire access token. Type: string (or Expression with resultType string).
UserName interface{}
The user name used in Basic authentication type. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
authenticationType This property is required. String | RestServiceAuthenticationType
Type of authentication used to connect to the REST service.
url This property is required. Object
The base URL of the REST service. Type: string (or Expression with resultType string).
aadResourceId Object
The resource you are requesting authorization to use. Type: string (or Expression with resultType string).
annotations List<Object>
List of tags that can be used for describing the linked service.
authHeaders Object
The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
azureCloudType Object
Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
clientId Object
The client ID associated with your application. Type: string (or Expression with resultType string).
clientSecret AzureKeyVaultSecretReference | SecureString
The client secret associated with your application.
connectVia IntegrationRuntimeReference
The integration runtime reference.
credential CredentialReference
The credential reference containing authentication information.
description String
Linked service description.
enableServerCertificateValidation Object
Whether to validate server side SSL certificate when connecting to the endpoint.The default value is true. Type: boolean (or Expression with resultType boolean).
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password used in Basic authentication type.
resource Object
The target service or resource to which the access will be requested. Type: string (or Expression with resultType string).
scope Object
The scope of the access required. It describes what kind of access will be requested. Type: string (or Expression with resultType string).
servicePrincipalCredentialType Object
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCert AzureKeyVaultSecretReference | SecureString
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCertPassword AzureKeyVaultSecretReference | SecureString
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
servicePrincipalId Object
The application's client ID used in AadServicePrincipal authentication type. Type: string (or Expression with resultType string).
servicePrincipalKey AzureKeyVaultSecretReference | SecureString
The application's key used in AadServicePrincipal authentication type.
tenant Object
The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. Type: string (or Expression with resultType string).
tokenEndpoint Object
The token endpoint of the authorization server to acquire access token. Type: string (or Expression with resultType string).
userName Object
The user name used in Basic authentication type. Type: string (or Expression with resultType string).
version String
Version of the linked service.
authenticationType This property is required. string | RestServiceAuthenticationType
Type of authentication used to connect to the REST service.
url This property is required. any
The base URL of the REST service. Type: string (or Expression with resultType string).
aadResourceId any
The resource you are requesting authorization to use. Type: string (or Expression with resultType string).
annotations any[]
List of tags that can be used for describing the linked service.
authHeaders any
The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
azureCloudType any
Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
clientId any
The client ID associated with your application. Type: string (or Expression with resultType string).
clientSecret AzureKeyVaultSecretReference | SecureString
The client secret associated with your application.
connectVia IntegrationRuntimeReference
The integration runtime reference.
credential CredentialReference
The credential reference containing authentication information.
description string
Linked service description.
enableServerCertificateValidation any
Whether to validate server side SSL certificate when connecting to the endpoint.The default value is true. Type: boolean (or Expression with resultType boolean).
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password used in Basic authentication type.
resource any
The target service or resource to which the access will be requested. Type: string (or Expression with resultType string).
scope any
The scope of the access required. It describes what kind of access will be requested. Type: string (or Expression with resultType string).
servicePrincipalCredentialType any
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCert AzureKeyVaultSecretReference | SecureString
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCertPassword AzureKeyVaultSecretReference | SecureString
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
servicePrincipalId any
The application's client ID used in AadServicePrincipal authentication type. Type: string (or Expression with resultType string).
servicePrincipalKey AzureKeyVaultSecretReference | SecureString
The application's key used in AadServicePrincipal authentication type.
tenant any
The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. Type: string (or Expression with resultType string).
tokenEndpoint any
The token endpoint of the authorization server to acquire access token. Type: string (or Expression with resultType string).
userName any
The user name used in Basic authentication type. Type: string (or Expression with resultType string).
version string
Version of the linked service.
authentication_type This property is required. str | RestServiceAuthenticationType
Type of authentication used to connect to the REST service.
url This property is required. Any
The base URL of the REST service. Type: string (or Expression with resultType string).
aad_resource_id Any
The resource you are requesting authorization to use. Type: string (or Expression with resultType string).
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
auth_headers Any
The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
azure_cloud_type Any
Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
client_id Any
The client ID associated with your application. Type: string (or Expression with resultType string).
client_secret AzureKeyVaultSecretReference | SecureString
The client secret associated with your application.
connect_via IntegrationRuntimeReference
The integration runtime reference.
credential CredentialReference
The credential reference containing authentication information.
description str
Linked service description.
enable_server_certificate_validation Any
Whether to validate server side SSL certificate when connecting to the endpoint.The default value is true. Type: boolean (or Expression with resultType boolean).
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password used in Basic authentication type.
resource Any
The target service or resource to which the access will be requested. Type: string (or Expression with resultType string).
scope Any
The scope of the access required. It describes what kind of access will be requested. Type: string (or Expression with resultType string).
service_principal_credential_type Any
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
service_principal_embedded_cert AzureKeyVaultSecretReference | SecureString
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
service_principal_embedded_cert_password AzureKeyVaultSecretReference | SecureString
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
service_principal_id Any
The application's client ID used in AadServicePrincipal authentication type. Type: string (or Expression with resultType string).
service_principal_key AzureKeyVaultSecretReference | SecureString
The application's key used in AadServicePrincipal authentication type.
tenant Any
The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. Type: string (or Expression with resultType string).
token_endpoint Any
The token endpoint of the authorization server to acquire access token. Type: string (or Expression with resultType string).
user_name Any
The user name used in Basic authentication type. Type: string (or Expression with resultType string).
version str
Version of the linked service.
authenticationType This property is required. String | "Anonymous" | "Basic" | "AadServicePrincipal" | "ManagedServiceIdentity" | "OAuth2ClientCredential"
Type of authentication used to connect to the REST service.
url This property is required. Any
The base URL of the REST service. Type: string (or Expression with resultType string).
aadResourceId Any
The resource you are requesting authorization to use. Type: string (or Expression with resultType string).
annotations List<Any>
List of tags that can be used for describing the linked service.
authHeaders Any
The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
azureCloudType Any
Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
clientId Any
The client ID associated with your application. Type: string (or Expression with resultType string).
clientSecret Property Map | Property Map
The client secret associated with your application.
connectVia Property Map
The integration runtime reference.
credential Property Map
The credential reference containing authentication information.
description String
Linked service description.
enableServerCertificateValidation Any
Whether to validate server side SSL certificate when connecting to the endpoint.The default value is true. Type: boolean (or Expression with resultType boolean).
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
The password used in Basic authentication type.
resource Any
The target service or resource to which the access will be requested. Type: string (or Expression with resultType string).
scope Any
The scope of the access required. It describes what kind of access will be requested. Type: string (or Expression with resultType string).
servicePrincipalCredentialType Any
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCert Property Map | Property Map
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCertPassword Property Map | Property Map
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
servicePrincipalId Any
The application's client ID used in AadServicePrincipal authentication type. Type: string (or Expression with resultType string).
servicePrincipalKey Property Map | Property Map
The application's key used in AadServicePrincipal authentication type.
tenant Any
The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. Type: string (or Expression with resultType string).
tokenEndpoint Any
The token endpoint of the authorization server to acquire access token. Type: string (or Expression with resultType string).
userName Any
The user name used in Basic authentication type. Type: string (or Expression with resultType string).
version String
Version of the linked service.

RestServiceLinkedServiceResponse
, RestServiceLinkedServiceResponseArgs

AuthenticationType This property is required. string
Type of authentication used to connect to the REST service.
Url This property is required. object
The base URL of the REST service. Type: string (or Expression with resultType string).
AadResourceId object
The resource you are requesting authorization to use. Type: string (or Expression with resultType string).
Annotations List<object>
List of tags that can be used for describing the linked service.
AuthHeaders object
The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
AzureCloudType object
Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
ClientId object
The client ID associated with your application. Type: string (or Expression with resultType string).
ClientSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The client secret associated with your application.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReferenceResponse
The credential reference containing authentication information.
Description string
Linked service description.
EnableServerCertificateValidation object
Whether to validate server side SSL certificate when connecting to the endpoint.The default value is true. Type: boolean (or Expression with resultType boolean).
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The password used in Basic authentication type.
Resource object
The target service or resource to which the access will be requested. Type: string (or Expression with resultType string).
Scope object
The scope of the access required. It describes what kind of access will be requested. Type: string (or Expression with resultType string).
ServicePrincipalCredentialType object
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
ServicePrincipalEmbeddedCert Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
ServicePrincipalEmbeddedCertPassword Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
ServicePrincipalId object
The application's client ID used in AadServicePrincipal authentication type. Type: string (or Expression with resultType string).
ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The application's key used in AadServicePrincipal authentication type.
Tenant object
The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. Type: string (or Expression with resultType string).
TokenEndpoint object
The token endpoint of the authorization server to acquire access token. Type: string (or Expression with resultType string).
UserName object
The user name used in Basic authentication type. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
AuthenticationType This property is required. string
Type of authentication used to connect to the REST service.
Url This property is required. interface{}
The base URL of the REST service. Type: string (or Expression with resultType string).
AadResourceId interface{}
The resource you are requesting authorization to use. Type: string (or Expression with resultType string).
Annotations []interface{}
List of tags that can be used for describing the linked service.
AuthHeaders interface{}
The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
AzureCloudType interface{}
Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
ClientId interface{}
The client ID associated with your application. Type: string (or Expression with resultType string).
ClientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret associated with your application.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Credential CredentialReferenceResponse
The credential reference containing authentication information.
Description string
Linked service description.
EnableServerCertificateValidation interface{}
Whether to validate server side SSL certificate when connecting to the endpoint.The default value is true. Type: boolean (or Expression with resultType boolean).
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password used in Basic authentication type.
Resource interface{}
The target service or resource to which the access will be requested. Type: string (or Expression with resultType string).
Scope interface{}
The scope of the access required. It describes what kind of access will be requested. Type: string (or Expression with resultType string).
ServicePrincipalCredentialType interface{}
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
ServicePrincipalEmbeddedCert AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
ServicePrincipalEmbeddedCertPassword AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
ServicePrincipalId interface{}
The application's client ID used in AadServicePrincipal authentication type. Type: string (or Expression with resultType string).
ServicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The application's key used in AadServicePrincipal authentication type.
Tenant interface{}
The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. Type: string (or Expression with resultType string).
TokenEndpoint interface{}
The token endpoint of the authorization server to acquire access token. Type: string (or Expression with resultType string).
UserName interface{}
The user name used in Basic authentication type. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
authenticationType This property is required. String
Type of authentication used to connect to the REST service.
url This property is required. Object
The base URL of the REST service. Type: string (or Expression with resultType string).
aadResourceId Object
The resource you are requesting authorization to use. Type: string (or Expression with resultType string).
annotations List<Object>
List of tags that can be used for describing the linked service.
authHeaders Object
The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
azureCloudType Object
Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
clientId Object
The client ID associated with your application. Type: string (or Expression with resultType string).
clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret associated with your application.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
credential CredentialReferenceResponse
The credential reference containing authentication information.
description String
Linked service description.
enableServerCertificateValidation Object
Whether to validate server side SSL certificate when connecting to the endpoint.The default value is true. Type: boolean (or Expression with resultType boolean).
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password used in Basic authentication type.
resource Object
The target service or resource to which the access will be requested. Type: string (or Expression with resultType string).
scope Object
The scope of the access required. It describes what kind of access will be requested. Type: string (or Expression with resultType string).
servicePrincipalCredentialType Object
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCert AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCertPassword AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
servicePrincipalId Object
The application's client ID used in AadServicePrincipal authentication type. Type: string (or Expression with resultType string).
servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The application's key used in AadServicePrincipal authentication type.
tenant Object
The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. Type: string (or Expression with resultType string).
tokenEndpoint Object
The token endpoint of the authorization server to acquire access token. Type: string (or Expression with resultType string).
userName Object
The user name used in Basic authentication type. Type: string (or Expression with resultType string).
version String
Version of the linked service.
authenticationType This property is required. string
Type of authentication used to connect to the REST service.
url This property is required. any
The base URL of the REST service. Type: string (or Expression with resultType string).
aadResourceId any
The resource you are requesting authorization to use. Type: string (or Expression with resultType string).
annotations any[]
List of tags that can be used for describing the linked service.
authHeaders any
The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
azureCloudType any
Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
clientId any
The client ID associated with your application. Type: string (or Expression with resultType string).
clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret associated with your application.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
credential CredentialReferenceResponse
The credential reference containing authentication information.
description string
Linked service description.
enableServerCertificateValidation any
Whether to validate server side SSL certificate when connecting to the endpoint.The default value is true. Type: boolean (or Expression with resultType boolean).
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password used in Basic authentication type.
resource any
The target service or resource to which the access will be requested. Type: string (or Expression with resultType string).
scope any
The scope of the access required. It describes what kind of access will be requested. Type: string (or Expression with resultType string).
servicePrincipalCredentialType any
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCert AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCertPassword AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
servicePrincipalId any
The application's client ID used in AadServicePrincipal authentication type. Type: string (or Expression with resultType string).
servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The application's key used in AadServicePrincipal authentication type.
tenant any
The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. Type: string (or Expression with resultType string).
tokenEndpoint any
The token endpoint of the authorization server to acquire access token. Type: string (or Expression with resultType string).
userName any
The user name used in Basic authentication type. Type: string (or Expression with resultType string).
version string
Version of the linked service.
authentication_type This property is required. str
Type of authentication used to connect to the REST service.
url This property is required. Any
The base URL of the REST service. Type: string (or Expression with resultType string).
aad_resource_id Any
The resource you are requesting authorization to use. Type: string (or Expression with resultType string).
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
auth_headers Any
The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
azure_cloud_type Any
Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
client_id Any
The client ID associated with your application. Type: string (or Expression with resultType string).
client_secret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret associated with your application.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
credential CredentialReferenceResponse
The credential reference containing authentication information.
description str
Linked service description.
enable_server_certificate_validation Any
Whether to validate server side SSL certificate when connecting to the endpoint.The default value is true. Type: boolean (or Expression with resultType boolean).
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password used in Basic authentication type.
resource Any
The target service or resource to which the access will be requested. Type: string (or Expression with resultType string).
scope Any
The scope of the access required. It describes what kind of access will be requested. Type: string (or Expression with resultType string).
service_principal_credential_type Any
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
service_principal_embedded_cert AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
service_principal_embedded_cert_password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
service_principal_id Any
The application's client ID used in AadServicePrincipal authentication type. Type: string (or Expression with resultType string).
service_principal_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The application's key used in AadServicePrincipal authentication type.
tenant Any
The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. Type: string (or Expression with resultType string).
token_endpoint Any
The token endpoint of the authorization server to acquire access token. Type: string (or Expression with resultType string).
user_name Any
The user name used in Basic authentication type. Type: string (or Expression with resultType string).
version str
Version of the linked service.
authenticationType This property is required. String
Type of authentication used to connect to the REST service.
url This property is required. Any
The base URL of the REST service. Type: string (or Expression with resultType string).
aadResourceId Any
The resource you are requesting authorization to use. Type: string (or Expression with resultType string).
annotations List<Any>
List of tags that can be used for describing the linked service.
authHeaders Any
The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
azureCloudType Any
Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
clientId Any
The client ID associated with your application. Type: string (or Expression with resultType string).
clientSecret Property Map | Property Map
The client secret associated with your application.
connectVia Property Map
The integration runtime reference.
credential Property Map
The credential reference containing authentication information.
description String
Linked service description.
enableServerCertificateValidation Any
Whether to validate server side SSL certificate when connecting to the endpoint.The default value is true. Type: boolean (or Expression with resultType boolean).
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
The password used in Basic authentication type.
resource Any
The target service or resource to which the access will be requested. Type: string (or Expression with resultType string).
scope Any
The scope of the access required. It describes what kind of access will be requested. Type: string (or Expression with resultType string).
servicePrincipalCredentialType Any
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCert Property Map | Property Map
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCertPassword Property Map | Property Map
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
servicePrincipalId Any
The application's client ID used in AadServicePrincipal authentication type. Type: string (or Expression with resultType string).
servicePrincipalKey Property Map | Property Map
The application's key used in AadServicePrincipal authentication type.
tenant Any
The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. Type: string (or Expression with resultType string).
tokenEndpoint Any
The token endpoint of the authorization server to acquire access token. Type: string (or Expression with resultType string).
userName Any
The user name used in Basic authentication type. Type: string (or Expression with resultType string).
version String
Version of the linked service.

SalesforceLinkedService
, SalesforceLinkedServiceArgs

Annotations List<object>
List of tags that can be used for describing the linked service.
ApiVersion object
The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
EnvironmentUrl object
The URL of Salesforce instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The password for Basic authentication of the Salesforce instance.
SecurityToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The security token is optional to remotely access Salesforce instance.
Username object
The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ApiVersion interface{}
The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
EnvironmentUrl interface{}
The URL of Salesforce instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecification
Parameters for linked service.
Password AzureKeyVaultSecretReference | SecureString
The password for Basic authentication of the Salesforce instance.
SecurityToken AzureKeyVaultSecretReference | SecureString
The security token is optional to remotely access Salesforce instance.
Username interface{}
The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
annotations List<Object>
List of tags that can be used for describing the linked service.
apiVersion Object
The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environmentUrl Object
The URL of Salesforce instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecification>
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password for Basic authentication of the Salesforce instance.
securityToken AzureKeyVaultSecretReference | SecureString
The security token is optional to remotely access Salesforce instance.
username Object
The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
version String
Version of the linked service.
annotations any[]
List of tags that can be used for describing the linked service.
apiVersion any
The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environmentUrl any
The URL of Salesforce instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password for Basic authentication of the Salesforce instance.
securityToken AzureKeyVaultSecretReference | SecureString
The security token is optional to remotely access Salesforce instance.
username any
The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
version string
Version of the linked service.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
api_version Any
The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environment_url Any
The URL of Salesforce instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password for Basic authentication of the Salesforce instance.
security_token AzureKeyVaultSecretReference | SecureString
The security token is optional to remotely access Salesforce instance.
username Any
The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
version str
Version of the linked service.
annotations List<Any>
List of tags that can be used for describing the linked service.
apiVersion Any
The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environmentUrl Any
The URL of Salesforce instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
The password for Basic authentication of the Salesforce instance.
securityToken Property Map | Property Map
The security token is optional to remotely access Salesforce instance.
username Any
The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
version String
Version of the linked service.

SalesforceLinkedServiceResponse
, SalesforceLinkedServiceResponseArgs

Annotations List<object>
List of tags that can be used for describing the linked service.
ApiVersion object
The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
EnvironmentUrl object
The URL of Salesforce instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The password for Basic authentication of the Salesforce instance.
SecurityToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The security token is optional to remotely access Salesforce instance.
Username object
The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ApiVersion interface{}
The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
EnvironmentUrl interface{}
The URL of Salesforce instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password for Basic authentication of the Salesforce instance.
SecurityToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The security token is optional to remotely access Salesforce instance.
Username interface{}
The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
annotations List<Object>
List of tags that can be used for describing the linked service.
apiVersion Object
The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environmentUrl Object
The URL of Salesforce instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password for Basic authentication of the Salesforce instance.
securityToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The security token is optional to remotely access Salesforce instance.
username Object
The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
version String
Version of the linked service.
annotations any[]
List of tags that can be used for describing the linked service.
apiVersion any
The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environmentUrl any
The URL of Salesforce instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password for Basic authentication of the Salesforce instance.
securityToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The security token is optional to remotely access Salesforce instance.
username any
The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
version string
Version of the linked service.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
api_version Any
The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environment_url Any
The URL of Salesforce instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password for Basic authentication of the Salesforce instance.
security_token AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The security token is optional to remotely access Salesforce instance.
username Any
The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
version str
Version of the linked service.
annotations List<Any>
List of tags that can be used for describing the linked service.
apiVersion Any
The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environmentUrl Any
The URL of Salesforce instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
The password for Basic authentication of the Salesforce instance.
securityToken Property Map | Property Map
The security token is optional to remotely access Salesforce instance.
username Any
The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
version String
Version of the linked service.

SalesforceMarketingCloudLinkedService
, SalesforceMarketingCloudLinkedServiceArgs

Annotations List<object>
List of tags that can be used for describing the linked service.
ClientId object
The client ID associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
ClientSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The client secret associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
ConnectionProperties object
Properties used to connect to Salesforce Marketing Cloud. It is mutually exclusive with any other properties in the linked service. Type: object.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
UseEncryptedEndpoints object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
UseHostVerification object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
UsePeerVerification object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
Version string
Version of the linked service.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ClientId interface{}
The client ID associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
ClientSecret AzureKeyVaultSecretReference | SecureString
The client secret associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
ConnectionProperties interface{}
Properties used to connect to Salesforce Marketing Cloud. It is mutually exclusive with any other properties in the linked service. Type: object.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecification
Parameters for linked service.
UseEncryptedEndpoints interface{}
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
UseHostVerification interface{}
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
UsePeerVerification interface{}
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
Version string
Version of the linked service.
annotations List<Object>
List of tags that can be used for describing the linked service.
clientId Object
The client ID associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
clientSecret AzureKeyVaultSecretReference | SecureString
The client secret associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReference
The integration runtime reference.
connectionProperties Object
Properties used to connect to Salesforce Marketing Cloud. It is mutually exclusive with any other properties in the linked service. Type: object.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
useEncryptedEndpoints Object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
useHostVerification Object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
usePeerVerification Object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
version String
Version of the linked service.
annotations any[]
List of tags that can be used for describing the linked service.
clientId any
The client ID associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
clientSecret AzureKeyVaultSecretReference | SecureString
The client secret associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReference
The integration runtime reference.
connectionProperties any
Properties used to connect to Salesforce Marketing Cloud. It is mutually exclusive with any other properties in the linked service. Type: object.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
useEncryptedEndpoints any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
useHostVerification any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
usePeerVerification any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
version string
Version of the linked service.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
client_id Any
The client ID associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
client_secret AzureKeyVaultSecretReference | SecureString
The client secret associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
connect_via IntegrationRuntimeReference
The integration runtime reference.
connection_properties Any
Properties used to connect to Salesforce Marketing Cloud. It is mutually exclusive with any other properties in the linked service. Type: object.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
use_encrypted_endpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
use_host_verification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
use_peer_verification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
version str
Version of the linked service.
annotations List<Any>
List of tags that can be used for describing the linked service.
clientId Any
The client ID associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
clientSecret Property Map | Property Map
The client secret associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
connectVia Property Map
The integration runtime reference.
connectionProperties Any
Properties used to connect to Salesforce Marketing Cloud. It is mutually exclusive with any other properties in the linked service. Type: object.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
useEncryptedEndpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
useHostVerification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
usePeerVerification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
version String
Version of the linked service.

SalesforceMarketingCloudLinkedServiceResponse
, SalesforceMarketingCloudLinkedServiceResponseArgs

Annotations List<object>
List of tags that can be used for describing the linked service.
ClientId object
The client ID associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
ClientSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The client secret associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
ConnectionProperties object
Properties used to connect to Salesforce Marketing Cloud. It is mutually exclusive with any other properties in the linked service. Type: object.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
UseEncryptedEndpoints object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
UseHostVerification object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
UsePeerVerification object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
Version string
Version of the linked service.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ClientId interface{}
The client ID associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
ClientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
ConnectionProperties interface{}
Properties used to connect to Salesforce Marketing Cloud. It is mutually exclusive with any other properties in the linked service. Type: object.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
UseEncryptedEndpoints interface{}
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
UseHostVerification interface{}
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
UsePeerVerification interface{}
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
Version string
Version of the linked service.
annotations List<Object>
List of tags that can be used for describing the linked service.
clientId Object
The client ID associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
connectionProperties Object
Properties used to connect to Salesforce Marketing Cloud. It is mutually exclusive with any other properties in the linked service. Type: object.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
useEncryptedEndpoints Object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
useHostVerification Object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
usePeerVerification Object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
version String
Version of the linked service.
annotations any[]
List of tags that can be used for describing the linked service.
clientId any
The client ID associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
connectionProperties any
Properties used to connect to Salesforce Marketing Cloud. It is mutually exclusive with any other properties in the linked service. Type: object.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
useEncryptedEndpoints any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
useHostVerification any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
usePeerVerification any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
version string
Version of the linked service.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
client_id Any
The client ID associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
client_secret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
connection_properties Any
Properties used to connect to Salesforce Marketing Cloud. It is mutually exclusive with any other properties in the linked service. Type: object.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
use_encrypted_endpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
use_host_verification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
use_peer_verification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
version str
Version of the linked service.
annotations List<Any>
List of tags that can be used for describing the linked service.
clientId Any
The client ID associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
clientSecret Property Map | Property Map
The client secret associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
connectVia Property Map
The integration runtime reference.
connectionProperties Any
Properties used to connect to Salesforce Marketing Cloud. It is mutually exclusive with any other properties in the linked service. Type: object.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
useEncryptedEndpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
useHostVerification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
usePeerVerification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
version String
Version of the linked service.

SalesforceServiceCloudLinkedService
, SalesforceServiceCloudLinkedServiceArgs

Annotations List<object>
List of tags that can be used for describing the linked service.
ApiVersion object
The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
EnvironmentUrl object
The URL of Salesforce Service Cloud instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
ExtendedProperties object
Extended properties appended to the connection string. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The password for Basic authentication of the Salesforce instance.
SecurityToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The security token is optional to remotely access Salesforce instance.
Username object
The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ApiVersion interface{}
The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
EnvironmentUrl interface{}
The URL of Salesforce Service Cloud instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
ExtendedProperties interface{}
Extended properties appended to the connection string. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecification
Parameters for linked service.
Password AzureKeyVaultSecretReference | SecureString
The password for Basic authentication of the Salesforce instance.
SecurityToken AzureKeyVaultSecretReference | SecureString
The security token is optional to remotely access Salesforce instance.
Username interface{}
The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
annotations List<Object>
List of tags that can be used for describing the linked service.
apiVersion Object
The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environmentUrl Object
The URL of Salesforce Service Cloud instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
extendedProperties Object
Extended properties appended to the connection string. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecification>
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password for Basic authentication of the Salesforce instance.
securityToken AzureKeyVaultSecretReference | SecureString
The security token is optional to remotely access Salesforce instance.
username Object
The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
version String
Version of the linked service.
annotations any[]
List of tags that can be used for describing the linked service.
apiVersion any
The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environmentUrl any
The URL of Salesforce Service Cloud instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
extendedProperties any
Extended properties appended to the connection string. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password for Basic authentication of the Salesforce instance.
securityToken AzureKeyVaultSecretReference | SecureString
The security token is optional to remotely access Salesforce instance.
username any
The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
version string
Version of the linked service.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
api_version Any
The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environment_url Any
The URL of Salesforce Service Cloud instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
extended_properties Any
Extended properties appended to the connection string. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password for Basic authentication of the Salesforce instance.
security_token AzureKeyVaultSecretReference | SecureString
The security token is optional to remotely access Salesforce instance.
username Any
The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
version str
Version of the linked service.
annotations List<Any>
List of tags that can be used for describing the linked service.
apiVersion Any
The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environmentUrl Any
The URL of Salesforce Service Cloud instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
extendedProperties Any
Extended properties appended to the connection string. Type: string (or Expression with resultType string).
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
The password for Basic authentication of the Salesforce instance.
securityToken Property Map | Property Map
The security token is optional to remotely access Salesforce instance.
username Any
The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
version String
Version of the linked service.

SalesforceServiceCloudLinkedServiceResponse
, SalesforceServiceCloudLinkedServiceResponseArgs

Annotations List<object>
List of tags that can be used for describing the linked service.
ApiVersion object
The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
EnvironmentUrl object
The URL of Salesforce Service Cloud instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
ExtendedProperties object
Extended properties appended to the connection string. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The password for Basic authentication of the Salesforce instance.
SecurityToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The security token is optional to remotely access Salesforce instance.
Username object
The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ApiVersion interface{}
The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
EnvironmentUrl interface{}
The URL of Salesforce Service Cloud instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
ExtendedProperties interface{}
Extended properties appended to the connection string. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password for Basic authentication of the Salesforce instance.
SecurityToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The security token is optional to remotely access Salesforce instance.
Username interface{}
The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
annotations List<Object>
List of tags that can be used for describing the linked service.
apiVersion Object
The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environmentUrl Object
The URL of Salesforce Service Cloud instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
extendedProperties Object
Extended properties appended to the connection string. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password for Basic authentication of the Salesforce instance.
securityToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The security token is optional to remotely access Salesforce instance.
username Object
The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
version String
Version of the linked service.
annotations any[]
List of tags that can be used for describing the linked service.
apiVersion any
The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environmentUrl any
The URL of Salesforce Service Cloud instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
extendedProperties any
Extended properties appended to the connection string. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password for Basic authentication of the Salesforce instance.
securityToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The security token is optional to remotely access Salesforce instance.
username any
The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
version string
Version of the linked service.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
api_version Any
The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environment_url Any
The URL of Salesforce Service Cloud instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
extended_properties Any
Extended properties appended to the connection string. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password for Basic authentication of the Salesforce instance.
security_token AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The security token is optional to remotely access Salesforce instance.
username Any
The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
version str
Version of the linked service.
annotations List<Any>
List of tags that can be used for describing the linked service.
apiVersion Any
The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environmentUrl Any
The URL of Salesforce Service Cloud instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
extendedProperties Any
Extended properties appended to the connection string. Type: string (or Expression with resultType string).
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
The password for Basic authentication of the Salesforce instance.
securityToken Property Map | Property Map
The security token is optional to remotely access Salesforce instance.
username Any
The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
version String
Version of the linked service.

SalesforceServiceCloudV2LinkedService
, SalesforceServiceCloudV2LinkedServiceArgs

Annotations List<object>
List of tags that can be used for describing the linked service.
ApiVersion object
The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string).
AuthenticationType object
The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value
ClientId object
The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string).
ClientSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The client secret for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
EnvironmentUrl object
The URL of Salesforce Service Cloud instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Version string
Version of the linked service.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ApiVersion interface{}
The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string).
AuthenticationType interface{}
The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value
ClientId interface{}
The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string).
ClientSecret AzureKeyVaultSecretReference | SecureString
The client secret for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
EnvironmentUrl interface{}
The URL of Salesforce Service Cloud instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecification
Parameters for linked service.
Version string
Version of the linked service.
annotations List<Object>
List of tags that can be used for describing the linked service.
apiVersion Object
The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string).
authenticationType Object
The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value
clientId Object
The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string).
clientSecret AzureKeyVaultSecretReference | SecureString
The client secret for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environmentUrl Object
The URL of Salesforce Service Cloud instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecification>
Parameters for linked service.
version String
Version of the linked service.
annotations any[]
List of tags that can be used for describing the linked service.
apiVersion any
The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string).
authenticationType any
The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value
clientId any
The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string).
clientSecret AzureKeyVaultSecretReference | SecureString
The client secret for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environmentUrl any
The URL of Salesforce Service Cloud instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
version string
Version of the linked service.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
api_version Any
The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string).
authentication_type Any
The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value
client_id Any
The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string).
client_secret AzureKeyVaultSecretReference | SecureString
The client secret for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance.
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environment_url Any
The URL of Salesforce Service Cloud instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
version str
Version of the linked service.
annotations List<Any>
List of tags that can be used for describing the linked service.
apiVersion Any
The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string).
authenticationType Any
The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value
clientId Any
The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string).
clientSecret Property Map | Property Map
The client secret for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environmentUrl Any
The URL of Salesforce Service Cloud instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
parameters Map<Property Map>
Parameters for linked service.
version String
Version of the linked service.

SalesforceServiceCloudV2LinkedServiceResponse
, SalesforceServiceCloudV2LinkedServiceResponseArgs

Annotations List<object>
List of tags that can be used for describing the linked service.
ApiVersion object
The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string).
AuthenticationType object
The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value
ClientId object
The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string).
ClientSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The client secret for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
EnvironmentUrl object
The URL of Salesforce Service Cloud instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Version string
Version of the linked service.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ApiVersion interface{}
The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string).
AuthenticationType interface{}
The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value
ClientId interface{}
The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string).
ClientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
EnvironmentUrl interface{}
The URL of Salesforce Service Cloud instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Version string
Version of the linked service.
annotations List<Object>
List of tags that can be used for describing the linked service.
apiVersion Object
The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string).
authenticationType Object
The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value
clientId Object
The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string).
clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environmentUrl Object
The URL of Salesforce Service Cloud instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
version String
Version of the linked service.
annotations any[]
List of tags that can be used for describing the linked service.
apiVersion any
The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string).
authenticationType any
The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value
clientId any
The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string).
clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environmentUrl any
The URL of Salesforce Service Cloud instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
version string
Version of the linked service.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
api_version Any
The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string).
authentication_type Any
The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value
client_id Any
The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string).
client_secret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environment_url Any
The URL of Salesforce Service Cloud instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
version str
Version of the linked service.
annotations List<Any>
List of tags that can be used for describing the linked service.
apiVersion Any
The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string).
authenticationType Any
The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value
clientId Any
The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string).
clientSecret Property Map | Property Map
The client secret for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environmentUrl Any
The URL of Salesforce Service Cloud instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
parameters Map<Property Map>
Parameters for linked service.
version String
Version of the linked service.

SalesforceV2LinkedService
, SalesforceV2LinkedServiceArgs

Annotations List<object>
List of tags that can be used for describing the linked service.
ApiVersion object
The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string).
AuthenticationType object
The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value
ClientId object
The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string).
ClientSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The client secret for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
EnvironmentUrl object
The URL of Salesforce instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Version string
Version of the linked service.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ApiVersion interface{}
The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string).
AuthenticationType interface{}
The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value
ClientId interface{}
The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string).
ClientSecret AzureKeyVaultSecretReference | SecureString
The client secret for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
EnvironmentUrl interface{}
The URL of Salesforce instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecification
Parameters for linked service.
Version string
Version of the linked service.
annotations List<Object>
List of tags that can be used for describing the linked service.
apiVersion Object
The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string).
authenticationType Object
The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value
clientId Object
The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string).
clientSecret AzureKeyVaultSecretReference | SecureString
The client secret for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environmentUrl Object
The URL of Salesforce instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecification>
Parameters for linked service.
version String
Version of the linked service.
annotations any[]
List of tags that can be used for describing the linked service.
apiVersion any
The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string).
authenticationType any
The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value
clientId any
The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string).
clientSecret AzureKeyVaultSecretReference | SecureString
The client secret for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environmentUrl any
The URL of Salesforce instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
version string
Version of the linked service.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
api_version Any
The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string).
authentication_type Any
The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value
client_id Any
The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string).
client_secret AzureKeyVaultSecretReference | SecureString
The client secret for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance.
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environment_url Any
The URL of Salesforce instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
version str
Version of the linked service.
annotations List<Any>
List of tags that can be used for describing the linked service.
apiVersion Any
The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string).
authenticationType Any
The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value
clientId Any
The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string).
clientSecret Property Map | Property Map
The client secret for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environmentUrl Any
The URL of Salesforce instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
parameters Map<Property Map>
Parameters for linked service.
version String
Version of the linked service.

SalesforceV2LinkedServiceResponse
, SalesforceV2LinkedServiceResponseArgs

Annotations List<object>
List of tags that can be used for describing the linked service.
ApiVersion object
The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string).
AuthenticationType object
The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value
ClientId object
The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string).
ClientSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The client secret for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
EnvironmentUrl object
The URL of Salesforce instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Version string
Version of the linked service.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ApiVersion interface{}
The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string).
AuthenticationType interface{}
The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value
ClientId interface{}
The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string).
ClientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
EnvironmentUrl interface{}
The URL of Salesforce instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Version string
Version of the linked service.
annotations List<Object>
List of tags that can be used for describing the linked service.
apiVersion Object
The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string).
authenticationType Object
The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value
clientId Object
The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string).
clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environmentUrl Object
The URL of Salesforce instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
version String
Version of the linked service.
annotations any[]
List of tags that can be used for describing the linked service.
apiVersion any
The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string).
authenticationType any
The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value
clientId any
The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string).
clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environmentUrl any
The URL of Salesforce instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
version string
Version of the linked service.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
api_version Any
The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string).
authentication_type Any
The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value
client_id Any
The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string).
client_secret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environment_url Any
The URL of Salesforce instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
version str
Version of the linked service.
annotations List<Any>
List of tags that can be used for describing the linked service.
apiVersion Any
The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string).
authenticationType Any
The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value
clientId Any
The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string).
clientSecret Property Map | Property Map
The client secret for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
environmentUrl Any
The URL of Salesforce instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
parameters Map<Property Map>
Parameters for linked service.
version String
Version of the linked service.

SapBWLinkedService
, SapBWLinkedServiceArgs

ClientId This property is required. object
Client ID of the client on the BW system. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
Server This property is required. object
Host name of the SAP BW instance. Type: string (or Expression with resultType string).
SystemNumber This property is required. object
System number of the BW system. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
Password to access the SAP BW server.
UserName object
Username to access the SAP BW server. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
ClientId This property is required. interface{}
Client ID of the client on the BW system. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
Server This property is required. interface{}
Host name of the SAP BW instance. Type: string (or Expression with resultType string).
SystemNumber This property is required. interface{}
System number of the BW system. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecification
Parameters for linked service.
Password AzureKeyVaultSecretReference | SecureString
Password to access the SAP BW server.
UserName interface{}
Username to access the SAP BW server. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
clientId This property is required. Object
Client ID of the client on the BW system. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
server This property is required. Object
Host name of the SAP BW instance. Type: string (or Expression with resultType string).
systemNumber This property is required. Object
System number of the BW system. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password to access the SAP BW server.
userName Object
Username to access the SAP BW server. Type: string (or Expression with resultType string).
version String
Version of the linked service.
clientId This property is required. any
Client ID of the client on the BW system. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
server This property is required. any
Host name of the SAP BW instance. Type: string (or Expression with resultType string).
systemNumber This property is required. any
System number of the BW system. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password to access the SAP BW server.
userName any
Username to access the SAP BW server. Type: string (or Expression with resultType string).
version string
Version of the linked service.
client_id This property is required. Any
Client ID of the client on the BW system. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
server This property is required. Any
Host name of the SAP BW instance. Type: string (or Expression with resultType string).
system_number This property is required. Any
System number of the BW system. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password to access the SAP BW server.
user_name Any
Username to access the SAP BW server. Type: string (or Expression with resultType string).
version str
Version of the linked service.
clientId This property is required. Any
Client ID of the client on the BW system. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
server This property is required. Any
Host name of the SAP BW instance. Type: string (or Expression with resultType string).
systemNumber This property is required. Any
System number of the BW system. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
Password to access the SAP BW server.
userName Any
Username to access the SAP BW server. Type: string (or Expression with resultType string).
version String
Version of the linked service.

SapBWLinkedServiceResponse
, SapBWLinkedServiceResponseArgs

ClientId This property is required. object
Client ID of the client on the BW system. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
Server This property is required. object
Host name of the SAP BW instance. Type: string (or Expression with resultType string).
SystemNumber This property is required. object
System number of the BW system. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
Password to access the SAP BW server.
UserName object
Username to access the SAP BW server. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
ClientId This property is required. interface{}
Client ID of the client on the BW system. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
Server This property is required. interface{}
Host name of the SAP BW instance. Type: string (or Expression with resultType string).
SystemNumber This property is required. interface{}
System number of the BW system. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password to access the SAP BW server.
UserName interface{}
Username to access the SAP BW server. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
clientId This property is required. Object
Client ID of the client on the BW system. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
server This property is required. Object
Host name of the SAP BW instance. Type: string (or Expression with resultType string).
systemNumber This property is required. Object
System number of the BW system. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password to access the SAP BW server.
userName Object
Username to access the SAP BW server. Type: string (or Expression with resultType string).
version String
Version of the linked service.
clientId This property is required. any
Client ID of the client on the BW system. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
server This property is required. any
Host name of the SAP BW instance. Type: string (or Expression with resultType string).
systemNumber This property is required. any
System number of the BW system. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password to access the SAP BW server.
userName any
Username to access the SAP BW server. Type: string (or Expression with resultType string).
version string
Version of the linked service.
client_id This property is required. Any
Client ID of the client on the BW system. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
server This property is required. Any
Host name of the SAP BW instance. Type: string (or Expression with resultType string).
system_number This property is required. Any
System number of the BW system. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password to access the SAP BW server.
user_name Any
Username to access the SAP BW server. Type: string (or Expression with resultType string).
version str
Version of the linked service.
clientId This property is required. Any
Client ID of the client on the BW system. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
server This property is required. Any
Host name of the SAP BW instance. Type: string (or Expression with resultType string).
systemNumber This property is required. Any
System number of the BW system. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
Password to access the SAP BW server.
userName Any
Username to access the SAP BW server. Type: string (or Expression with resultType string).
version String
Version of the linked service.

SapCloudForCustomerLinkedService
, SapCloudForCustomerLinkedServiceArgs

Url This property is required. object
The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The password for Basic authentication.
Username object
The username for Basic authentication. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
Url This property is required. interface{}
The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string.
Parameters map[string]ParameterSpecification
Parameters for linked service.
Password AzureKeyVaultSecretReference | SecureString
The password for Basic authentication.
Username interface{}
The username for Basic authentication. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
url This property is required. Object
The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password for Basic authentication.
username Object
The username for Basic authentication. Type: string (or Expression with resultType string).
version String
Version of the linked service.
url This property is required. any
The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password for Basic authentication.
username any
The username for Basic authentication. Type: string (or Expression with resultType string).
version string
Version of the linked service.
url This property is required. Any
The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password for Basic authentication.
username Any
The username for Basic authentication. Type: string (or Expression with resultType string).
version str
Version of the linked service.
url This property is required. Any
The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
The password for Basic authentication.
username Any
The username for Basic authentication. Type: string (or Expression with resultType string).
version String
Version of the linked service.

SapCloudForCustomerLinkedServiceResponse
, SapCloudForCustomerLinkedServiceResponseArgs

Url This property is required. object
The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The password for Basic authentication.
Username object
The username for Basic authentication. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
Url This property is required. interface{}
The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password for Basic authentication.
Username interface{}
The username for Basic authentication. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
url This property is required. Object
The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password for Basic authentication.
username Object
The username for Basic authentication. Type: string (or Expression with resultType string).
version String
Version of the linked service.
url This property is required. any
The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password for Basic authentication.
username any
The username for Basic authentication. Type: string (or Expression with resultType string).
version string
Version of the linked service.
url This property is required. Any
The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password for Basic authentication.
username Any
The username for Basic authentication. Type: string (or Expression with resultType string).
version str
Version of the linked service.
url This property is required. Any
The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
The password for Basic authentication.
username Any
The username for Basic authentication. Type: string (or Expression with resultType string).
version String
Version of the linked service.

SapEccLinkedService
, SapEccLinkedServiceArgs

Url This property is required. object
The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The password for Basic authentication.
Username object
The username for Basic authentication. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
Url This property is required. interface{}
The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string.
Parameters map[string]ParameterSpecification
Parameters for linked service.
Password AzureKeyVaultSecretReference | SecureString
The password for Basic authentication.
Username interface{}
The username for Basic authentication. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
url This property is required. Object
The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password for Basic authentication.
username Object
The username for Basic authentication. Type: string (or Expression with resultType string).
version String
Version of the linked service.
url This property is required. any
The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password for Basic authentication.
username any
The username for Basic authentication. Type: string (or Expression with resultType string).
version string
Version of the linked service.
url This property is required. Any
The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password for Basic authentication.
username Any
The username for Basic authentication. Type: string (or Expression with resultType string).
version str
Version of the linked service.
url This property is required. Any
The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
The password for Basic authentication.
username Any
The username for Basic authentication. Type: string (or Expression with resultType string).
version String
Version of the linked service.

SapEccLinkedServiceResponse
, SapEccLinkedServiceResponseArgs

Url This property is required. object
The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The password for Basic authentication.
Username object
The username for Basic authentication. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
Url This property is required. interface{}
The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password for Basic authentication.
Username interface{}
The username for Basic authentication. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
url This property is required. Object
The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password for Basic authentication.
username Object
The username for Basic authentication. Type: string (or Expression with resultType string).
version String
Version of the linked service.
url This property is required. any
The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password for Basic authentication.
username any
The username for Basic authentication. Type: string (or Expression with resultType string).
version string
Version of the linked service.
url This property is required. Any
The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password for Basic authentication.
username Any
The username for Basic authentication. Type: string (or Expression with resultType string).
version str
Version of the linked service.
url This property is required. Any
The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
The password for Basic authentication.
username Any
The username for Basic authentication. Type: string (or Expression with resultType string).
version String
Version of the linked service.

SapHanaAuthenticationType
, SapHanaAuthenticationTypeArgs

Basic
Basic
Windows
Windows
SapHanaAuthenticationTypeBasic
Basic
SapHanaAuthenticationTypeWindows
Windows
Basic
Basic
Windows
Windows
Basic
Basic
Windows
Windows
BASIC
Basic
WINDOWS
Windows
"Basic"
Basic
"Windows"
Windows

SapHanaLinkedService
, SapHanaLinkedServiceArgs

Annotations List<object>
List of tags that can be used for describing the linked service.
AuthenticationType string | Pulumi.AzureNative.DataFactory.SapHanaAuthenticationType
The authentication type to be used to connect to the SAP HANA server.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
ConnectionString object
SAP HANA ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
Password to access the SAP HANA server.
Server object
Host name of the SAP HANA server. Type: string (or Expression with resultType string).
UserName object
Username to access the SAP HANA server. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
Annotations []interface{}
List of tags that can be used for describing the linked service.
AuthenticationType string | SapHanaAuthenticationType
The authentication type to be used to connect to the SAP HANA server.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
ConnectionString interface{}
SAP HANA ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecification
Parameters for linked service.
Password AzureKeyVaultSecretReference | SecureString
Password to access the SAP HANA server.
Server interface{}
Host name of the SAP HANA server. Type: string (or Expression with resultType string).
UserName interface{}
Username to access the SAP HANA server. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
annotations List<Object>
List of tags that can be used for describing the linked service.
authenticationType String | SapHanaAuthenticationType
The authentication type to be used to connect to the SAP HANA server.
connectVia IntegrationRuntimeReference
The integration runtime reference.
connectionString Object
SAP HANA ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password to access the SAP HANA server.
server Object
Host name of the SAP HANA server. Type: string (or Expression with resultType string).
userName Object
Username to access the SAP HANA server. Type: string (or Expression with resultType string).
version String
Version of the linked service.
annotations any[]
List of tags that can be used for describing the linked service.
authenticationType string | SapHanaAuthenticationType
The authentication type to be used to connect to the SAP HANA server.
connectVia IntegrationRuntimeReference
The integration runtime reference.
connectionString any
SAP HANA ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password to access the SAP HANA server.
server any
Host name of the SAP HANA server. Type: string (or Expression with resultType string).
userName any
Username to access the SAP HANA server. Type: string (or Expression with resultType string).
version string
Version of the linked service.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
authentication_type str | SapHanaAuthenticationType
The authentication type to be used to connect to the SAP HANA server.
connect_via IntegrationRuntimeReference
The integration runtime reference.
connection_string Any
SAP HANA ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password to access the SAP HANA server.
server Any
Host name of the SAP HANA server. Type: string (or Expression with resultType string).
user_name Any
Username to access the SAP HANA server. Type: string (or Expression with resultType string).
version str
Version of the linked service.
annotations List<Any>
List of tags that can be used for describing the linked service.
authenticationType String | "Basic" | "Windows"
The authentication type to be used to connect to the SAP HANA server.
connectVia Property Map
The integration runtime reference.
connectionString Any
SAP HANA ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
Password to access the SAP HANA server.
server Any
Host name of the SAP HANA server. Type: string (or Expression with resultType string).
userName Any
Username to access the SAP HANA server. Type: string (or Expression with resultType string).
version String
Version of the linked service.

SapHanaLinkedServiceResponse
, SapHanaLinkedServiceResponseArgs

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

SapOdpLinkedService
, SapOdpLinkedServiceArgs

Annotations List<object>
List of tags that can be used for describing the linked service.
ClientId object
Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Language object
Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
LogonGroup object
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
MessageServer object
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
MessageServerService object
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
Password to access the SAP server where the table is located.
Server object
Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
SncLibraryPath object
External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
SncMode object
SNC activation flag (Boolean) to access the SAP server where the table is located. Type: boolean (or Expression with resultType boolean).
SncMyName object
Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
SncPartnerName object
Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
SncQop object
SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
SubscriberName object
The subscriber name. Type: string (or Expression with resultType string).
SystemId object
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
SystemNumber object
System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
UserName object
Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
X509CertificatePath object
SNC X509 certificate file path. Type: string (or Expression with resultType string).
Annotations []interface{}
List of tags that can be used for describing the linked service.
ClientId interface{}
Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Language interface{}
Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
LogonGroup interface{}
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
MessageServer interface{}
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
MessageServerService interface{}
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecification
Parameters for linked service.
Password AzureKeyVaultSecretReference | SecureString
Password to access the SAP server where the table is located.
Server interface{}
Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
SncLibraryPath interface{}
External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
SncMode interface{}
SNC activation flag (Boolean) to access the SAP server where the table is located. Type: boolean (or Expression with resultType boolean).
SncMyName interface{}
Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
SncPartnerName interface{}
Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
SncQop interface{}
SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
SubscriberName interface{}
The subscriber name. Type: string (or Expression with resultType string).
SystemId interface{}
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
SystemNumber interface{}
System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
UserName interface{}
Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
X509CertificatePath interface{}
SNC X509 certificate file path. Type: string (or Expression with resultType string).
annotations List<Object>
List of tags that can be used for describing the linked service.
clientId Object
Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
language Object
Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
logonGroup Object
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
messageServer Object
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
messageServerService Object
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecification>
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password to access the SAP server where the table is located.
server Object
Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
sncLibraryPath Object
External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncMode Object
SNC activation flag (Boolean) to access the SAP server where the table is located. Type: boolean (or Expression with resultType boolean).
sncMyName Object
Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncPartnerName Object
Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncQop Object
SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
subscriberName Object
The subscriber name. Type: string (or Expression with resultType string).
systemId Object
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
systemNumber Object
System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
userName Object
Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
version String
Version of the linked service.
x509CertificatePath Object
SNC X509 certificate file path. Type: string (or Expression with resultType string).
annotations any[]
List of tags that can be used for describing the linked service.
clientId any
Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
language any
Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
logonGroup any
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
messageServer any
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
messageServerService any
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password to access the SAP server where the table is located.
server any
Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
sncLibraryPath any
External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncMode any
SNC activation flag (Boolean) to access the SAP server where the table is located. Type: boolean (or Expression with resultType boolean).
sncMyName any
Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncPartnerName any
Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncQop any
SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
subscriberName any
The subscriber name. Type: string (or Expression with resultType string).
systemId any
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
systemNumber any
System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
userName any
Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
version string
Version of the linked service.
x509CertificatePath any
SNC X509 certificate file path. Type: string (or Expression with resultType string).
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
client_id Any
Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
language Any
Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
logon_group Any
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
message_server Any
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
message_server_service Any
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password to access the SAP server where the table is located.
server Any
Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
snc_library_path Any
External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
snc_mode Any
SNC activation flag (Boolean) to access the SAP server where the table is located. Type: boolean (or Expression with resultType boolean).
snc_my_name Any
Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
snc_partner_name Any
Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
snc_qop Any
SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
subscriber_name Any
The subscriber name. Type: string (or Expression with resultType string).
system_id Any
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
system_number Any
System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
user_name Any
Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
version str
Version of the linked service.
x509_certificate_path Any
SNC X509 certificate file path. Type: string (or Expression with resultType string).
annotations List<Any>
List of tags that can be used for describing the linked service.
clientId Any
Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
language Any
Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
logonGroup Any
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
messageServer Any
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
messageServerService Any
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
Password to access the SAP server where the table is located.
server Any
Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
sncLibraryPath Any
External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncMode Any
SNC activation flag (Boolean) to access the SAP server where the table is located. Type: boolean (or Expression with resultType boolean).
sncMyName Any
Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncPartnerName Any
Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncQop Any
SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
subscriberName Any
The subscriber name. Type: string (or Expression with resultType string).
systemId Any
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
systemNumber Any
System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
userName Any
Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
version String
Version of the linked service.
x509CertificatePath Any
SNC X509 certificate file path. Type: string (or Expression with resultType string).

SapOdpLinkedServiceResponse
, SapOdpLinkedServiceResponseArgs

Annotations List<object>
List of tags that can be used for describing the linked service.
ClientId object
Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Language object
Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
LogonGroup object
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
MessageServer object
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
MessageServerService object
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
Password to access the SAP server where the table is located.
Server object
Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
SncLibraryPath object
External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
SncMode object
SNC activation flag (Boolean) to access the SAP server where the table is located. Type: boolean (or Expression with resultType boolean).
SncMyName object
Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
SncPartnerName object
Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
SncQop object
SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
SubscriberName object
The subscriber name. Type: string (or Expression with resultType string).
SystemId object
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
SystemNumber object
System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
UserName object
Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
X509CertificatePath object
SNC X509 certificate file path. Type: string (or Expression with resultType string).
Annotations []interface{}
List of tags that can be used for describing the linked service.
ClientId interface{}
Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Language interface{}
Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
LogonGroup interface{}
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
MessageServer interface{}
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
MessageServerService interface{}
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password to access the SAP server where the table is located.
Server interface{}
Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
SncLibraryPath interface{}
External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
SncMode interface{}
SNC activation flag (Boolean) to access the SAP server where the table is located. Type: boolean (or Expression with resultType boolean).
SncMyName interface{}
Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
SncPartnerName interface{}
Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
SncQop interface{}
SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
SubscriberName interface{}
The subscriber name. Type: string (or Expression with resultType string).
SystemId interface{}
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
SystemNumber interface{}
System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
UserName interface{}
Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
X509CertificatePath interface{}
SNC X509 certificate file path. Type: string (or Expression with resultType string).
annotations List<Object>
List of tags that can be used for describing the linked service.
clientId Object
Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
language Object
Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
logonGroup Object
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
messageServer Object
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
messageServerService Object
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password to access the SAP server where the table is located.
server Object
Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
sncLibraryPath Object
External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncMode Object
SNC activation flag (Boolean) to access the SAP server where the table is located. Type: boolean (or Expression with resultType boolean).
sncMyName Object
Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncPartnerName Object
Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncQop Object
SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
subscriberName Object
The subscriber name. Type: string (or Expression with resultType string).
systemId Object
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
systemNumber Object
System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
userName Object
Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
version String
Version of the linked service.
x509CertificatePath Object
SNC X509 certificate file path. Type: string (or Expression with resultType string).
annotations any[]
List of tags that can be used for describing the linked service.
clientId any
Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
language any
Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
logonGroup any
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
messageServer any
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
messageServerService any
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password to access the SAP server where the table is located.
server any
Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
sncLibraryPath any
External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncMode any
SNC activation flag (Boolean) to access the SAP server where the table is located. Type: boolean (or Expression with resultType boolean).
sncMyName any
Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncPartnerName any
Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncQop any
SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
subscriberName any
The subscriber name. Type: string (or Expression with resultType string).
systemId any
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
systemNumber any
System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
userName any
Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
version string
Version of the linked service.
x509CertificatePath any
SNC X509 certificate file path. Type: string (or Expression with resultType string).
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
client_id Any
Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
language Any
Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
logon_group Any
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
message_server Any
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
message_server_service Any
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password to access the SAP server where the table is located.
server Any
Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
snc_library_path Any
External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
snc_mode Any
SNC activation flag (Boolean) to access the SAP server where the table is located. Type: boolean (or Expression with resultType boolean).
snc_my_name Any
Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
snc_partner_name Any
Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
snc_qop Any
SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
subscriber_name Any
The subscriber name. Type: string (or Expression with resultType string).
system_id Any
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
system_number Any
System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
user_name Any
Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
version str
Version of the linked service.
x509_certificate_path Any
SNC X509 certificate file path. Type: string (or Expression with resultType string).
annotations List<Any>
List of tags that can be used for describing the linked service.
clientId Any
Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
language Any
Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
logonGroup Any
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
messageServer Any
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
messageServerService Any
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
Password to access the SAP server where the table is located.
server Any
Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
sncLibraryPath Any
External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncMode Any
SNC activation flag (Boolean) to access the SAP server where the table is located. Type: boolean (or Expression with resultType boolean).
sncMyName Any
Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncPartnerName Any
Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncQop Any
SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
subscriberName Any
The subscriber name. Type: string (or Expression with resultType string).
systemId Any
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
systemNumber Any
System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
userName Any
Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
version String
Version of the linked service.
x509CertificatePath Any
SNC X509 certificate file path. Type: string (or Expression with resultType string).

SapOpenHubLinkedService
, SapOpenHubLinkedServiceArgs

Annotations List<object>
List of tags that can be used for describing the linked service.
ClientId object
Client ID of the client on the BW system where the open hub destination is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Language object
Language of the BW system where the open hub destination is located. The default value is EN. Type: string (or Expression with resultType string).
LogonGroup object
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
MessageServer object
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
MessageServerService object
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
Password to access the SAP BW server where the open hub destination is located.
Server object
Host name of the SAP BW instance where the open hub destination is located. Type: string (or Expression with resultType string).
SystemId object
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
SystemNumber object
System number of the BW system where the open hub destination is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
UserName object
Username to access the SAP BW server where the open hub destination is located. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ClientId interface{}
Client ID of the client on the BW system where the open hub destination is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Language interface{}
Language of the BW system where the open hub destination is located. The default value is EN. Type: string (or Expression with resultType string).
LogonGroup interface{}
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
MessageServer interface{}
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
MessageServerService interface{}
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecification
Parameters for linked service.
Password AzureKeyVaultSecretReference | SecureString
Password to access the SAP BW server where the open hub destination is located.
Server interface{}
Host name of the SAP BW instance where the open hub destination is located. Type: string (or Expression with resultType string).
SystemId interface{}
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
SystemNumber interface{}
System number of the BW system where the open hub destination is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
UserName interface{}
Username to access the SAP BW server where the open hub destination is located. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
annotations List<Object>
List of tags that can be used for describing the linked service.
clientId Object
Client ID of the client on the BW system where the open hub destination is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
language Object
Language of the BW system where the open hub destination is located. The default value is EN. Type: string (or Expression with resultType string).
logonGroup Object
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
messageServer Object
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
messageServerService Object
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecification>
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password to access the SAP BW server where the open hub destination is located.
server Object
Host name of the SAP BW instance where the open hub destination is located. Type: string (or Expression with resultType string).
systemId Object
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
systemNumber Object
System number of the BW system where the open hub destination is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
userName Object
Username to access the SAP BW server where the open hub destination is located. Type: string (or Expression with resultType string).
version String
Version of the linked service.
annotations any[]
List of tags that can be used for describing the linked service.
clientId any
Client ID of the client on the BW system where the open hub destination is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
language any
Language of the BW system where the open hub destination is located. The default value is EN. Type: string (or Expression with resultType string).
logonGroup any
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
messageServer any
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
messageServerService any
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password to access the SAP BW server where the open hub destination is located.
server any
Host name of the SAP BW instance where the open hub destination is located. Type: string (or Expression with resultType string).
systemId any
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
systemNumber any
System number of the BW system where the open hub destination is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
userName any
Username to access the SAP BW server where the open hub destination is located. Type: string (or Expression with resultType string).
version string
Version of the linked service.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
client_id Any
Client ID of the client on the BW system where the open hub destination is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
language Any
Language of the BW system where the open hub destination is located. The default value is EN. Type: string (or Expression with resultType string).
logon_group Any
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
message_server Any
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
message_server_service Any
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password to access the SAP BW server where the open hub destination is located.
server Any
Host name of the SAP BW instance where the open hub destination is located. Type: string (or Expression with resultType string).
system_id Any
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
system_number Any
System number of the BW system where the open hub destination is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
user_name Any
Username to access the SAP BW server where the open hub destination is located. Type: string (or Expression with resultType string).
version str
Version of the linked service.
annotations List<Any>
List of tags that can be used for describing the linked service.
clientId Any
Client ID of the client on the BW system where the open hub destination is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
language Any
Language of the BW system where the open hub destination is located. The default value is EN. Type: string (or Expression with resultType string).
logonGroup Any
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
messageServer Any
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
messageServerService Any
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
Password to access the SAP BW server where the open hub destination is located.
server Any
Host name of the SAP BW instance where the open hub destination is located. Type: string (or Expression with resultType string).
systemId Any
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
systemNumber Any
System number of the BW system where the open hub destination is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
userName Any
Username to access the SAP BW server where the open hub destination is located. Type: string (or Expression with resultType string).
version String
Version of the linked service.

SapOpenHubLinkedServiceResponse
, SapOpenHubLinkedServiceResponseArgs

Annotations List<object>
List of tags that can be used for describing the linked service.
ClientId object
Client ID of the client on the BW system where the open hub destination is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Language object
Language of the BW system where the open hub destination is located. The default value is EN. Type: string (or Expression with resultType string).
LogonGroup object
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
MessageServer object
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
MessageServerService object
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
Password to access the SAP BW server where the open hub destination is located.
Server object
Host name of the SAP BW instance where the open hub destination is located. Type: string (or Expression with resultType string).
SystemId object
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
SystemNumber object
System number of the BW system where the open hub destination is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
UserName object
Username to access the SAP BW server where the open hub destination is located. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ClientId interface{}
Client ID of the client on the BW system where the open hub destination is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Language interface{}
Language of the BW system where the open hub destination is located. The default value is EN. Type: string (or Expression with resultType string).
LogonGroup interface{}
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
MessageServer interface{}
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
MessageServerService interface{}
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password to access the SAP BW server where the open hub destination is located.
Server interface{}
Host name of the SAP BW instance where the open hub destination is located. Type: string (or Expression with resultType string).
SystemId interface{}
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
SystemNumber interface{}
System number of the BW system where the open hub destination is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
UserName interface{}
Username to access the SAP BW server where the open hub destination is located. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
annotations List<Object>
List of tags that can be used for describing the linked service.
clientId Object
Client ID of the client on the BW system where the open hub destination is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
language Object
Language of the BW system where the open hub destination is located. The default value is EN. Type: string (or Expression with resultType string).
logonGroup Object
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
messageServer Object
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
messageServerService Object
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password to access the SAP BW server where the open hub destination is located.
server Object
Host name of the SAP BW instance where the open hub destination is located. Type: string (or Expression with resultType string).
systemId Object
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
systemNumber Object
System number of the BW system where the open hub destination is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
userName Object
Username to access the SAP BW server where the open hub destination is located. Type: string (or Expression with resultType string).
version String
Version of the linked service.
annotations any[]
List of tags that can be used for describing the linked service.
clientId any
Client ID of the client on the BW system where the open hub destination is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
language any
Language of the BW system where the open hub destination is located. The default value is EN. Type: string (or Expression with resultType string).
logonGroup any
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
messageServer any
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
messageServerService any
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password to access the SAP BW server where the open hub destination is located.
server any
Host name of the SAP BW instance where the open hub destination is located. Type: string (or Expression with resultType string).
systemId any
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
systemNumber any
System number of the BW system where the open hub destination is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
userName any
Username to access the SAP BW server where the open hub destination is located. Type: string (or Expression with resultType string).
version string
Version of the linked service.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
client_id Any
Client ID of the client on the BW system where the open hub destination is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
language Any
Language of the BW system where the open hub destination is located. The default value is EN. Type: string (or Expression with resultType string).
logon_group Any
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
message_server Any
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
message_server_service Any
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password to access the SAP BW server where the open hub destination is located.
server Any
Host name of the SAP BW instance where the open hub destination is located. Type: string (or Expression with resultType string).
system_id Any
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
system_number Any
System number of the BW system where the open hub destination is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
user_name Any
Username to access the SAP BW server where the open hub destination is located. Type: string (or Expression with resultType string).
version str
Version of the linked service.
annotations List<Any>
List of tags that can be used for describing the linked service.
clientId Any
Client ID of the client on the BW system where the open hub destination is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
language Any
Language of the BW system where the open hub destination is located. The default value is EN. Type: string (or Expression with resultType string).
logonGroup Any
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
messageServer Any
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
messageServerService Any
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
Password to access the SAP BW server where the open hub destination is located.
server Any
Host name of the SAP BW instance where the open hub destination is located. Type: string (or Expression with resultType string).
systemId Any
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
systemNumber Any
System number of the BW system where the open hub destination is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
userName Any
Username to access the SAP BW server where the open hub destination is located. Type: string (or Expression with resultType string).
version String
Version of the linked service.

SapTableLinkedService
, SapTableLinkedServiceArgs

Annotations List<object>
List of tags that can be used for describing the linked service.
ClientId object
Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Language object
Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
LogonGroup object
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
MessageServer object
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
MessageServerService object
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
Password to access the SAP server where the table is located.
Server object
Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
SncLibraryPath object
External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
SncMode object
SNC activation flag (Boolean) to access the SAP server where the table is located. Type: boolean (or Expression with resultType boolean).
SncMyName object
Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
SncPartnerName object
Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
SncQop object
SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
SystemId object
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
SystemNumber object
System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
UserName object
Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ClientId interface{}
Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Language interface{}
Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
LogonGroup interface{}
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
MessageServer interface{}
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
MessageServerService interface{}
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecification
Parameters for linked service.
Password AzureKeyVaultSecretReference | SecureString
Password to access the SAP server where the table is located.
Server interface{}
Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
SncLibraryPath interface{}
External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
SncMode interface{}
SNC activation flag (Boolean) to access the SAP server where the table is located. Type: boolean (or Expression with resultType boolean).
SncMyName interface{}
Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
SncPartnerName interface{}
Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
SncQop interface{}
SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
SystemId interface{}
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
SystemNumber interface{}
System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
UserName interface{}
Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
annotations List<Object>
List of tags that can be used for describing the linked service.
clientId Object
Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
language Object
Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
logonGroup Object
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
messageServer Object
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
messageServerService Object
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecification>
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password to access the SAP server where the table is located.
server Object
Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
sncLibraryPath Object
External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncMode Object
SNC activation flag (Boolean) to access the SAP server where the table is located. Type: boolean (or Expression with resultType boolean).
sncMyName Object
Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncPartnerName Object
Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncQop Object
SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
systemId Object
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
systemNumber Object
System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
userName Object
Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
version String
Version of the linked service.
annotations any[]
List of tags that can be used for describing the linked service.
clientId any
Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
language any
Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
logonGroup any
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
messageServer any
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
messageServerService any
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password to access the SAP server where the table is located.
server any
Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
sncLibraryPath any
External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncMode any
SNC activation flag (Boolean) to access the SAP server where the table is located. Type: boolean (or Expression with resultType boolean).
sncMyName any
Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncPartnerName any
Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncQop any
SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
systemId any
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
systemNumber any
System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
userName any
Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
version string
Version of the linked service.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
client_id Any
Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
language Any
Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
logon_group Any
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
message_server Any
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
message_server_service Any
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
Password to access the SAP server where the table is located.
server Any
Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
snc_library_path Any
External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
snc_mode Any
SNC activation flag (Boolean) to access the SAP server where the table is located. Type: boolean (or Expression with resultType boolean).
snc_my_name Any
Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
snc_partner_name Any
Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
snc_qop Any
SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
system_id Any
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
system_number Any
System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
user_name Any
Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
version str
Version of the linked service.
annotations List<Any>
List of tags that can be used for describing the linked service.
clientId Any
Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
language Any
Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
logonGroup Any
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
messageServer Any
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
messageServerService Any
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
Password to access the SAP server where the table is located.
server Any
Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
sncLibraryPath Any
External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncMode Any
SNC activation flag (Boolean) to access the SAP server where the table is located. Type: boolean (or Expression with resultType boolean).
sncMyName Any
Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncPartnerName Any
Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncQop Any
SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
systemId Any
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
systemNumber Any
System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
userName Any
Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
version String
Version of the linked service.

SapTableLinkedServiceResponse
, SapTableLinkedServiceResponseArgs

Annotations List<object>
List of tags that can be used for describing the linked service.
ClientId object
Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Language object
Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
LogonGroup object
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
MessageServer object
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
MessageServerService object
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
Password to access the SAP server where the table is located.
Server object
Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
SncLibraryPath object
External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
SncMode object
SNC activation flag (Boolean) to access the SAP server where the table is located. Type: boolean (or Expression with resultType boolean).
SncMyName object
Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
SncPartnerName object
Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
SncQop object
SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
SystemId object
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
SystemNumber object
System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
UserName object
Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ClientId interface{}
Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Language interface{}
Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
LogonGroup interface{}
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
MessageServer interface{}
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
MessageServerService interface{}
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password to access the SAP server where the table is located.
Server interface{}
Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
SncLibraryPath interface{}
External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
SncMode interface{}
SNC activation flag (Boolean) to access the SAP server where the table is located. Type: boolean (or Expression with resultType boolean).
SncMyName interface{}
Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
SncPartnerName interface{}
Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
SncQop interface{}
SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
SystemId interface{}
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
SystemNumber interface{}
System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
UserName interface{}
Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
annotations List<Object>
List of tags that can be used for describing the linked service.
clientId Object
Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
language Object
Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
logonGroup Object
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
messageServer Object
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
messageServerService Object
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password to access the SAP server where the table is located.
server Object
Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
sncLibraryPath Object
External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncMode Object
SNC activation flag (Boolean) to access the SAP server where the table is located. Type: boolean (or Expression with resultType boolean).
sncMyName Object
Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncPartnerName Object
Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncQop Object
SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
systemId Object
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
systemNumber Object
System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
userName Object
Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
version String
Version of the linked service.
annotations any[]
List of tags that can be used for describing the linked service.
clientId any
Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
language any
Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
logonGroup any
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
messageServer any
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
messageServerService any
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password to access the SAP server where the table is located.
server any
Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
sncLibraryPath any
External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncMode any
SNC activation flag (Boolean) to access the SAP server where the table is located. Type: boolean (or Expression with resultType boolean).
sncMyName any
Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncPartnerName any
Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncQop any
SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
systemId any
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
systemNumber any
System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
userName any
Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
version string
Version of the linked service.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
client_id Any
Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
language Any
Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
logon_group Any
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
message_server Any
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
message_server_service Any
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password to access the SAP server where the table is located.
server Any
Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
snc_library_path Any
External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
snc_mode Any
SNC activation flag (Boolean) to access the SAP server where the table is located. Type: boolean (or Expression with resultType boolean).
snc_my_name Any
Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
snc_partner_name Any
Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
snc_qop Any
SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
system_id Any
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
system_number Any
System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
user_name Any
Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
version str
Version of the linked service.
annotations List<Any>
List of tags that can be used for describing the linked service.
clientId Any
Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
language Any
Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
logonGroup Any
The Logon Group for the SAP System. Type: string (or Expression with resultType string).
messageServer Any
The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
messageServerService Any
The service name or port number of the Message Server. Type: string (or Expression with resultType string).
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
Password to access the SAP server where the table is located.
server Any
Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
sncLibraryPath Any
External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncMode Any
SNC activation flag (Boolean) to access the SAP server where the table is located. Type: boolean (or Expression with resultType boolean).
sncMyName Any
Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncPartnerName Any
Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
sncQop Any
SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
systemId Any
SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
systemNumber Any
System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
userName Any
Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
version String
Version of the linked service.

ScriptAction
, ScriptActionArgs

Name This property is required. string
The user provided name of the script action.
Roles This property is required. object
The node types on which the script action should be executed.
Uri This property is required. string
The URI for the script action.
Parameters string
The parameters for the script action.
Name This property is required. string
The user provided name of the script action.
Roles This property is required. interface{}
The node types on which the script action should be executed.
Uri This property is required. string
The URI for the script action.
Parameters string
The parameters for the script action.
name This property is required. String
The user provided name of the script action.
roles This property is required. Object
The node types on which the script action should be executed.
uri This property is required. String
The URI for the script action.
parameters String
The parameters for the script action.
name This property is required. string
The user provided name of the script action.
roles This property is required. any
The node types on which the script action should be executed.
uri This property is required. string
The URI for the script action.
parameters string
The parameters for the script action.
name This property is required. str
The user provided name of the script action.
roles This property is required. Any
The node types on which the script action should be executed.
uri This property is required. str
The URI for the script action.
parameters str
The parameters for the script action.
name This property is required. String
The user provided name of the script action.
roles This property is required. Any
The node types on which the script action should be executed.
uri This property is required. String
The URI for the script action.
parameters String
The parameters for the script action.

ScriptActionResponse
, ScriptActionResponseArgs

Name This property is required. string
The user provided name of the script action.
Roles This property is required. object
The node types on which the script action should be executed.
Uri This property is required. string
The URI for the script action.
Parameters string
The parameters for the script action.
Name This property is required. string
The user provided name of the script action.
Roles This property is required. interface{}
The node types on which the script action should be executed.
Uri This property is required. string
The URI for the script action.
Parameters string
The parameters for the script action.
name This property is required. String
The user provided name of the script action.
roles This property is required. Object
The node types on which the script action should be executed.
uri This property is required. String
The URI for the script action.
parameters String
The parameters for the script action.
name This property is required. string
The user provided name of the script action.
roles This property is required. any
The node types on which the script action should be executed.
uri This property is required. string
The URI for the script action.
parameters string
The parameters for the script action.
name This property is required. str
The user provided name of the script action.
roles This property is required. Any
The node types on which the script action should be executed.
uri This property is required. str
The URI for the script action.
parameters str
The parameters for the script action.
name This property is required. String
The user provided name of the script action.
roles This property is required. Any
The node types on which the script action should be executed.
uri This property is required. String
The URI for the script action.
parameters String
The parameters for the script action.

SecureString
, SecureStringArgs

Value This property is required. string
Value of secure string.
Value This property is required. string
Value of secure string.
value This property is required. String
Value of secure string.
value This property is required. string
Value of secure string.
value This property is required. str
Value of secure string.
value This property is required. String
Value of secure string.

SecureStringResponse
, SecureStringResponseArgs

Value This property is required. string
Value of secure string.
Value This property is required. string
Value of secure string.
value This property is required. String
Value of secure string.
value This property is required. string
Value of secure string.
value This property is required. str
Value of secure string.
value This property is required. String
Value of secure string.

ServiceNowAuthenticationType
, ServiceNowAuthenticationTypeArgs

Basic
Basic
OAuth2
OAuth2
ServiceNowAuthenticationTypeBasic
Basic
ServiceNowAuthenticationTypeOAuth2
OAuth2
Basic
Basic
OAuth2
OAuth2
Basic
Basic
OAuth2
OAuth2
BASIC
Basic
O_AUTH2
OAuth2
"Basic"
Basic
"OAuth2"
OAuth2

ServiceNowLinkedService
, ServiceNowLinkedServiceArgs

AuthenticationType This property is required. string | Pulumi.AzureNative.DataFactory.ServiceNowAuthenticationType
The authentication type to use.
Endpoint This property is required. object
The endpoint of the ServiceNow server. (i.e. .service-now.com)
Annotations List<object>
List of tags that can be used for describing the linked service.
ClientId object
The client id for OAuth2 authentication.
ClientSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The client secret for OAuth2 authentication.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The password corresponding to the user name for Basic and OAuth2 authentication.
UseEncryptedEndpoints object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Username object
The user name used to connect to the ServiceNow server for Basic and OAuth2 authentication.
Version string
Version of the linked service.
AuthenticationType This property is required. string | ServiceNowAuthenticationType
The authentication type to use.
Endpoint This property is required. interface{}
The endpoint of the ServiceNow server. (i.e. .service-now.com)
Annotations []interface{}
List of tags that can be used for describing the linked service.
ClientId interface{}
The client id for OAuth2 authentication.
ClientSecret AzureKeyVaultSecretReference | SecureString
The client secret for OAuth2 authentication.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecification
Parameters for linked service.
Password AzureKeyVaultSecretReference | SecureString
The password corresponding to the user name for Basic and OAuth2 authentication.
UseEncryptedEndpoints interface{}
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification interface{}
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification interface{}
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Username interface{}
The user name used to connect to the ServiceNow server for Basic and OAuth2 authentication.
Version string
Version of the linked service.
authenticationType This property is required. String | ServiceNowAuthenticationType
The authentication type to use.
endpoint This property is required. Object
The endpoint of the ServiceNow server. (i.e. .service-now.com)
annotations List<Object>
List of tags that can be used for describing the linked service.
clientId Object
The client id for OAuth2 authentication.
clientSecret AzureKeyVaultSecretReference | SecureString
The client secret for OAuth2 authentication.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password corresponding to the user name for Basic and OAuth2 authentication.
useEncryptedEndpoints Object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
username Object
The user name used to connect to the ServiceNow server for Basic and OAuth2 authentication.
version String
Version of the linked service.
authenticationType This property is required. string | ServiceNowAuthenticationType
The authentication type to use.
endpoint This property is required. any
The endpoint of the ServiceNow server. (i.e. .service-now.com)
annotations any[]
List of tags that can be used for describing the linked service.
clientId any
The client id for OAuth2 authentication.
clientSecret AzureKeyVaultSecretReference | SecureString
The client secret for OAuth2 authentication.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password corresponding to the user name for Basic and OAuth2 authentication.
useEncryptedEndpoints any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
username any
The user name used to connect to the ServiceNow server for Basic and OAuth2 authentication.
version string
Version of the linked service.
authentication_type This property is required. str | ServiceNowAuthenticationType
The authentication type to use.
endpoint This property is required. Any
The endpoint of the ServiceNow server. (i.e. .service-now.com)
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
client_id Any
The client id for OAuth2 authentication.
client_secret AzureKeyVaultSecretReference | SecureString
The client secret for OAuth2 authentication.
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password corresponding to the user name for Basic and OAuth2 authentication.
use_encrypted_endpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
use_host_verification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
use_peer_verification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
username Any
The user name used to connect to the ServiceNow server for Basic and OAuth2 authentication.
version str
Version of the linked service.
authenticationType This property is required. String | "Basic" | "OAuth2"
The authentication type to use.
endpoint This property is required. Any
The endpoint of the ServiceNow server. (i.e. .service-now.com)
annotations List<Any>
List of tags that can be used for describing the linked service.
clientId Any
The client id for OAuth2 authentication.
clientSecret Property Map | Property Map
The client secret for OAuth2 authentication.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
The password corresponding to the user name for Basic and OAuth2 authentication.
useEncryptedEndpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
username Any
The user name used to connect to the ServiceNow server for Basic and OAuth2 authentication.
version String
Version of the linked service.

ServiceNowLinkedServiceResponse
, ServiceNowLinkedServiceResponseArgs

AuthenticationType This property is required. string
The authentication type to use.
Endpoint This property is required. object
The endpoint of the ServiceNow server. (i.e. .service-now.com)
Annotations List<object>
List of tags that can be used for describing the linked service.
ClientId object
The client id for OAuth2 authentication.
ClientSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The client secret for OAuth2 authentication.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The password corresponding to the user name for Basic and OAuth2 authentication.
UseEncryptedEndpoints object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Username object
The user name used to connect to the ServiceNow server for Basic and OAuth2 authentication.
Version string
Version of the linked service.
AuthenticationType This property is required. string
The authentication type to use.
Endpoint This property is required. interface{}
The endpoint of the ServiceNow server. (i.e. .service-now.com)
Annotations []interface{}
List of tags that can be used for describing the linked service.
ClientId interface{}
The client id for OAuth2 authentication.
ClientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret for OAuth2 authentication.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password corresponding to the user name for Basic and OAuth2 authentication.
UseEncryptedEndpoints interface{}
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification interface{}
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification interface{}
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Username interface{}
The user name used to connect to the ServiceNow server for Basic and OAuth2 authentication.
Version string
Version of the linked service.
authenticationType This property is required. String
The authentication type to use.
endpoint This property is required. Object
The endpoint of the ServiceNow server. (i.e. .service-now.com)
annotations List<Object>
List of tags that can be used for describing the linked service.
clientId Object
The client id for OAuth2 authentication.
clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret for OAuth2 authentication.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password corresponding to the user name for Basic and OAuth2 authentication.
useEncryptedEndpoints Object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
username Object
The user name used to connect to the ServiceNow server for Basic and OAuth2 authentication.
version String
Version of the linked service.
authenticationType This property is required. string
The authentication type to use.
endpoint This property is required. any
The endpoint of the ServiceNow server. (i.e. .service-now.com)
annotations any[]
List of tags that can be used for describing the linked service.
clientId any
The client id for OAuth2 authentication.
clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret for OAuth2 authentication.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password corresponding to the user name for Basic and OAuth2 authentication.
useEncryptedEndpoints any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
username any
The user name used to connect to the ServiceNow server for Basic and OAuth2 authentication.
version string
Version of the linked service.
authentication_type This property is required. str
The authentication type to use.
endpoint This property is required. Any
The endpoint of the ServiceNow server. (i.e. .service-now.com)
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
client_id Any
The client id for OAuth2 authentication.
client_secret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret for OAuth2 authentication.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password corresponding to the user name for Basic and OAuth2 authentication.
use_encrypted_endpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
use_host_verification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
use_peer_verification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
username Any
The user name used to connect to the ServiceNow server for Basic and OAuth2 authentication.
version str
Version of the linked service.
authenticationType This property is required. String
The authentication type to use.
endpoint This property is required. Any
The endpoint of the ServiceNow server. (i.e. .service-now.com)
annotations List<Any>
List of tags that can be used for describing the linked service.
clientId Any
The client id for OAuth2 authentication.
clientSecret Property Map | Property Map
The client secret for OAuth2 authentication.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
The password corresponding to the user name for Basic and OAuth2 authentication.
useEncryptedEndpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
username Any
The user name used to connect to the ServiceNow server for Basic and OAuth2 authentication.
version String
Version of the linked service.

ServiceNowV2AuthenticationType
, ServiceNowV2AuthenticationTypeArgs

Basic
Basic
OAuth2
OAuth2
ServiceNowV2AuthenticationTypeBasic
Basic
ServiceNowV2AuthenticationTypeOAuth2
OAuth2
Basic
Basic
OAuth2
OAuth2
Basic
Basic
OAuth2
OAuth2
BASIC
Basic
O_AUTH2
OAuth2
"Basic"
Basic
"OAuth2"
OAuth2

ServiceNowV2LinkedService
, ServiceNowV2LinkedServiceArgs

AuthenticationType This property is required. string | Pulumi.AzureNative.DataFactory.ServiceNowV2AuthenticationType
The authentication type to use.
Endpoint This property is required. object
The endpoint of the ServiceNowV2 server. (i.e. .service-now.com)
Annotations List<object>
List of tags that can be used for describing the linked service.
ClientId object
The client id for OAuth2 authentication.
ClientSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The client secret for OAuth2 authentication.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
GrantType object
GrantType for OAuth2 authentication. Default value is password.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The password corresponding to the user name for Basic and OAuth2 authentication.
Username object
The user name used to connect to the ServiceNowV2 server for Basic and OAuth2 authentication.
Version string
Version of the linked service.
AuthenticationType This property is required. string | ServiceNowV2AuthenticationType
The authentication type to use.
Endpoint This property is required. interface{}
The endpoint of the ServiceNowV2 server. (i.e. .service-now.com)
Annotations []interface{}
List of tags that can be used for describing the linked service.
ClientId interface{}
The client id for OAuth2 authentication.
ClientSecret AzureKeyVaultSecretReference | SecureString
The client secret for OAuth2 authentication.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
GrantType interface{}
GrantType for OAuth2 authentication. Default value is password.
Parameters map[string]ParameterSpecification
Parameters for linked service.
Password AzureKeyVaultSecretReference | SecureString
The password corresponding to the user name for Basic and OAuth2 authentication.
Username interface{}
The user name used to connect to the ServiceNowV2 server for Basic and OAuth2 authentication.
Version string
Version of the linked service.
authenticationType This property is required. String | ServiceNowV2AuthenticationType
The authentication type to use.
endpoint This property is required. Object
The endpoint of the ServiceNowV2 server. (i.e. .service-now.com)
annotations List<Object>
List of tags that can be used for describing the linked service.
clientId Object
The client id for OAuth2 authentication.
clientSecret AzureKeyVaultSecretReference | SecureString
The client secret for OAuth2 authentication.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
grantType Object
GrantType for OAuth2 authentication. Default value is password.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password corresponding to the user name for Basic and OAuth2 authentication.
username Object
The user name used to connect to the ServiceNowV2 server for Basic and OAuth2 authentication.
version String
Version of the linked service.
authenticationType This property is required. string | ServiceNowV2AuthenticationType
The authentication type to use.
endpoint This property is required. any
The endpoint of the ServiceNowV2 server. (i.e. .service-now.com)
annotations any[]
List of tags that can be used for describing the linked service.
clientId any
The client id for OAuth2 authentication.
clientSecret AzureKeyVaultSecretReference | SecureString
The client secret for OAuth2 authentication.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
grantType any
GrantType for OAuth2 authentication. Default value is password.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password corresponding to the user name for Basic and OAuth2 authentication.
username any
The user name used to connect to the ServiceNowV2 server for Basic and OAuth2 authentication.
version string
Version of the linked service.
authentication_type This property is required. str | ServiceNowV2AuthenticationType
The authentication type to use.
endpoint This property is required. Any
The endpoint of the ServiceNowV2 server. (i.e. .service-now.com)
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
client_id Any
The client id for OAuth2 authentication.
client_secret AzureKeyVaultSecretReference | SecureString
The client secret for OAuth2 authentication.
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
grant_type Any
GrantType for OAuth2 authentication. Default value is password.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password corresponding to the user name for Basic and OAuth2 authentication.
username Any
The user name used to connect to the ServiceNowV2 server for Basic and OAuth2 authentication.
version str
Version of the linked service.
authenticationType This property is required. String | "Basic" | "OAuth2"
The authentication type to use.
endpoint This property is required. Any
The endpoint of the ServiceNowV2 server. (i.e. .service-now.com)
annotations List<Any>
List of tags that can be used for describing the linked service.
clientId Any
The client id for OAuth2 authentication.
clientSecret Property Map | Property Map
The client secret for OAuth2 authentication.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
grantType Any
GrantType for OAuth2 authentication. Default value is password.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
The password corresponding to the user name for Basic and OAuth2 authentication.
username Any
The user name used to connect to the ServiceNowV2 server for Basic and OAuth2 authentication.
version String
Version of the linked service.

ServiceNowV2LinkedServiceResponse
, ServiceNowV2LinkedServiceResponseArgs

AuthenticationType This property is required. string
The authentication type to use.
Endpoint This property is required. object
The endpoint of the ServiceNowV2 server. (i.e. .service-now.com)
Annotations List<object>
List of tags that can be used for describing the linked service.
ClientId object
The client id for OAuth2 authentication.
ClientSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The client secret for OAuth2 authentication.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
GrantType object
GrantType for OAuth2 authentication. Default value is password.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The password corresponding to the user name for Basic and OAuth2 authentication.
Username object
The user name used to connect to the ServiceNowV2 server for Basic and OAuth2 authentication.
Version string
Version of the linked service.
AuthenticationType This property is required. string
The authentication type to use.
Endpoint This property is required. interface{}
The endpoint of the ServiceNowV2 server. (i.e. .service-now.com)
Annotations []interface{}
List of tags that can be used for describing the linked service.
ClientId interface{}
The client id for OAuth2 authentication.
ClientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret for OAuth2 authentication.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
GrantType interface{}
GrantType for OAuth2 authentication. Default value is password.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password corresponding to the user name for Basic and OAuth2 authentication.
Username interface{}
The user name used to connect to the ServiceNowV2 server for Basic and OAuth2 authentication.
Version string
Version of the linked service.
authenticationType This property is required. String
The authentication type to use.
endpoint This property is required. Object
The endpoint of the ServiceNowV2 server. (i.e. .service-now.com)
annotations List<Object>
List of tags that can be used for describing the linked service.
clientId Object
The client id for OAuth2 authentication.
clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret for OAuth2 authentication.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
grantType Object
GrantType for OAuth2 authentication. Default value is password.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password corresponding to the user name for Basic and OAuth2 authentication.
username Object
The user name used to connect to the ServiceNowV2 server for Basic and OAuth2 authentication.
version String
Version of the linked service.
authenticationType This property is required. string
The authentication type to use.
endpoint This property is required. any
The endpoint of the ServiceNowV2 server. (i.e. .service-now.com)
annotations any[]
List of tags that can be used for describing the linked service.
clientId any
The client id for OAuth2 authentication.
clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret for OAuth2 authentication.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
grantType any
GrantType for OAuth2 authentication. Default value is password.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password corresponding to the user name for Basic and OAuth2 authentication.
username any
The user name used to connect to the ServiceNowV2 server for Basic and OAuth2 authentication.
version string
Version of the linked service.
authentication_type This property is required. str
The authentication type to use.
endpoint This property is required. Any
The endpoint of the ServiceNowV2 server. (i.e. .service-now.com)
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
client_id Any
The client id for OAuth2 authentication.
client_secret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret for OAuth2 authentication.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
grant_type Any
GrantType for OAuth2 authentication. Default value is password.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password corresponding to the user name for Basic and OAuth2 authentication.
username Any
The user name used to connect to the ServiceNowV2 server for Basic and OAuth2 authentication.
version str
Version of the linked service.
authenticationType This property is required. String
The authentication type to use.
endpoint This property is required. Any
The endpoint of the ServiceNowV2 server. (i.e. .service-now.com)
annotations List<Any>
List of tags that can be used for describing the linked service.
clientId Any
The client id for OAuth2 authentication.
clientSecret Property Map | Property Map
The client secret for OAuth2 authentication.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
grantType Any
GrantType for OAuth2 authentication. Default value is password.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
The password corresponding to the user name for Basic and OAuth2 authentication.
username Any
The user name used to connect to the ServiceNowV2 server for Basic and OAuth2 authentication.
version String
Version of the linked service.

SftpAuthenticationType
, SftpAuthenticationTypeArgs

Basic
Basic
SshPublicKey
SshPublicKey
MultiFactor
MultiFactor
SftpAuthenticationTypeBasic
Basic
SftpAuthenticationTypeSshPublicKey
SshPublicKey
SftpAuthenticationTypeMultiFactor
MultiFactor
Basic
Basic
SshPublicKey
SshPublicKey
MultiFactor
MultiFactor
Basic
Basic
SshPublicKey
SshPublicKey
MultiFactor
MultiFactor
BASIC
Basic
SSH_PUBLIC_KEY
SshPublicKey
MULTI_FACTOR
MultiFactor
"Basic"
Basic
"SshPublicKey"
SshPublicKey
"MultiFactor"
MultiFactor

SftpServerLinkedService
, SftpServerLinkedServiceArgs

Host This property is required. object
The SFTP server host name. Type: string (or Expression with resultType string).
Annotations List<object>
List of tags that can be used for describing the linked service.
AuthenticationType string | Pulumi.AzureNative.DataFactory.SftpAuthenticationType
The authentication type to be used to connect to the FTP server.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
HostKeyFingerprint object
The host key finger-print of the SFTP server. When SkipHostKeyValidation is false, HostKeyFingerprint should be specified. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
PassPhrase Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The password to decrypt the SSH private key if the SSH private key is encrypted.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
Password to logon the SFTP server for Basic authentication.
Port object
The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.
PrivateKeyContent Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.
PrivateKeyPath object
The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).
SkipHostKeyValidation object
If true, skip the SSH host key validation. Default value is false. Type: boolean (or Expression with resultType boolean).
UserName object
The username used to log on to the SFTP server. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
Host This property is required. interface{}
The SFTP server host name. Type: string (or Expression with resultType string).
Annotations []interface{}
List of tags that can be used for describing the linked service.
AuthenticationType string | SftpAuthenticationType
The authentication type to be used to connect to the FTP server.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
HostKeyFingerprint interface{}
The host key finger-print of the SFTP server. When SkipHostKeyValidation is false, HostKeyFingerprint should be specified. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecification
Parameters for linked service.
PassPhrase AzureKeyVaultSecretReference | SecureString
The password to decrypt the SSH private key if the SSH private key is encrypted.
Password AzureKeyVaultSecretReference | SecureString
Password to logon the SFTP server for Basic authentication.
Port interface{}
The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.
PrivateKeyContent AzureKeyVaultSecretReference | SecureString
Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.
PrivateKeyPath interface{}
The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).
SkipHostKeyValidation interface{}
If true, skip the SSH host key validation. Default value is false. Type: boolean (or Expression with resultType boolean).
UserName interface{}
The username used to log on to the SFTP server. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
host This property is required. Object
The SFTP server host name. Type: string (or Expression with resultType string).
annotations List<Object>
List of tags that can be used for describing the linked service.
authenticationType String | SftpAuthenticationType
The authentication type to be used to connect to the FTP server.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
hostKeyFingerprint Object
The host key finger-print of the SFTP server. When SkipHostKeyValidation is false, HostKeyFingerprint should be specified. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecification>
Parameters for linked service.
passPhrase AzureKeyVaultSecretReference | SecureString
The password to decrypt the SSH private key if the SSH private key is encrypted.
password AzureKeyVaultSecretReference | SecureString
Password to logon the SFTP server for Basic authentication.
port Object
The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.
privateKeyContent AzureKeyVaultSecretReference | SecureString
Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.
privateKeyPath Object
The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).
skipHostKeyValidation Object
If true, skip the SSH host key validation. Default value is false. Type: boolean (or Expression with resultType boolean).
userName Object
The username used to log on to the SFTP server. Type: string (or Expression with resultType string).
version String
Version of the linked service.
host This property is required. any
The SFTP server host name. Type: string (or Expression with resultType string).
annotations any[]
List of tags that can be used for describing the linked service.
authenticationType string | SftpAuthenticationType
The authentication type to be used to connect to the FTP server.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
hostKeyFingerprint any
The host key finger-print of the SFTP server. When SkipHostKeyValidation is false, HostKeyFingerprint should be specified. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
passPhrase AzureKeyVaultSecretReference | SecureString
The password to decrypt the SSH private key if the SSH private key is encrypted.
password AzureKeyVaultSecretReference | SecureString
Password to logon the SFTP server for Basic authentication.
port any
The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.
privateKeyContent AzureKeyVaultSecretReference | SecureString
Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.
privateKeyPath any
The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).
skipHostKeyValidation any
If true, skip the SSH host key validation. Default value is false. Type: boolean (or Expression with resultType boolean).
userName any
The username used to log on to the SFTP server. Type: string (or Expression with resultType string).
version string
Version of the linked service.
host This property is required. Any
The SFTP server host name. 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 | SftpAuthenticationType
The authentication type to be used to connect to the FTP server.
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
host_key_fingerprint Any
The host key finger-print of the SFTP server. When SkipHostKeyValidation is false, HostKeyFingerprint should be specified. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
pass_phrase AzureKeyVaultSecretReference | SecureString
The password to decrypt the SSH private key if the SSH private key is encrypted.
password AzureKeyVaultSecretReference | SecureString
Password to logon the SFTP server for Basic authentication.
port Any
The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.
private_key_content AzureKeyVaultSecretReference | SecureString
Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.
private_key_path Any
The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).
skip_host_key_validation Any
If true, skip the SSH host key validation. Default value is false. Type: boolean (or Expression with resultType boolean).
user_name Any
The username used to log on to the SFTP server. Type: string (or Expression with resultType string).
version str
Version of the linked service.
host This property is required. Any
The SFTP server host name. Type: string (or Expression with resultType string).
annotations List<Any>
List of tags that can be used for describing the linked service.
authenticationType String | "Basic" | "SshPublicKey" | "MultiFactor"
The authentication type to be used to connect to the FTP server.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
hostKeyFingerprint Any
The host key finger-print of the SFTP server. When SkipHostKeyValidation is false, HostKeyFingerprint should be specified. Type: string (or Expression with resultType string).
parameters Map<Property Map>
Parameters for linked service.
passPhrase Property Map | Property Map
The password to decrypt the SSH private key if the SSH private key is encrypted.
password Property Map | Property Map
Password to logon the SFTP server for Basic authentication.
port Any
The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.
privateKeyContent Property Map | Property Map
Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.
privateKeyPath Any
The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).
skipHostKeyValidation Any
If true, skip the SSH host key validation. Default value is false. Type: boolean (or Expression with resultType boolean).
userName Any
The username used to log on to the SFTP server. Type: string (or Expression with resultType string).
version String
Version of the linked service.

SftpServerLinkedServiceResponse
, SftpServerLinkedServiceResponseArgs

Host This property is required. object
The SFTP server host name. Type: string (or Expression with resultType string).
Annotations List<object>
List of tags that can be used for describing the linked service.
AuthenticationType string
The authentication type to be used to connect to the FTP server.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
HostKeyFingerprint object
The host key finger-print of the SFTP server. When SkipHostKeyValidation is false, HostKeyFingerprint should be specified. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
PassPhrase Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The password to decrypt the SSH private key if the SSH private key is encrypted.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
Password to logon the SFTP server for Basic authentication.
Port object
The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.
PrivateKeyContent Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.
PrivateKeyPath object
The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).
SkipHostKeyValidation object
If true, skip the SSH host key validation. Default value is false. Type: boolean (or Expression with resultType boolean).
UserName object
The username used to log on to the SFTP server. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
Host This property is required. interface{}
The SFTP server host name. Type: string (or Expression with resultType string).
Annotations []interface{}
List of tags that can be used for describing the linked service.
AuthenticationType string
The authentication type to be used to connect to the FTP server.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
HostKeyFingerprint interface{}
The host key finger-print of the SFTP server. When SkipHostKeyValidation is false, HostKeyFingerprint should be specified. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
PassPhrase AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password to decrypt the SSH private key if the SSH private key is encrypted.
Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password to logon the SFTP server for Basic authentication.
Port interface{}
The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.
PrivateKeyContent AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.
PrivateKeyPath interface{}
The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).
SkipHostKeyValidation interface{}
If true, skip the SSH host key validation. Default value is false. Type: boolean (or Expression with resultType boolean).
UserName interface{}
The username used to log on to the SFTP server. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
host This property is required. Object
The SFTP server host name. Type: string (or Expression with resultType string).
annotations List<Object>
List of tags that can be used for describing the linked service.
authenticationType String
The authentication type to be used to connect to the FTP server.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
hostKeyFingerprint Object
The host key finger-print of the SFTP server. When SkipHostKeyValidation is false, HostKeyFingerprint should be specified. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
passPhrase AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password to decrypt the SSH private key if the SSH private key is encrypted.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password to logon the SFTP server for Basic authentication.
port Object
The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.
privateKeyContent AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.
privateKeyPath Object
The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).
skipHostKeyValidation Object
If true, skip the SSH host key validation. Default value is false. Type: boolean (or Expression with resultType boolean).
userName Object
The username used to log on to the SFTP server. Type: string (or Expression with resultType string).
version String
Version of the linked service.
host This property is required. any
The SFTP server host name. Type: string (or Expression with resultType string).
annotations any[]
List of tags that can be used for describing the linked service.
authenticationType string
The authentication type to be used to connect to the FTP server.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
hostKeyFingerprint any
The host key finger-print of the SFTP server. When SkipHostKeyValidation is false, HostKeyFingerprint should be specified. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
passPhrase AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password to decrypt the SSH private key if the SSH private key is encrypted.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password to logon the SFTP server for Basic authentication.
port any
The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.
privateKeyContent AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.
privateKeyPath any
The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).
skipHostKeyValidation any
If true, skip the SSH host key validation. Default value is false. Type: boolean (or Expression with resultType boolean).
userName any
The username used to log on to the SFTP server. Type: string (or Expression with resultType string).
version string
Version of the linked service.
host This property is required. Any
The SFTP server host name. Type: string (or Expression with resultType string).
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
authentication_type str
The authentication type to be used to connect to the FTP server.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
host_key_fingerprint Any
The host key finger-print of the SFTP server. When SkipHostKeyValidation is false, HostKeyFingerprint should be specified. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
pass_phrase AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password to decrypt the SSH private key if the SSH private key is encrypted.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password to logon the SFTP server for Basic authentication.
port Any
The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.
private_key_content AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.
private_key_path Any
The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).
skip_host_key_validation Any
If true, skip the SSH host key validation. Default value is false. Type: boolean (or Expression with resultType boolean).
user_name Any
The username used to log on to the SFTP server. Type: string (or Expression with resultType string).
version str
Version of the linked service.
host This property is required. Any
The SFTP server host name. Type: string (or Expression with resultType string).
annotations List<Any>
List of tags that can be used for describing the linked service.
authenticationType String
The authentication type to be used to connect to the FTP server.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
hostKeyFingerprint Any
The host key finger-print of the SFTP server. When SkipHostKeyValidation is false, HostKeyFingerprint should be specified. Type: string (or Expression with resultType string).
parameters Map<Property Map>
Parameters for linked service.
passPhrase Property Map | Property Map
The password to decrypt the SSH private key if the SSH private key is encrypted.
password Property Map | Property Map
Password to logon the SFTP server for Basic authentication.
port Any
The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.
privateKeyContent Property Map | Property Map
Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.
privateKeyPath Any
The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).
skipHostKeyValidation Any
If true, skip the SSH host key validation. Default value is false. Type: boolean (or Expression with resultType boolean).
userName Any
The username used to log on to the SFTP server. Type: string (or Expression with resultType string).
version String
Version of the linked service.

SharePointOnlineListLinkedService
, SharePointOnlineListLinkedServiceArgs

ServicePrincipalId This property is required. object
The application (client) ID of your application registered in Azure Active Directory. Make sure to grant SharePoint site permission to this application. Type: string (or Expression with resultType string).
SiteUrl This property is required. object
The URL of the SharePoint Online site. For example, https://contoso.sharepoint.com/sites/siteName. Type: string (or Expression with resultType string).
TenantId This property is required. object
The tenant ID under which your application resides. You can find it from Azure portal Active Directory overview page. Type: string (or Expression with resultType string).
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
ServicePrincipalCredentialType object
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
ServicePrincipalEmbeddedCert Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
ServicePrincipalEmbeddedCertPassword Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The client secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
ServicePrincipalId This property is required. interface{}
The application (client) ID of your application registered in Azure Active Directory. Make sure to grant SharePoint site permission to this application. Type: string (or Expression with resultType string).
SiteUrl This property is required. interface{}
The URL of the SharePoint Online site. For example, https://contoso.sharepoint.com/sites/siteName. Type: string (or Expression with resultType string).
TenantId This property is required. interface{}
The tenant ID under which your application resides. You can find it from Azure portal Active Directory overview page. Type: string (or Expression with resultType string).
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecification
Parameters for linked service.
ServicePrincipalCredentialType interface{}
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
ServicePrincipalEmbeddedCert AzureKeyVaultSecretReference | SecureString
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
ServicePrincipalEmbeddedCertPassword AzureKeyVaultSecretReference | SecureString
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
ServicePrincipalKey AzureKeyVaultSecretReference | SecureString
The client secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
servicePrincipalId This property is required. Object
The application (client) ID of your application registered in Azure Active Directory. Make sure to grant SharePoint site permission to this application. Type: string (or Expression with resultType string).
siteUrl This property is required. Object
The URL of the SharePoint Online site. For example, https://contoso.sharepoint.com/sites/siteName. Type: string (or Expression with resultType string).
tenantId This property is required. Object
The tenant ID under which your application resides. You can find it from Azure portal Active Directory overview page. Type: string (or Expression with resultType string).
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
servicePrincipalCredentialType Object
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCert AzureKeyVaultSecretReference | SecureString
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCertPassword AzureKeyVaultSecretReference | SecureString
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
servicePrincipalKey AzureKeyVaultSecretReference | SecureString
The client secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
version String
Version of the linked service.
servicePrincipalId This property is required. any
The application (client) ID of your application registered in Azure Active Directory. Make sure to grant SharePoint site permission to this application. Type: string (or Expression with resultType string).
siteUrl This property is required. any
The URL of the SharePoint Online site. For example, https://contoso.sharepoint.com/sites/siteName. Type: string (or Expression with resultType string).
tenantId This property is required. any
The tenant ID under which your application resides. You can find it from Azure portal Active Directory overview page. Type: string (or Expression with resultType string).
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
servicePrincipalCredentialType any
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCert AzureKeyVaultSecretReference | SecureString
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCertPassword AzureKeyVaultSecretReference | SecureString
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
servicePrincipalKey AzureKeyVaultSecretReference | SecureString
The client secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
version string
Version of the linked service.
service_principal_id This property is required. Any
The application (client) ID of your application registered in Azure Active Directory. Make sure to grant SharePoint site permission to this application. Type: string (or Expression with resultType string).
site_url This property is required. Any
The URL of the SharePoint Online site. For example, https://contoso.sharepoint.com/sites/siteName. Type: string (or Expression with resultType string).
tenant_id This property is required. Any
The tenant ID under which your application resides. You can find it from Azure portal Active Directory overview page. Type: string (or Expression with resultType string).
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
service_principal_credential_type Any
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
service_principal_embedded_cert AzureKeyVaultSecretReference | SecureString
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
service_principal_embedded_cert_password AzureKeyVaultSecretReference | SecureString
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
service_principal_key AzureKeyVaultSecretReference | SecureString
The client secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
version str
Version of the linked service.
servicePrincipalId This property is required. Any
The application (client) ID of your application registered in Azure Active Directory. Make sure to grant SharePoint site permission to this application. Type: string (or Expression with resultType string).
siteUrl This property is required. Any
The URL of the SharePoint Online site. For example, https://contoso.sharepoint.com/sites/siteName. Type: string (or Expression with resultType string).
tenantId This property is required. Any
The tenant ID under which your application resides. You can find it from Azure portal Active Directory overview page. Type: string (or Expression with resultType string).
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
servicePrincipalCredentialType Any
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCert Property Map | Property Map
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCertPassword Property Map | Property Map
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
servicePrincipalKey Property Map | Property Map
The client secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
version String
Version of the linked service.

SharePointOnlineListLinkedServiceResponse
, SharePointOnlineListLinkedServiceResponseArgs

ServicePrincipalId This property is required. object
The application (client) ID of your application registered in Azure Active Directory. Make sure to grant SharePoint site permission to this application. Type: string (or Expression with resultType string).
SiteUrl This property is required. object
The URL of the SharePoint Online site. For example, https://contoso.sharepoint.com/sites/siteName. Type: string (or Expression with resultType string).
TenantId This property is required. object
The tenant ID under which your application resides. You can find it from Azure portal Active Directory overview page. Type: string (or Expression with resultType string).
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
ServicePrincipalCredentialType object
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
ServicePrincipalEmbeddedCert Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
ServicePrincipalEmbeddedCertPassword Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The client secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
ServicePrincipalId This property is required. interface{}
The application (client) ID of your application registered in Azure Active Directory. Make sure to grant SharePoint site permission to this application. Type: string (or Expression with resultType string).
SiteUrl This property is required. interface{}
The URL of the SharePoint Online site. For example, https://contoso.sharepoint.com/sites/siteName. Type: string (or Expression with resultType string).
TenantId This property is required. interface{}
The tenant ID under which your application resides. You can find it from Azure portal Active Directory overview page. Type: string (or Expression with resultType string).
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
ServicePrincipalCredentialType interface{}
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
ServicePrincipalEmbeddedCert AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
ServicePrincipalEmbeddedCertPassword AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
ServicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
servicePrincipalId This property is required. Object
The application (client) ID of your application registered in Azure Active Directory. Make sure to grant SharePoint site permission to this application. Type: string (or Expression with resultType string).
siteUrl This property is required. Object
The URL of the SharePoint Online site. For example, https://contoso.sharepoint.com/sites/siteName. Type: string (or Expression with resultType string).
tenantId This property is required. Object
The tenant ID under which your application resides. You can find it from Azure portal Active Directory overview page. Type: string (or Expression with resultType string).
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
servicePrincipalCredentialType Object
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCert AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCertPassword AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
version String
Version of the linked service.
servicePrincipalId This property is required. any
The application (client) ID of your application registered in Azure Active Directory. Make sure to grant SharePoint site permission to this application. Type: string (or Expression with resultType string).
siteUrl This property is required. any
The URL of the SharePoint Online site. For example, https://contoso.sharepoint.com/sites/siteName. Type: string (or Expression with resultType string).
tenantId This property is required. any
The tenant ID under which your application resides. You can find it from Azure portal Active Directory overview page. Type: string (or Expression with resultType string).
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
servicePrincipalCredentialType any
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCert AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCertPassword AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
version string
Version of the linked service.
service_principal_id This property is required. Any
The application (client) ID of your application registered in Azure Active Directory. Make sure to grant SharePoint site permission to this application. Type: string (or Expression with resultType string).
site_url This property is required. Any
The URL of the SharePoint Online site. For example, https://contoso.sharepoint.com/sites/siteName. Type: string (or Expression with resultType string).
tenant_id This property is required. Any
The tenant ID under which your application resides. You can find it from Azure portal Active Directory overview page. Type: string (or Expression with resultType string).
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
service_principal_credential_type Any
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
service_principal_embedded_cert AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
service_principal_embedded_cert_password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
service_principal_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
version str
Version of the linked service.
servicePrincipalId This property is required. Any
The application (client) ID of your application registered in Azure Active Directory. Make sure to grant SharePoint site permission to this application. Type: string (or Expression with resultType string).
siteUrl This property is required. Any
The URL of the SharePoint Online site. For example, https://contoso.sharepoint.com/sites/siteName. Type: string (or Expression with resultType string).
tenantId This property is required. Any
The tenant ID under which your application resides. You can find it from Azure portal Active Directory overview page. Type: string (or Expression with resultType string).
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
servicePrincipalCredentialType Any
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCert Property Map | Property Map
Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
servicePrincipalEmbeddedCertPassword Property Map | Property Map
Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
servicePrincipalKey Property Map | Property Map
The client secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
version String
Version of the linked service.

ShopifyLinkedService
, ShopifyLinkedServiceArgs

Host This property is required. object
The endpoint of the Shopify server. (i.e. mystore.myshopify.com)
AccessToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The API access token that can be used to access Shopify’s data. The token won't expire if it is offline mode.
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
UseEncryptedEndpoints object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
Host This property is required. interface{}
The endpoint of the Shopify server. (i.e. mystore.myshopify.com)
AccessToken AzureKeyVaultSecretReference | SecureString
The API access token that can be used to access Shopify’s data. The token won't expire if it is offline mode.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecification
Parameters for linked service.
UseEncryptedEndpoints interface{}
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification interface{}
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification interface{}
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
host This property is required. Object
The endpoint of the Shopify server. (i.e. mystore.myshopify.com)
accessToken AzureKeyVaultSecretReference | SecureString
The API access token that can be used to access Shopify’s data. The token won't expire if it is offline mode.
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
useEncryptedEndpoints Object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.
host This property is required. any
The endpoint of the Shopify server. (i.e. mystore.myshopify.com)
accessToken AzureKeyVaultSecretReference | SecureString
The API access token that can be used to access Shopify’s data. The token won't expire if it is offline mode.
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
useEncryptedEndpoints any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version string
Version of the linked service.
host This property is required. Any
The endpoint of the Shopify server. (i.e. mystore.myshopify.com)
access_token AzureKeyVaultSecretReference | SecureString
The API access token that can be used to access Shopify’s data. The token won't expire if it is offline mode.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
use_encrypted_endpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
use_host_verification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
use_peer_verification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version str
Version of the linked service.
host This property is required. Any
The endpoint of the Shopify server. (i.e. mystore.myshopify.com)
accessToken Property Map | Property Map
The API access token that can be used to access Shopify’s data. The token won't expire if it is offline mode.
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
useEncryptedEndpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.

ShopifyLinkedServiceResponse
, ShopifyLinkedServiceResponseArgs

Host This property is required. object
The endpoint of the Shopify server. (i.e. mystore.myshopify.com)
AccessToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The API access token that can be used to access Shopify’s data. The token won't expire if it is offline mode.
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
UseEncryptedEndpoints object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
Host This property is required. interface{}
The endpoint of the Shopify server. (i.e. mystore.myshopify.com)
AccessToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The API access token that can be used to access Shopify’s data. The token won't expire if it is offline mode.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
UseEncryptedEndpoints interface{}
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification interface{}
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification interface{}
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
host This property is required. Object
The endpoint of the Shopify server. (i.e. mystore.myshopify.com)
accessToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The API access token that can be used to access Shopify’s data. The token won't expire if it is offline mode.
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
useEncryptedEndpoints Object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.
host This property is required. any
The endpoint of the Shopify server. (i.e. mystore.myshopify.com)
accessToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The API access token that can be used to access Shopify’s data. The token won't expire if it is offline mode.
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
useEncryptedEndpoints any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version string
Version of the linked service.
host This property is required. Any
The endpoint of the Shopify server. (i.e. mystore.myshopify.com)
access_token AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The API access token that can be used to access Shopify’s data. The token won't expire if it is offline mode.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
use_encrypted_endpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
use_host_verification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
use_peer_verification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version str
Version of the linked service.
host This property is required. Any
The endpoint of the Shopify server. (i.e. mystore.myshopify.com)
accessToken Property Map | Property Map
The API access token that can be used to access Shopify’s data. The token won't expire if it is offline mode.
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
useEncryptedEndpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.

SmartsheetLinkedService
, SmartsheetLinkedServiceArgs

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

SmartsheetLinkedServiceResponse
, SmartsheetLinkedServiceResponseArgs

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

SnowflakeAuthenticationType
, SnowflakeAuthenticationTypeArgs

Basic
Basic
KeyPair
KeyPair
AADServicePrincipal
AADServicePrincipal
SnowflakeAuthenticationTypeBasic
Basic
SnowflakeAuthenticationTypeKeyPair
KeyPair
SnowflakeAuthenticationTypeAADServicePrincipal
AADServicePrincipal
Basic
Basic
KeyPair
KeyPair
AADServicePrincipal
AADServicePrincipal
Basic
Basic
KeyPair
KeyPair
AADServicePrincipal
AADServicePrincipal
BASIC
Basic
KEY_PAIR
KeyPair
AAD_SERVICE_PRINCIPAL
AADServicePrincipal
"Basic"
Basic
"KeyPair"
KeyPair
"AADServicePrincipal"
AADServicePrincipal

SnowflakeLinkedService
, SnowflakeLinkedServiceArgs

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

SnowflakeLinkedServiceResponse
, SnowflakeLinkedServiceResponseArgs

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

SnowflakeV2LinkedService
, SnowflakeV2LinkedServiceArgs

AccountIdentifier This property is required. object
The account identifier of your Snowflake account, e.g. xy12345.east-us-2.azure
Database This property is required. object
The name of the Snowflake database.
Warehouse This property is required. object
The name of the Snowflake warehouse.
Annotations List<object>
List of tags that can be used for describing the linked service.
AuthenticationType string | Pulumi.AzureNative.DataFactory.SnowflakeAuthenticationType
The type used for authentication. Type: string.
ClientId object
The client ID of the application registered in Azure Active Directory for AADServicePrincipal authentication.
ClientSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The Azure key vault secret reference of client secret for AADServicePrincipal authentication.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Host object
The host name of the Snowflake account.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The Azure key vault secret reference of password in connection string.
PrivateKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The Azure key vault secret reference of privateKey for KeyPair auth.
PrivateKeyPassphrase Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The Azure key vault secret reference of private key password for KeyPair auth with encrypted private key.
Scope object
The scope of the application registered in Azure Active Directory for AADServicePrincipal authentication.
TenantId object
The tenant ID of the application registered in Azure Active Directory for AADServicePrincipal authentication.
User object
The name of the Snowflake user.
Version string
Version of the linked service.
AccountIdentifier This property is required. interface{}
The account identifier of your Snowflake account, e.g. xy12345.east-us-2.azure
Database This property is required. interface{}
The name of the Snowflake database.
Warehouse This property is required. interface{}
The name of the Snowflake warehouse.
Annotations []interface{}
List of tags that can be used for describing the linked service.
AuthenticationType string | SnowflakeAuthenticationType
The type used for authentication. Type: string.
ClientId interface{}
The client ID of the application registered in Azure Active Directory for AADServicePrincipal authentication.
ClientSecret AzureKeyVaultSecretReference | SecureString
The Azure key vault secret reference of client secret for AADServicePrincipal authentication.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Host interface{}
The host name of the Snowflake account.
Parameters map[string]ParameterSpecification
Parameters for linked service.
Password AzureKeyVaultSecretReference | SecureString
The Azure key vault secret reference of password in connection string.
PrivateKey AzureKeyVaultSecretReference | SecureString
The Azure key vault secret reference of privateKey for KeyPair auth.
PrivateKeyPassphrase AzureKeyVaultSecretReference | SecureString
The Azure key vault secret reference of private key password for KeyPair auth with encrypted private key.
Scope interface{}
The scope of the application registered in Azure Active Directory for AADServicePrincipal authentication.
TenantId interface{}
The tenant ID of the application registered in Azure Active Directory for AADServicePrincipal authentication.
User interface{}
The name of the Snowflake user.
Version string
Version of the linked service.
accountIdentifier This property is required. Object
The account identifier of your Snowflake account, e.g. xy12345.east-us-2.azure
database This property is required. Object
The name of the Snowflake database.
warehouse This property is required. Object
The name of the Snowflake warehouse.
annotations List<Object>
List of tags that can be used for describing the linked service.
authenticationType String | SnowflakeAuthenticationType
The type used for authentication. Type: string.
clientId Object
The client ID of the application registered in Azure Active Directory for AADServicePrincipal authentication.
clientSecret AzureKeyVaultSecretReference | SecureString
The Azure key vault secret reference of client secret for AADServicePrincipal authentication.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
host Object
The host name of the Snowflake account.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The Azure key vault secret reference of password in connection string.
privateKey AzureKeyVaultSecretReference | SecureString
The Azure key vault secret reference of privateKey for KeyPair auth.
privateKeyPassphrase AzureKeyVaultSecretReference | SecureString
The Azure key vault secret reference of private key password for KeyPair auth with encrypted private key.
scope Object
The scope of the application registered in Azure Active Directory for AADServicePrincipal authentication.
tenantId Object
The tenant ID of the application registered in Azure Active Directory for AADServicePrincipal authentication.
user Object
The name of the Snowflake user.
version String
Version of the linked service.
accountIdentifier This property is required. any
The account identifier of your Snowflake account, e.g. xy12345.east-us-2.azure
database This property is required. any
The name of the Snowflake database.
warehouse This property is required. any
The name of the Snowflake warehouse.
annotations any[]
List of tags that can be used for describing the linked service.
authenticationType string | SnowflakeAuthenticationType
The type used for authentication. Type: string.
clientId any
The client ID of the application registered in Azure Active Directory for AADServicePrincipal authentication.
clientSecret AzureKeyVaultSecretReference | SecureString
The Azure key vault secret reference of client secret for AADServicePrincipal authentication.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
host any
The host name of the Snowflake account.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The Azure key vault secret reference of password in connection string.
privateKey AzureKeyVaultSecretReference | SecureString
The Azure key vault secret reference of privateKey for KeyPair auth.
privateKeyPassphrase AzureKeyVaultSecretReference | SecureString
The Azure key vault secret reference of private key password for KeyPair auth with encrypted private key.
scope any
The scope of the application registered in Azure Active Directory for AADServicePrincipal authentication.
tenantId any
The tenant ID of the application registered in Azure Active Directory for AADServicePrincipal authentication.
user any
The name of the Snowflake user.
version string
Version of the linked service.
account_identifier This property is required. Any
The account identifier of your Snowflake account, e.g. xy12345.east-us-2.azure
database This property is required. Any
The name of the Snowflake database.
warehouse This property is required. Any
The name of the Snowflake warehouse.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
authentication_type str | SnowflakeAuthenticationType
The type used for authentication. Type: string.
client_id Any
The client ID of the application registered in Azure Active Directory for AADServicePrincipal authentication.
client_secret AzureKeyVaultSecretReference | SecureString
The Azure key vault secret reference of client secret for AADServicePrincipal authentication.
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
host Any
The host name of the Snowflake account.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The Azure key vault secret reference of password in connection string.
private_key AzureKeyVaultSecretReference | SecureString
The Azure key vault secret reference of privateKey for KeyPair auth.
private_key_passphrase AzureKeyVaultSecretReference | SecureString
The Azure key vault secret reference of private key password for KeyPair auth with encrypted private key.
scope Any
The scope of the application registered in Azure Active Directory for AADServicePrincipal authentication.
tenant_id Any
The tenant ID of the application registered in Azure Active Directory for AADServicePrincipal authentication.
user Any
The name of the Snowflake user.
version str
Version of the linked service.
accountIdentifier This property is required. Any
The account identifier of your Snowflake account, e.g. xy12345.east-us-2.azure
database This property is required. Any
The name of the Snowflake database.
warehouse This property is required. Any
The name of the Snowflake warehouse.
annotations List<Any>
List of tags that can be used for describing the linked service.
authenticationType String | "Basic" | "KeyPair" | "AADServicePrincipal"
The type used for authentication. Type: string.
clientId Any
The client ID of the application registered in Azure Active Directory for AADServicePrincipal authentication.
clientSecret Property Map | Property Map
The Azure key vault secret reference of client secret for AADServicePrincipal authentication.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
host Any
The host name of the Snowflake account.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
The Azure key vault secret reference of password in connection string.
privateKey Property Map | Property Map
The Azure key vault secret reference of privateKey for KeyPair auth.
privateKeyPassphrase Property Map | Property Map
The Azure key vault secret reference of private key password for KeyPair auth with encrypted private key.
scope Any
The scope of the application registered in Azure Active Directory for AADServicePrincipal authentication.
tenantId Any
The tenant ID of the application registered in Azure Active Directory for AADServicePrincipal authentication.
user Any
The name of the Snowflake user.
version String
Version of the linked service.

SnowflakeV2LinkedServiceResponse
, SnowflakeV2LinkedServiceResponseArgs

AccountIdentifier This property is required. object
The account identifier of your Snowflake account, e.g. xy12345.east-us-2.azure
Database This property is required. object
The name of the Snowflake database.
Warehouse This property is required. object
The name of the Snowflake warehouse.
Annotations List<object>
List of tags that can be used for describing the linked service.
AuthenticationType string
The type used for authentication. Type: string.
ClientId object
The client ID of the application registered in Azure Active Directory for AADServicePrincipal authentication.
ClientSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The Azure key vault secret reference of client secret for AADServicePrincipal authentication.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Host object
The host name of the Snowflake account.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The Azure key vault secret reference of password in connection string.
PrivateKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The Azure key vault secret reference of privateKey for KeyPair auth.
PrivateKeyPassphrase Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The Azure key vault secret reference of private key password for KeyPair auth with encrypted private key.
Scope object
The scope of the application registered in Azure Active Directory for AADServicePrincipal authentication.
TenantId object
The tenant ID of the application registered in Azure Active Directory for AADServicePrincipal authentication.
User object
The name of the Snowflake user.
Version string
Version of the linked service.
AccountIdentifier This property is required. interface{}
The account identifier of your Snowflake account, e.g. xy12345.east-us-2.azure
Database This property is required. interface{}
The name of the Snowflake database.
Warehouse This property is required. interface{}
The name of the Snowflake warehouse.
Annotations []interface{}
List of tags that can be used for describing the linked service.
AuthenticationType string
The type used for authentication. Type: string.
ClientId interface{}
The client ID of the application registered in Azure Active Directory for AADServicePrincipal authentication.
ClientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The Azure key vault secret reference of client secret for AADServicePrincipal authentication.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Host interface{}
The host name of the Snowflake account.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The Azure key vault secret reference of password in connection string.
PrivateKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The Azure key vault secret reference of privateKey for KeyPair auth.
PrivateKeyPassphrase AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The Azure key vault secret reference of private key password for KeyPair auth with encrypted private key.
Scope interface{}
The scope of the application registered in Azure Active Directory for AADServicePrincipal authentication.
TenantId interface{}
The tenant ID of the application registered in Azure Active Directory for AADServicePrincipal authentication.
User interface{}
The name of the Snowflake user.
Version string
Version of the linked service.
accountIdentifier This property is required. Object
The account identifier of your Snowflake account, e.g. xy12345.east-us-2.azure
database This property is required. Object
The name of the Snowflake database.
warehouse This property is required. Object
The name of the Snowflake warehouse.
annotations List<Object>
List of tags that can be used for describing the linked service.
authenticationType String
The type used for authentication. Type: string.
clientId Object
The client ID of the application registered in Azure Active Directory for AADServicePrincipal authentication.
clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The Azure key vault secret reference of client secret for AADServicePrincipal authentication.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
host Object
The host name of the Snowflake account.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The Azure key vault secret reference of password in connection string.
privateKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The Azure key vault secret reference of privateKey for KeyPair auth.
privateKeyPassphrase AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The Azure key vault secret reference of private key password for KeyPair auth with encrypted private key.
scope Object
The scope of the application registered in Azure Active Directory for AADServicePrincipal authentication.
tenantId Object
The tenant ID of the application registered in Azure Active Directory for AADServicePrincipal authentication.
user Object
The name of the Snowflake user.
version String
Version of the linked service.
accountIdentifier This property is required. any
The account identifier of your Snowflake account, e.g. xy12345.east-us-2.azure
database This property is required. any
The name of the Snowflake database.
warehouse This property is required. any
The name of the Snowflake warehouse.
annotations any[]
List of tags that can be used for describing the linked service.
authenticationType string
The type used for authentication. Type: string.
clientId any
The client ID of the application registered in Azure Active Directory for AADServicePrincipal authentication.
clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The Azure key vault secret reference of client secret for AADServicePrincipal authentication.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
host any
The host name of the Snowflake account.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The Azure key vault secret reference of password in connection string.
privateKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The Azure key vault secret reference of privateKey for KeyPair auth.
privateKeyPassphrase AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The Azure key vault secret reference of private key password for KeyPair auth with encrypted private key.
scope any
The scope of the application registered in Azure Active Directory for AADServicePrincipal authentication.
tenantId any
The tenant ID of the application registered in Azure Active Directory for AADServicePrincipal authentication.
user any
The name of the Snowflake user.
version string
Version of the linked service.
account_identifier This property is required. Any
The account identifier of your Snowflake account, e.g. xy12345.east-us-2.azure
database This property is required. Any
The name of the Snowflake database.
warehouse This property is required. Any
The name of the Snowflake warehouse.
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.
client_id Any
The client ID of the application registered in Azure Active Directory for AADServicePrincipal authentication.
client_secret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The Azure key vault secret reference of client secret for AADServicePrincipal authentication.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
host Any
The host name of the Snowflake account.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The Azure key vault secret reference of password in connection string.
private_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The Azure key vault secret reference of privateKey for KeyPair auth.
private_key_passphrase AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The Azure key vault secret reference of private key password for KeyPair auth with encrypted private key.
scope Any
The scope of the application registered in Azure Active Directory for AADServicePrincipal authentication.
tenant_id Any
The tenant ID of the application registered in Azure Active Directory for AADServicePrincipal authentication.
user Any
The name of the Snowflake user.
version str
Version of the linked service.
accountIdentifier This property is required. Any
The account identifier of your Snowflake account, e.g. xy12345.east-us-2.azure
database This property is required. Any
The name of the Snowflake database.
warehouse This property is required. Any
The name of the Snowflake warehouse.
annotations List<Any>
List of tags that can be used for describing the linked service.
authenticationType String
The type used for authentication. Type: string.
clientId Any
The client ID of the application registered in Azure Active Directory for AADServicePrincipal authentication.
clientSecret Property Map | Property Map
The Azure key vault secret reference of client secret for AADServicePrincipal authentication.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
host Any
The host name of the Snowflake account.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
The Azure key vault secret reference of password in connection string.
privateKey Property Map | Property Map
The Azure key vault secret reference of privateKey for KeyPair auth.
privateKeyPassphrase Property Map | Property Map
The Azure key vault secret reference of private key password for KeyPair auth with encrypted private key.
scope Any
The scope of the application registered in Azure Active Directory for AADServicePrincipal authentication.
tenantId Any
The tenant ID of the application registered in Azure Active Directory for AADServicePrincipal authentication.
user Any
The name of the Snowflake user.
version String
Version of the linked service.

SparkAuthenticationType
, SparkAuthenticationTypeArgs

Anonymous
Anonymous
Username
Username
UsernameAndPassword
UsernameAndPassword
WindowsAzureHDInsightService
WindowsAzureHDInsightService
SparkAuthenticationTypeAnonymous
Anonymous
SparkAuthenticationTypeUsername
Username
SparkAuthenticationTypeUsernameAndPassword
UsernameAndPassword
SparkAuthenticationTypeWindowsAzureHDInsightService
WindowsAzureHDInsightService
Anonymous
Anonymous
Username
Username
UsernameAndPassword
UsernameAndPassword
WindowsAzureHDInsightService
WindowsAzureHDInsightService
Anonymous
Anonymous
Username
Username
UsernameAndPassword
UsernameAndPassword
WindowsAzureHDInsightService
WindowsAzureHDInsightService
ANONYMOUS
Anonymous
USERNAME
Username
USERNAME_AND_PASSWORD
UsernameAndPassword
WINDOWS_AZURE_HD_INSIGHT_SERVICE
WindowsAzureHDInsightService
"Anonymous"
Anonymous
"Username"
Username
"UsernameAndPassword"
UsernameAndPassword
"WindowsAzureHDInsightService"
WindowsAzureHDInsightService

SparkLinkedService
, SparkLinkedServiceArgs

AuthenticationType This property is required. string | Pulumi.AzureNative.DataFactory.SparkAuthenticationType
The authentication method used to access the Spark server.
Host This property is required. object
IP address or host name of the Spark server
Port This property is required. object
The TCP port that the Spark server uses to listen for client connections.
AllowHostNameCNMismatch object
Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
AllowSelfSignedServerCert object
Specifies whether to allow self-signed certificates from the server. The default value is false.
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EnableSsl object
Specifies whether the connections to the server are encrypted using SSL. The default value is false.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
HttpPath object
The partial URL corresponding to the Spark server.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The password corresponding to the user name that you provided in the Username field
ServerType string | Pulumi.AzureNative.DataFactory.SparkServerType
The type of Spark server.
ThriftTransportProtocol string | Pulumi.AzureNative.DataFactory.SparkThriftTransportProtocol
The transport protocol to use in the Thrift layer.
TrustedCertPath object
The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
UseSystemTrustStore object
Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
Username object
The user name that you use to access Spark Server.
Version string
Version of the linked service.
AuthenticationType This property is required. string | SparkAuthenticationType
The authentication method used to access the Spark server.
Host This property is required. interface{}
IP address or host name of the Spark server
Port This property is required. interface{}
The TCP port that the Spark server uses to listen for client connections.
AllowHostNameCNMismatch interface{}
Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
AllowSelfSignedServerCert interface{}
Specifies whether to allow self-signed certificates from the server. The default value is false.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EnableSsl interface{}
Specifies whether the connections to the server are encrypted using SSL. The default value is false.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
HttpPath interface{}
The partial URL corresponding to the Spark server.
Parameters map[string]ParameterSpecification
Parameters for linked service.
Password AzureKeyVaultSecretReference | SecureString
The password corresponding to the user name that you provided in the Username field
ServerType string | SparkServerType
The type of Spark server.
ThriftTransportProtocol string | SparkThriftTransportProtocol
The transport protocol to use in the Thrift layer.
TrustedCertPath interface{}
The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
UseSystemTrustStore interface{}
Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
Username interface{}
The user name that you use to access Spark Server.
Version string
Version of the linked service.
authenticationType This property is required. String | SparkAuthenticationType
The authentication method used to access the Spark server.
host This property is required. Object
IP address or host name of the Spark server
port This property is required. Object
The TCP port that the Spark server uses to listen for client connections.
allowHostNameCNMismatch Object
Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
allowSelfSignedServerCert Object
Specifies whether to allow self-signed certificates from the server. The default value is false.
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
enableSsl Object
Specifies whether the connections to the server are encrypted using SSL. The default value is false.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
httpPath Object
The partial URL corresponding to the Spark server.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password corresponding to the user name that you provided in the Username field
serverType String | SparkServerType
The type of Spark server.
thriftTransportProtocol String | SparkThriftTransportProtocol
The transport protocol to use in the Thrift layer.
trustedCertPath Object
The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
useSystemTrustStore Object
Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
username Object
The user name that you use to access Spark Server.
version String
Version of the linked service.
authenticationType This property is required. string | SparkAuthenticationType
The authentication method used to access the Spark server.
host This property is required. any
IP address or host name of the Spark server
port This property is required. any
The TCP port that the Spark server uses to listen for client connections.
allowHostNameCNMismatch any
Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
allowSelfSignedServerCert any
Specifies whether to allow self-signed certificates from the server. The default value is false.
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
enableSsl any
Specifies whether the connections to the server are encrypted using SSL. The default value is false.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
httpPath any
The partial URL corresponding to the Spark server.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password corresponding to the user name that you provided in the Username field
serverType string | SparkServerType
The type of Spark server.
thriftTransportProtocol string | SparkThriftTransportProtocol
The transport protocol to use in the Thrift layer.
trustedCertPath any
The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
useSystemTrustStore any
Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
username any
The user name that you use to access Spark Server.
version string
Version of the linked service.
authentication_type This property is required. str | SparkAuthenticationType
The authentication method used to access the Spark server.
host This property is required. Any
IP address or host name of the Spark server
port This property is required. Any
The TCP port that the Spark server uses to listen for client connections.
allow_host_name_cn_mismatch Any
Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
allow_self_signed_server_cert Any
Specifies whether to allow self-signed certificates from the server. The default value is false.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
enable_ssl Any
Specifies whether the connections to the server are encrypted using SSL. The default value is false.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
http_path Any
The partial URL corresponding to the Spark server.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password corresponding to the user name that you provided in the Username field
server_type str | SparkServerType
The type of Spark server.
thrift_transport_protocol str | SparkThriftTransportProtocol
The transport protocol to use in the Thrift layer.
trusted_cert_path Any
The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
use_system_trust_store Any
Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
username Any
The user name that you use to access Spark Server.
version str
Version of the linked service.
authenticationType This property is required. String | "Anonymous" | "Username" | "UsernameAndPassword" | "WindowsAzureHDInsightService"
The authentication method used to access the Spark server.
host This property is required. Any
IP address or host name of the Spark server
port This property is required. Any
The TCP port that the Spark server uses to listen for client connections.
allowHostNameCNMismatch Any
Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
allowSelfSignedServerCert Any
Specifies whether to allow self-signed certificates from the server. The default value is false.
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
enableSsl Any
Specifies whether the connections to the server are encrypted using SSL. The default value is false.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
httpPath Any
The partial URL corresponding to the Spark server.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
The password corresponding to the user name that you provided in the Username field
serverType String | "SharkServer" | "SharkServer2" | "SparkThriftServer"
The type of Spark server.
thriftTransportProtocol String | "Binary" | "SASL" | "HTTP "
The transport protocol to use in the Thrift layer.
trustedCertPath Any
The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
useSystemTrustStore Any
Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
username Any
The user name that you use to access Spark Server.
version String
Version of the linked service.

SparkLinkedServiceResponse
, SparkLinkedServiceResponseArgs

AuthenticationType This property is required. string
The authentication method used to access the Spark server.
Host This property is required. object
IP address or host name of the Spark server
Port This property is required. object
The TCP port that the Spark server uses to listen for client connections.
AllowHostNameCNMismatch object
Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
AllowSelfSignedServerCert object
Specifies whether to allow self-signed certificates from the server. The default value is false.
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EnableSsl object
Specifies whether the connections to the server are encrypted using SSL. The default value is false.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
HttpPath object
The partial URL corresponding to the Spark server.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The password corresponding to the user name that you provided in the Username field
ServerType string
The type of Spark server.
ThriftTransportProtocol string
The transport protocol to use in the Thrift layer.
TrustedCertPath object
The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
UseSystemTrustStore object
Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
Username object
The user name that you use to access Spark Server.
Version string
Version of the linked service.
AuthenticationType This property is required. string
The authentication method used to access the Spark server.
Host This property is required. interface{}
IP address or host name of the Spark server
Port This property is required. interface{}
The TCP port that the Spark server uses to listen for client connections.
AllowHostNameCNMismatch interface{}
Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
AllowSelfSignedServerCert interface{}
Specifies whether to allow self-signed certificates from the server. The default value is false.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EnableSsl interface{}
Specifies whether the connections to the server are encrypted using SSL. The default value is false.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
HttpPath interface{}
The partial URL corresponding to the Spark server.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password corresponding to the user name that you provided in the Username field
ServerType string
The type of Spark server.
ThriftTransportProtocol string
The transport protocol to use in the Thrift layer.
TrustedCertPath interface{}
The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
UseSystemTrustStore interface{}
Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
Username interface{}
The user name that you use to access Spark Server.
Version string
Version of the linked service.
authenticationType This property is required. String
The authentication method used to access the Spark server.
host This property is required. Object
IP address or host name of the Spark server
port This property is required. Object
The TCP port that the Spark server uses to listen for client connections.
allowHostNameCNMismatch Object
Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
allowSelfSignedServerCert Object
Specifies whether to allow self-signed certificates from the server. The default value is false.
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
enableSsl Object
Specifies whether the connections to the server are encrypted using SSL. The default value is false.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
httpPath Object
The partial URL corresponding to the Spark server.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password corresponding to the user name that you provided in the Username field
serverType String
The type of Spark server.
thriftTransportProtocol String
The transport protocol to use in the Thrift layer.
trustedCertPath Object
The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
useSystemTrustStore Object
Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
username Object
The user name that you use to access Spark Server.
version String
Version of the linked service.
authenticationType This property is required. string
The authentication method used to access the Spark server.
host This property is required. any
IP address or host name of the Spark server
port This property is required. any
The TCP port that the Spark server uses to listen for client connections.
allowHostNameCNMismatch any
Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
allowSelfSignedServerCert any
Specifies whether to allow self-signed certificates from the server. The default value is false.
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
enableSsl any
Specifies whether the connections to the server are encrypted using SSL. The default value is false.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
httpPath any
The partial URL corresponding to the Spark server.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password corresponding to the user name that you provided in the Username field
serverType string
The type of Spark server.
thriftTransportProtocol string
The transport protocol to use in the Thrift layer.
trustedCertPath any
The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
useSystemTrustStore any
Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
username any
The user name that you use to access Spark Server.
version string
Version of the linked service.
authentication_type This property is required. str
The authentication method used to access the Spark server.
host This property is required. Any
IP address or host name of the Spark server
port This property is required. Any
The TCP port that the Spark server uses to listen for client connections.
allow_host_name_cn_mismatch Any
Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
allow_self_signed_server_cert Any
Specifies whether to allow self-signed certificates from the server. The default value is false.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
enable_ssl Any
Specifies whether the connections to the server are encrypted using SSL. The default value is false.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
http_path Any
The partial URL corresponding to the Spark server.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password corresponding to the user name that you provided in the Username field
server_type str
The type of Spark server.
thrift_transport_protocol str
The transport protocol to use in the Thrift layer.
trusted_cert_path Any
The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
use_system_trust_store Any
Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
username Any
The user name that you use to access Spark Server.
version str
Version of the linked service.
authenticationType This property is required. String
The authentication method used to access the Spark server.
host This property is required. Any
IP address or host name of the Spark server
port This property is required. Any
The TCP port that the Spark server uses to listen for client connections.
allowHostNameCNMismatch Any
Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
allowSelfSignedServerCert Any
Specifies whether to allow self-signed certificates from the server. The default value is false.
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
enableSsl Any
Specifies whether the connections to the server are encrypted using SSL. The default value is false.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
httpPath Any
The partial URL corresponding to the Spark server.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
The password corresponding to the user name that you provided in the Username field
serverType String
The type of Spark server.
thriftTransportProtocol String
The transport protocol to use in the Thrift layer.
trustedCertPath Any
The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
useSystemTrustStore Any
Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
username Any
The user name that you use to access Spark Server.
version String
Version of the linked service.

SparkServerType
, SparkServerTypeArgs

SharkServer
SharkServer
SharkServer2
SharkServer2
SparkThriftServer
SparkThriftServer
SparkServerTypeSharkServer
SharkServer
SparkServerTypeSharkServer2
SharkServer2
SparkServerTypeSparkThriftServer
SparkThriftServer
SharkServer
SharkServer
SharkServer2
SharkServer2
SparkThriftServer
SparkThriftServer
SharkServer
SharkServer
SharkServer2
SharkServer2
SparkThriftServer
SparkThriftServer
SHARK_SERVER
SharkServer
SHARK_SERVER2
SharkServer2
SPARK_THRIFT_SERVER
SparkThriftServer
"SharkServer"
SharkServer
"SharkServer2"
SharkServer2
"SparkThriftServer"
SparkThriftServer

SparkThriftTransportProtocol
, SparkThriftTransportProtocolArgs

Binary
Binary
SASL
SASL
HTTP_
HTTP
SparkThriftTransportProtocolBinary
Binary
SparkThriftTransportProtocolSASL
SASL
SparkThriftTransportProtocol_HTTP_
HTTP
Binary
Binary
SASL
SASL
HTTP_
HTTP
Binary
Binary
SASL
SASL
HTTP_
HTTP
BINARY
Binary
SASL
SASL
HTT_P_
HTTP
"Binary"
Binary
"SASL"
SASL
"HTTP "
HTTP

SqlAlwaysEncryptedAkvAuthType
, SqlAlwaysEncryptedAkvAuthTypeArgs

ServicePrincipal
ServicePrincipal
ManagedIdentity
ManagedIdentity
UserAssignedManagedIdentity
UserAssignedManagedIdentity
SqlAlwaysEncryptedAkvAuthTypeServicePrincipal
ServicePrincipal
SqlAlwaysEncryptedAkvAuthTypeManagedIdentity
ManagedIdentity
SqlAlwaysEncryptedAkvAuthTypeUserAssignedManagedIdentity
UserAssignedManagedIdentity
ServicePrincipal
ServicePrincipal
ManagedIdentity
ManagedIdentity
UserAssignedManagedIdentity
UserAssignedManagedIdentity
ServicePrincipal
ServicePrincipal
ManagedIdentity
ManagedIdentity
UserAssignedManagedIdentity
UserAssignedManagedIdentity
SERVICE_PRINCIPAL
ServicePrincipal
MANAGED_IDENTITY
ManagedIdentity
USER_ASSIGNED_MANAGED_IDENTITY
UserAssignedManagedIdentity
"ServicePrincipal"
ServicePrincipal
"ManagedIdentity"
ManagedIdentity
"UserAssignedManagedIdentity"
UserAssignedManagedIdentity

SqlAlwaysEncryptedProperties
, SqlAlwaysEncryptedPropertiesArgs

AlwaysEncryptedAkvAuthType This property is required. string | Pulumi.AzureNative.DataFactory.SqlAlwaysEncryptedAkvAuthType
Sql always encrypted AKV authentication type. Type: string.
Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReference
The credential reference containing authentication information.
ServicePrincipalId object
The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string).
ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The key of the service principal used to authenticate against Azure Key Vault.
AlwaysEncryptedAkvAuthType This property is required. string | SqlAlwaysEncryptedAkvAuthType
Sql always encrypted AKV authentication type. Type: string.
Credential CredentialReference
The credential reference containing authentication information.
ServicePrincipalId interface{}
The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string).
ServicePrincipalKey AzureKeyVaultSecretReference | SecureString
The key of the service principal used to authenticate against Azure Key Vault.
alwaysEncryptedAkvAuthType This property is required. String | SqlAlwaysEncryptedAkvAuthType
Sql always encrypted AKV authentication type. Type: string.
credential CredentialReference
The credential reference containing authentication information.
servicePrincipalId Object
The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string).
servicePrincipalKey AzureKeyVaultSecretReference | SecureString
The key of the service principal used to authenticate against Azure Key Vault.
alwaysEncryptedAkvAuthType This property is required. string | SqlAlwaysEncryptedAkvAuthType
Sql always encrypted AKV authentication type. Type: string.
credential CredentialReference
The credential reference containing authentication information.
servicePrincipalId any
The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string).
servicePrincipalKey AzureKeyVaultSecretReference | SecureString
The key of the service principal used to authenticate against Azure Key Vault.
always_encrypted_akv_auth_type This property is required. str | SqlAlwaysEncryptedAkvAuthType
Sql always encrypted AKV authentication type. Type: string.
credential CredentialReference
The credential reference containing authentication information.
service_principal_id Any
The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string).
service_principal_key AzureKeyVaultSecretReference | SecureString
The key of the service principal used to authenticate against Azure Key Vault.
alwaysEncryptedAkvAuthType This property is required. String | "ServicePrincipal" | "ManagedIdentity" | "UserAssignedManagedIdentity"
Sql always encrypted AKV authentication type. Type: string.
credential Property Map
The credential reference containing authentication information.
servicePrincipalId Any
The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string).
servicePrincipalKey Property Map | Property Map
The key of the service principal used to authenticate against Azure Key Vault.

SqlAlwaysEncryptedPropertiesResponse
, SqlAlwaysEncryptedPropertiesResponseArgs

AlwaysEncryptedAkvAuthType This property is required. string
Sql always encrypted AKV authentication type. Type: string.
Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReferenceResponse
The credential reference containing authentication information.
ServicePrincipalId object
The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string).
ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The key of the service principal used to authenticate against Azure Key Vault.
AlwaysEncryptedAkvAuthType This property is required. string
Sql always encrypted AKV authentication type. Type: string.
Credential CredentialReferenceResponse
The credential reference containing authentication information.
ServicePrincipalId interface{}
The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string).
ServicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The key of the service principal used to authenticate against Azure Key Vault.
alwaysEncryptedAkvAuthType This property is required. String
Sql always encrypted AKV authentication type. Type: string.
credential CredentialReferenceResponse
The credential reference containing authentication information.
servicePrincipalId Object
The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string).
servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The key of the service principal used to authenticate against Azure Key Vault.
alwaysEncryptedAkvAuthType This property is required. string
Sql always encrypted AKV authentication type. Type: string.
credential CredentialReferenceResponse
The credential reference containing authentication information.
servicePrincipalId any
The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string).
servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The key of the service principal used to authenticate against Azure Key Vault.
always_encrypted_akv_auth_type This property is required. str
Sql always encrypted AKV authentication type. Type: string.
credential CredentialReferenceResponse
The credential reference containing authentication information.
service_principal_id Any
The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string).
service_principal_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The key of the service principal used to authenticate against Azure Key Vault.
alwaysEncryptedAkvAuthType This property is required. String
Sql always encrypted AKV authentication type. Type: string.
credential Property Map
The credential reference containing authentication information.
servicePrincipalId Any
The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string).
servicePrincipalKey Property Map | Property Map
The key of the service principal used to authenticate against Azure Key Vault.

SqlServerAuthenticationType
, SqlServerAuthenticationTypeArgs

SQL
SQL
Windows
Windows
UserAssignedManagedIdentity
UserAssignedManagedIdentity
SqlServerAuthenticationTypeSQL
SQL
SqlServerAuthenticationTypeWindows
Windows
SqlServerAuthenticationTypeUserAssignedManagedIdentity
UserAssignedManagedIdentity
SQL
SQL
Windows
Windows
UserAssignedManagedIdentity
UserAssignedManagedIdentity
SQL
SQL
Windows
Windows
UserAssignedManagedIdentity
UserAssignedManagedIdentity
SQL
SQL
WINDOWS
Windows
USER_ASSIGNED_MANAGED_IDENTITY
UserAssignedManagedIdentity
"SQL"
SQL
"Windows"
Windows
"UserAssignedManagedIdentity"
UserAssignedManagedIdentity

SqlServerLinkedService
, SqlServerLinkedServiceArgs

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

SqlServerLinkedServiceResponse
, SqlServerLinkedServiceResponseArgs

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

SquareLinkedService
, SquareLinkedServiceArgs

Annotations List<object>
List of tags that can be used for describing the linked service.
ClientId object
The client ID associated with your Square application.
ClientSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The client secret associated with your Square application.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
ConnectionProperties object
Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Host object
The URL of the Square instance. (i.e. mystore.mysquare.com)
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
RedirectUri object
The redirect URL assigned in the Square application dashboard. (i.e. http://localhost:2500)
UseEncryptedEndpoints object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ClientId interface{}
The client ID associated with your Square application.
ClientSecret AzureKeyVaultSecretReference | SecureString
The client secret associated with your Square application.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
ConnectionProperties interface{}
Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Host interface{}
The URL of the Square instance. (i.e. mystore.mysquare.com)
Parameters map[string]ParameterSpecification
Parameters for linked service.
RedirectUri interface{}
The redirect URL assigned in the Square application dashboard. (i.e. http://localhost:2500)
UseEncryptedEndpoints interface{}
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification interface{}
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification interface{}
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
annotations List<Object>
List of tags that can be used for describing the linked service.
clientId Object
The client ID associated with your Square application.
clientSecret AzureKeyVaultSecretReference | SecureString
The client secret associated with your Square application.
connectVia IntegrationRuntimeReference
The integration runtime reference.
connectionProperties Object
Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
host Object
The URL of the Square instance. (i.e. mystore.mysquare.com)
parameters Map<String,ParameterSpecification>
Parameters for linked service.
redirectUri Object
The redirect URL assigned in the Square application dashboard. (i.e. http://localhost:2500)
useEncryptedEndpoints Object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.
annotations any[]
List of tags that can be used for describing the linked service.
clientId any
The client ID associated with your Square application.
clientSecret AzureKeyVaultSecretReference | SecureString
The client secret associated with your Square application.
connectVia IntegrationRuntimeReference
The integration runtime reference.
connectionProperties any
Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
host any
The URL of the Square instance. (i.e. mystore.mysquare.com)
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
redirectUri any
The redirect URL assigned in the Square application dashboard. (i.e. http://localhost:2500)
useEncryptedEndpoints any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version string
Version of the linked service.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
client_id Any
The client ID associated with your Square application.
client_secret AzureKeyVaultSecretReference | SecureString
The client secret associated with your Square application.
connect_via IntegrationRuntimeReference
The integration runtime reference.
connection_properties Any
Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
host Any
The URL of the Square instance. (i.e. mystore.mysquare.com)
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
redirect_uri Any
The redirect URL assigned in the Square application dashboard. (i.e. http://localhost:2500)
use_encrypted_endpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
use_host_verification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
use_peer_verification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version str
Version of the linked service.
annotations List<Any>
List of tags that can be used for describing the linked service.
clientId Any
The client ID associated with your Square application.
clientSecret Property Map | Property Map
The client secret associated with your Square application.
connectVia Property Map
The integration runtime reference.
connectionProperties Any
Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
host Any
The URL of the Square instance. (i.e. mystore.mysquare.com)
parameters Map<Property Map>
Parameters for linked service.
redirectUri Any
The redirect URL assigned in the Square application dashboard. (i.e. http://localhost:2500)
useEncryptedEndpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.

SquareLinkedServiceResponse
, SquareLinkedServiceResponseArgs

Annotations List<object>
List of tags that can be used for describing the linked service.
ClientId object
The client ID associated with your Square application.
ClientSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The client secret associated with your Square application.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
ConnectionProperties object
Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Host object
The URL of the Square instance. (i.e. mystore.mysquare.com)
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
RedirectUri object
The redirect URL assigned in the Square application dashboard. (i.e. http://localhost:2500)
UseEncryptedEndpoints object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ClientId interface{}
The client ID associated with your Square application.
ClientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret associated with your Square application.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
ConnectionProperties interface{}
Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Host interface{}
The URL of the Square instance. (i.e. mystore.mysquare.com)
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
RedirectUri interface{}
The redirect URL assigned in the Square application dashboard. (i.e. http://localhost:2500)
UseEncryptedEndpoints interface{}
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification interface{}
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification interface{}
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
annotations List<Object>
List of tags that can be used for describing the linked service.
clientId Object
The client ID associated with your Square application.
clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret associated with your Square application.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
connectionProperties Object
Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
host Object
The URL of the Square instance. (i.e. mystore.mysquare.com)
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
redirectUri Object
The redirect URL assigned in the Square application dashboard. (i.e. http://localhost:2500)
useEncryptedEndpoints Object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.
annotations any[]
List of tags that can be used for describing the linked service.
clientId any
The client ID associated with your Square application.
clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret associated with your Square application.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
connectionProperties any
Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
host any
The URL of the Square instance. (i.e. mystore.mysquare.com)
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
redirectUri any
The redirect URL assigned in the Square application dashboard. (i.e. http://localhost:2500)
useEncryptedEndpoints any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version string
Version of the linked service.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
client_id Any
The client ID associated with your Square application.
client_secret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The client secret associated with your Square application.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
connection_properties Any
Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
host Any
The URL of the Square instance. (i.e. mystore.mysquare.com)
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
redirect_uri Any
The redirect URL assigned in the Square application dashboard. (i.e. http://localhost:2500)
use_encrypted_endpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
use_host_verification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
use_peer_verification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version str
Version of the linked service.
annotations List<Any>
List of tags that can be used for describing the linked service.
clientId Any
The client ID associated with your Square application.
clientSecret Property Map | Property Map
The client secret associated with your Square application.
connectVia Property Map
The integration runtime reference.
connectionProperties Any
Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
host Any
The URL of the Square instance. (i.e. mystore.mysquare.com)
parameters Map<Property Map>
Parameters for linked service.
redirectUri Any
The redirect URL assigned in the Square application dashboard. (i.e. http://localhost:2500)
useEncryptedEndpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.

SybaseAuthenticationType
, SybaseAuthenticationTypeArgs

Basic
Basic
Windows
Windows
SybaseAuthenticationTypeBasic
Basic
SybaseAuthenticationTypeWindows
Windows
Basic
Basic
Windows
Windows
Basic
Basic
Windows
Windows
BASIC
Basic
WINDOWS
Windows
"Basic"
Basic
"Windows"
Windows

SybaseLinkedService
, SybaseLinkedServiceArgs

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

SybaseLinkedServiceResponse
, SybaseLinkedServiceResponseArgs

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

TeamDeskAuthenticationType
, TeamDeskAuthenticationTypeArgs

Basic
Basic
Token
Token
TeamDeskAuthenticationTypeBasic
Basic
TeamDeskAuthenticationTypeToken
Token
Basic
Basic
Token
Token
Basic
Basic
Token
Token
BASIC
Basic
TOKEN
Token
"Basic"
Basic
"Token"
Token

TeamDeskLinkedService
, TeamDeskLinkedServiceArgs

AuthenticationType This property is required. string | Pulumi.AzureNative.DataFactory.TeamDeskAuthenticationType
The authentication type to use.
Url This property is required. object
The url to connect TeamDesk source. Type: string (or Expression with resultType string).
Annotations List<object>
List of tags that can be used for describing the linked service.
ApiToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The api token for the TeamDesk source.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The password of the TeamDesk source.
UserName object
The username of the TeamDesk source. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
AuthenticationType This property is required. string | TeamDeskAuthenticationType
The authentication type to use.
Url This property is required. interface{}
The url to connect TeamDesk source. Type: string (or Expression with resultType string).
Annotations []interface{}
List of tags that can be used for describing the linked service.
ApiToken AzureKeyVaultSecretReference | SecureString
The api token for the TeamDesk source.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecification
Parameters for linked service.
Password AzureKeyVaultSecretReference | SecureString
The password of the TeamDesk source.
UserName interface{}
The username of the TeamDesk source. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
authenticationType This property is required. String | TeamDeskAuthenticationType
The authentication type to use.
url This property is required. Object
The url to connect TeamDesk source. Type: string (or Expression with resultType string).
annotations List<Object>
List of tags that can be used for describing the linked service.
apiToken AzureKeyVaultSecretReference | SecureString
The api token for the TeamDesk source.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password of the TeamDesk source.
userName Object
The username of the TeamDesk source. Type: string (or Expression with resultType string).
version String
Version of the linked service.
authenticationType This property is required. string | TeamDeskAuthenticationType
The authentication type to use.
url This property is required. any
The url to connect TeamDesk source. Type: string (or Expression with resultType string).
annotations any[]
List of tags that can be used for describing the linked service.
apiToken AzureKeyVaultSecretReference | SecureString
The api token for the TeamDesk source.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password of the TeamDesk source.
userName any
The username of the TeamDesk source. Type: string (or Expression with resultType string).
version string
Version of the linked service.
authentication_type This property is required. str | TeamDeskAuthenticationType
The authentication type to use.
url This property is required. Any
The url to connect TeamDesk source. Type: string (or Expression with resultType string).
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
api_token AzureKeyVaultSecretReference | SecureString
The api token for the TeamDesk source.
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password of the TeamDesk source.
user_name Any
The username of the TeamDesk source. Type: string (or Expression with resultType string).
version str
Version of the linked service.
authenticationType This property is required. String | "Basic" | "Token"
The authentication type to use.
url This property is required. Any
The url to connect TeamDesk source. Type: string (or Expression with resultType string).
annotations List<Any>
List of tags that can be used for describing the linked service.
apiToken Property Map | Property Map
The api token for the TeamDesk source.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
The password of the TeamDesk source.
userName Any
The username of the TeamDesk source. Type: string (or Expression with resultType string).
version String
Version of the linked service.

TeamDeskLinkedServiceResponse
, TeamDeskLinkedServiceResponseArgs

AuthenticationType This property is required. string
The authentication type to use.
Url This property is required. object
The url to connect TeamDesk source. Type: string (or Expression with resultType string).
Annotations List<object>
List of tags that can be used for describing the linked service.
ApiToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The api token for the TeamDesk source.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The password of the TeamDesk source.
UserName object
The username of the TeamDesk source. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
AuthenticationType This property is required. string
The authentication type to use.
Url This property is required. interface{}
The url to connect TeamDesk source. Type: string (or Expression with resultType string).
Annotations []interface{}
List of tags that can be used for describing the linked service.
ApiToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The api token for the TeamDesk source.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password of the TeamDesk source.
UserName interface{}
The username of the TeamDesk source. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
authenticationType This property is required. String
The authentication type to use.
url This property is required. Object
The url to connect TeamDesk source. Type: string (or Expression with resultType string).
annotations List<Object>
List of tags that can be used for describing the linked service.
apiToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The api token for the TeamDesk source.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password of the TeamDesk source.
userName Object
The username of the TeamDesk source. Type: string (or Expression with resultType string).
version String
Version of the linked service.
authenticationType This property is required. string
The authentication type to use.
url This property is required. any
The url to connect TeamDesk source. Type: string (or Expression with resultType string).
annotations any[]
List of tags that can be used for describing the linked service.
apiToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The api token for the TeamDesk source.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password of the TeamDesk source.
userName any
The username of the TeamDesk source. Type: string (or Expression with resultType string).
version string
Version of the linked service.
authentication_type This property is required. str
The authentication type to use.
url This property is required. Any
The url to connect TeamDesk source. Type: string (or Expression with resultType string).
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
api_token AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The api token for the TeamDesk source.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password of the TeamDesk source.
user_name Any
The username of the TeamDesk source. Type: string (or Expression with resultType string).
version str
Version of the linked service.
authenticationType This property is required. String
The authentication type to use.
url This property is required. Any
The url to connect TeamDesk source. Type: string (or Expression with resultType string).
annotations List<Any>
List of tags that can be used for describing the linked service.
apiToken Property Map | Property Map
The api token for the TeamDesk source.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
The password of the TeamDesk source.
userName Any
The username of the TeamDesk source. Type: string (or Expression with resultType string).
version String
Version of the linked service.

TeradataAuthenticationType
, TeradataAuthenticationTypeArgs

Basic
Basic
Windows
Windows
TeradataAuthenticationTypeBasic
Basic
TeradataAuthenticationTypeWindows
Windows
Basic
Basic
Windows
Windows
Basic
Basic
Windows
Windows
BASIC
Basic
WINDOWS
Windows
"Basic"
Basic
"Windows"
Windows

TeradataLinkedService
, TeradataLinkedServiceArgs

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

TeradataLinkedServiceResponse
, TeradataLinkedServiceResponseArgs

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

TwilioLinkedService
, TwilioLinkedServiceArgs

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

TwilioLinkedServiceResponse
, TwilioLinkedServiceResponseArgs

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

Type
, TypeArgs

LinkedServiceReference
LinkedServiceReference
TypeLinkedServiceReference
LinkedServiceReference
LinkedServiceReference
LinkedServiceReference
LinkedServiceReference
LinkedServiceReference
LINKED_SERVICE_REFERENCE
LinkedServiceReference
"LinkedServiceReference"
LinkedServiceReference

VerticaLinkedService
, VerticaLinkedServiceArgs

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

VerticaLinkedServiceResponse
, VerticaLinkedServiceResponseArgs

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

WarehouseLinkedService
, WarehouseLinkedServiceArgs

ArtifactId This property is required. object
The ID of Microsoft Fabric Warehouse artifact. Type: string (or Expression with resultType string).
Endpoint This property is required. object
The endpoint of Microsoft Fabric Warehouse server. Type: string (or Expression with resultType string).
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
ServicePrincipalCredential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
ServicePrincipalCredentialType object
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
ServicePrincipalId object
The ID of the application used to authenticate against Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The Key of the application used to authenticate against Microsoft Fabric 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.
WorkspaceId object
The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
ArtifactId This property is required. interface{}
The ID of Microsoft Fabric Warehouse artifact. Type: string (or Expression with resultType string).
Endpoint This property is required. interface{}
The endpoint of Microsoft Fabric Warehouse server. Type: string (or Expression with resultType string).
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecification
Parameters for linked service.
ServicePrincipalCredential AzureKeyVaultSecretReference | SecureString
The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
ServicePrincipalCredentialType interface{}
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
ServicePrincipalId interface{}
The ID of the application used to authenticate against Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
ServicePrincipalKey AzureKeyVaultSecretReference | SecureString
The Key of the application used to authenticate against Microsoft Fabric 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.
WorkspaceId interface{}
The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
artifactId This property is required. Object
The ID of Microsoft Fabric Warehouse artifact. Type: string (or Expression with resultType string).
endpoint This property is required. Object
The endpoint of Microsoft Fabric Warehouse server. Type: string (or Expression with resultType string).
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
servicePrincipalCredential AzureKeyVaultSecretReference | SecureString
The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
servicePrincipalCredentialType Object
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
servicePrincipalId Object
The ID of the application used to authenticate against Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
servicePrincipalKey AzureKeyVaultSecretReference | SecureString
The Key of the application used to authenticate against Microsoft Fabric 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.
workspaceId Object
The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
artifactId This property is required. any
The ID of Microsoft Fabric Warehouse artifact. Type: string (or Expression with resultType string).
endpoint This property is required. any
The endpoint of Microsoft Fabric Warehouse server. Type: string (or Expression with resultType string).
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
servicePrincipalCredential AzureKeyVaultSecretReference | SecureString
The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
servicePrincipalCredentialType any
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
servicePrincipalId any
The ID of the application used to authenticate against Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
servicePrincipalKey AzureKeyVaultSecretReference | SecureString
The Key of the application used to authenticate against Microsoft Fabric 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.
workspaceId any
The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
artifact_id This property is required. Any
The ID of Microsoft Fabric Warehouse artifact. Type: string (or Expression with resultType string).
endpoint This property is required. Any
The endpoint of Microsoft Fabric Warehouse server. Type: string (or Expression with resultType string).
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
service_principal_credential AzureKeyVaultSecretReference | SecureString
The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
service_principal_credential_type Any
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
service_principal_id Any
The ID of the application used to authenticate against Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
service_principal_key AzureKeyVaultSecretReference | SecureString
The Key of the application used to authenticate against Microsoft Fabric 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.
workspace_id Any
The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
artifactId This property is required. Any
The ID of Microsoft Fabric Warehouse artifact. Type: string (or Expression with resultType string).
endpoint This property is required. Any
The endpoint of Microsoft Fabric Warehouse server. Type: string (or Expression with resultType string).
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
servicePrincipalCredential Property Map | Property Map
The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
servicePrincipalCredentialType Any
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
servicePrincipalId Any
The ID of the application used to authenticate against Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
servicePrincipalKey Property Map | Property Map
The Key of the application used to authenticate against Microsoft Fabric 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.
workspaceId Any
The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).

WarehouseLinkedServiceResponse
, WarehouseLinkedServiceResponseArgs

ArtifactId This property is required. object
The ID of Microsoft Fabric Warehouse artifact. Type: string (or Expression with resultType string).
Endpoint This property is required. object
The endpoint of Microsoft Fabric Warehouse server. Type: string (or Expression with resultType string).
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
ServicePrincipalCredential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
ServicePrincipalCredentialType object
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
ServicePrincipalId object
The ID of the application used to authenticate against Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The Key of the application used to authenticate against Microsoft Fabric 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.
WorkspaceId object
The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
ArtifactId This property is required. interface{}
The ID of Microsoft Fabric Warehouse artifact. Type: string (or Expression with resultType string).
Endpoint This property is required. interface{}
The endpoint of Microsoft Fabric Warehouse server. Type: string (or Expression with resultType string).
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
ServicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
ServicePrincipalCredentialType interface{}
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
ServicePrincipalId interface{}
The ID of the application used to authenticate against Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
ServicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The Key of the application used to authenticate against Microsoft Fabric 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.
WorkspaceId interface{}
The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
artifactId This property is required. Object
The ID of Microsoft Fabric Warehouse artifact. Type: string (or Expression with resultType string).
endpoint This property is required. Object
The endpoint of Microsoft Fabric Warehouse server. Type: string (or Expression with resultType string).
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
servicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
servicePrincipalCredentialType Object
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
servicePrincipalId Object
The ID of the application used to authenticate against Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The Key of the application used to authenticate against Microsoft Fabric 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.
workspaceId Object
The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
artifactId This property is required. any
The ID of Microsoft Fabric Warehouse artifact. Type: string (or Expression with resultType string).
endpoint This property is required. any
The endpoint of Microsoft Fabric Warehouse server. Type: string (or Expression with resultType string).
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
servicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
servicePrincipalCredentialType any
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
servicePrincipalId any
The ID of the application used to authenticate against Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The Key of the application used to authenticate against Microsoft Fabric 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.
workspaceId any
The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
artifact_id This property is required. Any
The ID of Microsoft Fabric Warehouse artifact. Type: string (or Expression with resultType string).
endpoint This property is required. Any
The endpoint of Microsoft Fabric Warehouse server. Type: string (or Expression with resultType string).
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
service_principal_credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
service_principal_credential_type Any
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
service_principal_id Any
The ID of the application used to authenticate against Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
service_principal_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The Key of the application used to authenticate against Microsoft Fabric 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.
workspace_id Any
The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
artifactId This property is required. Any
The ID of Microsoft Fabric Warehouse artifact. Type: string (or Expression with resultType string).
endpoint This property is required. Any
The endpoint of Microsoft Fabric Warehouse server. Type: string (or Expression with resultType string).
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
servicePrincipalCredential Property Map | Property Map
The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
servicePrincipalCredentialType Any
The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
servicePrincipalId Any
The ID of the application used to authenticate against Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
servicePrincipalKey Property Map | Property Map
The Key of the application used to authenticate against Microsoft Fabric 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.
workspaceId Any
The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).

WebAnonymousAuthentication
, WebAnonymousAuthenticationArgs

Url This property is required. object
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
Url This property is required. interface{}
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
url This property is required. Object
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
url This property is required. any
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
url This property is required. Any
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
url This property is required. Any
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).

WebAnonymousAuthenticationResponse
, WebAnonymousAuthenticationResponseArgs

Url This property is required. object
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
Url This property is required. interface{}
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
url This property is required. Object
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
url This property is required. any
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
url This property is required. Any
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
url This property is required. Any
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).

WebBasicAuthentication
, WebBasicAuthenticationArgs

Password This property is required. Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The password for Basic authentication.
Url This property is required. object
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
Username This property is required. object
User name for Basic authentication. Type: string (or Expression with resultType string).
Password This property is required. AzureKeyVaultSecretReference | SecureString
The password for Basic authentication.
Url This property is required. interface{}
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
Username This property is required. interface{}
User name for Basic authentication. Type: string (or Expression with resultType string).
password This property is required. AzureKeyVaultSecretReference | SecureString
The password for Basic authentication.
url This property is required. Object
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
username This property is required. Object
User name for Basic authentication. Type: string (or Expression with resultType string).
password This property is required. AzureKeyVaultSecretReference | SecureString
The password for Basic authentication.
url This property is required. any
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
username This property is required. any
User name for Basic authentication. Type: string (or Expression with resultType string).
password This property is required. AzureKeyVaultSecretReference | SecureString
The password for Basic authentication.
url This property is required. Any
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
username This property is required. Any
User name for Basic authentication. Type: string (or Expression with resultType string).
password This property is required. Property Map | Property Map
The password for Basic authentication.
url This property is required. Any
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
username This property is required. Any
User name for Basic authentication. Type: string (or Expression with resultType string).

WebBasicAuthenticationResponse
, WebBasicAuthenticationResponseArgs

Password This property is required. Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The password for Basic authentication.
Url This property is required. object
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
Username This property is required. object
User name for Basic authentication. Type: string (or Expression with resultType string).
Password This property is required. AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password for Basic authentication.
Url This property is required. interface{}
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
Username This property is required. interface{}
User name for Basic authentication. Type: string (or Expression with resultType string).
password This property is required. AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password for Basic authentication.
url This property is required. Object
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
username This property is required. Object
User name for Basic authentication. Type: string (or Expression with resultType string).
password This property is required. AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password for Basic authentication.
url This property is required. any
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
username This property is required. any
User name for Basic authentication. Type: string (or Expression with resultType string).
password This property is required. AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password for Basic authentication.
url This property is required. Any
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
username This property is required. Any
User name for Basic authentication. Type: string (or Expression with resultType string).
password This property is required. Property Map | Property Map
The password for Basic authentication.
url This property is required. Any
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
username This property is required. Any
User name for Basic authentication. Type: string (or Expression with resultType string).

WebClientCertificateAuthentication
, WebClientCertificateAuthenticationArgs

Password This property is required. Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
Password for the PFX file.
Pfx This property is required. Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
Base64-encoded contents of a PFX file.
Url This property is required. object
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
Password This property is required. AzureKeyVaultSecretReference | SecureString
Password for the PFX file.
Pfx This property is required. AzureKeyVaultSecretReference | SecureString
Base64-encoded contents of a PFX file.
Url This property is required. interface{}
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
password This property is required. AzureKeyVaultSecretReference | SecureString
Password for the PFX file.
pfx This property is required. AzureKeyVaultSecretReference | SecureString
Base64-encoded contents of a PFX file.
url This property is required. Object
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
password This property is required. AzureKeyVaultSecretReference | SecureString
Password for the PFX file.
pfx This property is required. AzureKeyVaultSecretReference | SecureString
Base64-encoded contents of a PFX file.
url This property is required. any
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
password This property is required. AzureKeyVaultSecretReference | SecureString
Password for the PFX file.
pfx This property is required. AzureKeyVaultSecretReference | SecureString
Base64-encoded contents of a PFX file.
url This property is required. Any
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
password This property is required. Property Map | Property Map
Password for the PFX file.
pfx This property is required. Property Map | Property Map
Base64-encoded contents of a PFX file.
url This property is required. Any
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).

WebClientCertificateAuthenticationResponse
, WebClientCertificateAuthenticationResponseArgs

Password This property is required. Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
Password for the PFX file.
Pfx This property is required. Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
Base64-encoded contents of a PFX file.
Url This property is required. object
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
Password This property is required. AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password for the PFX file.
Pfx This property is required. AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Base64-encoded contents of a PFX file.
Url This property is required. interface{}
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
password This property is required. AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password for the PFX file.
pfx This property is required. AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Base64-encoded contents of a PFX file.
url This property is required. Object
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
password This property is required. AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password for the PFX file.
pfx This property is required. AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Base64-encoded contents of a PFX file.
url This property is required. any
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
password This property is required. AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Password for the PFX file.
pfx This property is required. AzureKeyVaultSecretReferenceResponse | SecureStringResponse
Base64-encoded contents of a PFX file.
url This property is required. Any
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
password This property is required. Property Map | Property Map
Password for the PFX file.
pfx This property is required. Property Map | Property Map
Base64-encoded contents of a PFX file.
url This property is required. Any
The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).

WebLinkedService
, WebLinkedServiceArgs

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

WebLinkedServiceResponse
, WebLinkedServiceResponseArgs

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

XeroLinkedService
, XeroLinkedServiceArgs

Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
ConnectionProperties object
Properties used to connect to Xero. It is mutually exclusive with any other properties in the linked service. Type: object.
ConsumerKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The consumer key associated with the Xero application.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Host object
The endpoint of the Xero server. (i.e. api.xero.com)
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
PrivateKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The private key from the .pem file that was generated for your Xero private application. You must include all the text from the .pem file, including the Unix line endings( ).
UseEncryptedEndpoints object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
ConnectionProperties interface{}
Properties used to connect to Xero. It is mutually exclusive with any other properties in the linked service. Type: object.
ConsumerKey AzureKeyVaultSecretReference | SecureString
The consumer key associated with the Xero application.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Host interface{}
The endpoint of the Xero server. (i.e. api.xero.com)
Parameters map[string]ParameterSpecification
Parameters for linked service.
PrivateKey AzureKeyVaultSecretReference | SecureString
The private key from the .pem file that was generated for your Xero private application. You must include all the text from the .pem file, including the Unix line endings( ).
UseEncryptedEndpoints interface{}
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification interface{}
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification interface{}
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
connectionProperties Object
Properties used to connect to Xero. It is mutually exclusive with any other properties in the linked service. Type: object.
consumerKey AzureKeyVaultSecretReference | SecureString
The consumer key associated with the Xero application.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
host Object
The endpoint of the Xero server. (i.e. api.xero.com)
parameters Map<String,ParameterSpecification>
Parameters for linked service.
privateKey AzureKeyVaultSecretReference | SecureString
The private key from the .pem file that was generated for your Xero private application. You must include all the text from the .pem file, including the Unix line endings( ).
useEncryptedEndpoints Object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
connectionProperties any
Properties used to connect to Xero. It is mutually exclusive with any other properties in the linked service. Type: object.
consumerKey AzureKeyVaultSecretReference | SecureString
The consumer key associated with the Xero application.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
host any
The endpoint of the Xero server. (i.e. api.xero.com)
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
privateKey AzureKeyVaultSecretReference | SecureString
The private key from the .pem file that was generated for your Xero private application. You must include all the text from the .pem file, including the Unix line endings( ).
useEncryptedEndpoints any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version string
Version of the linked service.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReference
The integration runtime reference.
connection_properties Any
Properties used to connect to Xero. It is mutually exclusive with any other properties in the linked service. Type: object.
consumer_key AzureKeyVaultSecretReference | SecureString
The consumer key associated with the Xero application.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
host Any
The endpoint of the Xero server. (i.e. api.xero.com)
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
private_key AzureKeyVaultSecretReference | SecureString
The private key from the .pem file that was generated for your Xero private application. You must include all the text from the .pem file, including the Unix line endings( ).
use_encrypted_endpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
use_host_verification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
use_peer_verification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version str
Version of the linked service.
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
connectionProperties Any
Properties used to connect to Xero. It is mutually exclusive with any other properties in the linked service. Type: object.
consumerKey Property Map | Property Map
The consumer key associated with the Xero application.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
host Any
The endpoint of the Xero server. (i.e. api.xero.com)
parameters Map<Property Map>
Parameters for linked service.
privateKey Property Map | Property Map
The private key from the .pem file that was generated for your Xero private application. You must include all the text from the .pem file, including the Unix line endings( ).
useEncryptedEndpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.

XeroLinkedServiceResponse
, XeroLinkedServiceResponseArgs

Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
ConnectionProperties object
Properties used to connect to Xero. It is mutually exclusive with any other properties in the linked service. Type: object.
ConsumerKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The consumer key associated with the Xero application.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Host object
The endpoint of the Xero server. (i.e. api.xero.com)
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
PrivateKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The private key from the .pem file that was generated for your Xero private application. You must include all the text from the .pem file, including the Unix line endings( ).
UseEncryptedEndpoints object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
ConnectionProperties interface{}
Properties used to connect to Xero. It is mutually exclusive with any other properties in the linked service. Type: object.
ConsumerKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The consumer key associated with the Xero application.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Host interface{}
The endpoint of the Xero server. (i.e. api.xero.com)
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
PrivateKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The private key from the .pem file that was generated for your Xero private application. You must include all the text from the .pem file, including the Unix line endings( ).
UseEncryptedEndpoints interface{}
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification interface{}
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification interface{}
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
connectionProperties Object
Properties used to connect to Xero. It is mutually exclusive with any other properties in the linked service. Type: object.
consumerKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The consumer key associated with the Xero application.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
host Object
The endpoint of the Xero server. (i.e. api.xero.com)
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
privateKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The private key from the .pem file that was generated for your Xero private application. You must include all the text from the .pem file, including the Unix line endings( ).
useEncryptedEndpoints Object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
connectionProperties any
Properties used to connect to Xero. It is mutually exclusive with any other properties in the linked service. Type: object.
consumerKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The consumer key associated with the Xero application.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
host any
The endpoint of the Xero server. (i.e. api.xero.com)
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
privateKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The private key from the .pem file that was generated for your Xero private application. You must include all the text from the .pem file, including the Unix line endings( ).
useEncryptedEndpoints any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version string
Version of the linked service.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
connection_properties Any
Properties used to connect to Xero. It is mutually exclusive with any other properties in the linked service. Type: object.
consumer_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The consumer key associated with the Xero application.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
host Any
The endpoint of the Xero server. (i.e. api.xero.com)
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
private_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The private key from the .pem file that was generated for your Xero private application. You must include all the text from the .pem file, including the Unix line endings( ).
use_encrypted_endpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
use_host_verification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
use_peer_verification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version str
Version of the linked service.
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
connectionProperties Any
Properties used to connect to Xero. It is mutually exclusive with any other properties in the linked service. Type: object.
consumerKey Property Map | Property Map
The consumer key associated with the Xero application.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
host Any
The endpoint of the Xero server. (i.e. api.xero.com)
parameters Map<Property Map>
Parameters for linked service.
privateKey Property Map | Property Map
The private key from the .pem file that was generated for your Xero private application. You must include all the text from the .pem file, including the Unix line endings( ).
useEncryptedEndpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.

ZendeskAuthenticationType
, ZendeskAuthenticationTypeArgs

Basic
Basic
Token
Token
ZendeskAuthenticationTypeBasic
Basic
ZendeskAuthenticationTypeToken
Token
Basic
Basic
Token
Token
Basic
Basic
Token
Token
BASIC
Basic
TOKEN
Token
"Basic"
Basic
"Token"
Token

ZendeskLinkedService
, ZendeskLinkedServiceArgs

AuthenticationType This property is required. string | Pulumi.AzureNative.DataFactory.ZendeskAuthenticationType
The authentication type to use.
Url This property is required. object
The url to connect Zendesk source. Type: string (or Expression with resultType string).
Annotations List<object>
List of tags that can be used for describing the linked service.
ApiToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The api token for the Zendesk source.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The password of the Zendesk source.
UserName object
The username of the Zendesk source. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
AuthenticationType This property is required. string | ZendeskAuthenticationType
The authentication type to use.
Url This property is required. interface{}
The url to connect Zendesk source. Type: string (or Expression with resultType string).
Annotations []interface{}
List of tags that can be used for describing the linked service.
ApiToken AzureKeyVaultSecretReference | SecureString
The api token for the Zendesk source.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecification
Parameters for linked service.
Password AzureKeyVaultSecretReference | SecureString
The password of the Zendesk source.
UserName interface{}
The username of the Zendesk source. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
authenticationType This property is required. String | ZendeskAuthenticationType
The authentication type to use.
url This property is required. Object
The url to connect Zendesk source. Type: string (or Expression with resultType string).
annotations List<Object>
List of tags that can be used for describing the linked service.
apiToken AzureKeyVaultSecretReference | SecureString
The api token for the Zendesk source.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecification>
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password of the Zendesk source.
userName Object
The username of the Zendesk source. Type: string (or Expression with resultType string).
version String
Version of the linked service.
authenticationType This property is required. string | ZendeskAuthenticationType
The authentication type to use.
url This property is required. any
The url to connect Zendesk source. Type: string (or Expression with resultType string).
annotations any[]
List of tags that can be used for describing the linked service.
apiToken AzureKeyVaultSecretReference | SecureString
The api token for the Zendesk source.
connectVia IntegrationRuntimeReference
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password of the Zendesk source.
userName any
The username of the Zendesk source. Type: string (or Expression with resultType string).
version string
Version of the linked service.
authentication_type This property is required. str | ZendeskAuthenticationType
The authentication type to use.
url This property is required. Any
The url to connect Zendesk source. Type: string (or Expression with resultType string).
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
api_token AzureKeyVaultSecretReference | SecureString
The api token for the Zendesk source.
connect_via IntegrationRuntimeReference
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
password AzureKeyVaultSecretReference | SecureString
The password of the Zendesk source.
user_name Any
The username of the Zendesk source. Type: string (or Expression with resultType string).
version str
Version of the linked service.
authenticationType This property is required. String | "Basic" | "Token"
The authentication type to use.
url This property is required. Any
The url to connect Zendesk source. Type: string (or Expression with resultType string).
annotations List<Any>
List of tags that can be used for describing the linked service.
apiToken Property Map | Property Map
The api token for the Zendesk source.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
The password of the Zendesk source.
userName Any
The username of the Zendesk source. Type: string (or Expression with resultType string).
version String
Version of the linked service.

ZendeskLinkedServiceResponse
, ZendeskLinkedServiceResponseArgs

AuthenticationType This property is required. string
The authentication type to use.
Url This property is required. object
The url to connect Zendesk source. Type: string (or Expression with resultType string).
Annotations List<object>
List of tags that can be used for describing the linked service.
ApiToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The api token for the Zendesk source.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The password of the Zendesk source.
UserName object
The username of the Zendesk source. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
AuthenticationType This property is required. string
The authentication type to use.
Url This property is required. interface{}
The url to connect Zendesk source. Type: string (or Expression with resultType string).
Annotations []interface{}
List of tags that can be used for describing the linked service.
ApiToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The api token for the Zendesk source.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password of the Zendesk source.
UserName interface{}
The username of the Zendesk source. Type: string (or Expression with resultType string).
Version string
Version of the linked service.
authenticationType This property is required. String
The authentication type to use.
url This property is required. Object
The url to connect Zendesk source. Type: string (or Expression with resultType string).
annotations List<Object>
List of tags that can be used for describing the linked service.
apiToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The api token for the Zendesk source.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password of the Zendesk source.
userName Object
The username of the Zendesk source. Type: string (or Expression with resultType string).
version String
Version of the linked service.
authenticationType This property is required. string
The authentication type to use.
url This property is required. any
The url to connect Zendesk source. Type: string (or Expression with resultType string).
annotations any[]
List of tags that can be used for describing the linked service.
apiToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The api token for the Zendesk source.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password of the Zendesk source.
userName any
The username of the Zendesk source. Type: string (or Expression with resultType string).
version string
Version of the linked service.
authentication_type This property is required. str
The authentication type to use.
url This property is required. Any
The url to connect Zendesk source. Type: string (or Expression with resultType string).
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
api_token AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The api token for the Zendesk source.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The password of the Zendesk source.
user_name Any
The username of the Zendesk source. Type: string (or Expression with resultType string).
version str
Version of the linked service.
authenticationType This property is required. String
The authentication type to use.
url This property is required. Any
The url to connect Zendesk source. Type: string (or Expression with resultType string).
annotations List<Any>
List of tags that can be used for describing the linked service.
apiToken Property Map | Property Map
The api token for the Zendesk source.
connectVia Property Map
The integration runtime reference.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
parameters Map<Property Map>
Parameters for linked service.
password Property Map | Property Map
The password of the Zendesk source.
userName Any
The username of the Zendesk source. Type: string (or Expression with resultType string).
version String
Version of the linked service.

ZohoLinkedService
, ZohoLinkedServiceArgs

AccessToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
The access token for Zoho authentication.
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
The integration runtime reference.
ConnectionProperties object
Properties used to connect to Zoho. It is mutually exclusive with any other properties in the linked service. Type: object.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Endpoint object
The endpoint of the Zoho server. (i.e. crm.zoho.com/crm/private)
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for linked service.
UseEncryptedEndpoints object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
AccessToken AzureKeyVaultSecretReference | SecureString
The access token for Zoho authentication.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReference
The integration runtime reference.
ConnectionProperties interface{}
Properties used to connect to Zoho. It is mutually exclusive with any other properties in the linked service. Type: object.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Endpoint interface{}
The endpoint of the Zoho server. (i.e. crm.zoho.com/crm/private)
Parameters map[string]ParameterSpecification
Parameters for linked service.
UseEncryptedEndpoints interface{}
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification interface{}
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification interface{}
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
accessToken AzureKeyVaultSecretReference | SecureString
The access token for Zoho authentication.
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
connectionProperties Object
Properties used to connect to Zoho. It is mutually exclusive with any other properties in the linked service. Type: object.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
endpoint Object
The endpoint of the Zoho server. (i.e. crm.zoho.com/crm/private)
parameters Map<String,ParameterSpecification>
Parameters for linked service.
useEncryptedEndpoints Object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.
accessToken AzureKeyVaultSecretReference | SecureString
The access token for Zoho authentication.
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReference
The integration runtime reference.
connectionProperties any
Properties used to connect to Zoho. It is mutually exclusive with any other properties in the linked service. Type: object.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
endpoint any
The endpoint of the Zoho server. (i.e. crm.zoho.com/crm/private)
parameters {[key: string]: ParameterSpecification}
Parameters for linked service.
useEncryptedEndpoints any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version string
Version of the linked service.
access_token AzureKeyVaultSecretReference | SecureString
The access token for Zoho authentication.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReference
The integration runtime reference.
connection_properties Any
Properties used to connect to Zoho. It is mutually exclusive with any other properties in the linked service. Type: object.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
endpoint Any
The endpoint of the Zoho server. (i.e. crm.zoho.com/crm/private)
parameters Mapping[str, ParameterSpecification]
Parameters for linked service.
use_encrypted_endpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
use_host_verification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
use_peer_verification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version str
Version of the linked service.
accessToken Property Map | Property Map
The access token for Zoho authentication.
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
connectionProperties Any
Properties used to connect to Zoho. It is mutually exclusive with any other properties in the linked service. Type: object.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
endpoint Any
The endpoint of the Zoho server. (i.e. crm.zoho.com/crm/private)
parameters Map<Property Map>
Parameters for linked service.
useEncryptedEndpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.

ZohoLinkedServiceResponse
, ZohoLinkedServiceResponseArgs

AccessToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
The access token for Zoho authentication.
Annotations List<object>
List of tags that can be used for describing the linked service.
ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
The integration runtime reference.
ConnectionProperties object
Properties used to connect to Zoho. It is mutually exclusive with any other properties in the linked service. Type: object.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Endpoint object
The endpoint of the Zoho server. (i.e. crm.zoho.com/crm/private)
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for linked service.
UseEncryptedEndpoints object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
AccessToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The access token for Zoho authentication.
Annotations []interface{}
List of tags that can be used for describing the linked service.
ConnectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
ConnectionProperties interface{}
Properties used to connect to Zoho. It is mutually exclusive with any other properties in the linked service. Type: object.
Description string
Linked service description.
EncryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Endpoint interface{}
The endpoint of the Zoho server. (i.e. crm.zoho.com/crm/private)
Parameters map[string]ParameterSpecificationResponse
Parameters for linked service.
UseEncryptedEndpoints interface{}
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
UseHostVerification interface{}
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
UsePeerVerification interface{}
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
Version string
Version of the linked service.
accessToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The access token for Zoho authentication.
annotations List<Object>
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
connectionProperties Object
Properties used to connect to Zoho. It is mutually exclusive with any other properties in the linked service. Type: object.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
endpoint Object
The endpoint of the Zoho server. (i.e. crm.zoho.com/crm/private)
parameters Map<String,ParameterSpecificationResponse>
Parameters for linked service.
useEncryptedEndpoints Object
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Object
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Object
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.
accessToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The access token for Zoho authentication.
annotations any[]
List of tags that can be used for describing the linked service.
connectVia IntegrationRuntimeReferenceResponse
The integration runtime reference.
connectionProperties any
Properties used to connect to Zoho. It is mutually exclusive with any other properties in the linked service. Type: object.
description string
Linked service description.
encryptedCredential string
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
endpoint any
The endpoint of the Zoho server. (i.e. crm.zoho.com/crm/private)
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for linked service.
useEncryptedEndpoints any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version string
Version of the linked service.
access_token AzureKeyVaultSecretReferenceResponse | SecureStringResponse
The access token for Zoho authentication.
annotations Sequence[Any]
List of tags that can be used for describing the linked service.
connect_via IntegrationRuntimeReferenceResponse
The integration runtime reference.
connection_properties Any
Properties used to connect to Zoho. It is mutually exclusive with any other properties in the linked service. Type: object.
description str
Linked service description.
encrypted_credential str
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
endpoint Any
The endpoint of the Zoho server. (i.e. crm.zoho.com/crm/private)
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for linked service.
use_encrypted_endpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
use_host_verification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
use_peer_verification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version str
Version of the linked service.
accessToken Property Map | Property Map
The access token for Zoho authentication.
annotations List<Any>
List of tags that can be used for describing the linked service.
connectVia Property Map
The integration runtime reference.
connectionProperties Any
Properties used to connect to Zoho. It is mutually exclusive with any other properties in the linked service. Type: object.
description String
Linked service description.
encryptedCredential String
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
endpoint Any
The endpoint of the Zoho server. (i.e. crm.zoho.com/crm/private)
parameters Map<Property Map>
Parameters for linked service.
useEncryptedEndpoints Any
Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
useHostVerification Any
Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
usePeerVerification Any
Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
version String
Version of the linked service.

Import

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

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

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi