azure-native.datafactory.LinkedService
Explore with Pulumi AI
Linked service resource type.
Uses Azure REST API version 2018-06-01. In version 2.x of the Azure Native provider, it used API version 2018-06-01.
Example Usage
LinkedServices_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var linkedService = new AzureNative.DataFactory.LinkedService("linkedService", new()
{
FactoryName = "exampleFactoryName",
LinkedServiceName = "exampleLinkedService",
Properties = new AzureNative.DataFactory.Inputs.AzureStorageLinkedServiceArgs
{
ConnectionString = new Dictionary<string, object?>
{
["type"] = "SecureString",
["value"] = "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
},
Type = "AzureStorage",
},
ResourceGroupName = "exampleResourceGroup",
});
});
package main
import (
datafactory "github.com/pulumi/pulumi-azure-native-sdk/datafactory/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := datafactory.NewLinkedService(ctx, "linkedService", &datafactory.LinkedServiceArgs{
FactoryName: pulumi.String("exampleFactoryName"),
LinkedServiceName: pulumi.String("exampleLinkedService"),
Properties: &datafactory.AzureStorageLinkedServiceArgs{
ConnectionString: pulumi.Any(map[string]interface{}{
"type": "SecureString",
"value": "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
}),
Type: pulumi.String("AzureStorage"),
},
ResourceGroupName: pulumi.String("exampleResourceGroup"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.datafactory.LinkedService;
import com.pulumi.azurenative.datafactory.LinkedServiceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var linkedService = new LinkedService("linkedService", LinkedServiceArgs.builder()
.factoryName("exampleFactoryName")
.linkedServiceName("exampleLinkedService")
.properties(AzureStorageLinkedServiceArgs.builder()
.connectionString(Map.ofEntries(
Map.entry("type", "SecureString"),
Map.entry("value", "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>")
))
.type("AzureStorage")
.build())
.resourceGroupName("exampleResourceGroup")
.build());
}
}
import * 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",
});
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")
resources:
linkedService:
type: azure-native:datafactory:LinkedService
properties:
factoryName: exampleFactoryName
linkedServiceName: exampleLinkedService
properties:
connectionString:
type: SecureString
value: DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>
type: AzureStorage
resourceGroupName: exampleResourceGroup
LinkedServices_Update
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var linkedService = new AzureNative.DataFactory.LinkedService("linkedService", new()
{
FactoryName = "exampleFactoryName",
LinkedServiceName = "exampleLinkedService",
Properties = new AzureNative.DataFactory.Inputs.AzureStorageLinkedServiceArgs
{
ConnectionString = new Dictionary<string, object?>
{
["type"] = "SecureString",
["value"] = "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
},
Description = "Example description",
Type = "AzureStorage",
},
ResourceGroupName = "exampleResourceGroup",
});
});
package main
import (
datafactory "github.com/pulumi/pulumi-azure-native-sdk/datafactory/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := datafactory.NewLinkedService(ctx, "linkedService", &datafactory.LinkedServiceArgs{
FactoryName: pulumi.String("exampleFactoryName"),
LinkedServiceName: pulumi.String("exampleLinkedService"),
Properties: &datafactory.AzureStorageLinkedServiceArgs{
ConnectionString: pulumi.Any(map[string]interface{}{
"type": "SecureString",
"value": "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
}),
Description: pulumi.String("Example description"),
Type: pulumi.String("AzureStorage"),
},
ResourceGroupName: pulumi.String("exampleResourceGroup"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.datafactory.LinkedService;
import com.pulumi.azurenative.datafactory.LinkedServiceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var linkedService = new LinkedService("linkedService", LinkedServiceArgs.builder()
.factoryName("exampleFactoryName")
.linkedServiceName("exampleLinkedService")
.properties(AzureStorageLinkedServiceArgs.builder()
.connectionString(Map.ofEntries(
Map.entry("type", "SecureString"),
Map.entry("value", "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>")
))
.description("Example description")
.type("AzureStorage")
.build())
.resourceGroupName("exampleResourceGroup")
.build());
}
}
import * 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",
});
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")
resources:
linkedService:
type: azure-native:datafactory:LinkedService
properties:
factoryName: exampleFactoryName
linkedServiceName: exampleLinkedService
properties:
connectionString:
type: SecureString
value: DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>
description: Example description
type: AzureStorage
resourceGroupName: exampleResourceGroup
Create LinkedService Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new LinkedService(name: string, args: LinkedServiceArgs, opts?: CustomResourceOptions);
@overload
def LinkedService(resource_name: str,
args: LinkedServiceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def LinkedService(resource_name: str,
opts: Optional[ResourceOptions] = None,
factory_name: Optional[str] = None,
properties: Optional[Union[AmazonMWSLinkedServiceArgs, AmazonRdsForOracleLinkedServiceArgs, AmazonRdsForSqlServerLinkedServiceArgs, AmazonRedshiftLinkedServiceArgs, AmazonS3CompatibleLinkedServiceArgs, AmazonS3LinkedServiceArgs, AppFiguresLinkedServiceArgs, AsanaLinkedServiceArgs, AzureBatchLinkedServiceArgs, AzureBlobFSLinkedServiceArgs, AzureBlobStorageLinkedServiceArgs, AzureDataExplorerLinkedServiceArgs, AzureDataLakeAnalyticsLinkedServiceArgs, AzureDataLakeStoreLinkedServiceArgs, AzureDatabricksDeltaLakeLinkedServiceArgs, AzureDatabricksLinkedServiceArgs, AzureFileStorageLinkedServiceArgs, AzureFunctionLinkedServiceArgs, AzureKeyVaultLinkedServiceArgs, AzureMLLinkedServiceArgs, AzureMLServiceLinkedServiceArgs, AzureMariaDBLinkedServiceArgs, AzureMySqlLinkedServiceArgs, AzurePostgreSqlLinkedServiceArgs, AzureSearchLinkedServiceArgs, AzureSqlDWLinkedServiceArgs, AzureSqlDatabaseLinkedServiceArgs, AzureSqlMILinkedServiceArgs, AzureStorageLinkedServiceArgs, AzureSynapseArtifactsLinkedServiceArgs, AzureTableStorageLinkedServiceArgs, CassandraLinkedServiceArgs, CommonDataServiceForAppsLinkedServiceArgs, ConcurLinkedServiceArgs, CosmosDbLinkedServiceArgs, CosmosDbMongoDbApiLinkedServiceArgs, CouchbaseLinkedServiceArgs, CustomDataSourceLinkedServiceArgs, DataworldLinkedServiceArgs, Db2LinkedServiceArgs, DrillLinkedServiceArgs, DynamicsAXLinkedServiceArgs, DynamicsCrmLinkedServiceArgs, DynamicsLinkedServiceArgs, EloquaLinkedServiceArgs, FileServerLinkedServiceArgs, FtpServerLinkedServiceArgs, GoogleAdWordsLinkedServiceArgs, GoogleBigQueryLinkedServiceArgs, GoogleBigQueryV2LinkedServiceArgs, GoogleCloudStorageLinkedServiceArgs, GoogleSheetsLinkedServiceArgs, GreenplumLinkedServiceArgs, HBaseLinkedServiceArgs, HDInsightLinkedServiceArgs, HDInsightOnDemandLinkedServiceArgs, HdfsLinkedServiceArgs, HiveLinkedServiceArgs, HttpLinkedServiceArgs, HubspotLinkedServiceArgs, ImpalaLinkedServiceArgs, InformixLinkedServiceArgs, JiraLinkedServiceArgs, LakeHouseLinkedServiceArgs, MagentoLinkedServiceArgs, MariaDBLinkedServiceArgs, MarketoLinkedServiceArgs, MicrosoftAccessLinkedServiceArgs, MongoDbAtlasLinkedServiceArgs, MongoDbLinkedServiceArgs, MongoDbV2LinkedServiceArgs, MySqlLinkedServiceArgs, NetezzaLinkedServiceArgs, ODataLinkedServiceArgs, OdbcLinkedServiceArgs, Office365LinkedServiceArgs, OracleCloudStorageLinkedServiceArgs, OracleLinkedServiceArgs, OracleServiceCloudLinkedServiceArgs, PaypalLinkedServiceArgs, PhoenixLinkedServiceArgs, PostgreSqlLinkedServiceArgs, PostgreSqlV2LinkedServiceArgs, PrestoLinkedServiceArgs, QuickBooksLinkedServiceArgs, QuickbaseLinkedServiceArgs, ResponsysLinkedServiceArgs, RestServiceLinkedServiceArgs, SalesforceLinkedServiceArgs, SalesforceMarketingCloudLinkedServiceArgs, SalesforceServiceCloudLinkedServiceArgs, SalesforceServiceCloudV2LinkedServiceArgs, SalesforceV2LinkedServiceArgs, SapBWLinkedServiceArgs, SapCloudForCustomerLinkedServiceArgs, SapEccLinkedServiceArgs, SapHanaLinkedServiceArgs, SapOdpLinkedServiceArgs, SapOpenHubLinkedServiceArgs, SapTableLinkedServiceArgs, ServiceNowLinkedServiceArgs, ServiceNowV2LinkedServiceArgs, SftpServerLinkedServiceArgs, SharePointOnlineListLinkedServiceArgs, ShopifyLinkedServiceArgs, SmartsheetLinkedServiceArgs, SnowflakeLinkedServiceArgs, SnowflakeV2LinkedServiceArgs, SparkLinkedServiceArgs, SqlServerLinkedServiceArgs, SquareLinkedServiceArgs, SybaseLinkedServiceArgs, TeamDeskLinkedServiceArgs, TeradataLinkedServiceArgs, TwilioLinkedServiceArgs, VerticaLinkedServiceArgs, WarehouseLinkedServiceArgs, WebLinkedServiceArgs, XeroLinkedServiceArgs, ZendeskLinkedServiceArgs, ZohoLinkedServiceArgs]] = None,
resource_group_name: Optional[str] = None,
linked_service_name: Optional[str] = None)
func NewLinkedService(ctx *Context, name string, args LinkedServiceArgs, opts ...ResourceOption) (*LinkedService, error)
public LinkedService(string name, LinkedServiceArgs args, CustomResourceOptions? opts = null)
public LinkedService(String name, LinkedServiceArgs args)
public LinkedService(String name, LinkedServiceArgs args, CustomResourceOptions options)
type: azure-native:datafactory:LinkedService
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args LinkedServiceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args LinkedServiceArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args LinkedServiceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LinkedServiceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LinkedServiceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var linkedServiceResource = new AzureNative.DataFactory.LinkedService("linkedServiceResource", new()
{
FactoryName = "string",
Properties = new AzureNative.DataFactory.Inputs.AmazonMWSLinkedServiceArgs
{
Endpoint = "any",
Type = "AmazonMWS",
SellerID = "any",
AccessKeyId = "any",
MarketplaceID = "any",
Parameters =
{
{ "string", new AzureNative.DataFactory.Inputs.ParameterSpecificationArgs
{
Type = "string",
DefaultValue = "any",
} },
},
EncryptedCredential = "string",
MwsAuthToken = new AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceArgs
{
SecretName = "any",
Store = new AzureNative.DataFactory.Inputs.LinkedServiceReferenceArgs
{
ReferenceName = "string",
Type = "string",
Parameters =
{
{ "string", "any" },
},
},
Type = "AzureKeyVaultSecret",
SecretVersion = "any",
},
Description = "string",
SecretKey = new AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceArgs
{
SecretName = "any",
Store = new AzureNative.DataFactory.Inputs.LinkedServiceReferenceArgs
{
ReferenceName = "string",
Type = "string",
Parameters =
{
{ "string", "any" },
},
},
Type = "AzureKeyVaultSecret",
SecretVersion = "any",
},
ConnectVia = new AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceArgs
{
ReferenceName = "string",
Type = "string",
Parameters =
{
{ "string", "any" },
},
},
Annotations = new[]
{
"any",
},
UseEncryptedEndpoints = "any",
UseHostVerification = "any",
UsePeerVerification = "any",
Version = "string",
},
ResourceGroupName = "string",
LinkedServiceName = "string",
});
example, err := datafactory.NewLinkedService(ctx, "linkedServiceResource", &datafactory.LinkedServiceArgs{
FactoryName: pulumi.String("string"),
Properties: &datafactory.AmazonMWSLinkedServiceArgs{
Endpoint: pulumi.Any("any"),
Type: pulumi.String("AmazonMWS"),
SellerID: pulumi.Any("any"),
AccessKeyId: pulumi.Any("any"),
MarketplaceID: pulumi.Any("any"),
Parameters: datafactory.ParameterSpecificationMap{
"string": &datafactory.ParameterSpecificationArgs{
Type: pulumi.String("string"),
DefaultValue: pulumi.Any("any"),
},
},
EncryptedCredential: pulumi.String("string"),
MwsAuthToken: datafactory.AzureKeyVaultSecretReference{
SecretName: "any",
Store: datafactory.LinkedServiceReference{
ReferenceName: "string",
Type: "string",
Parameters: map[string]interface{}{
"string": "any",
},
},
Type: "AzureKeyVaultSecret",
SecretVersion: "any",
},
Description: pulumi.String("string"),
SecretKey: datafactory.AzureKeyVaultSecretReference{
SecretName: "any",
Store: datafactory.LinkedServiceReference{
ReferenceName: "string",
Type: "string",
Parameters: map[string]interface{}{
"string": "any",
},
},
Type: "AzureKeyVaultSecret",
SecretVersion: "any",
},
ConnectVia: &datafactory.IntegrationRuntimeReferenceArgs{
ReferenceName: pulumi.String("string"),
Type: pulumi.String("string"),
Parameters: pulumi.Map{
"string": pulumi.Any("any"),
},
},
Annotations: pulumi.Array{
pulumi.Any("any"),
},
UseEncryptedEndpoints: pulumi.Any("any"),
UseHostVerification: pulumi.Any("any"),
UsePeerVerification: pulumi.Any("any"),
Version: pulumi.String("string"),
},
ResourceGroupName: pulumi.String("string"),
LinkedServiceName: pulumi.String("string"),
})
var linkedServiceResource = new com.pulumi.azurenative.datafactory.LinkedService("linkedServiceResource", com.pulumi.azurenative.datafactory.LinkedServiceArgs.builder()
.factoryName("string")
.properties(AmazonMWSLinkedServiceArgs.builder()
.endpoint("any")
.type("AmazonMWS")
.sellerID("any")
.accessKeyId("any")
.marketplaceID("any")
.parameters(Map.of("string", ParameterSpecificationArgs.builder()
.type("string")
.defaultValue("any")
.build()))
.encryptedCredential("string")
.mwsAuthToken(AzureKeyVaultSecretReferenceArgs.builder()
.secretName("any")
.store(LinkedServiceReferenceArgs.builder()
.referenceName("string")
.type("string")
.parameters(Map.of("string", "any"))
.build())
.type("AzureKeyVaultSecret")
.secretVersion("any")
.build())
.description("string")
.secretKey(AzureKeyVaultSecretReferenceArgs.builder()
.secretName("any")
.store(LinkedServiceReferenceArgs.builder()
.referenceName("string")
.type("string")
.parameters(Map.of("string", "any"))
.build())
.type("AzureKeyVaultSecret")
.secretVersion("any")
.build())
.connectVia(IntegrationRuntimeReferenceArgs.builder()
.referenceName("string")
.type("string")
.parameters(Map.of("string", "any"))
.build())
.annotations("any")
.useEncryptedEndpoints("any")
.useHostVerification("any")
.usePeerVerification("any")
.version("string")
.build())
.resourceGroupName("string")
.linkedServiceName("string")
.build());
linked_service_resource = azure_native.datafactory.LinkedService("linkedServiceResource",
factory_name="string",
properties={
"endpoint": "any",
"type": "AmazonMWS",
"seller_id": "any",
"access_key_id": "any",
"marketplace_id": "any",
"parameters": {
"string": {
"type": "string",
"default_value": "any",
},
},
"encrypted_credential": "string",
"mws_auth_token": {
"secret_name": "any",
"store": {
"reference_name": "string",
"type": "string",
"parameters": {
"string": "any",
},
},
"type": "AzureKeyVaultSecret",
"secret_version": "any",
},
"description": "string",
"secret_key": {
"secret_name": "any",
"store": {
"reference_name": "string",
"type": "string",
"parameters": {
"string": "any",
},
},
"type": "AzureKeyVaultSecret",
"secret_version": "any",
},
"connect_via": {
"reference_name": "string",
"type": "string",
"parameters": {
"string": "any",
},
},
"annotations": ["any"],
"use_encrypted_endpoints": "any",
"use_host_verification": "any",
"use_peer_verification": "any",
"version": "string",
},
resource_group_name="string",
linked_service_name="string")
const linkedServiceResource = new azure_native.datafactory.LinkedService("linkedServiceResource", {
factoryName: "string",
properties: {
endpoint: "any",
type: "AmazonMWS",
sellerID: "any",
accessKeyId: "any",
marketplaceID: "any",
parameters: {
string: {
type: "string",
defaultValue: "any",
},
},
encryptedCredential: "string",
mwsAuthToken: {
secretName: "any",
store: {
referenceName: "string",
type: "string",
parameters: {
string: "any",
},
},
type: "AzureKeyVaultSecret",
secretVersion: "any",
},
description: "string",
secretKey: {
secretName: "any",
store: {
referenceName: "string",
type: "string",
parameters: {
string: "any",
},
},
type: "AzureKeyVaultSecret",
secretVersion: "any",
},
connectVia: {
referenceName: "string",
type: "string",
parameters: {
string: "any",
},
},
annotations: ["any"],
useEncryptedEndpoints: "any",
useHostVerification: "any",
usePeerVerification: "any",
version: "string",
},
resourceGroupName: "string",
linkedServiceName: "string",
});
type: azure-native:datafactory:LinkedService
properties:
factoryName: string
linkedServiceName: string
properties:
accessKeyId: any
annotations:
- any
connectVia:
parameters:
string: any
referenceName: string
type: string
description: string
encryptedCredential: string
endpoint: any
marketplaceID: any
mwsAuthToken:
secretName: any
secretVersion: any
store:
parameters:
string: any
referenceName: string
type: string
type: AzureKeyVaultSecret
parameters:
string:
defaultValue: any
type: string
secretKey:
secretName: any
secretVersion: any
store:
parameters:
string: any
referenceName: string
type: string
type: AzureKeyVaultSecret
sellerID: any
type: AmazonMWS
useEncryptedEndpoints: any
useHostVerification: any
usePeerVerification: any
version: string
resourceGroupName: string
LinkedService Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
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:
- Factory
Name string - The factory name.
- Properties
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Amazon MWSLinked Service Azure | Pulumi.Native. Data Factory. Inputs. Amazon Rds For Oracle Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Amazon Rds For Sql Server Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Amazon Redshift Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Linked Service Azure | Pulumi.Native. Data Factory. Inputs. App Figures Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Asana Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Batch Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLinked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Explorer Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Analytics Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Databricks Delta Lake Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Databricks Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Function Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure MLLinked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure MLService Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Maria DBLinked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure My Sql Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Postgre Sql Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Search Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Sql DWLinked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Sql Database Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Sql MILinked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Storage Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Synapse Artifacts Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Table Storage Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Cassandra Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Common Data Service For Apps Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Concur Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Cosmos Db Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Cosmos Db Mongo Db Api Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Couchbase Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Custom Data Source Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Dataworld Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Db2Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Drill Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Dynamics AXLinked Service Azure | Pulumi.Native. Data Factory. Inputs. Dynamics Crm Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Dynamics Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Eloqua Linked Service Azure | Pulumi.Native. Data Factory. Inputs. File Server Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Google Ad Words Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Google Big Query Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Google Big Query V2Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Google Sheets Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Greenplum Linked Service Azure | Pulumi.Native. Data Factory. Inputs. HBase Linked Service Azure | Pulumi.Native. Data Factory. Inputs. HDInsight Linked Service Azure | Pulumi.Native. Data Factory. Inputs. HDInsight On Demand Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Hive Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Http Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Hubspot Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Impala Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Informix Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Jira Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Lake House Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Magento Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Maria DBLinked Service Azure | Pulumi.Native. Data Factory. Inputs. Marketo Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Microsoft Access Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Mongo Db Atlas Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Mongo Db Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Mongo Db V2Linked Service Azure | Pulumi.Native. Data Factory. Inputs. My Sql Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Netezza Linked Service Azure | Pulumi.Native. Data Factory. Inputs. OData Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Odbc Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Office365Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Oracle Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Oracle Service Cloud Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Paypal Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Phoenix Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Postgre Sql Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Postgre Sql V2Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Presto Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Quick Books Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Quickbase Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Responsys Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Rest Service Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Salesforce Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Salesforce Marketing Cloud Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Salesforce Service Cloud Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Salesforce Service Cloud V2Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Salesforce V2Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Sap BWLinked Service Azure | Pulumi.Native. Data Factory. Inputs. Sap Cloud For Customer Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Sap Ecc Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Sap Hana Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Sap Odp Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Sap Open Hub Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Sap Table Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Service Now Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Service Now V2Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Sftp Server Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Share Point Online List Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Shopify Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Smartsheet Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Snowflake Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Snowflake V2Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Spark Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Sql Server Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Square Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Sybase Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Team Desk Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Teradata Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Twilio Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Vertica Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Warehouse Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Web Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Xero Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Zendesk Linked Service Azure Native. Data Factory. Inputs. Zoho Linked Service - Properties of linked service.
- Resource
Group stringName - The resource group name.
- Linked
Service stringName - The linked service name.
- Factory
Name string - The factory name.
- Properties
Amazon
MWSLinked | AmazonService Args Rds | AmazonFor Oracle Linked Service Args Rds | AmazonFor Sql Server Linked Service Args Redshift | AmazonLinked Service Args S3Compatible | AmazonLinked Service Args S3Linked | AppService Args Figures | AsanaLinked Service Args Linked | AzureService Args Batch | AzureLinked Service Args Blob | AzureFSLinked Service Args Blob | AzureStorage Linked Service Args Data | AzureExplorer Linked Service Args Data | AzureLake Analytics Linked Service Args Data | AzureLake Store Linked Service Args Databricks | AzureDelta Lake Linked Service Args Databricks | AzureLinked Service Args File | AzureStorage Linked Service Args Function | AzureLinked Service Args Key | AzureVault Linked Service Args MLLinked | AzureService Args MLService | AzureLinked Service Args Maria | AzureDBLinked Service Args My | AzureSql Linked Service Args Postgre | AzureSql Linked Service Args Search | AzureLinked Service Args Sql | AzureDWLinked Service Args Sql | AzureDatabase Linked Service Args Sql | AzureMILinked Service Args Storage | AzureLinked Service Args Synapse | AzureArtifacts Linked Service Args Table | CassandraStorage Linked Service Args Linked | CommonService Args Data | ConcurService For Apps Linked Service Args Linked | CosmosService Args Db | CosmosLinked Service Args Db | CouchbaseMongo Db Api Linked Service Args Linked | CustomService Args Data | DataworldSource Linked Service Args Linked | Db2LinkedService Args Service | DrillArgs Linked | DynamicsService Args AXLinked | DynamicsService Args Crm | DynamicsLinked Service Args Linked | EloquaService Args Linked | FileService Args Server | FtpLinked Service Args Server | GoogleLinked Service Args Ad | GoogleWords Linked Service Args Big | GoogleQuery Linked Service Args Big | GoogleQuery V2Linked Service Args Cloud | GoogleStorage Linked Service Args Sheets | GreenplumLinked Service Args Linked | HBaseService Args Linked | HDInsightService Args Linked | HDInsightService Args On | HdfsDemand Linked Service Args Linked | HiveService Args Linked | HttpService Args Linked | HubspotService Args Linked | ImpalaService Args Linked | InformixService Args Linked | JiraService Args Linked | LakeService Args House | MagentoLinked Service Args Linked | MariaService Args DBLinked | MarketoService Args Linked | MicrosoftService Args Access | MongoLinked Service Args Db | MongoAtlas Linked Service Args Db | MongoLinked Service Args Db | MyV2Linked Service Args Sql | NetezzaLinked Service Args Linked | ODataService Args Linked | OdbcService Args Linked | Office365LinkedService Args Service | OracleArgs Cloud | OracleStorage Linked Service Args Linked | OracleService Args Service | PaypalCloud Linked Service Args Linked | PhoenixService Args Linked | PostgreService Args Sql | PostgreLinked Service Args Sql | PrestoV2Linked Service Args Linked | QuickService Args Books | QuickbaseLinked Service Args Linked | ResponsysService Args Linked | RestService Args Service | SalesforceLinked Service Args Linked | SalesforceService Args Marketing | SalesforceCloud Linked Service Args Service | SalesforceCloud Linked Service Args Service | SalesforceCloud V2Linked Service Args V2Linked | SapService Args BWLinked | SapService Args Cloud | SapFor Customer Linked Service Args Ecc | SapLinked Service Args Hana | SapLinked Service Args Odp | SapLinked Service Args Open | SapHub Linked Service Args Table | ServiceLinked Service Args Now | ServiceLinked Service Args Now | SftpV2Linked Service Args Server | ShareLinked Service Args Point | ShopifyOnline List Linked Service Args Linked | SmartsheetService Args Linked | SnowflakeService Args Linked | SnowflakeService Args V2Linked | SparkService Args Linked | SqlService Args Server | SquareLinked Service Args Linked | SybaseService Args Linked | TeamService Args Desk | TeradataLinked Service Args Linked | TwilioService Args Linked | VerticaService Args Linked | WarehouseService Args Linked | WebService Args Linked | XeroService Args Linked | ZendeskService Args Linked | ZohoService Args Linked Service Args - Properties of linked service.
- Resource
Group stringName - The resource group name.
- Linked
Service stringName - The linked service name.
- factory
Name String - The factory name.
- properties
Amazon
MWSLinked | AmazonService Rds | AmazonFor Oracle Linked Service Rds | AmazonFor Sql Server Linked Service Redshift | AmazonLinked Service S3Compatible | AmazonLinked Service S3Linked | AppService Figures | AsanaLinked Service Linked | AzureService Batch | AzureLinked Service Blob | AzureFSLinked Service Blob | AzureStorage Linked Service Data | AzureExplorer Linked Service Data | AzureLake Analytics Linked Service Data | AzureLake Store Linked Service Databricks | AzureDelta Lake Linked Service Databricks | AzureLinked Service File | AzureStorage Linked Service Function | AzureLinked Service Key | AzureVault Linked Service MLLinked | AzureService MLService | AzureLinked Service Maria | AzureDBLinked Service My | AzureSql Linked Service Postgre | AzureSql Linked Service Search | AzureLinked Service Sql | AzureDWLinked Service Sql | AzureDatabase Linked Service Sql | AzureMILinked Service Storage | AzureLinked Service Synapse | AzureArtifacts Linked Service Table | CassandraStorage Linked Service Linked | CommonService Data | ConcurService For Apps Linked Service Linked | CosmosService Db | CosmosLinked Service Db | CouchbaseMongo Db Api Linked Service Linked | CustomService Data | DataworldSource Linked Service Linked | Db2LinkedService Service | DrillLinked | DynamicsService AXLinked | DynamicsService Crm | DynamicsLinked Service Linked | EloquaService Linked | FileService Server | FtpLinked Service Server | GoogleLinked Service Ad | GoogleWords Linked Service Big | GoogleQuery Linked Service Big | GoogleQuery V2Linked Service Cloud | GoogleStorage Linked Service Sheets | GreenplumLinked Service Linked | HBaseService Linked | HDInsightService Linked | HDInsightService On | HdfsDemand Linked Service Linked | HiveService Linked | HttpService Linked | HubspotService Linked | ImpalaService Linked | InformixService Linked | JiraService Linked | LakeService House | MagentoLinked Service Linked | MariaService DBLinked | MarketoService Linked | MicrosoftService Access | MongoLinked Service Db | MongoAtlas Linked Service Db | MongoLinked Service Db | MyV2Linked Service Sql | NetezzaLinked Service Linked | ODataService Linked | OdbcService Linked | Office365LinkedService Service | OracleCloud | OracleStorage Linked Service Linked | OracleService Service | PaypalCloud Linked Service Linked | PhoenixService Linked | PostgreService Sql | PostgreLinked Service Sql | PrestoV2Linked Service Linked | QuickService Books | QuickbaseLinked Service Linked | ResponsysService Linked | RestService Service | SalesforceLinked Service Linked | SalesforceService Marketing | SalesforceCloud Linked Service Service | SalesforceCloud Linked Service Service | SalesforceCloud V2Linked Service V2Linked | SapService BWLinked | SapService Cloud | SapFor Customer Linked Service Ecc | SapLinked Service Hana | SapLinked Service Odp | SapLinked Service Open | SapHub Linked Service Table | ServiceLinked Service Now | ServiceLinked Service Now | SftpV2Linked Service Server | ShareLinked Service Point | ShopifyOnline List Linked Service Linked | SmartsheetService Linked | SnowflakeService Linked | SnowflakeService V2Linked | SparkService Linked | SqlService Server | SquareLinked Service Linked | SybaseService Linked | TeamService Desk | TeradataLinked Service Linked | TwilioService Linked | VerticaService Linked | WarehouseService Linked | WebService Linked | XeroService Linked | ZendeskService Linked | ZohoService Linked Service - Properties of linked service.
- resource
Group StringName - The resource group name.
- linked
Service StringName - The linked service name.
- factory
Name string - The factory name.
- properties
Amazon
MWSLinked | AmazonService Rds | AmazonFor Oracle Linked Service Rds | AmazonFor Sql Server Linked Service Redshift | AmazonLinked Service S3Compatible | AmazonLinked Service S3Linked | AppService Figures | AsanaLinked Service Linked | AzureService Batch | AzureLinked Service Blob | AzureFSLinked Service Blob | AzureStorage Linked Service Data | AzureExplorer Linked Service Data | AzureLake Analytics Linked Service Data | AzureLake Store Linked Service Databricks | AzureDelta Lake Linked Service Databricks | AzureLinked Service File | AzureStorage Linked Service Function | AzureLinked Service Key | AzureVault Linked Service MLLinked | AzureService MLService | AzureLinked Service Maria | AzureDBLinked Service My | AzureSql Linked Service Postgre | AzureSql Linked Service Search | AzureLinked Service Sql | AzureDWLinked Service Sql | AzureDatabase Linked Service Sql | AzureMILinked Service Storage | AzureLinked Service Synapse | AzureArtifacts Linked Service Table | CassandraStorage Linked Service Linked | CommonService Data | ConcurService For Apps Linked Service Linked | CosmosService Db | CosmosLinked Service Db | CouchbaseMongo Db Api Linked Service Linked | CustomService Data | DataworldSource Linked Service Linked | Db2LinkedService Service | DrillLinked | DynamicsService AXLinked | DynamicsService Crm | DynamicsLinked Service Linked | EloquaService Linked | FileService Server | FtpLinked Service Server | GoogleLinked Service Ad | GoogleWords Linked Service Big | GoogleQuery Linked Service Big | GoogleQuery V2Linked Service Cloud | GoogleStorage Linked Service Sheets | GreenplumLinked Service Linked | HBaseService Linked | HDInsightService Linked | HDInsightService On | HdfsDemand Linked Service Linked | HiveService Linked | HttpService Linked | HubspotService Linked | ImpalaService Linked | InformixService Linked | JiraService Linked | LakeService House | MagentoLinked Service Linked | MariaService DBLinked | MarketoService Linked | MicrosoftService Access | MongoLinked Service Db | MongoAtlas Linked Service Db | MongoLinked Service Db | MyV2Linked Service Sql | NetezzaLinked Service Linked | ODataService Linked | OdbcService Linked | Office365LinkedService Service | OracleCloud | OracleStorage Linked Service Linked | OracleService Service | PaypalCloud Linked Service Linked | PhoenixService Linked | PostgreService Sql | PostgreLinked Service Sql | PrestoV2Linked Service Linked | QuickService Books | QuickbaseLinked Service Linked | ResponsysService Linked | RestService Service | SalesforceLinked Service Linked | SalesforceService Marketing | SalesforceCloud Linked Service Service | SalesforceCloud Linked Service Service | SalesforceCloud V2Linked Service V2Linked | SapService BWLinked | SapService Cloud | SapFor Customer Linked Service Ecc | SapLinked Service Hana | SapLinked Service Odp | SapLinked Service Open | SapHub Linked Service Table | ServiceLinked Service Now | ServiceLinked Service Now | SftpV2Linked Service Server | ShareLinked Service Point | ShopifyOnline List Linked Service Linked | SmartsheetService Linked | SnowflakeService Linked | SnowflakeService V2Linked | SparkService Linked | SqlService Server | SquareLinked Service Linked | SybaseService Linked | TeamService Desk | TeradataLinked Service Linked | TwilioService Linked | VerticaService Linked | WarehouseService Linked | WebService Linked | XeroService Linked | ZendeskService Linked | ZohoService Linked Service - Properties of linked service.
- resource
Group stringName - The resource group name.
- linked
Service stringName - The linked service name.
- factory_
name str - The factory name.
- properties
Amazon
MWSLinked | AmazonService Args Rds | AmazonFor Oracle Linked Service Args Rds | AmazonFor Sql Server Linked Service Args Redshift | AmazonLinked Service Args S3Compatible | AmazonLinked Service Args S3Linked | AppService Args Figures | AsanaLinked Service Args Linked | AzureService Args Batch | AzureLinked Service Args Blob | AzureFSLinked Service Args Blob | AzureStorage Linked Service Args Data | AzureExplorer Linked Service Args Data | AzureLake Analytics Linked Service Args Data | AzureLake Store Linked Service Args Databricks | AzureDelta Lake Linked Service Args Databricks | AzureLinked Service Args File | AzureStorage Linked Service Args Function | AzureLinked Service Args Key | AzureVault Linked Service Args MLLinked | AzureService Args MLService | AzureLinked Service Args Maria | AzureDBLinked Service Args My | AzureSql Linked Service Args Postgre | AzureSql Linked Service Args Search | AzureLinked Service Args Sql | AzureDWLinked Service Args Sql | AzureDatabase Linked Service Args Sql | AzureMILinked Service Args Storage | AzureLinked Service Args Synapse | AzureArtifacts Linked Service Args Table | CassandraStorage Linked Service Args Linked | CommonService Args Data | ConcurService For Apps Linked Service Args Linked | CosmosService Args Db | CosmosLinked Service Args Db | CouchbaseMongo Db Api Linked Service Args Linked | CustomService Args Data | DataworldSource Linked Service Args Linked | Db2LinkedService Args Service | DrillArgs Linked | DynamicsService Args AXLinked | DynamicsService Args Crm | DynamicsLinked Service Args Linked | EloquaService Args Linked | FileService Args Server | FtpLinked Service Args Server | GoogleLinked Service Args Ad | GoogleWords Linked Service Args Big | GoogleQuery Linked Service Args Big | GoogleQuery V2Linked Service Args Cloud | GoogleStorage Linked Service Args Sheets | GreenplumLinked Service Args Linked | HBaseService Args Linked | HDInsightService Args Linked | HDInsightService Args On | HdfsDemand Linked Service Args Linked | HiveService Args Linked | HttpService Args Linked | HubspotService Args Linked | ImpalaService Args Linked | InformixService Args Linked | JiraService Args Linked | LakeService Args House | MagentoLinked Service Args Linked | MariaService Args DBLinked | MarketoService Args Linked | MicrosoftService Args Access | MongoLinked Service Args Db | MongoAtlas Linked Service Args Db | MongoLinked Service Args Db | MyV2Linked Service Args Sql | NetezzaLinked Service Args Linked | ODataService Args Linked | OdbcService Args Linked | Office365LinkedService Args Service | OracleArgs Cloud | OracleStorage Linked Service Args Linked | OracleService Args Service | PaypalCloud Linked Service Args Linked | PhoenixService Args Linked | PostgreService Args Sql | PostgreLinked Service Args Sql | PrestoV2Linked Service Args Linked | QuickService Args Books | QuickbaseLinked Service Args Linked | ResponsysService Args Linked | RestService Args Service | SalesforceLinked Service Args Linked | SalesforceService Args Marketing | SalesforceCloud Linked Service Args Service | SalesforceCloud Linked Service Args Service | SalesforceCloud V2Linked Service Args V2Linked | SapService Args BWLinked | SapService Args Cloud | SapFor Customer Linked Service Args Ecc | SapLinked Service Args Hana | SapLinked Service Args Odp | SapLinked Service Args Open | SapHub Linked Service Args Table | ServiceLinked Service Args Now | ServiceLinked Service Args Now | SftpV2Linked Service Args Server | ShareLinked Service Args Point | ShopifyOnline List Linked Service Args Linked | SmartsheetService Args Linked | SnowflakeService Args Linked | SnowflakeService Args V2Linked | SparkService Args Linked | SqlService Args Server | SquareLinked Service Args Linked | SybaseService Args Linked | TeamService Args Desk | TeradataLinked Service Args Linked | TwilioService Args Linked | VerticaService Args Linked | WarehouseService Args Linked | WebService Args Linked | XeroService Args Linked | ZendeskService Args Linked | ZohoService Args Linked Service Args - Properties of linked service.
- resource_
group_ strname - The resource group name.
- linked_
service_ strname - The linked service name.
- factory
Name String - The factory name.
- properties Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
- Properties of linked service.
- resource
Group StringName - The resource group name.
- linked
Service StringName - The linked service name.
Outputs
All input properties are implicitly available as output properties. Additionally, the LinkedService resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- 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.
- Azure
Api stringVersion - The Azure API version of the resource.
- 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.
- azure
Api StringVersion - The Azure API version of the resource.
- 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.
- azure
Api stringVersion - The Azure API version of the resource.
- 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.
- azure_
api_ strversion - The Azure API version of the resource.
- 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.
- azure
Api StringVersion - The Azure API version of the resource.
- 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
- Access
Key objectId - The access key id used to access data.
- Endpoint object
- The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
- Marketplace
ID object - The Amazon Marketplace ID you want to retrieve data from. To retrieve data from multiple Marketplace IDs, separate them with a comma (,). (i.e. A2EUQ1WTGCTBG2)
- Seller
ID object - The Amazon seller ID.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Mws
Auth Pulumi.Token Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The Amazon MWS authentication token.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Secret
Key Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The secret key used to access data.
- Use
Encrypted objectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- Use
Host objectVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- Use
Peer objectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- Version string
- Version of the linked service.
- Access
Key interface{}Id - The access key id used to access data.
- Endpoint interface{}
- The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
- Marketplace
ID interface{} - The Amazon Marketplace ID you want to retrieve data from. To retrieve data from multiple Marketplace IDs, separate them with a comma (,). (i.e. A2EUQ1WTGCTBG2)
- Seller
ID interface{} - The Amazon seller ID.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Mws
Auth AzureToken Key | SecureVault Secret Reference String - The Amazon MWS authentication token.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Secret
Key AzureKey | SecureVault Secret Reference String - The secret key used to access data.
- Use
Encrypted interface{}Endpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- Use
Host interface{}Verification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- Use
Peer interface{}Verification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- Version string
- Version of the linked service.
- access
Key ObjectId - The access key id used to access data.
- endpoint Object
- The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
- marketplace
ID Object - The Amazon Marketplace ID you want to retrieve data from. To retrieve data from multiple Marketplace IDs, separate them with a comma (,). (i.e. A2EUQ1WTGCTBG2)
- seller
ID Object - The Amazon seller ID.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- mws
Auth AzureToken Key | SecureVault Secret Reference String - The Amazon MWS authentication token.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- secret
Key AzureKey | SecureVault Secret Reference String - The secret key used to access data.
- use
Encrypted ObjectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host ObjectVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use
Peer ObjectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- version String
- Version of the linked service.
- access
Key anyId - The access key id used to access data.
- endpoint any
- The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
- marketplace
ID any - The Amazon Marketplace ID you want to retrieve data from. To retrieve data from multiple Marketplace IDs, separate them with a comma (,). (i.e. A2EUQ1WTGCTBG2)
- seller
ID any - The Amazon seller ID.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- mws
Auth AzureToken Key | SecureVault Secret Reference String - The Amazon MWS authentication token.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- secret
Key AzureKey | SecureVault Secret Reference String - The secret key used to access data.
- use
Encrypted anyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host anyVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use
Peer anyVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- version string
- Version of the linked service.
- access_
key_ Anyid - The access key id used to access data.
- endpoint Any
- The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
- marketplace_
id Any - The Amazon Marketplace ID you want to retrieve data from. To retrieve data from multiple Marketplace IDs, separate them with a comma (,). (i.e. A2EUQ1WTGCTBG2)
- seller_
id Any - The Amazon seller ID.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- mws_
auth_ Azuretoken Key | SecureVault Secret Reference String - The Amazon MWS authentication token.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- secret_
key AzureKey | SecureVault Secret Reference String - The secret key used to access data.
- use_
encrypted_ Anyendpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use_
host_ Anyverification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use_
peer_ Anyverification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- version str
- Version of the linked service.
- access
Key AnyId - The access key id used to access data.
- endpoint Any
- The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
- marketplace
ID Any - The Amazon Marketplace ID you want to retrieve data from. To retrieve data from multiple Marketplace IDs, separate them with a comma (,). (i.e. A2EUQ1WTGCTBG2)
- seller
ID Any - The Amazon seller ID.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- mws
Auth Property Map | Property MapToken - The Amazon MWS authentication token.
- parameters Map<Property Map>
- Parameters for linked service.
- secret
Key Property Map | Property Map - The secret key used to access data.
- use
Encrypted AnyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host AnyVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use
Peer AnyVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- version String
- Version of the linked service.
AmazonMWSLinkedServiceResponse, AmazonMWSLinkedServiceResponseArgs
- Access
Key objectId - The access key id used to access data.
- Endpoint object
- The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
- Marketplace
ID object - The Amazon Marketplace ID you want to retrieve data from. To retrieve data from multiple Marketplace IDs, separate them with a comma (,). (i.e. A2EUQ1WTGCTBG2)
- Seller
ID object - The Amazon seller ID.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Mws
Auth Pulumi.Token Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The Amazon MWS authentication token.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Secret
Key Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The secret key used to access data.
- Use
Encrypted objectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- Use
Host objectVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- Use
Peer objectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- Version string
- Version of the linked service.
- Access
Key interface{}Id - The access key id used to access data.
- Endpoint interface{}
- The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
- Marketplace
ID interface{} - The Amazon Marketplace ID you want to retrieve data from. To retrieve data from multiple Marketplace IDs, separate them with a comma (,). (i.e. A2EUQ1WTGCTBG2)
- Seller
ID interface{} - The Amazon seller ID.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Mws
Auth AzureToken Key | SecureVault Secret Reference Response String Response - The Amazon MWS authentication token.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Secret
Key AzureKey | SecureVault Secret Reference Response String Response - The secret key used to access data.
- Use
Encrypted interface{}Endpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- Use
Host interface{}Verification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- Use
Peer interface{}Verification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- Version string
- Version of the linked service.
- access
Key ObjectId - The access key id used to access data.
- endpoint Object
- The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
- marketplace
ID Object - The Amazon Marketplace ID you want to retrieve data from. To retrieve data from multiple Marketplace IDs, separate them with a comma (,). (i.e. A2EUQ1WTGCTBG2)
- seller
ID Object - The Amazon seller ID.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- mws
Auth AzureToken Key | SecureVault Secret Reference Response String Response - The Amazon MWS authentication token.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- secret
Key AzureKey | SecureVault Secret Reference Response String Response - The secret key used to access data.
- use
Encrypted ObjectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host ObjectVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use
Peer ObjectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- version String
- Version of the linked service.
- access
Key anyId - The access key id used to access data.
- endpoint any
- The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
- marketplace
ID any - The Amazon Marketplace ID you want to retrieve data from. To retrieve data from multiple Marketplace IDs, separate them with a comma (,). (i.e. A2EUQ1WTGCTBG2)
- seller
ID any - The Amazon seller ID.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- mws
Auth AzureToken Key | SecureVault Secret Reference Response String Response - The Amazon MWS authentication token.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- secret
Key AzureKey | SecureVault Secret Reference Response String Response - The secret key used to access data.
- use
Encrypted anyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host anyVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use
Peer anyVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- version string
- Version of the linked service.
- access_
key_ Anyid - The access key id used to access data.
- endpoint Any
- The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
- marketplace_
id Any - The Amazon Marketplace ID you want to retrieve data from. To retrieve data from multiple Marketplace IDs, separate them with a comma (,). (i.e. A2EUQ1WTGCTBG2)
- seller_
id Any - The Amazon seller ID.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- mws_
auth_ Azuretoken Key | SecureVault Secret Reference Response String Response - The Amazon MWS authentication token.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- secret_
key AzureKey | SecureVault Secret Reference Response String Response - The secret key used to access data.
- use_
encrypted_ Anyendpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use_
host_ Anyverification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use_
peer_ Anyverification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- version str
- Version of the linked service.
- access
Key AnyId - The access key id used to access data.
- endpoint Any
- The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
- marketplace
ID Any - The Amazon Marketplace ID you want to retrieve data from. To retrieve data from multiple Marketplace IDs, separate them with a comma (,). (i.e. A2EUQ1WTGCTBG2)
- seller
ID Any - The Amazon seller ID.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- mws
Auth Property Map | Property MapToken - The Amazon MWS authentication token.
- parameters Map<Property Map>
- Parameters for linked service.
- secret
Key Property Map | Property Map - The secret key used to access data.
- use
Encrypted AnyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host AnyVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use
Peer AnyVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- version String
- Version of the linked service.
AmazonRdsForOracleAuthenticationType, AmazonRdsForOracleAuthenticationTypeArgs
- Basic
- Basic
- Amazon
Rds For Oracle Authentication Type Basic - Basic
- Basic
- Basic
- Basic
- Basic
- BASIC
- Basic
- "Basic"
- Basic
AmazonRdsForOracleLinkedService, AmazonRdsForOracleLinkedServiceArgs
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Amazon Rds For Oracle Authentication Type - Authentication type for connecting to the AmazonRdsForOracle database. Only used for Version 2.0.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Connection
String object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.
- Crypto
Checksum objectClient - Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
- Crypto
Checksum objectTypes Client - Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0.
- Description string
- Linked service description.
- Enable
Bulk objectLoad - Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Encryption
Client object - Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
- Encryption
Types objectClient - Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0.
- Fetch
Size object - Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0.
- Fetch
Tswtz objectAs Timestamp - Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0.
- Initial
Lob objectFetch Size - Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0.
- Initialization
String object - Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The Azure key vault secret reference of password in connection string.
- Server object
- The location of AmazonRdsForOracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0.
- Statement
Cache objectSize - Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0.
- Support
V1Data objectTypes - Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0.
- Username object
- The AmazonRdsForOracle database username. Type: string. Only used for Version 2.0.
- Version string
- Version of the linked service.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Authentication
Type string | AmazonRds For Oracle Authentication Type - Authentication type for connecting to the AmazonRdsForOracle database. Only used for Version 2.0.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Connection
String interface{} - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.
- Crypto
Checksum interface{}Client - Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
- Crypto
Checksum interface{}Types Client - Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0.
- Description string
- Linked service description.
- Enable
Bulk interface{}Load - Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Encryption
Client interface{} - Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
- Encryption
Types interface{}Client - Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0.
- Fetch
Size interface{} - Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0.
- Fetch
Tswtz interface{}As Timestamp - Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0.
- Initial
Lob interface{}Fetch Size - Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0.
- Initialization
String interface{} - Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference String - The Azure key vault secret reference of password in connection string.
- Server interface{}
- The location of AmazonRdsForOracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0.
- Statement
Cache interface{}Size - Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0.
- Support
V1Data interface{}Types - Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0.
- Username interface{}
- The AmazonRdsForOracle database username. Type: string. Only used for Version 2.0.
- Version string
- Version of the linked service.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- authentication
Type String | AmazonRds For Oracle Authentication Type - Authentication type for connecting to the AmazonRdsForOracle database. Only used for Version 2.0.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String Object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.
- crypto
Checksum ObjectClient - Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
- crypto
Checksum ObjectTypes Client - Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0.
- description String
- Linked service description.
- enable
Bulk ObjectLoad - Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- encryption
Client Object - Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
- encryption
Types ObjectClient - Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0.
- fetch
Size Object - Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0.
- fetch
Tswtz ObjectAs Timestamp - Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0.
- initial
Lob ObjectFetch Size - Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0.
- initialization
String Object - Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The Azure key vault secret reference of password in connection string.
- server Object
- The location of AmazonRdsForOracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0.
- statement
Cache ObjectSize - Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0.
- support
V1Data ObjectTypes - Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0.
- username Object
- The AmazonRdsForOracle database username. Type: string. Only used for Version 2.0.
- version String
- Version of the linked service.
- annotations any[]
- List of tags that can be used for describing the linked service.
- authentication
Type string | AmazonRds For Oracle Authentication Type - Authentication type for connecting to the AmazonRdsForOracle database. Only used for Version 2.0.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.
- crypto
Checksum anyClient - Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
- crypto
Checksum anyTypes Client - Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0.
- description string
- Linked service description.
- enable
Bulk anyLoad - Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- encryption
Client any - Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
- encryption
Types anyClient - Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0.
- fetch
Size any - Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0.
- fetch
Tswtz anyAs Timestamp - Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0.
- initial
Lob anyFetch Size - Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0.
- initialization
String any - Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The Azure key vault secret reference of password in connection string.
- server any
- The location of AmazonRdsForOracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0.
- statement
Cache anySize - Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0.
- support
V1Data anyTypes - Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0.
- username any
- The AmazonRdsForOracle database username. Type: string. Only used for Version 2.0.
- 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 | AmazonRds For Oracle Authentication Type - Authentication type for connecting to the AmazonRdsForOracle database. Only used for Version 2.0.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.
- crypto_
checksum_ Anyclient - Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
- crypto_
checksum_ Anytypes_ client - Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0.
- description str
- Linked service description.
- enable_
bulk_ Anyload - Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- encryption_
client Any - Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
- encryption_
types_ Anyclient - Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0.
- fetch_
size Any - Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0.
- fetch_
tswtz_ Anyas_ timestamp - Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0.
- initial_
lob_ Anyfetch_ size - Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0.
- initialization_
string Any - Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The Azure key vault secret reference of password in connection string.
- server Any
- The location of AmazonRdsForOracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0.
- statement_
cache_ Anysize - Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0.
- support_
v1_ Anydata_ types - Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0.
- username Any
- The AmazonRdsForOracle database username. Type: string. Only used for Version 2.0.
- version str
- Version of the linked service.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- authentication
Type String | "Basic" - Authentication type for connecting to the AmazonRdsForOracle database. Only used for Version 2.0.
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.
- crypto
Checksum AnyClient - Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
- crypto
Checksum AnyTypes Client - Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0.
- description String
- Linked service description.
- enable
Bulk AnyLoad - Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- encryption
Client Any - Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
- encryption
Types AnyClient - Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0.
- fetch
Size Any - Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0.
- fetch
Tswtz AnyAs Timestamp - Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0.
- initial
Lob AnyFetch Size - Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0.
- initialization
String Any - Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The Azure key vault secret reference of password in connection string.
- server Any
- The location of AmazonRdsForOracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0.
- statement
Cache AnySize - Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0.
- support
V1Data AnyTypes - Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0.
- username Any
- The AmazonRdsForOracle database username. Type: string. Only used for Version 2.0.
- version String
- Version of the linked service.
AmazonRdsForOracleLinkedServiceResponse, AmazonRdsForOracleLinkedServiceResponseArgs
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Authentication
Type string - Authentication type for connecting to the AmazonRdsForOracle database. Only used for Version 2.0.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Connection
String object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.
- Crypto
Checksum objectClient - Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
- Crypto
Checksum objectTypes Client - Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0.
- Description string
- Linked service description.
- Enable
Bulk objectLoad - Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Encryption
Client object - Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
- Encryption
Types objectClient - Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0.
- Fetch
Size object - Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0.
- Fetch
Tswtz objectAs Timestamp - Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0.
- Initial
Lob objectFetch Size - Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0.
- Initialization
String object - Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The Azure key vault secret reference of password in connection string.
- Server object
- The location of AmazonRdsForOracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0.
- Statement
Cache objectSize - Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0.
- Support
V1Data objectTypes - Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0.
- Username object
- The AmazonRdsForOracle database username. Type: string. Only used for Version 2.0.
- Version string
- Version of the linked service.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Authentication
Type string - Authentication type for connecting to the AmazonRdsForOracle database. Only used for Version 2.0.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Connection
String interface{} - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.
- Crypto
Checksum interface{}Client - Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
- Crypto
Checksum interface{}Types Client - Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0.
- Description string
- Linked service description.
- Enable
Bulk interface{}Load - Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Encryption
Client interface{} - Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
- Encryption
Types interface{}Client - Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0.
- Fetch
Size interface{} - Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0.
- Fetch
Tswtz interface{}As Timestamp - Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0.
- Initial
Lob interface{}Fetch Size - Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0.
- Initialization
String interface{} - Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - The Azure key vault secret reference of password in connection string.
- Server interface{}
- The location of AmazonRdsForOracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0.
- Statement
Cache interface{}Size - Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0.
- Support
V1Data interface{}Types - Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0.
- Username interface{}
- The AmazonRdsForOracle database username. Type: string. Only used for Version 2.0.
- Version string
- Version of the linked service.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- authentication
Type String - Authentication type for connecting to the AmazonRdsForOracle database. Only used for Version 2.0.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String Object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.
- crypto
Checksum ObjectClient - Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
- crypto
Checksum ObjectTypes Client - Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0.
- description String
- Linked service description.
- enable
Bulk ObjectLoad - Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- encryption
Client Object - Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
- encryption
Types ObjectClient - Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0.
- fetch
Size Object - Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0.
- fetch
Tswtz ObjectAs Timestamp - Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0.
- initial
Lob ObjectFetch Size - Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0.
- initialization
String Object - Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The Azure key vault secret reference of password in connection string.
- server Object
- The location of AmazonRdsForOracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0.
- statement
Cache ObjectSize - Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0.
- support
V1Data ObjectTypes - Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0.
- username Object
- The AmazonRdsForOracle database username. Type: string. Only used for Version 2.0.
- version String
- Version of the linked service.
- annotations any[]
- List of tags that can be used for describing the linked service.
- authentication
Type string - Authentication type for connecting to the AmazonRdsForOracle database. Only used for Version 2.0.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.
- crypto
Checksum anyClient - Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
- crypto
Checksum anyTypes Client - Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0.
- description string
- Linked service description.
- enable
Bulk anyLoad - Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- encryption
Client any - Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
- encryption
Types anyClient - Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0.
- fetch
Size any - Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0.
- fetch
Tswtz anyAs Timestamp - Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0.
- initial
Lob anyFetch Size - Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0.
- initialization
String any - Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The Azure key vault secret reference of password in connection string.
- server any
- The location of AmazonRdsForOracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0.
- statement
Cache anySize - Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0.
- support
V1Data anyTypes - Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0.
- username any
- The AmazonRdsForOracle database username. Type: string. Only used for Version 2.0.
- 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 - Authentication type for connecting to the AmazonRdsForOracle database. Only used for Version 2.0.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.
- crypto_
checksum_ Anyclient - Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
- crypto_
checksum_ Anytypes_ client - Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0.
- description str
- Linked service description.
- enable_
bulk_ Anyload - Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- encryption_
client Any - Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
- encryption_
types_ Anyclient - Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0.
- fetch_
size Any - Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0.
- fetch_
tswtz_ Anyas_ timestamp - Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0.
- initial_
lob_ Anyfetch_ size - Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0.
- initialization_
string Any - Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The Azure key vault secret reference of password in connection string.
- server Any
- The location of AmazonRdsForOracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0.
- statement_
cache_ Anysize - Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0.
- support_
v1_ Anydata_ types - Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0.
- username Any
- The AmazonRdsForOracle database username. Type: string. Only used for Version 2.0.
- version str
- Version of the linked service.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- authentication
Type String - Authentication type for connecting to the AmazonRdsForOracle database. Only used for Version 2.0.
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.
- crypto
Checksum AnyClient - Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
- crypto
Checksum AnyTypes Client - Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0.
- description String
- Linked service description.
- enable
Bulk AnyLoad - Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- encryption
Client Any - Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
- encryption
Types AnyClient - Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0.
- fetch
Size Any - Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0.
- fetch
Tswtz AnyAs Timestamp - Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0.
- initial
Lob AnyFetch Size - Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0.
- initialization
String Any - Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The Azure key vault secret reference of password in connection string.
- server Any
- The location of AmazonRdsForOracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0.
- statement
Cache AnySize - Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0.
- support
V1Data AnyTypes - Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0.
- username Any
- The AmazonRdsForOracle database username. Type: string. Only used for Version 2.0.
- version String
- Version of the linked service.
AmazonRdsForSqlAuthenticationType, AmazonRdsForSqlAuthenticationTypeArgs
- SQL
- SQL
- Windows
- Windows
- Amazon
Rds For Sql Authentication Type SQL - SQL
- Amazon
Rds For Sql Authentication Type Windows - Windows
- SQL
- SQL
- Windows
- Windows
- SQL
- SQL
- Windows
- Windows
- SQL
- SQL
- WINDOWS
- Windows
- "SQL"
- SQL
- "Windows"
- Windows
AmazonRdsForSqlServerLinkedService, AmazonRdsForSqlServerLinkedServiceArgs
- Always
Encrypted Pulumi.Settings Azure Native. Data Factory. Inputs. Sql Always Encrypted Properties - Sql always encrypted properties.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Application
Intent object - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Amazon Rds For Sql Authentication Type - The type used for authentication. Type: string.
- Command
Timeout object - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Retry objectCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- Connect
Retry objectInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- Connect
Timeout object - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Connection
String object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Database object
- The name of the database, used by recommended version. Type: string (or Expression with resultType string).
- Description string
- Linked service description.
- Encrypt object
- Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Failover
Partner object - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- Host
Name objectIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- Integrated
Security object - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Load
Balance objectTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- Max
Pool objectSize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Min
Pool objectSize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Multi
Subnet objectFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Multiple
Active objectResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Packet
Size object - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The on-premises Windows authentication password.
- Pooling object
- Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Server object
- The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
- Trust
Server objectCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- User
Name object - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Always
Encrypted SqlSettings Always Encrypted Properties - Sql always encrypted properties.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Application
Intent interface{} - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- Authentication
Type string | AmazonRds For Sql Authentication Type - The type used for authentication. Type: string.
- Command
Timeout interface{} - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Retry interface{}Count - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- Connect
Retry interface{}Interval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- Connect
Timeout interface{} - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Connection
String interface{} - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Database interface{}
- The name of the database, used by recommended version. Type: string (or Expression with resultType string).
- Description string
- Linked service description.
- Encrypt interface{}
- Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Failover
Partner interface{} - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- Host
Name interface{}In Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- Integrated
Security interface{} - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Load
Balance interface{}Timeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- Max
Pool interface{}Size - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Min
Pool interface{}Size - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Multi
Subnet interface{}Failover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Multiple
Active interface{}Result Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Packet
Size interface{} - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference String - The on-premises Windows authentication password.
- Pooling interface{}
- Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Server interface{}
- The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
- Trust
Server interface{}Certificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- User
Name interface{} - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- always
Encrypted SqlSettings Always Encrypted Properties - Sql always encrypted properties.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- application
Intent Object - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type String | AmazonRds For Sql Authentication Type - The type used for authentication. Type: string.
- command
Timeout Object - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry ObjectCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry ObjectInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout Object - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String Object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Object
- The name of the database, used by recommended version. Type: string (or Expression with resultType string).
- description String
- Linked service description.
- encrypt Object
- Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner Object - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name ObjectIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security Object - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance ObjectTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool ObjectSize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool ObjectSize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet ObjectFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active ObjectResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size Object - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The on-premises Windows authentication password.
- pooling Object
- Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- server Object
- The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
- trust
Server ObjectCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name Object - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- always
Encrypted SqlSettings Always Encrypted Properties - Sql always encrypted properties.
- annotations any[]
- List of tags that can be used for describing the linked service.
- application
Intent any - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type string | AmazonRds For Sql Authentication Type - The type used for authentication. Type: string.
- command
Timeout any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry anyCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry anyInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- database any
- The name of the database, used by recommended version. Type: string (or Expression with resultType string).
- description string
- Linked service description.
- encrypt any
- Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner any - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name anyIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance anyTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool anySize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool anySize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet anyFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active anyResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The on-premises Windows authentication password.
- pooling any
- Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- server any
- The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
- trust
Server anyCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name any - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- version string
- Version of the linked service.
- always_
encrypted_ Sqlsettings Always Encrypted Properties - Sql always encrypted properties.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- application_
intent Any - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication_
type str | AmazonRds For Sql Authentication Type - The type used for authentication. Type: string.
- command_
timeout Any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect_
retry_ Anycount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect_
retry_ Anyinterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect_
timeout Any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Any
- The name of the database, used by recommended version. Type: string (or Expression with resultType string).
- description str
- Linked service description.
- encrypt Any
- Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover_
partner Any - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host_
name_ Anyin_ certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated_
security Any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load_
balance_ Anytimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max_
pool_ Anysize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min_
pool_ Anysize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi_
subnet_ Anyfailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple_
active_ Anyresult_ sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet_
size Any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The on-premises Windows authentication password.
- pooling Any
- Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- server Any
- The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
- trust_
server_ Anycertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user_
name Any - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- version str
- Version of the linked service.
- always
Encrypted Property MapSettings - Sql always encrypted properties.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- application
Intent Any - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type String | "SQL" | "Windows" - The type used for authentication. Type: string.
- command
Timeout Any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry AnyCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry AnyInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout Any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Any
- The name of the database, used by recommended version. Type: string (or Expression with resultType string).
- description String
- Linked service description.
- encrypt Any
- Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner Any - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name AnyIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security Any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance AnyTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool AnySize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool AnySize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet AnyFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active AnyResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size Any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The on-premises Windows authentication password.
- pooling Any
- Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- server Any
- The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
- trust
Server AnyCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name Any - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
AmazonRdsForSqlServerLinkedServiceResponse, AmazonRdsForSqlServerLinkedServiceResponseArgs
- Always
Encrypted Pulumi.Settings Azure Native. Data Factory. Inputs. Sql Always Encrypted Properties Response - Sql always encrypted properties.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Application
Intent object - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- Authentication
Type string - The type used for authentication. Type: string.
- Command
Timeout object - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Retry objectCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- Connect
Retry objectInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- Connect
Timeout object - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Connection
String object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Database object
- The name of the database, used by recommended version. Type: string (or Expression with resultType string).
- Description string
- Linked service description.
- Encrypt object
- Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Failover
Partner object - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- Host
Name objectIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- Integrated
Security object - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Load
Balance objectTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- Max
Pool objectSize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Min
Pool objectSize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Multi
Subnet objectFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Multiple
Active objectResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Packet
Size object - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The on-premises Windows authentication password.
- Pooling object
- Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Server object
- The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
- Trust
Server objectCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- User
Name object - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Always
Encrypted SqlSettings Always Encrypted Properties Response - Sql always encrypted properties.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Application
Intent interface{} - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- Authentication
Type string - The type used for authentication. Type: string.
- Command
Timeout interface{} - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Retry interface{}Count - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- Connect
Retry interface{}Interval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- Connect
Timeout interface{} - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Connection
String interface{} - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Database interface{}
- The name of the database, used by recommended version. Type: string (or Expression with resultType string).
- Description string
- Linked service description.
- Encrypt interface{}
- Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Failover
Partner interface{} - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- Host
Name interface{}In Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- Integrated
Security interface{} - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Load
Balance interface{}Timeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- Max
Pool interface{}Size - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Min
Pool interface{}Size - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Multi
Subnet interface{}Failover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Multiple
Active interface{}Result Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Packet
Size interface{} - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - The on-premises Windows authentication password.
- Pooling interface{}
- Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Server interface{}
- The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
- Trust
Server interface{}Certificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- User
Name interface{} - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- always
Encrypted SqlSettings Always Encrypted Properties Response - Sql always encrypted properties.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- application
Intent Object - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type String - The type used for authentication. Type: string.
- command
Timeout Object - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry ObjectCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry ObjectInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout Object - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String Object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Object
- The name of the database, used by recommended version. Type: string (or Expression with resultType string).
- description String
- Linked service description.
- encrypt Object
- Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner Object - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name ObjectIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security Object - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance ObjectTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool ObjectSize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool ObjectSize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet ObjectFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active ObjectResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size Object - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The on-premises Windows authentication password.
- pooling Object
- Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- server Object
- The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
- trust
Server ObjectCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name Object - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- always
Encrypted SqlSettings Always Encrypted Properties Response - Sql always encrypted properties.
- annotations any[]
- List of tags that can be used for describing the linked service.
- application
Intent any - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type string - The type used for authentication. Type: string.
- command
Timeout any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry anyCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry anyInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- database any
- The name of the database, used by recommended version. Type: string (or Expression with resultType string).
- description string
- Linked service description.
- encrypt any
- Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner any - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name anyIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance anyTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool anySize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool anySize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet anyFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active anyResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The on-premises Windows authentication password.
- pooling any
- Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- server any
- The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
- trust
Server anyCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name any - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- version string
- Version of the linked service.
- always_
encrypted_ Sqlsettings Always Encrypted Properties Response - Sql always encrypted properties.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- application_
intent Any - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication_
type str - The type used for authentication. Type: string.
- command_
timeout Any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect_
retry_ Anycount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect_
retry_ Anyinterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect_
timeout Any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Any
- The name of the database, used by recommended version. Type: string (or Expression with resultType string).
- description str
- Linked service description.
- encrypt Any
- Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover_
partner Any - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host_
name_ Anyin_ certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated_
security Any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load_
balance_ Anytimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max_
pool_ Anysize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min_
pool_ Anysize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi_
subnet_ Anyfailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple_
active_ Anyresult_ sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet_
size Any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The on-premises Windows authentication password.
- pooling Any
- Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- server Any
- The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
- trust_
server_ Anycertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user_
name Any - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- version str
- Version of the linked service.
- always
Encrypted Property MapSettings - Sql always encrypted properties.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- application
Intent Any - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type String - The type used for authentication. Type: string.
- command
Timeout Any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry AnyCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry AnyInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout Any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Any
- The name of the database, used by recommended version. Type: string (or Expression with resultType string).
- description String
- Linked service description.
- encrypt Any
- Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner Any - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name AnyIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security Any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance AnyTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool AnySize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool AnySize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet AnyFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active AnyResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size Any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The on-premises Windows authentication password.
- pooling Any
- Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- server Any
- The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
- trust
Server AnyCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name Any - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
AmazonRedshiftLinkedService, AmazonRedshiftLinkedServiceArgs
- Database object
- The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
- Server object
- The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The password of the Amazon Redshift source.
- Port object
- The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).
- Username object
- The username of the Amazon Redshift source. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Database interface{}
- The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
- Server interface{}
- The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference String - The password of the Amazon Redshift source.
- Port interface{}
- The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).
- Username interface{}
- The username of the Amazon Redshift source. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- database Object
- The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
- server Object
- The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The password of the Amazon Redshift source.
- port Object
- The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).
- username Object
- The username of the Amazon Redshift source. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- database any
- The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
- server any
- The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The password of the Amazon Redshift source.
- port any
- The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).
- username any
- The username of the Amazon Redshift source. Type: string (or Expression with resultType string).
- version string
- Version of the linked service.
- database Any
- The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
- server Any
- The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The password of the Amazon Redshift source.
- port Any
- The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).
- username Any
- The username of the Amazon Redshift source. Type: string (or Expression with resultType string).
- version str
- Version of the linked service.
- database Any
- The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
- server Any
- The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The password of the Amazon Redshift source.
- port Any
- The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).
- username Any
- The username of the Amazon Redshift source. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
AmazonRedshiftLinkedServiceResponse, AmazonRedshiftLinkedServiceResponseArgs
- Database object
- The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
- Server object
- The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The password of the Amazon Redshift source.
- Port object
- The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).
- Username object
- The username of the Amazon Redshift source. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Database interface{}
- The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
- Server interface{}
- The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - The password of the Amazon Redshift source.
- Port interface{}
- The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).
- Username interface{}
- The username of the Amazon Redshift source. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- database Object
- The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
- server Object
- The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password of the Amazon Redshift source.
- port Object
- The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).
- username Object
- The username of the Amazon Redshift source. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- database any
- The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
- server any
- The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password of the Amazon Redshift source.
- port any
- The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).
- username any
- The username of the Amazon Redshift source. Type: string (or Expression with resultType string).
- version string
- Version of the linked service.
- database Any
- The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
- server Any
- The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password of the Amazon Redshift source.
- port Any
- The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).
- username Any
- The username of the Amazon Redshift source. Type: string (or Expression with resultType string).
- version str
- Version of the linked service.
- database Any
- The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
- server Any
- The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The password of the Amazon Redshift source.
- port Any
- The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).
- username Any
- The username of the Amazon Redshift source. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
AmazonS3CompatibleLinkedService, AmazonS3CompatibleLinkedServiceArgs
- Access
Key objectId - The access key identifier of the Amazon S3 Compatible Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Force
Path objectStyle - If true, use S3 path-style access instead of virtual hosted-style access. Default value is false. Type: boolean (or Expression with resultType boolean).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Secret
Access Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
- Service
Url object - This value specifies the endpoint to access with the Amazon S3 Compatible Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Access
Key interface{}Id - The access key identifier of the Amazon S3 Compatible Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Force
Path interface{}Style - If true, use S3 path-style access instead of virtual hosted-style access. Default value is false. Type: boolean (or Expression with resultType boolean).
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Secret
Access AzureKey Key | SecureVault Secret Reference String - The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
- Service
Url interface{} - This value specifies the endpoint to access with the Amazon S3 Compatible Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- access
Key ObjectId - The access key identifier of the Amazon S3 Compatible Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- force
Path ObjectStyle - If true, use S3 path-style access instead of virtual hosted-style access. Default value is false. Type: boolean (or Expression with resultType boolean).
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- secret
Access AzureKey Key | SecureVault Secret Reference String - The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
- service
Url Object - This value specifies the endpoint to access with the Amazon S3 Compatible Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- access
Key anyId - The access key identifier of the Amazon S3 Compatible Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- force
Path anyStyle - If true, use S3 path-style access instead of virtual hosted-style access. Default value is false. Type: boolean (or Expression with resultType boolean).
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- secret
Access AzureKey Key | SecureVault Secret Reference String - The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
- service
Url any - This value specifies the endpoint to access with the Amazon S3 Compatible Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- version string
- Version of the linked service.
- access_
key_ Anyid - The access key identifier of the Amazon S3 Compatible Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- force_
path_ Anystyle - If true, use S3 path-style access instead of virtual hosted-style access. Default value is false. Type: boolean (or Expression with resultType boolean).
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- secret_
access_ Azurekey Key | SecureVault Secret Reference String - The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
- service_
url Any - This value specifies the endpoint to access with the Amazon S3 Compatible Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- version str
- Version of the linked service.
- access
Key AnyId - The access key identifier of the Amazon S3 Compatible Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- force
Path AnyStyle - If true, use S3 path-style access instead of virtual hosted-style access. Default value is false. Type: boolean (or Expression with resultType boolean).
- parameters Map<Property Map>
- Parameters for linked service.
- secret
Access Property Map | Property MapKey - The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
- service
Url Any - This value specifies the endpoint to access with the Amazon S3 Compatible Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
AmazonS3CompatibleLinkedServiceResponse, AmazonS3CompatibleLinkedServiceResponseArgs
- Access
Key objectId - The access key identifier of the Amazon S3 Compatible Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Force
Path objectStyle - If true, use S3 path-style access instead of virtual hosted-style access. Default value is false. Type: boolean (or Expression with resultType boolean).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Secret
Access Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
- Service
Url object - This value specifies the endpoint to access with the Amazon S3 Compatible Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Access
Key interface{}Id - The access key identifier of the Amazon S3 Compatible Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Force
Path interface{}Style - If true, use S3 path-style access instead of virtual hosted-style access. Default value is false. Type: boolean (or Expression with resultType boolean).
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Secret
Access AzureKey Key | SecureVault Secret Reference Response String Response - The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
- Service
Url interface{} - This value specifies the endpoint to access with the Amazon S3 Compatible Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- access
Key ObjectId - The access key identifier of the Amazon S3 Compatible Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- force
Path ObjectStyle - If true, use S3 path-style access instead of virtual hosted-style access. Default value is false. Type: boolean (or Expression with resultType boolean).
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- secret
Access AzureKey Key | SecureVault Secret Reference Response String Response - The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
- service
Url Object - This value specifies the endpoint to access with the Amazon S3 Compatible Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- access
Key anyId - The access key identifier of the Amazon S3 Compatible Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- force
Path anyStyle - If true, use S3 path-style access instead of virtual hosted-style access. Default value is false. Type: boolean (or Expression with resultType boolean).
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- secret
Access AzureKey Key | SecureVault Secret Reference Response String Response - The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
- service
Url any - This value specifies the endpoint to access with the Amazon S3 Compatible Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- version string
- Version of the linked service.
- access_
key_ Anyid - The access key identifier of the Amazon S3 Compatible Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- force_
path_ Anystyle - If true, use S3 path-style access instead of virtual hosted-style access. Default value is false. Type: boolean (or Expression with resultType boolean).
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- secret_
access_ Azurekey Key | SecureVault Secret Reference Response String Response - The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
- service_
url Any - This value specifies the endpoint to access with the Amazon S3 Compatible Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- version str
- Version of the linked service.
- access
Key AnyId - The access key identifier of the Amazon S3 Compatible Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- force
Path AnyStyle - If true, use S3 path-style access instead of virtual hosted-style access. Default value is false. Type: boolean (or Expression with resultType boolean).
- parameters Map<Property Map>
- Parameters for linked service.
- secret
Access Property Map | Property MapKey - The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
- service
Url Any - This value specifies the endpoint to access with the Amazon S3 Compatible Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
AmazonS3LinkedService, AmazonS3LinkedServiceArgs
- Access
Key objectId - The access key identifier of the Amazon S3 Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Authentication
Type object - The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Secret
Access Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
- Service
Url object - This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- Session
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The session token for the S3 temporary security credential.
- Version string
- Version of the linked service.
- Access
Key interface{}Id - The access key identifier of the Amazon S3 Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Authentication
Type interface{} - The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Secret
Access AzureKey Key | SecureVault Secret Reference String - The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
- Service
Url interface{} - This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- Session
Token AzureKey | SecureVault Secret Reference String - The session token for the S3 temporary security credential.
- Version string
- Version of the linked service.
- access
Key ObjectId - The access key identifier of the Amazon S3 Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- authentication
Type Object - The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- secret
Access AzureKey Key | SecureVault Secret Reference String - The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
- service
Url Object - This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- session
Token AzureKey | SecureVault Secret Reference String - The session token for the S3 temporary security credential.
- version String
- Version of the linked service.
- access
Key anyId - The access key identifier of the Amazon S3 Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- authentication
Type any - The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- secret
Access AzureKey Key | SecureVault Secret Reference String - The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
- service
Url any - This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- session
Token AzureKey | SecureVault Secret Reference String - The session token for the S3 temporary security credential.
- version string
- Version of the linked service.
- access_
key_ Anyid - The access key identifier of the Amazon S3 Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication_
type Any - The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- secret_
access_ Azurekey Key | SecureVault Secret Reference String - The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
- service_
url Any - This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- session_
token AzureKey | SecureVault Secret Reference String - The session token for the S3 temporary security credential.
- version str
- Version of the linked service.
- access
Key AnyId - The access key identifier of the Amazon S3 Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- authentication
Type Any - The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- secret
Access Property Map | Property MapKey - The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
- service
Url Any - This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- session
Token Property Map | Property Map - The session token for the S3 temporary security credential.
- version String
- Version of the linked service.
AmazonS3LinkedServiceResponse, AmazonS3LinkedServiceResponseArgs
- Access
Key objectId - The access key identifier of the Amazon S3 Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Authentication
Type object - The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Secret
Access Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
- Service
Url object - This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- Session
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The session token for the S3 temporary security credential.
- Version string
- Version of the linked service.
- Access
Key interface{}Id - The access key identifier of the Amazon S3 Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Authentication
Type interface{} - The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Secret
Access AzureKey Key | SecureVault Secret Reference Response String Response - The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
- Service
Url interface{} - This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- Session
Token AzureKey | SecureVault Secret Reference Response String Response - The session token for the S3 temporary security credential.
- Version string
- Version of the linked service.
- access
Key ObjectId - The access key identifier of the Amazon S3 Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- authentication
Type Object - The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- secret
Access AzureKey Key | SecureVault Secret Reference Response String Response - The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
- service
Url Object - This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- session
Token AzureKey | SecureVault Secret Reference Response String Response - The session token for the S3 temporary security credential.
- version String
- Version of the linked service.
- access
Key anyId - The access key identifier of the Amazon S3 Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- authentication
Type any - The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- secret
Access AzureKey Key | SecureVault Secret Reference Response String Response - The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
- service
Url any - This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- session
Token AzureKey | SecureVault Secret Reference Response String Response - The session token for the S3 temporary security credential.
- version string
- Version of the linked service.
- access_
key_ Anyid - The access key identifier of the Amazon S3 Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication_
type Any - The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- secret_
access_ Azurekey Key | SecureVault Secret Reference Response String Response - The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
- service_
url Any - This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- session_
token AzureKey | SecureVault Secret Reference Response String Response - The session token for the S3 temporary security credential.
- version str
- Version of the linked service.
- access
Key AnyId - The access key identifier of the Amazon S3 Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- authentication
Type Any - The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- secret
Access Property Map | Property MapKey - The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
- service
Url Any - This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- session
Token Property Map | Property Map - The session token for the S3 temporary security credential.
- version String
- Version of the linked service.
AppFiguresLinkedService, AppFiguresLinkedServiceArgs
- Client
Key Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The client key for the AppFigures source.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The password of the AppFigures source.
- User
Name object - The username of the Appfigures source. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Version string
- Version of the linked service.
- Client
Key AzureKey | SecureVault Secret Reference String - The client key for the AppFigures source.
- Password
Azure
Key | SecureVault Secret Reference String - The password of the AppFigures source.
- User
Name interface{} - The username of the Appfigures source. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Version string
- Version of the linked service.
- client
Key AzureKey | SecureVault Secret Reference String - The client key for the AppFigures source.
- password
Azure
Key | SecureVault Secret Reference String - The password of the AppFigures source.
- user
Name Object - The username of the Appfigures source. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- version String
- Version of the linked service.
- client
Key AzureKey | SecureVault Secret Reference String - The client key for the AppFigures source.
- password
Azure
Key | SecureVault Secret Reference String - The password of the AppFigures source.
- user
Name any - The username of the Appfigures source. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- version string
- Version of the linked service.
- client_
key AzureKey | SecureVault Secret Reference String - The client key for the AppFigures source.
- password
Azure
Key | SecureVault Secret Reference String - The password of the AppFigures source.
- user_
name Any - The username of the Appfigures source. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- version str
- Version of the linked service.
- client
Key Property Map | Property Map - The client key for the AppFigures source.
- password Property Map | Property Map
- The password of the AppFigures source.
- user
Name Any - The username of the Appfigures source. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- parameters Map<Property Map>
- Parameters for linked service.
- version String
- Version of the linked service.
AppFiguresLinkedServiceResponse, AppFiguresLinkedServiceResponseArgs
- Client
Key Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The client key for the AppFigures source.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The password of the AppFigures source.
- User
Name object - The username of the Appfigures source. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Version string
- Version of the linked service.
- Client
Key AzureKey | SecureVault Secret Reference Response String Response - The client key for the AppFigures source.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - The password of the AppFigures source.
- User
Name interface{} - The username of the Appfigures source. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Version string
- Version of the linked service.
- client
Key AzureKey | SecureVault Secret Reference Response String Response - The client key for the AppFigures source.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password of the AppFigures source.
- user
Name Object - The username of the Appfigures source. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- version String
- Version of the linked service.
- client
Key AzureKey | SecureVault Secret Reference Response String Response - The client key for the AppFigures source.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password of the AppFigures source.
- user
Name any - The username of the Appfigures source. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- version string
- Version of the linked service.
- client_
key AzureKey | SecureVault Secret Reference Response String Response - The client key for the AppFigures source.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password of the AppFigures source.
- user_
name Any - The username of the Appfigures source. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- version str
- Version of the linked service.
- client
Key Property Map | Property Map - The client key for the AppFigures source.
- password Property Map | Property Map
- The password of the AppFigures source.
- user
Name Any - The username of the Appfigures source. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- parameters Map<Property Map>
- Parameters for linked service.
- version String
- Version of the linked service.
AsanaLinkedService, AsanaLinkedServiceArgs
- Api
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The api token for the Asana source.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Version string
- Version of the linked service.
- Api
Token AzureKey | SecureVault Secret Reference String - The api token for the Asana source.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Version string
- Version of the linked service.
- api
Token AzureKey | SecureVault Secret Reference String - The api token for the Asana source.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- version String
- Version of the linked service.
- api
Token AzureKey | SecureVault Secret Reference String - The api token for the Asana source.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- version string
- Version of the linked service.
- api_
token AzureKey | SecureVault Secret Reference String - The api token for the Asana source.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- version str
- Version of the linked service.
- api
Token Property Map | Property Map - The api token for the Asana source.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- version String
- Version of the linked service.
AsanaLinkedServiceResponse, AsanaLinkedServiceResponseArgs
- Api
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The api token for the Asana source.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Version string
- Version of the linked service.
- Api
Token AzureKey | SecureVault Secret Reference Response String Response - The api token for the Asana source.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Version string
- Version of the linked service.
- api
Token AzureKey | SecureVault Secret Reference Response String Response - The api token for the Asana source.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- version String
- Version of the linked service.
- api
Token AzureKey | SecureVault Secret Reference Response String Response - The api token for the Asana source.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- version string
- Version of the linked service.
- api_
token AzureKey | SecureVault Secret Reference Response String Response - The api token for the Asana source.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- version str
- Version of the linked service.
- api
Token Property Map | Property Map - The api token for the Asana source.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- version String
- Version of the linked service.
AzureBatchLinkedService, AzureBatchLinkedServiceArgs
- Account
Name object - The Azure Batch account name. Type: string (or Expression with resultType string).
- Batch
Uri object - The Azure Batch URI. Type: string (or Expression with resultType string).
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference - The Azure Storage linked service reference.
- Pool
Name object - The Azure Batch pool name. Type: string (or Expression with resultType string).
- Access
Key Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The Azure Batch account access key.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Version string
- Version of the linked service.
- Account
Name interface{} - The Azure Batch account name. Type: string (or Expression with resultType string).
- Batch
Uri interface{} - The Azure Batch URI. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference - The Azure Storage linked service reference.
- Pool
Name interface{} - The Azure Batch pool name. Type: string (or Expression with resultType string).
- Access
Key AzureKey | SecureVault Secret Reference String - The Azure Batch account access key.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Credential
Credential
Reference - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Version string
- Version of the linked service.
- account
Name Object - The Azure Batch account name. Type: string (or Expression with resultType string).
- batch
Uri Object - The Azure Batch URI. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference - The Azure Storage linked service reference.
- pool
Name Object - The Azure Batch pool name. Type: string (or Expression with resultType string).
- access
Key AzureKey | SecureVault Secret Reference String - The Azure Batch account access key.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- version String
- Version of the linked service.
- account
Name any - The Azure Batch account name. Type: string (or Expression with resultType string).
- batch
Uri any - The Azure Batch URI. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference - The Azure Storage linked service reference.
- pool
Name any - The Azure Batch pool name. Type: string (or Expression with resultType string).
- access
Key AzureKey | SecureVault Secret Reference String - The Azure Batch account access key.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- version string
- Version of the linked service.
- account_
name Any - The Azure Batch account name. Type: string (or Expression with resultType string).
- batch_
uri Any - The Azure Batch URI. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference - The Azure Storage linked service reference.
- pool_
name Any - The Azure Batch pool name. Type: string (or Expression with resultType string).
- access_
key AzureKey | SecureVault Secret Reference String - The Azure Batch account access key.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- version str
- Version of the linked service.
- account
Name Any - The Azure Batch account name. Type: string (or Expression with resultType string).
- batch
Uri Any - The Azure Batch URI. Type: string (or Expression with resultType string).
- linked
Service Property MapName - The Azure Storage linked service reference.
- pool
Name Any - The Azure Batch pool name. Type: string (or Expression with resultType string).
- access
Key Property Map | Property Map - The Azure Batch account access key.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- credential Property Map
- The credential reference containing authentication information.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- version String
- Version of the linked service.
AzureBatchLinkedServiceResponse, AzureBatchLinkedServiceResponseArgs
- Account
Name object - The Azure Batch account name. Type: string (or Expression with resultType string).
- Batch
Uri object - The Azure Batch URI. Type: string (or Expression with resultType string).
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - The Azure Storage linked service reference.
- Pool
Name object - The Azure Batch pool name. Type: string (or Expression with resultType string).
- Access
Key Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The Azure Batch account access key.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference Response - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Version string
- Version of the linked service.
- Account
Name interface{} - The Azure Batch account name. Type: string (or Expression with resultType string).
- Batch
Uri interface{} - The Azure Batch URI. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Response - The Azure Storage linked service reference.
- Pool
Name interface{} - The Azure Batch pool name. Type: string (or Expression with resultType string).
- Access
Key AzureKey | SecureVault Secret Reference Response String Response - The Azure Batch account access key.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Credential
Credential
Reference Response - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Version string
- Version of the linked service.
- account
Name Object - The Azure Batch account name. Type: string (or Expression with resultType string).
- batch
Uri Object - The Azure Batch URI. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response - The Azure Storage linked service reference.
- pool
Name Object - The Azure Batch pool name. Type: string (or Expression with resultType string).
- access
Key AzureKey | SecureVault Secret Reference Response String Response - The Azure Batch account access key.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- version String
- Version of the linked service.
- account
Name any - The Azure Batch account name. Type: string (or Expression with resultType string).
- batch
Uri any - The Azure Batch URI. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response - The Azure Storage linked service reference.
- pool
Name any - The Azure Batch pool name. Type: string (or Expression with resultType string).
- access
Key AzureKey | SecureVault Secret Reference Response String Response - The Azure Batch account access key.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- version string
- Version of the linked service.
- account_
name Any - The Azure Batch account name. Type: string (or Expression with resultType string).
- batch_
uri Any - The Azure Batch URI. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response - The Azure Storage linked service reference.
- pool_
name Any - The Azure Batch pool name. Type: string (or Expression with resultType string).
- access_
key AzureKey | SecureVault Secret Reference Response String Response - The Azure Batch account access key.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- version str
- Version of the linked service.
- account
Name Any - The Azure Batch account name. Type: string (or Expression with resultType string).
- batch
Uri Any - The Azure Batch URI. Type: string (or Expression with resultType string).
- linked
Service Property MapName - The Azure Storage linked service reference.
- pool
Name Any - The Azure Batch pool name. Type: string (or Expression with resultType string).
- access
Key Property Map | Property Map - The Azure Batch account access key.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- credential Property Map
- The credential reference containing authentication information.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- version String
- Version of the linked service.
AzureBlobFSLinkedService, AzureBlobFSLinkedServiceArgs
- Account
Key object - Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Azure
Cloud objectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Sas
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The Azure key vault secret reference of sasToken in sas uri.
- Sas
Uri object - SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
- Service
Principal Pulumi.Credential Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal objectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal objectId - The ID of the application used to authenticate against the Azure Data Lake Storage Gen2 account. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The Key of the application used to authenticate against the Azure Data Lake Storage Gen2 account.
- Tenant object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Url object
- Endpoint for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Account
Key interface{} - Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Azure
Cloud interface{}Type - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Credential
Credential
Reference - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Sas
Token AzureKey | SecureVault Secret Reference String - The Azure key vault secret reference of sasToken in sas uri.
- Sas
Uri interface{} - SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
- Service
Principal AzureCredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal interface{}Credential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal interface{}Id - The ID of the application used to authenticate against the Azure Data Lake Storage Gen2 account. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference String - The Key of the application used to authenticate against the Azure Data Lake Storage Gen2 account.
- Tenant interface{}
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Url interface{}
- Endpoint for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- account
Key Object - Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- azure
Cloud ObjectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- sas
Token AzureKey | SecureVault Secret Reference String - The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri Object - SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
- service
Principal AzureCredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal ObjectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal ObjectId - The ID of the application used to authenticate against the Azure Data Lake Storage Gen2 account. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - The Key of the application used to authenticate against the Azure Data Lake Storage Gen2 account.
- tenant Object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- url Object
- Endpoint for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- account
Key any - Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- azure
Cloud anyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- sas
Token AzureKey | SecureVault Secret Reference String - The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri any - SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
- service
Principal AzureCredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal anyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal anyId - The ID of the application used to authenticate against the Azure Data Lake Storage Gen2 account. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - The Key of the application used to authenticate against the Azure Data Lake Storage Gen2 account.
- tenant any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- url any
- Endpoint for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- version string
- Version of the linked service.
- account_
key Any - Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- azure_
cloud_ Anytype - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- sas_
token AzureKey | SecureVault Secret Reference String - The Azure key vault secret reference of sasToken in sas uri.
- sas_
uri Any - SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
- service_
principal_ Azurecredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service_
principal_ Anycredential_ type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service_
principal_ Anyid - The ID of the application used to authenticate against the Azure Data Lake Storage Gen2 account. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference String - The Key of the application used to authenticate against the Azure Data Lake Storage Gen2 account.
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- url Any
- Endpoint for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- version str
- Version of the linked service.
- account
Key Any - Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- azure
Cloud AnyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect
Via Property Map - The integration runtime reference.
- credential Property Map
- The credential reference containing authentication information.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- sas
Token Property Map | Property Map - The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri Any - SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
- service
Principal Property Map | Property MapCredential - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal AnyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal AnyId - The ID of the application used to authenticate against the Azure Data Lake Storage Gen2 account. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - The Key of the application used to authenticate against the Azure Data Lake Storage Gen2 account.
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- url Any
- Endpoint for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
AzureBlobFSLinkedServiceResponse, AzureBlobFSLinkedServiceResponseArgs
- Account
Key object - Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Azure
Cloud objectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference Response - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Sas
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The Azure key vault secret reference of sasToken in sas uri.
- Sas
Uri object - SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
- Service
Principal Pulumi.Credential Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal objectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal objectId - The ID of the application used to authenticate against the Azure Data Lake Storage Gen2 account. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The Key of the application used to authenticate against the Azure Data Lake Storage Gen2 account.
- Tenant object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Url object
- Endpoint for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Account
Key interface{} - Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Azure
Cloud interface{}Type - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Credential
Credential
Reference Response - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Sas
Token AzureKey | SecureVault Secret Reference Response String Response - The Azure key vault secret reference of sasToken in sas uri.
- Sas
Uri interface{} - SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
- Service
Principal AzureCredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal interface{}Credential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal interface{}Id - The ID of the application used to authenticate against the Azure Data Lake Storage Gen2 account. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The Key of the application used to authenticate against the Azure Data Lake Storage Gen2 account.
- Tenant interface{}
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Url interface{}
- Endpoint for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- account
Key Object - Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- azure
Cloud ObjectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- sas
Token AzureKey | SecureVault Secret Reference Response String Response - The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri Object - SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
- service
Principal AzureCredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal ObjectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal ObjectId - The ID of the application used to authenticate against the Azure Data Lake Storage Gen2 account. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The Key of the application used to authenticate against the Azure Data Lake Storage Gen2 account.
- tenant Object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- url Object
- Endpoint for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- account
Key any - Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- azure
Cloud anyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- sas
Token AzureKey | SecureVault Secret Reference Response String Response - The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri any - SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
- service
Principal AzureCredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal anyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal anyId - The ID of the application used to authenticate against the Azure Data Lake Storage Gen2 account. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The Key of the application used to authenticate against the Azure Data Lake Storage Gen2 account.
- tenant any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- url any
- Endpoint for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- version string
- Version of the linked service.
- account_
key Any - Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- azure_
cloud_ Anytype - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- sas_
token AzureKey | SecureVault Secret Reference Response String Response - The Azure key vault secret reference of sasToken in sas uri.
- sas_
uri Any - SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
- service_
principal_ Azurecredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service_
principal_ Anycredential_ type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service_
principal_ Anyid - The ID of the application used to authenticate against the Azure Data Lake Storage Gen2 account. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference Response String Response - The Key of the application used to authenticate against the Azure Data Lake Storage Gen2 account.
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- url Any
- Endpoint for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- version str
- Version of the linked service.
- account
Key Any - Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- azure
Cloud AnyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect
Via Property Map - The integration runtime reference.
- credential Property Map
- The credential reference containing authentication information.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- sas
Token Property Map | Property Map - The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri Any - SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
- service
Principal Property Map | Property MapCredential - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal AnyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal AnyId - The ID of the application used to authenticate against the Azure Data Lake Storage Gen2 account. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - The Key of the application used to authenticate against the Azure Data Lake Storage Gen2 account.
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- url Any
- Endpoint for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
AzureBlobStorageLinkedService, AzureBlobStorageLinkedServiceArgs
- Account
Key Pulumi.Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference - The Azure key vault secret reference of accountKey in connection string.
- Account
Kind object - Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Azure Storage Authentication Type - The type used for authentication. Type: string.
- Azure
Cloud objectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Connection
String object - The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Container
Uri object - Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Sas
Token Pulumi.Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference - The Azure key vault secret reference of sasToken in sas uri.
- Sas
Uri object - SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Service
Endpoint object - Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
- Service
Principal objectId - The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The key of the service principal used to authenticate against Azure SQL Data Warehouse.
- Tenant object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Account
Key AzureKey Vault Secret Reference - The Azure key vault secret reference of accountKey in connection string.
- Account
Kind interface{} - Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Authentication
Type string | AzureStorage Authentication Type - The type used for authentication. Type: string.
- Azure
Cloud interface{}Type - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Connection
String interface{} - The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Container
Uri interface{} - Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
- Credential
Credential
Reference - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Sas
Token AzureKey Vault Secret Reference - The Azure key vault secret reference of sasToken in sas uri.
- Sas
Uri interface{} - SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Service
Endpoint interface{} - Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
- Service
Principal interface{}Id - The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Azure SQL Data Warehouse.
- Tenant interface{}
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- account
Key AzureKey Vault Secret Reference - The Azure key vault secret reference of accountKey in connection string.
- account
Kind Object - Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- authentication
Type String | AzureStorage Authentication Type - The type used for authentication. Type: string.
- azure
Cloud ObjectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String Object - The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- container
Uri Object - Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
- credential
Credential
Reference - The credential reference containing authentication information.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- sas
Token AzureKey Vault Secret Reference - The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri Object - SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- service
Endpoint Object - Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
- service
Principal ObjectId - The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Azure SQL Data Warehouse.
- tenant Object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- account
Key AzureKey Vault Secret Reference - The Azure key vault secret reference of accountKey in connection string.
- account
Kind any - Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- authentication
Type string | AzureStorage Authentication Type - The type used for authentication. Type: string.
- azure
Cloud anyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String any - The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- container
Uri any - Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
- credential
Credential
Reference - The credential reference containing authentication information.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- sas
Token AzureKey Vault Secret Reference - The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri any - SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- service
Endpoint any - Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
- service
Principal anyId - The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Azure SQL Data Warehouse.
- tenant any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- version string
- Version of the linked service.
- account_
key AzureKey Vault Secret Reference - The Azure key vault secret reference of accountKey in connection string.
- account_
kind Any - Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication_
type str | AzureStorage Authentication Type - The type used for authentication. Type: string.
- azure_
cloud_ Anytype - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- connection_
string Any - The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- container_
uri Any - Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
- credential
Credential
Reference - The credential reference containing authentication information.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- sas_
token AzureKey Vault Secret Reference - The Azure key vault secret reference of sasToken in sas uri.
- sas_
uri Any - SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- service_
endpoint Any - Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
- service_
principal_ Anyid - The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Azure SQL Data Warehouse.
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- version str
- Version of the linked service.
- account
Key Property Map - The Azure key vault secret reference of accountKey in connection string.
- account
Kind Any - Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- authentication
Type String | "Anonymous" | "AccountKey" | "Sas Uri" | "Service Principal" | "Msi" - The type used for authentication. Type: string.
- azure
Cloud AnyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- container
Uri Any - Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
- credential Property Map
- The credential reference containing authentication information.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- sas
Token Property Map - The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri Any - SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- service
Endpoint Any - Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
- service
Principal AnyId - The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - The key of the service principal used to authenticate against Azure SQL Data Warehouse.
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
AzureBlobStorageLinkedServiceResponse, AzureBlobStorageLinkedServiceResponseArgs
- Account
Key Pulumi.Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response - The Azure key vault secret reference of accountKey in connection string.
- Account
Kind object - Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Authentication
Type string - The type used for authentication. Type: string.
- Azure
Cloud objectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Connection
String object - The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Container
Uri object - Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference Response - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Sas
Token Pulumi.Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response - The Azure key vault secret reference of sasToken in sas uri.
- Sas
Uri object - SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Service
Endpoint object - Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
- Service
Principal objectId - The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The key of the service principal used to authenticate against Azure SQL Data Warehouse.
- Tenant object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Account
Key AzureKey Vault Secret Reference Response - The Azure key vault secret reference of accountKey in connection string.
- Account
Kind interface{} - Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Authentication
Type string - The type used for authentication. Type: string.
- Azure
Cloud interface{}Type - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Connection
String interface{} - The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Container
Uri interface{} - Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
- Credential
Credential
Reference Response - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Sas
Token AzureKey Vault Secret Reference Response - The Azure key vault secret reference of sasToken in sas uri.
- Sas
Uri interface{} - SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Service
Endpoint interface{} - Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
- Service
Principal interface{}Id - The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Azure SQL Data Warehouse.
- Tenant interface{}
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- account
Key AzureKey Vault Secret Reference Response - The Azure key vault secret reference of accountKey in connection string.
- account
Kind Object - Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- authentication
Type String - The type used for authentication. Type: string.
- azure
Cloud ObjectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String Object - The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- container
Uri Object - Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- sas
Token AzureKey Vault Secret Reference Response - The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri Object - SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- service
Endpoint Object - Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
- service
Principal ObjectId - The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Azure SQL Data Warehouse.
- tenant Object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- account
Key AzureKey Vault Secret Reference Response - The Azure key vault secret reference of accountKey in connection string.
- account
Kind any - Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- authentication
Type string - The type used for authentication. Type: string.
- azure
Cloud anyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String any - The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- container
Uri any - Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- sas
Token AzureKey Vault Secret Reference Response - The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri any - SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- service
Endpoint any - Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
- service
Principal anyId - The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Azure SQL Data Warehouse.
- tenant any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- version string
- Version of the linked service.
- account_
key AzureKey Vault Secret Reference Response - The Azure key vault secret reference of accountKey in connection string.
- account_
kind Any - Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication_
type str - The type used for authentication. Type: string.
- azure_
cloud_ Anytype - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- connection_
string Any - The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- container_
uri Any - Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- sas_
token AzureKey Vault Secret Reference Response - The Azure key vault secret reference of sasToken in sas uri.
- sas_
uri Any - SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- service_
endpoint Any - Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
- service_
principal_ Anyid - The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Azure SQL Data Warehouse.
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- version str
- Version of the linked service.
- account
Key Property Map - The Azure key vault secret reference of accountKey in connection string.
- account
Kind Any - Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- authentication
Type String - The type used for authentication. Type: string.
- azure
Cloud AnyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- container
Uri Any - Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
- credential Property Map
- The credential reference containing authentication information.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- sas
Token Property Map - The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri Any - SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- service
Endpoint Any - Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
- service
Principal AnyId - The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - The key of the service principal used to authenticate against Azure SQL Data Warehouse.
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
AzureDataExplorerLinkedService, AzureDataExplorerLinkedServiceArgs
- Database object
- Database name for connection. Type: string (or Expression with resultType string).
- Endpoint object
- The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference - The credential reference containing authentication information.
- Description string
- Linked service description.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Service
Principal objectId - The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The key of the service principal used to authenticate against Kusto.
- Tenant object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Database interface{}
- Database name for connection. Type: string (or Expression with resultType string).
- Endpoint interface{}
- The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Credential
Credential
Reference - The credential reference containing authentication information.
- Description string
- Linked service description.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Service
Principal interface{}Id - The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Kusto.
- Tenant interface{}
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- database Object
- Database name for connection. Type: string (or Expression with resultType string).
- endpoint Object
- The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description String
- Linked service description.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- service
Principal ObjectId - The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Kusto.
- tenant Object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- database any
- Database name for connection. Type: string (or Expression with resultType string).
- endpoint any
- The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description string
- Linked service description.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- service
Principal anyId - The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Kusto.
- tenant any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- version string
- Version of the linked service.
- database Any
- Database name for connection. Type: string (or Expression with resultType string).
- endpoint Any
- The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description str
- Linked service description.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- service_
principal_ Anyid - The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Kusto.
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- version str
- Version of the linked service.
- database Any
- Database name for connection. Type: string (or Expression with resultType string).
- endpoint Any
- The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- credential Property Map
- The credential reference containing authentication information.
- description String
- Linked service description.
- parameters Map<Property Map>
- Parameters for linked service.
- service
Principal AnyId - The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - The key of the service principal used to authenticate against Kusto.
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
AzureDataExplorerLinkedServiceResponse, AzureDataExplorerLinkedServiceResponseArgs
- Database object
- Database name for connection. Type: string (or Expression with resultType string).
- Endpoint object
- The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference Response - The credential reference containing authentication information.
- Description string
- Linked service description.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Service
Principal objectId - The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The key of the service principal used to authenticate against Kusto.
- Tenant object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Database interface{}
- Database name for connection. Type: string (or Expression with resultType string).
- Endpoint interface{}
- The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Credential
Credential
Reference Response - The credential reference containing authentication information.
- Description string
- Linked service description.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Service
Principal interface{}Id - The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Kusto.
- Tenant interface{}
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- database Object
- Database name for connection. Type: string (or Expression with resultType string).
- endpoint Object
- The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description String
- Linked service description.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- service
Principal ObjectId - The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Kusto.
- tenant Object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- database any
- Database name for connection. Type: string (or Expression with resultType string).
- endpoint any
- The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description string
- Linked service description.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- service
Principal anyId - The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Kusto.
- tenant any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- version string
- Version of the linked service.
- database Any
- Database name for connection. Type: string (or Expression with resultType string).
- endpoint Any
- The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description str
- Linked service description.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- service_
principal_ Anyid - The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Kusto.
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- version str
- Version of the linked service.
- database Any
- Database name for connection. Type: string (or Expression with resultType string).
- endpoint Any
- The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- credential Property Map
- The credential reference containing authentication information.
- description String
- Linked service description.
- parameters Map<Property Map>
- Parameters for linked service.
- service
Principal AnyId - The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - The key of the service principal used to authenticate against Kusto.
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
AzureDataLakeAnalyticsLinkedService, AzureDataLakeAnalyticsLinkedServiceArgs
- Account
Name object - The Azure Data Lake Analytics account name. Type: string (or Expression with resultType string).
- Tenant object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Data
Lake objectAnalytics Uri - Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Resource
Group objectName - Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- Service
Principal objectId - The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The Key of the application used to authenticate against the Azure Data Lake Analytics account.
- Subscription
Id object - Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Account
Name interface{} - The Azure Data Lake Analytics account name. Type: string (or Expression with resultType string).
- Tenant interface{}
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Data
Lake interface{}Analytics Uri - Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Resource
Group interface{}Name - Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- Service
Principal interface{}Id - The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference String - The Key of the application used to authenticate against the Azure Data Lake Analytics account.
- Subscription
Id interface{} - Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- account
Name Object - The Azure Data Lake Analytics account name. Type: string (or Expression with resultType string).
- tenant Object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- data
Lake ObjectAnalytics Uri - Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- resource
Group ObjectName - Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service
Principal ObjectId - The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - The Key of the application used to authenticate against the Azure Data Lake Analytics account.
- subscription
Id Object - Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- account
Name any - The Azure Data Lake Analytics account name. Type: string (or Expression with resultType string).
- tenant any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- data
Lake anyAnalytics Uri - Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- resource
Group anyName - Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service
Principal anyId - The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - The Key of the application used to authenticate against the Azure Data Lake Analytics account.
- subscription
Id any - Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
- version string
- Version of the linked service.
- account_
name Any - The Azure Data Lake Analytics account name. Type: string (or Expression with resultType string).
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- data_
lake_ Anyanalytics_ uri - Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- resource_
group_ Anyname - Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service_
principal_ Anyid - The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference String - The Key of the application used to authenticate against the Azure Data Lake Analytics account.
- subscription_
id Any - Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
- version str
- Version of the linked service.
- account
Name Any - The Azure Data Lake Analytics account name. Type: string (or Expression with resultType string).
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- data
Lake AnyAnalytics Uri - Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- resource
Group AnyName - Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service
Principal AnyId - The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - The Key of the application used to authenticate against the Azure Data Lake Analytics account.
- subscription
Id Any - Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
AzureDataLakeAnalyticsLinkedServiceResponse, AzureDataLakeAnalyticsLinkedServiceResponseArgs
- Account
Name object - The Azure Data Lake Analytics account name. Type: string (or Expression with resultType string).
- Tenant object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Data
Lake objectAnalytics Uri - Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Resource
Group objectName - Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- Service
Principal objectId - The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The Key of the application used to authenticate against the Azure Data Lake Analytics account.
- Subscription
Id object - Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Account
Name interface{} - The Azure Data Lake Analytics account name. Type: string (or Expression with resultType string).
- Tenant interface{}
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Data
Lake interface{}Analytics Uri - Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Resource
Group interface{}Name - Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- Service
Principal interface{}Id - The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The Key of the application used to authenticate against the Azure Data Lake Analytics account.
- Subscription
Id interface{} - Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- account
Name Object - The Azure Data Lake Analytics account name. Type: string (or Expression with resultType string).
- tenant Object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- data
Lake ObjectAnalytics Uri - Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- resource
Group ObjectName - Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service
Principal ObjectId - The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The Key of the application used to authenticate against the Azure Data Lake Analytics account.
- subscription
Id Object - Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- account
Name any - The Azure Data Lake Analytics account name. Type: string (or Expression with resultType string).
- tenant any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- data
Lake anyAnalytics Uri - Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- resource
Group anyName - Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service
Principal anyId - The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The Key of the application used to authenticate against the Azure Data Lake Analytics account.
- subscription
Id any - Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
- version string
- Version of the linked service.
- account_
name Any - The Azure Data Lake Analytics account name. Type: string (or Expression with resultType string).
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- data_
lake_ Anyanalytics_ uri - Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- resource_
group_ Anyname - Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service_
principal_ Anyid - The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference Response String Response - The Key of the application used to authenticate against the Azure Data Lake Analytics account.
- subscription_
id Any - Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
- version str
- Version of the linked service.
- account
Name Any - The Azure Data Lake Analytics account name. Type: string (or Expression with resultType string).
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- data
Lake AnyAnalytics Uri - Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- resource
Group AnyName - Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service
Principal AnyId - The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - The Key of the application used to authenticate against the Azure Data Lake Analytics account.
- subscription
Id Any - Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
AzureDataLakeStoreLinkedService, AzureDataLakeStoreLinkedServiceArgs
- Data
Lake objectStore Uri - Data Lake Store service URI. Type: string (or Expression with resultType string).
- Account
Name object - Data Lake Store account name. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Azure
Cloud objectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Resource
Group objectName - Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- Service
Principal objectId - The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The Key of the application used to authenticate against the Azure Data Lake Store account.
- Subscription
Id object - Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
- Tenant object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Data
Lake interface{}Store Uri - Data Lake Store service URI. Type: string (or Expression with resultType string).
- Account
Name interface{} - Data Lake Store account name. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Azure
Cloud interface{}Type - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Credential
Credential
Reference - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Resource
Group interface{}Name - Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- Service
Principal interface{}Id - The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference String - The Key of the application used to authenticate against the Azure Data Lake Store account.
- Subscription
Id interface{} - Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
- Tenant interface{}
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- data
Lake ObjectStore Uri - Data Lake Store service URI. Type: string (or Expression with resultType string).
- account
Name Object - Data Lake Store account name. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- azure
Cloud ObjectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- resource
Group ObjectName - Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service
Principal ObjectId - The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - The Key of the application used to authenticate against the Azure Data Lake Store account.
- subscription
Id Object - Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
- tenant Object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- data
Lake anyStore Uri - Data Lake Store service URI. Type: string (or Expression with resultType string).
- account
Name any - Data Lake Store account name. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- azure
Cloud anyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- resource
Group anyName - Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service
Principal anyId - The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - The Key of the application used to authenticate against the Azure Data Lake Store account.
- subscription
Id any - Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
- tenant any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- version string
- Version of the linked service.
- data_
lake_ Anystore_ uri - Data Lake Store service URI. Type: string (or Expression with resultType string).
- account_
name Any - Data Lake Store account name. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- azure_
cloud_ Anytype - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- resource_
group_ Anyname - Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service_
principal_ Anyid - The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference String - The Key of the application used to authenticate against the Azure Data Lake Store account.
- subscription_
id Any - Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- version str
- Version of the linked service.
- data
Lake AnyStore Uri - Data Lake Store service URI. Type: string (or Expression with resultType string).
- account
Name Any - Data Lake Store account name. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- azure
Cloud AnyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect
Via Property Map - The integration runtime reference.
- credential Property Map
- The credential reference containing authentication information.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- resource
Group AnyName - Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service
Principal AnyId - The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - The Key of the application used to authenticate against the Azure Data Lake Store account.
- subscription
Id Any - Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
AzureDataLakeStoreLinkedServiceResponse, AzureDataLakeStoreLinkedServiceResponseArgs
- Data
Lake objectStore Uri - Data Lake Store service URI. Type: string (or Expression with resultType string).
- Account
Name object - Data Lake Store account name. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Azure
Cloud objectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference Response - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Resource
Group objectName - Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- Service
Principal objectId - The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The Key of the application used to authenticate against the Azure Data Lake Store account.
- Subscription
Id object - Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
- Tenant object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Data
Lake interface{}Store Uri - Data Lake Store service URI. Type: string (or Expression with resultType string).
- Account
Name interface{} - Data Lake Store account name. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Azure
Cloud interface{}Type - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Credential
Credential
Reference Response - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Resource
Group interface{}Name - Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- Service
Principal interface{}Id - The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The Key of the application used to authenticate against the Azure Data Lake Store account.
- Subscription
Id interface{} - Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
- Tenant interface{}
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- data
Lake ObjectStore Uri - Data Lake Store service URI. Type: string (or Expression with resultType string).
- account
Name Object - Data Lake Store account name. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- azure
Cloud ObjectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- resource
Group ObjectName - Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service
Principal ObjectId - The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The Key of the application used to authenticate against the Azure Data Lake Store account.
- subscription
Id Object - Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
- tenant Object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- data
Lake anyStore Uri - Data Lake Store service URI. Type: string (or Expression with resultType string).
- account
Name any - Data Lake Store account name. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- azure
Cloud anyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- resource
Group anyName - Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service
Principal anyId - The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The Key of the application used to authenticate against the Azure Data Lake Store account.
- subscription
Id any - Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
- tenant any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- version string
- Version of the linked service.
- data_
lake_ Anystore_ uri - Data Lake Store service URI. Type: string (or Expression with resultType string).
- account_
name Any - Data Lake Store account name. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- azure_
cloud_ Anytype - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- resource_
group_ Anyname - Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service_
principal_ Anyid - The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference Response String Response - The Key of the application used to authenticate against the Azure Data Lake Store account.
- subscription_
id Any - Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- version str
- Version of the linked service.
- data
Lake AnyStore Uri - Data Lake Store service URI. Type: string (or Expression with resultType string).
- account
Name Any - Data Lake Store account name. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- azure
Cloud AnyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect
Via Property Map - The integration runtime reference.
- credential Property Map
- The credential reference containing authentication information.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- resource
Group AnyName - Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service
Principal AnyId - The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - The Key of the application used to authenticate against the Azure Data Lake Store account.
- subscription
Id Any - Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
AzureDatabricksDeltaLakeLinkedService, AzureDatabricksDeltaLakeLinkedServiceArgs
- Domain object
- .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
- Access
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string, SecureString or AzureKeyVaultSecretReference.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Cluster
Id object - The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Version string
- Version of the linked service.
- Workspace
Resource objectId - Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
- Domain interface{}
- .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
- Access
Token AzureKey | SecureVault Secret Reference String - Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string, SecureString or AzureKeyVaultSecretReference.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Cluster
Id interface{} - The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Credential
Credential
Reference - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Version string
- Version of the linked service.
- Workspace
Resource interface{}Id - Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
- domain Object
- .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
- access
Token AzureKey | SecureVault Secret Reference String - Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- cluster
Id Object - The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- version String
- Version of the linked service.
- workspace
Resource ObjectId - Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
- domain any
- .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
- access
Token AzureKey | SecureVault Secret Reference String - Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations any[]
- List of tags that can be used for describing the linked service.
- cluster
Id any - The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- version string
- Version of the linked service.
- workspace
Resource anyId - Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
- domain Any
- .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
- access_
token AzureKey | SecureVault Secret Reference String - Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- cluster_
id Any - The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- version str
- Version of the linked service.
- workspace_
resource_ Anyid - Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
- domain Any
- .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
- access
Token Property Map | Property Map - Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- cluster
Id Any - The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string).
- connect
Via Property Map - The integration runtime reference.
- credential Property Map
- The credential reference containing authentication information.
- description String
- Linked service description.
- encrypted
Credential String - The 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.
- workspace
Resource AnyId - Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
AzureDatabricksDeltaLakeLinkedServiceResponse, AzureDatabricksDeltaLakeLinkedServiceResponseArgs
- Domain object
- .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
- Access
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string, SecureString or AzureKeyVaultSecretReference.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Cluster
Id object - The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference Response - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Version string
- Version of the linked service.
- Workspace
Resource objectId - Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
- Domain interface{}
- .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
- Access
Token AzureKey | SecureVault Secret Reference Response String Response - Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string, SecureString or AzureKeyVaultSecretReference.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Cluster
Id interface{} - The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Credential
Credential
Reference Response - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Version string
- Version of the linked service.
- Workspace
Resource interface{}Id - Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
- domain Object
- .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
- access
Token AzureKey | SecureVault Secret Reference Response String Response - Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- cluster
Id Object - The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- version String
- Version of the linked service.
- workspace
Resource ObjectId - Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
- domain any
- .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
- access
Token AzureKey | SecureVault Secret Reference Response String Response - Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations any[]
- List of tags that can be used for describing the linked service.
- cluster
Id any - The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- version string
- Version of the linked service.
- workspace
Resource anyId - Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
- domain Any
- .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
- access_
token AzureKey | SecureVault Secret Reference Response String Response - Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- cluster_
id Any - The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- version str
- Version of the linked service.
- workspace_
resource_ Anyid - Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
- domain Any
- .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
- access
Token Property Map | Property Map - Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- cluster
Id Any - The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string).
- connect
Via Property Map - The integration runtime reference.
- credential Property Map
- The credential reference containing authentication information.
- description String
- Linked service description.
- encrypted
Credential String - The 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.
- workspace
Resource AnyId - Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
AzureDatabricksLinkedService, AzureDatabricksLinkedServiceArgs
- Domain object
- .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
- Access
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string (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).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference - The credential reference containing authentication information.
- Data
Security objectMode - The data security mode for the Databricks Cluster. Type: string (or Expression with resultType string).
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Existing
Cluster objectId - 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 objectId - The id of an existing instance pool that will be used for all runs of this activity. Type: string (or Expression with resultType string).
- Dictionary<string, object>
- Additional tags for cluster resources. This property is ignored in instance pool configurations.
- New
Cluster objectDriver Node Type - 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 objectEnable Elastic Disk - 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 objectInit Scripts - User-defined initialization scripts for the new cluster. Type: array of strings (or Expression with resultType array of strings).
- New
Cluster objectLog Destination - Specify a location to deliver Spark driver, worker, and event logs. Type: string (or Expression with resultType string).
- New
Cluster objectNode Type - 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 objectNum Of Worker - 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 Dictionary<string, object>Spark Conf - A set of optional, user-specified Spark configuration key-value pairs.
- New
Cluster Dictionary<string, object>Spark Env Vars - A set of optional, user-specified Spark environment variables key-value pairs.
- New
Cluster objectVersion - 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.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Policy
Id 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.
- Workspace
Resource objectId - Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
- Domain interface{}
- .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
- Access
Token AzureKey | SecureVault Secret Reference String - Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string (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).
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Credential
Credential
Reference - The credential reference containing authentication information.
- Data
Security interface{}Mode - The data security mode for the Databricks Cluster. Type: string (or Expression with resultType string).
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Existing
Cluster interface{}Id - 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 interface{}Id - The id of an existing instance pool that will be used for all runs of this activity. Type: string (or Expression with resultType string).
- map[string]interface{}
- Additional tags for cluster resources. This property is ignored in instance pool configurations.
- New
Cluster interface{}Driver Node Type - 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 interface{}Enable Elastic Disk - 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 interface{}Init Scripts - User-defined initialization scripts for the new cluster. Type: array of strings (or Expression with resultType array of strings).
- New
Cluster interface{}Log Destination - Specify a location to deliver Spark driver, worker, and event logs. Type: string (or Expression with resultType string).
- New
Cluster interface{}Node Type - 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 interface{}Num Of Worker - 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 map[string]interface{}Spark Conf - A set of optional, user-specified Spark configuration key-value pairs.
- New
Cluster map[string]interface{}Spark Env Vars - A set of optional, user-specified Spark environment variables key-value pairs.
- New
Cluster interface{}Version - 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]Parameter
Specification - Parameters for linked service.
- Policy
Id 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.
- Workspace
Resource interface{}Id - Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
- domain Object
- .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
- access
Token AzureKey | SecureVault Secret Reference String - Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string (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).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- data
Security ObjectMode - The data security mode for the Databricks Cluster. Type: string (or Expression with resultType string).
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- existing
Cluster ObjectId - 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 ObjectId - The id of an existing instance pool that will be used for all runs of this activity. Type: string (or Expression with resultType string).
- Map<String,Object>
- Additional tags for cluster resources. This property is ignored in instance pool configurations.
- new
Cluster ObjectDriver Node Type - 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 ObjectEnable Elastic Disk - 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 ObjectInit Scripts - User-defined initialization scripts for the new cluster. Type: array of strings (or Expression with resultType array of strings).
- new
Cluster ObjectLog Destination - Specify a location to deliver Spark driver, worker, and event logs. Type: string (or Expression with resultType string).
- new
Cluster ObjectNode Type - 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 ObjectNum Of Worker - 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 Map<String,Object>Spark Conf - A set of optional, user-specified Spark configuration key-value pairs.
- new
Cluster Map<String,Object>Spark Env Vars - A set of optional, user-specified Spark environment variables key-value pairs.
- new
Cluster ObjectVersion - 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,Parameter
Specification> - Parameters for linked service.
- policy
Id 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.
- workspace
Resource ObjectId - Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
- domain any
- .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
- access
Token AzureKey | SecureVault Secret Reference String - Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string (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).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- data
Security anyMode - The data security mode for the Databricks Cluster. Type: string (or Expression with resultType string).
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- existing
Cluster anyId - 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 anyId - The id of an existing instance pool that will be used for all runs of this activity. Type: string (or Expression with resultType string).
- {[key: string]: any}
- Additional tags for cluster resources. This property is ignored in instance pool configurations.
- new
Cluster anyDriver Node Type - 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 anyEnable Elastic Disk - 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 anyInit Scripts - User-defined initialization scripts for the new cluster. Type: array of strings (or Expression with resultType array of strings).
- new
Cluster anyLog Destination - Specify a location to deliver Spark driver, worker, and event logs. Type: string (or Expression with resultType string).
- new
Cluster anyNode Type - 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 anyNum Of Worker - 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 {[key: string]: any}Spark Conf - A set of optional, user-specified Spark configuration key-value pairs.
- new
Cluster {[key: string]: any}Spark Env Vars - A set of optional, user-specified Spark environment variables key-value pairs.
- new
Cluster anyVersion - 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]: Parameter
Specification} - 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 string
- Version of the linked service.
- workspace
Resource anyId - Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
- domain Any
- .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
- access_
token AzureKey | SecureVault Secret Reference String - Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string (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 IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- data_
security_ Anymode - The data security mode for the Databricks Cluster. 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.
- existing_
cluster_ Anyid - 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_ Anyid - The id of an existing instance pool that will be used for all runs of this activity. Type: string (or Expression with resultType string).
- Mapping[str, Any]
- Additional tags for cluster resources. This property is ignored in instance pool configurations.
- new_
cluster_ Anydriver_ node_ type - 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_ Anyenable_ elastic_ disk - 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_ Anyinit_ scripts - User-defined initialization scripts for the new cluster. Type: array of strings (or Expression with resultType array of strings).
- new_
cluster_ Anylog_ destination - Specify a location to deliver Spark driver, worker, and event logs. Type: string (or Expression with resultType string).
- new_
cluster_ Anynode_ type - 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_ Anynum_ of_ worker - 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_ Mapping[str, Any]spark_ conf - A set of optional, user-specified Spark configuration key-value pairs.
- new_
cluster_ Mapping[str, Any]spark_ env_ vars - A set of optional, user-specified Spark environment variables key-value pairs.
- new_
cluster_ Anyversion - 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, Parameter
Specification] - 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_ Anyid - Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
- domain Any
- .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
- access
Token Property Map | Property Map - Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string (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).
- connect
Via Property Map - The integration runtime reference.
- credential Property Map
- The credential reference containing authentication information.
- data
Security AnyMode - The data security mode for the Databricks Cluster. Type: string (or Expression with resultType string).
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- existing
Cluster AnyId - 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 AnyId - The id of an existing instance pool that will be used for all runs of this activity. Type: string (or Expression with resultType string).
- Map<Any>
- Additional tags for cluster resources. This property is ignored in instance pool configurations.
- new
Cluster AnyDriver Node Type - 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 AnyEnable Elastic Disk - 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 AnyInit Scripts - User-defined initialization scripts for the new cluster. Type: array of strings (or Expression with resultType array of strings).
- new
Cluster AnyLog Destination - Specify a location to deliver Spark driver, worker, and event logs. Type: string (or Expression with resultType string).
- new
Cluster AnyNode Type - 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 AnyNum Of Worker - 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 Map<Any>Spark Conf - A set of optional, user-specified Spark configuration key-value pairs.
- new
Cluster Map<Any>Spark Env Vars - A set of optional, user-specified Spark environment variables key-value pairs.
- new
Cluster AnyVersion - 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.
- 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 String
- Version of the linked service.
- workspace
Resource AnyId - Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
AzureDatabricksLinkedServiceResponse, AzureDatabricksLinkedServiceResponseArgs
- Domain object
- .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
- Access
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - 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).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference Response - The credential reference containing authentication information.
- Data
Security objectMode - The data security mode for the Databricks Cluster. Type: string (or Expression with resultType string).
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Existing
Cluster objectId - 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 objectId - The id of an existing instance pool that will be used for all runs of this activity. Type: string (or Expression with resultType string).
- Dictionary<string, object>
- Additional tags for cluster resources. This property is ignored in instance pool configurations.
- New
Cluster objectDriver Node Type - 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 objectEnable Elastic Disk - 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 objectInit Scripts - User-defined initialization scripts for the new cluster. Type: array of strings (or Expression with resultType array of strings).
- New
Cluster objectLog Destination - Specify a location to deliver Spark driver, worker, and event logs. Type: string (or Expression with resultType string).
- New
Cluster objectNode Type - 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 objectNum Of Worker - 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 Dictionary<string, object>Spark Conf - A set of optional, user-specified Spark configuration key-value pairs.
- New
Cluster Dictionary<string, object>Spark Env Vars - A set of optional, user-specified Spark environment variables key-value pairs.
- New
Cluster objectVersion - 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.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Policy
Id 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.
- Workspace
Resource objectId - Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
- Domain interface{}
- .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
- Access
Token AzureKey | SecureVault Secret Reference Response String Response - 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).
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Credential
Credential
Reference Response - The credential reference containing authentication information.
- Data
Security interface{}Mode - The data security mode for the Databricks Cluster. Type: string (or Expression with resultType string).
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Existing
Cluster interface{}Id - 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 interface{}Id - The id of an existing instance pool that will be used for all runs of this activity. Type: string (or Expression with resultType string).
- map[string]interface{}
- Additional tags for cluster resources. This property is ignored in instance pool configurations.
- New
Cluster interface{}Driver Node Type - 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 interface{}Enable Elastic Disk - 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 interface{}Init Scripts - User-defined initialization scripts for the new cluster. Type: array of strings (or Expression with resultType array of strings).
- New
Cluster interface{}Log Destination - Specify a location to deliver Spark driver, worker, and event logs. Type: string (or Expression with resultType string).
- New
Cluster interface{}Node Type - 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 interface{}Num Of Worker - 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 map[string]interface{}Spark Conf - A set of optional, user-specified Spark configuration key-value pairs.
- New
Cluster map[string]interface{}Spark Env Vars - A set of optional, user-specified Spark environment variables key-value pairs.
- New
Cluster interface{}Version - 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]Parameter
Specification Response - Parameters for linked service.
- Policy
Id 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.
- Workspace
Resource interface{}Id - Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
- domain Object
- .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
- access
Token AzureKey | SecureVault Secret Reference Response String Response - 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).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- data
Security ObjectMode - The data security mode for the Databricks Cluster. Type: string (or Expression with resultType string).
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- existing
Cluster ObjectId - 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 ObjectId - The id of an existing instance pool that will be used for all runs of this activity. Type: string (or Expression with resultType string).
- Map<String,Object>
- Additional tags for cluster resources. This property is ignored in instance pool configurations.
- new
Cluster ObjectDriver Node Type - 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 ObjectEnable Elastic Disk - 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 ObjectInit Scripts - User-defined initialization scripts for the new cluster. Type: array of strings (or Expression with resultType array of strings).
- new
Cluster ObjectLog Destination - Specify a location to deliver Spark driver, worker, and event logs. Type: string (or Expression with resultType string).
- new
Cluster ObjectNode Type - 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 ObjectNum Of Worker - 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 Map<String,Object>Spark Conf - A set of optional, user-specified Spark configuration key-value pairs.
- new
Cluster Map<String,Object>Spark Env Vars - A set of optional, user-specified Spark environment variables key-value pairs.
- new
Cluster ObjectVersion - 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,Parameter
Specification Response> - Parameters for linked service.
- policy
Id 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.
- workspace
Resource ObjectId - Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
- domain any
- .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
- access
Token AzureKey | SecureVault Secret Reference Response String Response - 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).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- data
Security anyMode - The data security mode for the Databricks Cluster. Type: string (or Expression with resultType string).
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- existing
Cluster anyId - 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 anyId - The id of an existing instance pool that will be used for all runs of this activity. Type: string (or Expression with resultType string).
- {[key: string]: any}
- Additional tags for cluster resources. This property is ignored in instance pool configurations.
- new
Cluster anyDriver Node Type - 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 anyEnable Elastic Disk - 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 anyInit Scripts - User-defined initialization scripts for the new cluster. Type: array of strings (or Expression with resultType array of strings).
- new
Cluster anyLog Destination - Specify a location to deliver Spark driver, worker, and event logs. Type: string (or Expression with resultType string).
- new
Cluster anyNode Type - 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 anyNum Of Worker - 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 {[key: string]: any}Spark Conf - A set of optional, user-specified Spark configuration key-value pairs.
- new
Cluster {[key: string]: any}Spark Env Vars - A set of optional, user-specified Spark environment variables key-value pairs.
- new
Cluster anyVersion - 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]: Parameter
Specification Response} - 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 string
- Version of the linked service.
- workspace
Resource anyId - Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
- domain Any
- .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
- access_
token AzureKey | SecureVault Secret Reference Response String Response - 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 IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- data_
security_ Anymode - The data security mode for the Databricks Cluster. 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.
- existing_
cluster_ Anyid - 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_ Anyid - The id of an existing instance pool that will be used for all runs of this activity. Type: string (or Expression with resultType string).
- Mapping[str, Any]
- Additional tags for cluster resources. This property is ignored in instance pool configurations.
- new_
cluster_ Anydriver_ node_ type - 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_ Anyenable_ elastic_ disk - 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_ Anyinit_ scripts - User-defined initialization scripts for the new cluster. Type: array of strings (or Expression with resultType array of strings).
- new_
cluster_ Anylog_ destination - Specify a location to deliver Spark driver, worker, and event logs. Type: string (or Expression with resultType string).
- new_
cluster_ Anynode_ type - 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_ Anynum_ of_ worker - 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_ Mapping[str, Any]spark_ conf - A set of optional, user-specified Spark configuration key-value pairs.
- new_
cluster_ Mapping[str, Any]spark_ env_ vars - A set of optional, user-specified Spark environment variables key-value pairs.
- new_
cluster_ Anyversion - 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, Parameter
Specification Response] - 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_ Anyid - Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
- domain Any
- .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
- access
Token Property Map | Property Map - Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string (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).
- connect
Via Property Map - The integration runtime reference.
- credential Property Map
- The credential reference containing authentication information.
- data
Security AnyMode - The data security mode for the Databricks Cluster. Type: string (or Expression with resultType string).
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- existing
Cluster AnyId - 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 AnyId - The id of an existing instance pool that will be used for all runs of this activity. Type: string (or Expression with resultType string).
- Map<Any>
- Additional tags for cluster resources. This property is ignored in instance pool configurations.
- new
Cluster AnyDriver Node Type - 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 AnyEnable Elastic Disk - 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 AnyInit Scripts - User-defined initialization scripts for the new cluster. Type: array of strings (or Expression with resultType array of strings).
- new
Cluster AnyLog Destination - Specify a location to deliver Spark driver, worker, and event logs. Type: string (or Expression with resultType string).
- new
Cluster AnyNode Type - 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 AnyNum Of Worker - 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 Map<Any>Spark Conf - A set of optional, user-specified Spark configuration key-value pairs.
- new
Cluster Map<Any>Spark Env Vars - A set of optional, user-specified Spark environment variables key-value pairs.
- new
Cluster AnyVersion - 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.
- 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 String
- Version of the linked service.
- workspace
Resource AnyId - Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
AzureFileStorageLinkedService, AzureFileStorageLinkedServiceArgs
- Account
Key Pulumi.Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference - 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Connection
String object - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - Password to logon the server.
- Sas
Token Pulumi.Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference - The Azure key vault secret reference of sasToken in sas uri.
- Sas
Uri object - SAS URI of the Azure File resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Service
Endpoint 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).
- User
Id object - User ID to logon the server. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Account
Key AzureKey Vault Secret Reference - The Azure key vault secret reference of accountKey in connection string.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Connection
String interface{} - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Credential
Credential
Reference - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference String - Password to logon the server.
- Sas
Token AzureKey Vault Secret Reference - The Azure key vault secret reference of sasToken in sas uri.
- Sas
Uri interface{} - SAS URI of the Azure File resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Service
Endpoint 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).
- User
Id interface{} - User ID to logon the server. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- account
Key AzureKey Vault Secret Reference - The Azure key vault secret reference of accountKey in connection string.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String Object - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - Password to logon the server.
- sas
Token AzureKey Vault Secret Reference - The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri Object - SAS URI of the Azure File resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
- service
Endpoint 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).
- user
Id Object - User ID to logon the server. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- account
Key AzureKey Vault Secret Reference - The Azure key vault secret reference of accountKey in connection string.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String any - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - Password to logon the server.
- sas
Token AzureKey Vault Secret Reference - The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri any - SAS URI of the Azure 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 string
- Version of the linked service.
- account_
key AzureKey Vault Secret Reference - 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 IntegrationRuntime Reference - The integration runtime reference.
- connection_
string Any - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - Password to logon the server.
- sas_
token AzureKey Vault Secret Reference - The Azure key vault secret reference of sasToken in sas uri.
- sas_
uri Any - SAS URI of the Azure 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.
- account
Key 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.
- connect
Via Property Map - The integration runtime reference.
- connection
String 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.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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.
- sas
Token Property Map - 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 String
- Version of the linked service.
AzureFileStorageLinkedServiceResponse, AzureFileStorageLinkedServiceResponseArgs
- Account
Key Pulumi.Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response - The Azure key vault secret reference of accountKey in connection string.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Connection
String object - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference Response - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - Password to logon the server.
- Sas
Token Pulumi.Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response - The Azure key vault secret reference of sasToken in sas uri.
- Sas
Uri object - SAS URI of the Azure File resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Service
Endpoint 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).
- User
Id object - User ID to logon the server. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Account
Key AzureKey Vault Secret Reference Response - The Azure key vault secret reference of accountKey in connection string.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Connection
String interface{} - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Credential
Credential
Reference Response - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - Password to logon the server.
- Sas
Token AzureKey Vault Secret Reference Response - The Azure key vault secret reference of sasToken in sas uri.
- Sas
Uri interface{} - SAS URI of the Azure File resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Service
Endpoint 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).
- User
Id interface{} - User ID to logon the server. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- account
Key AzureKey Vault Secret Reference Response - The Azure key vault secret reference of accountKey in connection string.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String Object - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - Password to logon the server.
- sas
Token AzureKey Vault Secret Reference Response - The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri Object - SAS URI of the Azure File resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
- service
Endpoint 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).
- user
Id Object - User ID to logon the server. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- account
Key AzureKey Vault Secret Reference Response - The Azure key vault secret reference of accountKey in connection string.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String any - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - Password to logon the server.
- sas
Token AzureKey Vault Secret Reference Response - The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri any - SAS URI of the Azure 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 string
- Version of the linked service.
- account_
key AzureKey Vault Secret Reference Response - 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 IntegrationRuntime Reference Response - The integration runtime reference.
- connection_
string Any - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - Password to logon the server.
- sas_
token AzureKey Vault Secret Reference Response - The Azure key vault secret reference of sasToken in sas uri.
- sas_
uri Any - SAS URI of the Azure 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.
- account
Key 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.
- connect
Via Property Map - The integration runtime reference.
- connection
String 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.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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.
- sas
Token Property Map - 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 String
- Version of the linked service.
AzureFunctionLinkedService, AzureFunctionLinkedServiceArgs
- Function
App objectUrl - 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).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Function
Key Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - Function or Host key for Azure Function App.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Resource
Id object - Allowed token audiences for azure function. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Function
App interface{}Url - 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).
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Credential
Credential
Reference - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Function
Key AzureKey | SecureVault Secret Reference String - Function or Host key for Azure Function App.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Resource
Id interface{} - Allowed token audiences for azure function. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- function
App ObjectUrl - 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).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- function
Key AzureKey | SecureVault Secret Reference String - Function or Host key for Azure Function App.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- resource
Id Object - Allowed token audiences for azure function. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- function
App anyUrl - 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).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- function
Key AzureKey | SecureVault Secret Reference String - Function or Host key for Azure Function App.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- resource
Id any - Allowed token audiences for azure function. Type: string (or Expression with resultType string).
- version string
- Version of the linked service.
- function_
app_ Anyurl - 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 IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- function_
key AzureKey | SecureVault Secret Reference String - Function or Host key for Azure Function App.
- parameters
Mapping[str, Parameter
Specification] - 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.
- function
App AnyUrl - 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).
- connect
Via Property Map - The integration runtime reference.
- credential Property Map
- The credential reference containing authentication information.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- function
Key Property Map | Property Map - Function or Host key for Azure Function App.
- parameters Map<Property Map>
- Parameters for linked service.
- resource
Id Any - Allowed token audiences for azure function. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
AzureFunctionLinkedServiceResponse, AzureFunctionLinkedServiceResponseArgs
- Function
App objectUrl - 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).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference Response - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Function
Key Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - Function or Host key for Azure Function App.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Resource
Id object - Allowed token audiences for azure function. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Function
App interface{}Url - 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).
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Credential
Credential
Reference Response - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Function
Key AzureKey | SecureVault Secret Reference Response String Response - Function or Host key for Azure Function App.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Resource
Id interface{} - Allowed token audiences for azure function. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- function
App ObjectUrl - 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).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- function
Key AzureKey | SecureVault Secret Reference Response String Response - Function or Host key for Azure Function App.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- resource
Id Object - Allowed token audiences for azure function. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- function
App anyUrl - 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).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- function
Key AzureKey | SecureVault Secret Reference Response String Response - Function or Host key for Azure Function App.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- resource
Id any - Allowed token audiences for azure function. Type: string (or Expression with resultType string).
- version string
- Version of the linked service.
- function_
app_ Anyurl - 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 IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- function_
key AzureKey | SecureVault Secret Reference Response String Response - Function or Host key for Azure Function App.
- parameters
Mapping[str, Parameter
Specification Response] - 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.
- function
App AnyUrl - 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).
- connect
Via Property Map - The integration runtime reference.
- credential Property Map
- The credential reference containing authentication information.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- function
Key Property Map | Property Map - Function or Host key for Azure Function App.
- parameters Map<Property Map>
- Parameters for linked service.
- resource
Id Any - Allowed token audiences for azure function. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
AzureKeyVaultLinkedService, AzureKeyVaultLinkedServiceArgs
- Base
Url 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference - The credential reference containing authentication information.
- Description string
- Linked service description.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Version string
- Version of the linked service.
- Base
Url 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.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Credential
Credential
Reference - The credential reference containing authentication information.
- Description string
- Linked service description.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Version string
- Version of the linked service.
- base
Url 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.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description String
- Linked service description.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- version String
- Version of the linked service.
- base
Url any - The base URL of the Azure Key Vault. e.g. https://myakv.vault.azure.net Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description string
- Linked service description.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- version string
- Version of the linked service.
- base_
url Any - The base URL of the Azure Key Vault. e.g. https://myakv.vault.azure.net Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description str
- Linked service description.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- version str
- Version of the linked service.
- base
Url Any - The base URL of the Azure Key Vault. e.g. https://myakv.vault.azure.net Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- credential Property Map
- The credential reference containing authentication information.
- description String
- Linked service description.
- parameters Map<Property Map>
- Parameters for linked service.
- version String
- Version of the linked service.
AzureKeyVaultLinkedServiceResponse, AzureKeyVaultLinkedServiceResponseArgs
- Base
Url 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference Response - The credential reference containing authentication information.
- Description string
- Linked service description.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Version string
- Version of the linked service.
- Base
Url 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.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Credential
Credential
Reference Response - The credential reference containing authentication information.
- Description string
- Linked service description.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Version string
- Version of the linked service.
- base
Url 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.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description String
- Linked service description.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- version String
- Version of the linked service.
- base
Url any - The base URL of the Azure Key Vault. e.g. https://myakv.vault.azure.net Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description string
- Linked service description.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- version string
- Version of the linked service.
- base_
url Any - The base URL of the Azure Key Vault. e.g. https://myakv.vault.azure.net Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description str
- Linked service description.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- version str
- Version of the linked service.
- base
Url Any - The base URL of the Azure Key Vault. e.g. https://myakv.vault.azure.net Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- credential Property Map
- The credential reference containing authentication information.
- description String
- Linked service description.
- parameters Map<Property Map>
- Parameters for linked service.
- version String
- Version of the linked service.
AzureKeyVaultSecretReference, AzureKeyVaultSecretReferenceArgs
- Secret
Name object - The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
- Store
Pulumi.
Azure Native. Data Factory. Inputs. Linked Service Reference - The Azure Key Vault linked service reference.
- Secret
Version 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).
- Secret
Name interface{} - The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
- Store
Linked
Service Reference - The Azure Key Vault linked service reference.
- Secret
Version 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).
- secret
Name Object - The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
- store
Linked
Service Reference - The Azure Key Vault linked service reference.
- secret
Version 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).
- secret
Name any - The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
- store
Linked
Service Reference - 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).
- secret_
name Any - The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
- store
Linked
Service Reference - 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).
- secret
Name Any - The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
- store Property Map
- The Azure Key Vault linked service reference.
- 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).
AzureKeyVaultSecretReferenceResponse, AzureKeyVaultSecretReferenceResponseArgs
- Secret
Name object - The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
- Store
Pulumi.
Azure Native. Data Factory. Inputs. Linked Service Reference Response - The Azure Key Vault linked service reference.
- Secret
Version 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).
- Secret
Name interface{} - The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
- Store
Linked
Service Reference Response - The Azure Key Vault linked service reference.
- Secret
Version 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).
- secret
Name Object - The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
- store
Linked
Service Reference Response - The Azure Key Vault linked service reference.
- secret
Version 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).
- secret
Name any - The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
- store
Linked
Service Reference Response - 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).
- secret_
name Any - The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
- store
Linked
Service Reference Response - 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).
- secret
Name Any - The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
- store Property Map
- The Azure Key Vault linked service reference.
- 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).
AzureMLLinkedService, AzureMLLinkedServiceArgs
- Api
Key Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The API key for accessing the Azure ML model endpoint.
- Ml
Endpoint 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).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Service
Principal objectId - 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 Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The key of the service principal used to authenticate against 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).
- Update
Resource objectEndpoint - 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 AzureKey | SecureVault Secret Reference String - The API key for accessing the Azure ML model endpoint.
- Ml
Endpoint 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).
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Service
Principal interface{}Id - 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 AzureKey Key | SecureVault Secret Reference String - 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).
- Update
Resource interface{}Endpoint - 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 AzureKey | SecureVault Secret Reference String - The API key for accessing the Azure ML model endpoint.
- ml
Endpoint 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).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- service
Principal ObjectId - 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 AzureKey Key | SecureVault Secret Reference String - 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).
- update
Resource ObjectEndpoint - 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 AzureKey | SecureVault Secret Reference String - The API key for accessing the Azure ML model endpoint.
- ml
Endpoint any - The Batch Execution REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
- annotations 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 IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- service
Principal anyId - 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 AzureKey Key | SecureVault Secret Reference String - 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 anyEndpoint - 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 AzureKey | SecureVault Secret Reference String - The API key for accessing the Azure ML model endpoint.
- ml_
endpoint Any - The Batch Execution REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication Any
- Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- service_
principal_ Anyid - 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_ Azurekey Key | SecureVault Secret Reference String - 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_ Anyendpoint - 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.
- api
Key Property Map | Property Map - The API key for accessing the Azure ML model endpoint.
- ml
Endpoint Any - The Batch Execution REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
- annotations 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).
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- service
Principal AnyId - 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 Property Map | Property MapKey - 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 AnyEndpoint - 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
- Api
Key Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The API key for accessing the Azure ML model endpoint.
- Ml
Endpoint 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).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Service
Principal objectId - 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 Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The key of the service principal used to authenticate against 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).
- Update
Resource objectEndpoint - 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 AzureKey | SecureVault Secret Reference Response String Response - The API key for accessing the Azure ML model endpoint.
- Ml
Endpoint 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).
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Service
Principal interface{}Id - 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 AzureKey Key | SecureVault Secret Reference Response String Response - 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).
- Update
Resource interface{}Endpoint - 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 AzureKey | SecureVault Secret Reference Response String Response - The API key for accessing the Azure ML model endpoint.
- ml
Endpoint 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).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- service
Principal ObjectId - 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 AzureKey Key | SecureVault Secret Reference Response String Response - 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).
- update
Resource ObjectEndpoint - 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 AzureKey | SecureVault Secret Reference Response String Response - The API key for accessing the Azure ML model endpoint.
- ml
Endpoint any - The Batch Execution REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
- annotations 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 IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- service
Principal anyId - 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 AzureKey Key | SecureVault Secret Reference Response String Response - 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 anyEndpoint - 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 AzureKey | SecureVault Secret Reference Response String Response - The API key for accessing the Azure ML model endpoint.
- ml_
endpoint Any - The Batch Execution REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication Any
- Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- service_
principal_ Anyid - 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_ Azurekey Key | SecureVault Secret Reference Response String Response - 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_ Anyendpoint - 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.
- api
Key Property Map | Property Map - The API key for accessing the Azure ML model endpoint.
- ml
Endpoint Any - The Batch Execution REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
- annotations 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).
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- service
Principal AnyId - 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 Property Map | Property MapKey - 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 AnyEndpoint - 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
- Ml
Workspace objectName - Azure ML Service workspace name. Type: string (or Expression with resultType string).
- Resource
Group objectName - Azure ML Service workspace resource group name. Type: string (or Expression with resultType string).
- Subscription
Id 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).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Service
Principal objectId - 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 Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The key of the service principal used to authenticate against 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.
- Ml
Workspace interface{}Name - Azure ML Service workspace name. Type: string (or Expression with resultType string).
- Resource
Group interface{}Name - Azure ML Service workspace resource group name. Type: string (or Expression with resultType string).
- Subscription
Id 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).
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Service
Principal interface{}Id - 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 AzureKey Key | SecureVault Secret Reference String - 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.
- ml
Workspace ObjectName - Azure ML Service workspace name. Type: string (or Expression with resultType string).
- resource
Group ObjectName - Azure ML Service workspace resource group name. Type: string (or Expression with resultType string).
- subscription
Id 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).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- service
Principal ObjectId - 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 AzureKey Key | SecureVault Secret Reference String - 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.
- ml
Workspace anyName - Azure ML Service workspace name. Type: string (or Expression with resultType string).
- resource
Group anyName - Azure ML Service workspace resource group name. Type: string (or Expression with resultType string).
- subscription
Id any - Azure ML Service workspace subscription ID. Type: string (or Expression with resultType string).
- annotations 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 IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- service
Principal anyId - 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 AzureKey Key | SecureVault Secret Reference String - 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_ Anyname - Azure ML Service workspace name. Type: string (or Expression with resultType string).
- resource_
group_ Anyname - Azure ML Service workspace resource group name. Type: string (or Expression with resultType string).
- subscription_
id Any - Azure ML Service workspace subscription ID. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication Any
- Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- service_
principal_ Anyid - 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_ Azurekey Key | SecureVault Secret Reference String - 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.
- ml
Workspace AnyName - Azure ML Service workspace name. Type: string (or Expression with resultType string).
- resource
Group AnyName - Azure ML Service workspace resource group name. Type: string (or Expression with resultType string).
- subscription
Id Any - Azure ML Service workspace subscription ID. Type: string (or Expression with resultType string).
- annotations 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).
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- service
Principal AnyId - 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 Property Map | Property MapKey - 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
- Ml
Workspace objectName - Azure ML Service workspace name. Type: string (or Expression with resultType string).
- Resource
Group objectName - Azure ML Service workspace resource group name. Type: string (or Expression with resultType string).
- Subscription
Id 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).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Service
Principal objectId - 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 Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The key of the service principal used to authenticate against 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.
- Ml
Workspace interface{}Name - Azure ML Service workspace name. Type: string (or Expression with resultType string).
- Resource
Group interface{}Name - Azure ML Service workspace resource group name. Type: string (or Expression with resultType string).
- Subscription
Id 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).
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Service
Principal interface{}Id - 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 AzureKey Key | SecureVault Secret Reference Response String Response - 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.
- ml
Workspace ObjectName - Azure ML Service workspace name. Type: string (or Expression with resultType string).
- resource
Group ObjectName - Azure ML Service workspace resource group name. Type: string (or Expression with resultType string).
- subscription
Id 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).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- service
Principal ObjectId - 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 AzureKey Key | SecureVault Secret Reference Response String Response - 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.
- ml
Workspace anyName - Azure ML Service workspace name. Type: string (or Expression with resultType string).
- resource
Group anyName - Azure ML Service workspace resource group name. Type: string (or Expression with resultType string).
- subscription
Id any - Azure ML Service workspace subscription ID. Type: string (or Expression with resultType string).
- annotations 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 IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- service
Principal anyId - 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 AzureKey Key | SecureVault Secret Reference Response String Response - 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_ Anyname - Azure ML Service workspace name. Type: string (or Expression with resultType string).
- resource_
group_ Anyname - Azure ML Service workspace resource group name. Type: string (or Expression with resultType string).
- subscription_
id Any - Azure ML Service workspace subscription ID. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication Any
- Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- service_
principal_ Anyid - 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_ Azurekey Key | SecureVault Secret Reference Response String Response - 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.
- ml
Workspace AnyName - Azure ML Service workspace name. Type: string (or Expression with resultType string).
- resource
Group AnyName - Azure ML Service workspace resource group name. Type: string (or Expression with resultType string).
- subscription
Id Any - Azure ML Service workspace subscription ID. Type: string (or Expression with resultType string).
- annotations 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).
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- service
Principal AnyId - 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 Property Map | Property MapKey - 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Connection
String object - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Pwd
Pulumi.
Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference - 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.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Connection
String interface{} - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Pwd
Azure
Key Vault Secret Reference - 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.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String Object - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- pwd
Azure
Key Vault Secret Reference - 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.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String any - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- pwd
Azure
Key Vault Secret Reference - 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 IntegrationRuntime Reference - 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, Parameter
Specification] - Parameters for linked service.
- pwd
Azure
Key Vault Secret Reference - 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.
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Connection
String object - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Pwd
Pulumi.
Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response - 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.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Connection
String interface{} - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Pwd
Azure
Key Vault Secret Reference Response - 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.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String Object - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- pwd
Azure
Key Vault Secret Reference Response - 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.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String any - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- pwd
Azure
Key Vault Secret Reference Response - 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 IntegrationRuntime Reference Response - 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, Parameter
Specification Response] - Parameters for linked service.
- pwd
Azure
Key Vault Secret Reference Response - 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.
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- pwd Property Map
- The Azure key vault secret reference of password in connection string.
- version String
- Version of the linked service.
AzureMySqlLinkedService, AzureMySqlLinkedServiceArgs
- Connection
String object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Password
Pulumi.
Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference - The Azure key vault secret reference of password in connection string.
- Version string
- Version of the linked service.
- Connection
String interface{} - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key Vault Secret Reference - The Azure key vault secret reference of password in connection string.
- Version string
- Version of the linked service.
- connection
String Object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key Vault Secret Reference - The Azure key vault secret reference of password in connection string.
- version String
- Version of the linked service.
- connection
String any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key Vault Secret Reference - The Azure key vault secret reference of password in connection string.
- version string
- Version of the linked service.
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key Vault Secret Reference - The Azure key vault secret reference of password in connection string.
- version str
- Version of the linked service.
- connection
String Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map
- The Azure key vault secret reference of password in connection string.
- version String
- Version of the linked service.
AzureMySqlLinkedServiceResponse, AzureMySqlLinkedServiceResponseArgs
- Connection
String object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Password
Pulumi.
Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection string.
- Version string
- Version of the linked service.
- Connection
String interface{} - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection string.
- Version string
- Version of the linked service.
- connection
String Object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection string.
- version String
- Version of the linked service.
- connection
String any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection string.
- version string
- Version of the linked service.
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection string.
- version str
- Version of the linked service.
- connection
String Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map
- 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.
- Azure
Cloud objectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Command
Timeout 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Connection
String object - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference - The credential reference containing authentication information.
- 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
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Password
Pulumi.
Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference - The Azure key vault secret reference of password in connection string.
- Port object
- The port for the connection. Type: integer.
- Read
Buffer objectSize - 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.
- Service
Principal objectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Embedded Cert Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Embedded Cert Password Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - 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 objectId - The ID of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The key of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server.
- Ssl
Mode object - SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
- Tenant object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- 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.
- Trust
Server objectCertificate - 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.
- Azure
Cloud interface{}Type - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Command
Timeout 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.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Connection
String interface{} - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Credential
Credential
Reference - The credential reference containing authentication information.
- 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
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key Vault Secret Reference - The Azure key vault secret reference of password in connection string.
- Port interface{}
- The port for the connection. Type: integer.
- Read
Buffer interface{}Size - 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.
- Service
Principal interface{}Credential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal AzureEmbedded Cert Key | SecureVault Secret Reference String - Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- Service
Principal AzureEmbedded Cert Password Key | SecureVault Secret Reference String - 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 interface{}Id - The ID of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server.
- Ssl
Mode interface{} - SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
- Tenant interface{}
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- 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.
- Trust
Server interface{}Certificate - 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.
- azure
Cloud ObjectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- command
Timeout 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.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String Object - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference - The credential reference containing authentication information.
- 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
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key Vault Secret Reference - The Azure key vault secret reference of password in connection string.
- port Object
- The port for the connection. Type: integer.
- read
Buffer ObjectSize - 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.
- service
Principal ObjectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal AzureEmbedded Cert Key | SecureVault Secret Reference String - Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- service
Principal AzureEmbedded Cert Password Key | SecureVault Secret Reference String - 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 ObjectId - The ID of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server.
- ssl
Mode Object - SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
- tenant Object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- 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.
- trust
Server ObjectCertificate - 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.
- azure
Cloud anyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- 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 IntegrationRuntime Reference - The integration runtime reference.
- connection
String any - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference - The credential reference containing authentication information.
- 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
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key Vault Secret Reference - The Azure key vault secret reference of password in connection string.
- port any
- The port for the connection. Type: integer.
- read
Buffer anySize - 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.
- service
Principal anyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal AzureEmbedded Cert Key | SecureVault Secret Reference String - Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- service
Principal AzureEmbedded Cert Password Key | SecureVault Secret Reference String - 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 anyId - The ID of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server.
- 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.
- tenant any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- 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 anyCertificate - 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.
- azure_
cloud_ Anytype - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- 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 IntegrationRuntime Reference - The integration runtime reference.
- connection_
string Any - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference - The credential reference containing authentication information.
- 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, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key Vault Secret Reference - The Azure key vault secret reference of password in connection string.
- port Any
- The port for the connection. Type: integer.
- read_
buffer_ Anysize - 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.
- service_
principal_ Anycredential_ type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service_
principal_ Azureembedded_ cert Key | SecureVault Secret Reference String - Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- service_
principal_ Azureembedded_ cert_ password Key | SecureVault Secret Reference String - 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_ Anyid - The ID of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server.
- 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.
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- 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_ Anycertificate - 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.
- azure
Cloud AnyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- 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 Property Map - The integration runtime reference.
- connection
String Any - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential Property Map
- The credential reference containing authentication information.
- 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
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map
- The Azure key vault secret reference of password in connection string.
- port Any
- The port for the connection. Type: integer.
- read
Buffer AnySize - 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.
- service
Principal AnyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapEmbedded Cert - Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapEmbedded Cert Password - 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 AnyId - The ID of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - The key of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server.
- 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.
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- 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 AnyCertificate - 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.
- Azure
Cloud objectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Command
Timeout 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Connection
String object - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference Response - The credential reference containing authentication information.
- 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
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Password
Pulumi.
Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection string.
- Port object
- The port for the connection. Type: integer.
- Read
Buffer objectSize - 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.
- Service
Principal objectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Embedded Cert Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Embedded Cert Password Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - 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 objectId - The ID of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The key of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server.
- Ssl
Mode object - SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
- Tenant object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- 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.
- Trust
Server objectCertificate - 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.
- Azure
Cloud interface{}Type - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Command
Timeout 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.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Connection
String interface{} - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Credential
Credential
Reference Response - The credential reference containing authentication information.
- 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
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection string.
- Port interface{}
- The port for the connection. Type: integer.
- Read
Buffer interface{}Size - 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.
- Service
Principal interface{}Credential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal AzureEmbedded Cert Key | SecureVault Secret Reference Response String Response - Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- Service
Principal AzureEmbedded Cert Password Key | SecureVault Secret Reference Response String Response - 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 interface{}Id - The ID of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server.
- Ssl
Mode interface{} - SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
- Tenant interface{}
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- 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.
- Trust
Server interface{}Certificate - 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.
- azure
Cloud ObjectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- command
Timeout 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.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String Object - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- 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
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection string.
- port Object
- The port for the connection. Type: integer.
- read
Buffer ObjectSize - 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.
- service
Principal ObjectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal AzureEmbedded Cert Key | SecureVault Secret Reference Response String Response - Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- service
Principal AzureEmbedded Cert Password Key | SecureVault Secret Reference Response String Response - 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 ObjectId - The ID of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server.
- ssl
Mode Object - SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
- tenant Object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- 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.
- trust
Server ObjectCertificate - 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.
- azure
Cloud anyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- 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 IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String any - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- 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
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection string.
- port any
- The port for the connection. Type: integer.
- read
Buffer anySize - 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.
- service
Principal anyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal AzureEmbedded Cert Key | SecureVault Secret Reference Response String Response - Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- service
Principal AzureEmbedded Cert Password Key | SecureVault Secret Reference Response String Response - 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 anyId - The ID of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server.
- 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.
- tenant any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- 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 anyCertificate - 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.
- azure_
cloud_ Anytype - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- 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 IntegrationRuntime Reference Response - The integration runtime reference.
- connection_
string Any - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- 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, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection string.
- port Any
- The port for the connection. Type: integer.
- read_
buffer_ Anysize - 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.
- service_
principal_ Anycredential_ type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service_
principal_ Azureembedded_ cert Key | SecureVault Secret Reference Response String Response - Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- service_
principal_ Azureembedded_ cert_ password Key | SecureVault Secret Reference Response String Response - 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_ Anyid - The ID of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server.
- 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.
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- 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_ Anycertificate - 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.
- azure
Cloud AnyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- 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 Property Map - The integration runtime reference.
- connection
String Any - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential Property Map
- The credential reference containing authentication information.
- 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
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map
- The Azure key vault secret reference of password in connection string.
- port Any
- The port for the connection. Type: integer.
- read
Buffer AnySize - 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.
- service
Principal AnyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapEmbedded Cert - Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapEmbedded Cert Password - 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 AnyId - The ID of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - The key of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server.
- 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.
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- 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 AnyCertificate - 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 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Key
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - Admin Key for Azure Search service
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Version string
- Version of the linked service.
- Url interface{}
- URL for Azure Search service. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Key
Azure
Key | SecureVault Secret Reference String - Admin Key for Azure Search service
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Version string
- Version of the linked service.
- url Object
- URL for Azure Search service. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- key
Azure
Key | SecureVault Secret Reference String - Admin Key for Azure Search service
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- version String
- Version of the linked service.
- url any
- URL for Azure Search service. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- key
Azure
Key | SecureVault Secret Reference String - Admin Key for Azure Search service
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- version string
- Version of the linked service.
- url Any
- URL for Azure Search service. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- key
Azure
Key | SecureVault Secret Reference String - Admin Key for Azure Search service
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- version str
- Version of the linked service.
- url Any
- URL for Azure Search service. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Key
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - Admin Key for Azure Search service
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Version string
- Version of the linked service.
- Url interface{}
- URL for Azure Search service. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Key
Azure
Key | SecureVault Secret Reference Response String Response - Admin Key for Azure Search service
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Version string
- Version of the linked service.
- url Object
- URL for Azure Search service. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- key
Azure
Key | SecureVault Secret Reference Response String Response - Admin Key for Azure Search service
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- version String
- Version of the linked service.
- url any
- URL for Azure Search service. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- key
Azure
Key | SecureVault Secret Reference Response String Response - Admin Key for Azure Search service
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- version string
- Version of the linked service.
- url Any
- URL for Azure Search service. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- key
Azure
Key | SecureVault Secret Reference Response String Response - Admin Key for Azure Search service
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- version str
- Version of the linked service.
- url Any
- URL for Azure Search service. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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
- Service
Principal - ServicePrincipal
- System
Assigned Managed Identity - SystemAssignedManagedIdentity
- User
Assigned Managed Identity - UserAssignedManagedIdentity
- Azure
Sql DWAuthentication Type SQL - SQL
- Azure
Sql DWAuthentication Type Service Principal - ServicePrincipal
- Azure
Sql DWAuthentication Type System Assigned Managed Identity - SystemAssignedManagedIdentity
- Azure
Sql DWAuthentication Type User Assigned Managed Identity - UserAssignedManagedIdentity
- SQL
- SQL
- Service
Principal - ServicePrincipal
- System
Assigned Managed Identity - SystemAssignedManagedIdentity
- User
Assigned Managed Identity - UserAssignedManagedIdentity
- SQL
- SQL
- Service
Principal - ServicePrincipal
- System
Assigned Managed Identity - SystemAssignedManagedIdentity
- User
Assigned Managed Identity - UserAssignedManagedIdentity
- SQL
- SQL
- SERVICE_PRINCIPAL
- ServicePrincipal
- SYSTEM_ASSIGNED_MANAGED_IDENTITY
- SystemAssignedManagedIdentity
- USER_ASSIGNED_MANAGED_IDENTITY
- UserAssignedManagedIdentity
- "SQL"
- SQL
- "Service
Principal" - ServicePrincipal
- "System
Assigned Managed Identity" - SystemAssignedManagedIdentity
- "User
Assigned Managed Identity" - UserAssignedManagedIdentity
AzureSqlDWLinkedService, AzureSqlDWLinkedServiceArgs
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Application
Intent object - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Azure Sql DWAuthentication Type - The type used for authentication. Type: string.
- Azure
Cloud objectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Command
Timeout object - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Retry objectCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- Connect
Retry objectInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- Connect
Timeout object - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Connection
String object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference - 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).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Failover
Partner object - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- Host
Name objectIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- Integrated
Security object - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Load
Balance objectTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- Max
Pool objectSize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Min
Pool objectSize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Multi
Subnet objectFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Multiple
Active objectResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Packet
Size object - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Password
Pulumi.
Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference - 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).
- Service
Principal Pulumi.Credential Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal objectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal objectId - The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The key of the service principal used to authenticate against Azure SQL Data Warehouse.
- Tenant object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Trust
Server objectCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- User
Name object - The 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.
- Application
Intent interface{} - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- Authentication
Type string | AzureSql DWAuthentication Type - The type used for authentication. Type: string.
- Azure
Cloud interface{}Type - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Command
Timeout interface{} - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Retry interface{}Count - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- Connect
Retry interface{}Interval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- Connect
Timeout interface{} - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Connection
String interface{} - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- Credential
Credential
Reference - 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).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Failover
Partner interface{} - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- Host
Name interface{}In Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- Integrated
Security interface{} - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Load
Balance interface{}Timeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- Max
Pool interface{}Size - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Min
Pool interface{}Size - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Multi
Subnet interface{}Failover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Multiple
Active interface{}Result Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Packet
Size interface{} - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key Vault Secret Reference - 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).
- Service
Principal AzureCredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal interface{}Credential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal interface{}Id - The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Azure SQL Data Warehouse.
- Tenant interface{}
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Trust
Server interface{}Certificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- User
Name interface{} - The 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.
- application
Intent Object - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type String | AzureSql DWAuthentication Type - The type used for authentication. Type: string.
- azure
Cloud ObjectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- command
Timeout Object - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry ObjectCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry ObjectInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout Object - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String Object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference - 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).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner Object - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name ObjectIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security Object - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance ObjectTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool ObjectSize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool ObjectSize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet ObjectFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active ObjectResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size Object - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key Vault Secret Reference - 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).
- service
Principal AzureCredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal ObjectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal ObjectId - The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Azure SQL Data Warehouse.
- tenant Object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- trust
Server ObjectCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name Object - The 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.
- application
Intent any - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type string | AzureSql DWAuthentication Type - The type used for authentication. Type: string.
- azure
Cloud anyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- command
Timeout any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry anyCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry anyInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference - 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).
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner any - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name anyIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance anyTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool anySize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool anySize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet anyFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active anyResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key Vault Secret Reference - 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 AzureCredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal anyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal anyId - The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Azure SQL Data Warehouse.
- tenant any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- trust
Server anyCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name any - The 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 | AzureSql DWAuthentication Type - The type used for authentication. Type: string.
- azure_
cloud_ Anytype - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- command_
timeout Any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect_
retry_ Anycount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect_
retry_ Anyinterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect_
timeout Any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference - 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_ Anyin_ certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated_
security Any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load_
balance_ Anytimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max_
pool_ Anysize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min_
pool_ Anysize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi_
subnet_ Anyfailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple_
active_ Anyresult_ sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet_
size Any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key Vault Secret Reference - 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_ Azurecredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service_
principal_ Anycredential_ type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service_
principal_ Anyid - The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Azure SQL Data Warehouse.
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- trust_
server_ Anycertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user_
name Any - The 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.
- application
Intent Any - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type String | "SQL" | "ServicePrincipal" | "System Assigned Managed Identity" | "User Assigned Managed Identity" - The type used for authentication. Type: string.
- azure
Cloud AnyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- command
Timeout Any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry AnyCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry AnyInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout Any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. 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).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner Any - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name AnyIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security Any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance AnyTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool AnySize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool AnySize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet AnyFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active AnyResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size Any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map
- 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 Property Map | Property MapCredential - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal AnyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal AnyId - The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - The key of the service principal used to authenticate against Azure SQL Data Warehouse.
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- trust
Server AnyCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name Any - The 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.
- Application
Intent object - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- Authentication
Type string - The type used for authentication. Type: string.
- Azure
Cloud objectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Command
Timeout object - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Retry objectCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- Connect
Retry objectInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- Connect
Timeout object - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Connection
String object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference Response - 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).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Failover
Partner object - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- Host
Name objectIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- Integrated
Security object - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Load
Balance objectTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- Max
Pool objectSize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Min
Pool objectSize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Multi
Subnet objectFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Multiple
Active objectResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Packet
Size object - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Password
Pulumi.
Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response - 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).
- Service
Principal Pulumi.Credential Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal objectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal objectId - The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The key of the service principal used to authenticate against Azure SQL Data Warehouse.
- Tenant object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Trust
Server objectCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- User
Name object - The 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.
- Application
Intent interface{} - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- Authentication
Type string - The type used for authentication. Type: string.
- Azure
Cloud interface{}Type - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Command
Timeout interface{} - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Retry interface{}Count - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- Connect
Retry interface{}Interval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- Connect
Timeout interface{} - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Connection
String interface{} - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- Credential
Credential
Reference Response - 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).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Failover
Partner interface{} - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- Host
Name interface{}In Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- Integrated
Security interface{} - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Load
Balance interface{}Timeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- Max
Pool interface{}Size - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Min
Pool interface{}Size - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Multi
Subnet interface{}Failover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Multiple
Active interface{}Result Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Packet
Size interface{} - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key Vault Secret Reference Response - 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).
- Service
Principal AzureCredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal interface{}Credential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal interface{}Id - The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Azure SQL Data Warehouse.
- Tenant interface{}
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Trust
Server interface{}Certificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- User
Name interface{} - The 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.
- application
Intent Object - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type String - The type used for authentication. Type: string.
- azure
Cloud ObjectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- command
Timeout Object - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry ObjectCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry ObjectInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout Object - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String Object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference Response - 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).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner Object - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name ObjectIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security Object - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance ObjectTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool ObjectSize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool ObjectSize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet ObjectFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active ObjectResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size Object - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key Vault Secret Reference Response - 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).
- service
Principal AzureCredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal ObjectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal ObjectId - The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Azure SQL Data Warehouse.
- tenant Object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- trust
Server ObjectCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name Object - The 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.
- application
Intent any - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type string - The type used for authentication. Type: string.
- azure
Cloud anyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- command
Timeout any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry anyCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry anyInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference Response - 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).
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner any - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name anyIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance anyTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool anySize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool anySize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet anyFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active anyResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key Vault Secret Reference Response - 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 AzureCredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal anyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal anyId - The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Azure SQL Data Warehouse.
- tenant any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- trust
Server anyCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name any - The 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_ Anytype - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- command_
timeout Any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect_
retry_ Anycount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect_
retry_ Anyinterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect_
timeout Any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference Response - 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_ Anyin_ certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated_
security Any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load_
balance_ Anytimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max_
pool_ Anysize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min_
pool_ Anysize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi_
subnet_ Anyfailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple_
active_ Anyresult_ sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet_
size Any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key Vault Secret Reference Response - 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_ Azurecredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service_
principal_ Anycredential_ type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service_
principal_ Anyid - The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Azure SQL Data Warehouse.
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- trust_
server_ Anycertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user_
name Any - The 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.
- application
Intent Any - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type String - The type used for authentication. Type: string.
- azure
Cloud AnyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- command
Timeout Any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry AnyCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry AnyInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout Any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. 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).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner Any - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name AnyIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security Any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance AnyTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool AnySize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool AnySize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet AnyFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active AnyResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size Any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map
- 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 Property Map | Property MapCredential - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal AnyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal AnyId - The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - The key of the service principal used to authenticate against Azure SQL Data Warehouse.
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- trust
Server AnyCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name Any - The 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
- Service
Principal - ServicePrincipal
- System
Assigned Managed Identity - SystemAssignedManagedIdentity
- User
Assigned Managed Identity - UserAssignedManagedIdentity
- Azure
Sql Database Authentication Type SQL - SQL
- Azure
Sql Database Authentication Type Service Principal - ServicePrincipal
- Azure
Sql Database Authentication Type System Assigned Managed Identity - SystemAssignedManagedIdentity
- Azure
Sql Database Authentication Type User Assigned Managed Identity - UserAssignedManagedIdentity
- SQL
- SQL
- Service
Principal - ServicePrincipal
- System
Assigned Managed Identity - SystemAssignedManagedIdentity
- User
Assigned Managed Identity - UserAssignedManagedIdentity
- SQL
- SQL
- Service
Principal - ServicePrincipal
- System
Assigned Managed Identity - SystemAssignedManagedIdentity
- User
Assigned Managed Identity - UserAssignedManagedIdentity
- SQL
- SQL
- SERVICE_PRINCIPAL
- ServicePrincipal
- SYSTEM_ASSIGNED_MANAGED_IDENTITY
- SystemAssignedManagedIdentity
- USER_ASSIGNED_MANAGED_IDENTITY
- UserAssignedManagedIdentity
- "SQL"
- SQL
- "Service
Principal" - ServicePrincipal
- "System
Assigned Managed Identity" - SystemAssignedManagedIdentity
- "User
Assigned Managed Identity" - UserAssignedManagedIdentity
AzureSqlDatabaseLinkedService, AzureSqlDatabaseLinkedServiceArgs
- Always
Encrypted Pulumi.Settings Azure Native. Data Factory. Inputs. Sql Always Encrypted Properties - Sql always encrypted properties.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Application
Intent object - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Azure Sql Database Authentication Type - The type used for authentication. Type: string.
- Azure
Cloud objectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Command
Timeout object - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Retry objectCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- Connect
Retry objectInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- Connect
Timeout object - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Connection
String object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference - 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).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Failover
Partner object - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- Host
Name objectIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- Integrated
Security object - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Load
Balance objectTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- Max
Pool objectSize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Min
Pool objectSize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Multi
Subnet objectFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Multiple
Active objectResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Packet
Size object - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Password
Pulumi.
Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference - 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).
- Service
Principal Pulumi.Credential Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal objectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal objectId - The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The key of the service principal used to authenticate against Azure SQL Database.
- Tenant object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Trust
Server objectCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- User
Name object - The 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 SqlSettings Always Encrypted Properties - Sql always encrypted properties.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Application
Intent interface{} - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- Authentication
Type string | AzureSql Database Authentication Type - The type used for authentication. Type: string.
- Azure
Cloud interface{}Type - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Command
Timeout interface{} - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Retry interface{}Count - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- Connect
Retry interface{}Interval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- Connect
Timeout interface{} - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Connection
String interface{} - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Credential
Credential
Reference - 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).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Failover
Partner interface{} - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- Host
Name interface{}In Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- Integrated
Security interface{} - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Load
Balance interface{}Timeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- Max
Pool interface{}Size - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Min
Pool interface{}Size - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Multi
Subnet interface{}Failover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Multiple
Active interface{}Result Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Packet
Size interface{} - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key Vault Secret Reference - 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).
- Service
Principal AzureCredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal interface{}Credential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal interface{}Id - The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Azure SQL Database.
- Tenant interface{}
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Trust
Server interface{}Certificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- User
Name interface{} - The 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 SqlSettings Always Encrypted Properties - Sql always encrypted properties.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- application
Intent Object - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type String | AzureSql Database Authentication Type - The type used for authentication. Type: string.
- azure
Cloud ObjectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- command
Timeout Object - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry ObjectCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry ObjectInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout Object - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String Object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference - 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).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner Object - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name ObjectIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security Object - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance ObjectTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool ObjectSize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool ObjectSize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet ObjectFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active ObjectResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size Object - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key Vault Secret Reference - 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).
- service
Principal AzureCredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal ObjectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal ObjectId - The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Azure SQL Database.
- tenant Object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- trust
Server ObjectCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name Object - The 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 SqlSettings Always Encrypted Properties - Sql always encrypted properties.
- annotations any[]
- List of tags that can be used for describing the linked service.
- application
Intent any - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type string | AzureSql Database Authentication Type - The type used for authentication. Type: string.
- azure
Cloud anyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- command
Timeout any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry anyCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry anyInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference - 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).
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner any - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name anyIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance anyTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool anySize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool anySize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet anyFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active anyResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key Vault Secret Reference - 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 AzureCredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal anyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal anyId - The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Azure SQL 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 anyCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name any - The 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_ Sqlsettings Always Encrypted Properties - Sql always encrypted properties.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- application_
intent Any - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication_
type str | AzureSql Database Authentication Type - The type used for authentication. Type: string.
- azure_
cloud_ Anytype - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- command_
timeout Any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect_
retry_ Anycount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect_
retry_ Anyinterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect_
timeout Any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference - 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_ Anyin_ certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated_
security Any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load_
balance_ Anytimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max_
pool_ Anysize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min_
pool_ Anysize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi_
subnet_ Anyfailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple_
active_ Anyresult_ sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet_
size Any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key Vault Secret Reference - 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_ Azurecredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service_
principal_ Anycredential_ type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service_
principal_ Anyid - The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Azure SQL 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_ Anycertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user_
name Any - The user name to be used when connecting to server. Type: string (or Expression with resultType string).
- version str
- Version of the linked service.
- always
Encrypted Property MapSettings - Sql always encrypted properties.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- application
Intent Any - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type String | "SQL" | "ServicePrincipal" | "System Assigned Managed Identity" | "User Assigned Managed Identity" - The type used for authentication. Type: string.
- azure
Cloud AnyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- command
Timeout Any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry AnyCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry AnyInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout Any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- 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).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner Any - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name AnyIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security Any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance AnyTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool AnySize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool AnySize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet AnyFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active AnyResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size Any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map
- 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 Property Map | Property MapCredential - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal AnyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal AnyId - The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - The key of the service principal used to authenticate against Azure SQL 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 AnyCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name Any - The 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
- Always
Encrypted Pulumi.Settings Azure Native. Data Factory. Inputs. Sql Always Encrypted Properties Response - Sql always encrypted properties.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Application
Intent object - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- Authentication
Type string - The type used for authentication. Type: string.
- Azure
Cloud objectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Command
Timeout object - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Retry objectCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- Connect
Retry objectInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- Connect
Timeout object - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Connection
String object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference Response - 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).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Failover
Partner object - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- Host
Name objectIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- Integrated
Security object - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Load
Balance objectTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- Max
Pool objectSize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Min
Pool objectSize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Multi
Subnet objectFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Multiple
Active objectResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Packet
Size object - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Password
Pulumi.
Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response - 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).
- Service
Principal Pulumi.Credential Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal objectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal objectId - The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The key of the service principal used to authenticate against Azure SQL Database.
- Tenant object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Trust
Server objectCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- User
Name object - The 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 SqlSettings Always Encrypted Properties Response - Sql always encrypted properties.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Application
Intent interface{} - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- Authentication
Type string - The type used for authentication. Type: string.
- Azure
Cloud interface{}Type - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Command
Timeout interface{} - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Retry interface{}Count - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- Connect
Retry interface{}Interval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- Connect
Timeout interface{} - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Connection
String interface{} - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Credential
Credential
Reference Response - 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).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Failover
Partner interface{} - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- Host
Name interface{}In Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- Integrated
Security interface{} - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Load
Balance interface{}Timeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- Max
Pool interface{}Size - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Min
Pool interface{}Size - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Multi
Subnet interface{}Failover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Multiple
Active interface{}Result Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Packet
Size interface{} - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key Vault Secret Reference Response - 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).
- Service
Principal AzureCredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal interface{}Credential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal interface{}Id - The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Azure SQL Database.
- Tenant interface{}
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Trust
Server interface{}Certificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- User
Name interface{} - The 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 SqlSettings Always Encrypted Properties Response - Sql always encrypted properties.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- application
Intent Object - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type String - The type used for authentication. Type: string.
- azure
Cloud ObjectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- command
Timeout Object - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry ObjectCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry ObjectInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout Object - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String Object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference Response - 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).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner Object - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name ObjectIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security Object - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance ObjectTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool ObjectSize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool ObjectSize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet ObjectFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active ObjectResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size Object - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key Vault Secret Reference Response - 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).
- service
Principal AzureCredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal ObjectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal ObjectId - The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Azure SQL Database.
- tenant Object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- trust
Server ObjectCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name Object - The 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 SqlSettings Always Encrypted Properties Response - Sql always encrypted properties.
- annotations any[]
- List of tags that can be used for describing the linked service.
- application
Intent any - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type string - The type used for authentication. Type: string.
- azure
Cloud anyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- command
Timeout any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry anyCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry anyInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference Response - 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).
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner any - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name anyIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance anyTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool anySize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool anySize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet anyFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active anyResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key Vault Secret Reference Response - 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 AzureCredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal anyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal anyId - The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Azure SQL 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 anyCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name any - The 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_ Sqlsettings Always Encrypted Properties Response - Sql always encrypted properties.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- application_
intent Any - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication_
type str - The type used for authentication. Type: string.
- azure_
cloud_ Anytype - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- command_
timeout Any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect_
retry_ Anycount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect_
retry_ Anyinterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect_
timeout Any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference Response - 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_ Anyin_ certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated_
security Any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load_
balance_ Anytimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max_
pool_ Anysize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min_
pool_ Anysize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi_
subnet_ Anyfailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple_
active_ Anyresult_ sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet_
size Any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key Vault Secret Reference Response - 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_ Azurecredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service_
principal_ Anycredential_ type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service_
principal_ Anyid - The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Azure SQL 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_ Anycertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user_
name Any - The user name to be used when connecting to server. Type: string (or Expression with resultType string).
- version str
- Version of the linked service.
- always
Encrypted Property MapSettings - Sql always encrypted properties.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- application
Intent Any - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type String - The type used for authentication. Type: string.
- azure
Cloud AnyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- command
Timeout Any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry AnyCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry AnyInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout Any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- 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).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner Any - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name AnyIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security Any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance AnyTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool AnySize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool AnySize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet AnyFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active AnyResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size Any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map
- 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 Property Map | Property MapCredential - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal AnyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal AnyId - The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - The key of the service principal used to authenticate against Azure SQL 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 AnyCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name Any - The 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
- Service
Principal - ServicePrincipal
- System
Assigned Managed Identity - SystemAssignedManagedIdentity
- User
Assigned Managed Identity - UserAssignedManagedIdentity
- Azure
Sql MIAuthentication Type SQL - SQL
- Azure
Sql MIAuthentication Type Service Principal - ServicePrincipal
- Azure
Sql MIAuthentication Type System Assigned Managed Identity - SystemAssignedManagedIdentity
- Azure
Sql MIAuthentication Type User Assigned Managed Identity - UserAssignedManagedIdentity
- SQL
- SQL
- Service
Principal - ServicePrincipal
- System
Assigned Managed Identity - SystemAssignedManagedIdentity
- User
Assigned Managed Identity - UserAssignedManagedIdentity
- SQL
- SQL
- Service
Principal - ServicePrincipal
- System
Assigned Managed Identity - SystemAssignedManagedIdentity
- User
Assigned Managed Identity - UserAssignedManagedIdentity
- SQL
- SQL
- SERVICE_PRINCIPAL
- ServicePrincipal
- SYSTEM_ASSIGNED_MANAGED_IDENTITY
- SystemAssignedManagedIdentity
- USER_ASSIGNED_MANAGED_IDENTITY
- UserAssignedManagedIdentity
- "SQL"
- SQL
- "Service
Principal" - ServicePrincipal
- "System
Assigned Managed Identity" - SystemAssignedManagedIdentity
- "User
Assigned Managed Identity" - UserAssignedManagedIdentity
AzureSqlMILinkedService, AzureSqlMILinkedServiceArgs
- Always
Encrypted Pulumi.Settings Azure Native. Data Factory. Inputs. Sql Always Encrypted Properties - Sql always encrypted properties.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Application
Intent object - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Azure Sql MIAuthentication Type - The type used for authentication. Type: string.
- Azure
Cloud objectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Command
Timeout object - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Retry objectCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- Connect
Retry objectInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- Connect
Timeout object - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Connection
String object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference - 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).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Failover
Partner object - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- Host
Name objectIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- Integrated
Security object - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Load
Balance objectTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- Max
Pool objectSize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Min
Pool objectSize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Multi
Subnet objectFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Multiple
Active objectResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Packet
Size object - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Password
Pulumi.
Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference - 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).
- Service
Principal Pulumi.Credential Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal objectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal objectId - The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The key of the service principal used to authenticate against Azure SQL Managed Instance.
- Tenant object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Trust
Server objectCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- User
Name object - The 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 SqlSettings Always Encrypted Properties - Sql always encrypted properties.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Application
Intent interface{} - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- Authentication
Type string | AzureSql MIAuthentication Type - The type used for authentication. Type: string.
- Azure
Cloud interface{}Type - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Command
Timeout interface{} - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Retry interface{}Count - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- Connect
Retry interface{}Interval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- Connect
Timeout interface{} - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Connection
String interface{} - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Credential
Credential
Reference - 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).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Failover
Partner interface{} - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- Host
Name interface{}In Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- Integrated
Security interface{} - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Load
Balance interface{}Timeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- Max
Pool interface{}Size - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Min
Pool interface{}Size - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Multi
Subnet interface{}Failover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Multiple
Active interface{}Result Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Packet
Size interface{} - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key Vault Secret Reference - 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).
- Service
Principal AzureCredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal interface{}Credential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal interface{}Id - The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Azure SQL Managed Instance.
- Tenant interface{}
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Trust
Server interface{}Certificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- User
Name interface{} - The 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 SqlSettings Always Encrypted Properties - Sql always encrypted properties.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- application
Intent Object - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type String | AzureSql MIAuthentication Type - The type used for authentication. Type: string.
- azure
Cloud ObjectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- command
Timeout Object - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry ObjectCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry ObjectInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout Object - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String Object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference - 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).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner Object - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name ObjectIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security Object - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance ObjectTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool ObjectSize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool ObjectSize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet ObjectFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active ObjectResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size Object - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key Vault Secret Reference - 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).
- service
Principal AzureCredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal ObjectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal ObjectId - The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Azure SQL Managed Instance.
- tenant Object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- trust
Server ObjectCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name Object - The 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 SqlSettings Always Encrypted Properties - Sql always encrypted properties.
- annotations any[]
- List of tags that can be used for describing the linked service.
- application
Intent any - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type string | AzureSql MIAuthentication Type - The type used for authentication. Type: string.
- azure
Cloud anyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- command
Timeout any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry anyCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry anyInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference - 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).
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner any - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name anyIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance anyTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool anySize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool anySize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet anyFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active anyResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key Vault Secret Reference - 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 AzureCredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal anyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal anyId - The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Azure SQL 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 anyCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name any - The 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_ Sqlsettings Always Encrypted Properties - Sql always encrypted properties.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- application_
intent Any - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication_
type str | AzureSql MIAuthentication Type - The type used for authentication. Type: string.
- azure_
cloud_ Anytype - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- command_
timeout Any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect_
retry_ Anycount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect_
retry_ Anyinterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect_
timeout Any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference - 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_ Anyin_ certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated_
security Any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load_
balance_ Anytimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max_
pool_ Anysize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min_
pool_ Anysize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi_
subnet_ Anyfailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple_
active_ Anyresult_ sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet_
size Any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key Vault Secret Reference - 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_ Azurecredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service_
principal_ Anycredential_ type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service_
principal_ Anyid - The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Azure SQL 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_ Anycertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user_
name Any - The user name to be used when connecting to server. Type: string (or Expression with resultType string).
- version str
- Version of the linked service.
- always
Encrypted Property MapSettings - Sql always encrypted properties.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- application
Intent Any - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type String | "SQL" | "ServicePrincipal" | "System Assigned Managed Identity" | "User Assigned Managed Identity" - The type used for authentication. Type: string.
- azure
Cloud AnyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- command
Timeout Any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry AnyCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry AnyInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout Any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- 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).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner Any - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name AnyIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security Any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance AnyTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool AnySize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool AnySize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet AnyFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active AnyResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size Any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map
- 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 Property Map | Property MapCredential - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal AnyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal AnyId - The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - The key of the service principal used to authenticate against Azure SQL 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 AnyCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name Any - The 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
- Always
Encrypted Pulumi.Settings Azure Native. Data Factory. Inputs. Sql Always Encrypted Properties Response - Sql always encrypted properties.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Application
Intent object - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- Authentication
Type string - The type used for authentication. Type: string.
- Azure
Cloud objectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Command
Timeout object - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Retry objectCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- Connect
Retry objectInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- Connect
Timeout object - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Connection
String object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference Response - 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).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Failover
Partner object - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- Host
Name objectIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- Integrated
Security object - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Load
Balance objectTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- Max
Pool objectSize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Min
Pool objectSize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Multi
Subnet objectFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Multiple
Active objectResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Packet
Size object - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Password
Pulumi.
Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response - 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).
- Service
Principal Pulumi.Credential Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal objectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal objectId - The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The key of the service principal used to authenticate against Azure SQL Managed Instance.
- Tenant object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Trust
Server objectCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- User
Name object - The 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 SqlSettings Always Encrypted Properties Response - Sql always encrypted properties.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Application
Intent interface{} - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- Authentication
Type string - The type used for authentication. Type: string.
- Azure
Cloud interface{}Type - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Command
Timeout interface{} - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Retry interface{}Count - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- Connect
Retry interface{}Interval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- Connect
Timeout interface{} - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Connection
String interface{} - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Credential
Credential
Reference Response - 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).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Failover
Partner interface{} - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- Host
Name interface{}In Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- Integrated
Security interface{} - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Load
Balance interface{}Timeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- Max
Pool interface{}Size - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Min
Pool interface{}Size - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Multi
Subnet interface{}Failover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Multiple
Active interface{}Result Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Packet
Size interface{} - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key Vault Secret Reference Response - 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).
- Service
Principal AzureCredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal interface{}Credential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal interface{}Id - The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Azure SQL Managed Instance.
- Tenant interface{}
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- Trust
Server interface{}Certificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- User
Name interface{} - The 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 SqlSettings Always Encrypted Properties Response - Sql always encrypted properties.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- application
Intent Object - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type String - The type used for authentication. Type: string.
- azure
Cloud ObjectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- command
Timeout Object - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry ObjectCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry ObjectInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout Object - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String Object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference Response - 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).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner Object - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name ObjectIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security Object - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance ObjectTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool ObjectSize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool ObjectSize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet ObjectFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active ObjectResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size Object - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key Vault Secret Reference Response - 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).
- service
Principal AzureCredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal ObjectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal ObjectId - The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Azure SQL Managed Instance.
- tenant Object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- trust
Server ObjectCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name Object - The 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 SqlSettings Always Encrypted Properties Response - Sql always encrypted properties.
- annotations any[]
- List of tags that can be used for describing the linked service.
- application
Intent any - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type string - The type used for authentication. Type: string.
- azure
Cloud anyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- command
Timeout any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry anyCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry anyInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference Response - 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).
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner any - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name anyIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance anyTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool anySize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool anySize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet anyFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active anyResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key Vault Secret Reference Response - 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 AzureCredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal anyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal anyId - The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Azure SQL 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 anyCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name any - The 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_ Sqlsettings Always Encrypted Properties Response - Sql always encrypted properties.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- application_
intent Any - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication_
type str - The type used for authentication. Type: string.
- azure_
cloud_ Anytype - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- command_
timeout Any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect_
retry_ Anycount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect_
retry_ Anyinterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect_
timeout Any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference Response - 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_ Anyin_ certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated_
security Any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load_
balance_ Anytimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max_
pool_ Anysize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min_
pool_ Anysize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi_
subnet_ Anyfailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple_
active_ Anyresult_ sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet_
size Any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key Vault Secret Reference Response - 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_ Azurecredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service_
principal_ Anycredential_ type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service_
principal_ Anyid - The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Azure SQL 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_ Anycertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user_
name Any - The user name to be used when connecting to server. Type: string (or Expression with resultType string).
- version str
- Version of the linked service.
- always
Encrypted Property MapSettings - Sql always encrypted properties.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- application
Intent Any - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type String - The type used for authentication. Type: string.
- azure
Cloud AnyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- command
Timeout Any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry AnyCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry AnyInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout Any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- 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).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner Any - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name AnyIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security Any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance AnyTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool AnySize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool AnySize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet AnyFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active AnyResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size Any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map
- 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 Property Map | Property MapCredential - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal AnyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal AnyId - The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - The key of the service principal used to authenticate against Azure SQL 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 AnyCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name Any - The 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
- Account
Key - AccountKey
- Sas
Uri - SasUri
- Service
Principal - ServicePrincipal
- Msi
- Msi
- Azure
Storage Authentication Type Anonymous - Anonymous
- Azure
Storage Authentication Type Account Key - AccountKey
- Azure
Storage Authentication Type Sas Uri - SasUri
- Azure
Storage Authentication Type Service Principal - ServicePrincipal
- Azure
Storage Authentication Type Msi - Msi
- Anonymous
- Anonymous
- Account
Key - AccountKey
- Sas
Uri - SasUri
- Service
Principal - ServicePrincipal
- Msi
- Msi
- Anonymous
- Anonymous
- Account
Key - AccountKey
- Sas
Uri - SasUri
- Service
Principal - ServicePrincipal
- Msi
- Msi
- ANONYMOUS
- Anonymous
- ACCOUNT_KEY
- AccountKey
- SAS_URI
- SasUri
- SERVICE_PRINCIPAL
- ServicePrincipal
- MSI
- Msi
- "Anonymous"
- Anonymous
- "Account
Key" - AccountKey
- "Sas
Uri" - SasUri
- "Service
Principal" - ServicePrincipal
- "Msi"
- Msi
AzureStorageLinkedService, AzureStorageLinkedServiceArgs
- Account
Key Pulumi.Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference - 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Connection
String object - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Sas
Token Pulumi.Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference - The Azure key vault secret reference of sasToken in sas uri.
- Sas
Uri object - SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Version string
- Version of the linked service.
- Account
Key AzureKey Vault Secret Reference - 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.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Connection
String interface{} - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Sas
Token AzureKey Vault Secret Reference - The Azure key vault secret reference of sasToken in sas uri.
- Sas
Uri interface{} - SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Version string
- Version of the linked service.
- account
Key AzureKey Vault Secret Reference - 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.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String Object - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- sas
Token AzureKey Vault Secret Reference - The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri Object - SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
- version String
- Version of the linked service.
- account
Key AzureKey Vault Secret Reference - 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.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String any - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- sas
Token AzureKey Vault Secret Reference - The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri any - SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
- version string
- Version of the linked service.
- account_
key AzureKey Vault Secret Reference - 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 IntegrationRuntime Reference - 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, Parameter
Specification] - Parameters for linked service.
- sas_
token AzureKey Vault Secret Reference - The Azure key vault secret reference of sasToken in sas uri.
- sas_
uri Any - SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
- version str
- Version of the linked service.
- account
Key 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.
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- sas
Token Property Map - The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri Any - SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
- version String
- Version of the linked service.
AzureStorageLinkedServiceResponse, AzureStorageLinkedServiceResponseArgs
- Account
Key Pulumi.Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response - The Azure key vault secret reference of accountKey in connection string.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Connection
String object - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Sas
Token Pulumi.Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response - The Azure key vault secret reference of sasToken in sas uri.
- Sas
Uri object - SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Version string
- Version of the linked service.
- Account
Key AzureKey Vault Secret Reference Response - The Azure key vault secret reference of accountKey in connection string.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Connection
String interface{} - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Sas
Token AzureKey Vault Secret Reference Response - The Azure key vault secret reference of sasToken in sas uri.
- Sas
Uri interface{} - SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Version string
- Version of the linked service.
- account
Key AzureKey Vault Secret Reference Response - The Azure key vault secret reference of accountKey in connection string.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String Object - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- sas
Token AzureKey Vault Secret Reference Response - The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri Object - SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
- version String
- Version of the linked service.
- account
Key AzureKey Vault Secret Reference Response - The Azure key vault secret reference of accountKey in connection string.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String any - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- sas
Token AzureKey Vault Secret Reference Response - The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri any - SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
- version string
- Version of the linked service.
- account_
key AzureKey Vault Secret Reference Response - The Azure key vault secret reference of accountKey in connection string.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - 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, Parameter
Specification Response] - Parameters for linked service.
- sas_
token AzureKey Vault Secret Reference Response - The Azure key vault secret reference of sasToken in sas uri.
- sas_
uri Any - SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
- version str
- Version of the linked service.
- account
Key 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.
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- sas
Token Property Map - The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri Any - SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
- version String
- Version of the linked service.
AzureSynapseArtifactsLinkedService, AzureSynapseArtifactsLinkedServiceArgs
- Endpoint object
- https://.dev.azuresynapse.net, Azure Synapse Analytics workspace URL. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Authentication object
- Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Version string
- Version of the linked service.
- Workspace
Resource objectId - The resource ID of the Synapse workspace. The format should be: /subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}. Type: string (or Expression with resultType string).
- Endpoint interface{}
- https://.dev.azuresynapse.net, Azure Synapse Analytics workspace URL. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Authentication interface{}
- Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Version string
- Version of the linked service.
- Workspace
Resource interface{}Id - The resource ID of the Synapse workspace. The format should be: /subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}. Type: string (or Expression with resultType string).
- endpoint Object
- https://.dev.azuresynapse.net, Azure Synapse Analytics workspace URL. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- authentication Object
- Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- version String
- Version of the linked service.
- workspace
Resource ObjectId - The resource ID of the Synapse workspace. The format should be: /subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}. Type: string (or Expression with resultType string).
- endpoint any
- https://.dev.azuresynapse.net, Azure Synapse Analytics workspace URL. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- authentication any
- Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- version string
- Version of the linked service.
- workspace
Resource anyId - The resource ID of the Synapse workspace. The format should be: /subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}. Type: string (or Expression with resultType string).
- endpoint Any
- https://.dev.azuresynapse.net, Azure Synapse Analytics workspace URL. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication Any
- Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- version str
- Version of the linked service.
- workspace_
resource_ Anyid - The resource ID of the Synapse workspace. The format should be: /subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}. Type: string (or Expression with resultType string).
- endpoint Any
- https://.dev.azuresynapse.net, Azure Synapse Analytics workspace URL. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- authentication Any
- Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string).
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- parameters Map<Property Map>
- Parameters for linked service.
- version String
- Version of the linked service.
- workspace
Resource AnyId - The resource ID of the Synapse workspace. The format should be: /subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}. Type: string (or Expression with resultType string).
AzureSynapseArtifactsLinkedServiceResponse, AzureSynapseArtifactsLinkedServiceResponseArgs
- Endpoint object
- https://.dev.azuresynapse.net, Azure Synapse Analytics workspace URL. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Authentication object
- Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Version string
- Version of the linked service.
- Workspace
Resource objectId - The resource ID of the Synapse workspace. The format should be: /subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}. Type: string (or Expression with resultType string).
- Endpoint interface{}
- https://.dev.azuresynapse.net, Azure Synapse Analytics workspace URL. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Authentication interface{}
- Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Version string
- Version of the linked service.
- Workspace
Resource interface{}Id - The resource ID of the Synapse workspace. The format should be: /subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}. Type: string (or Expression with resultType string).
- endpoint Object
- https://.dev.azuresynapse.net, Azure Synapse Analytics workspace URL. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- authentication Object
- Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- version String
- Version of the linked service.
- workspace
Resource ObjectId - The resource ID of the Synapse workspace. The format should be: /subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}. Type: string (or Expression with resultType string).
- endpoint any
- https://.dev.azuresynapse.net, Azure Synapse Analytics workspace URL. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- authentication any
- Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- version string
- Version of the linked service.
- workspace
Resource anyId - The resource ID of the Synapse workspace. The format should be: /subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}. Type: string (or Expression with resultType string).
- endpoint Any
- https://.dev.azuresynapse.net, Azure Synapse Analytics workspace URL. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication Any
- Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- version str
- Version of the linked service.
- workspace_
resource_ Anyid - The resource ID of the Synapse workspace. The format should be: /subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}. Type: string (or Expression with resultType string).
- endpoint Any
- https://.dev.azuresynapse.net, Azure Synapse Analytics workspace URL. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- authentication Any
- Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string).
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- parameters Map<Property Map>
- Parameters for linked service.
- version String
- Version of the linked service.
- workspace
Resource AnyId - 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
- Account
Key Pulumi.Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference - 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Connection
String object - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Sas
Token Pulumi.Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference - The Azure key vault secret reference of sasToken in sas uri.
- Sas
Uri object - SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Service
Endpoint 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.
- Account
Key AzureKey Vault Secret Reference - 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.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Connection
String interface{} - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Credential
Credential
Reference - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Sas
Token AzureKey Vault Secret Reference - The Azure key vault secret reference of sasToken in sas uri.
- Sas
Uri interface{} - SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Service
Endpoint 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.
- account
Key AzureKey Vault Secret Reference - 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.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String Object - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- sas
Token AzureKey Vault Secret Reference - The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri Object - SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
- service
Endpoint 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.
- account
Key AzureKey Vault Secret Reference - 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.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String any - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- sas
Token AzureKey Vault Secret Reference - The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri any - SAS URI of the Azure 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 string
- Version of the linked service.
- account_
key AzureKey Vault Secret Reference - 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 IntegrationRuntime Reference - The integration runtime reference.
- connection_
string Any - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- sas_
token AzureKey Vault Secret Reference - The Azure key vault secret reference of sasToken in sas uri.
- sas_
uri Any - SAS URI of the Azure 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.
- account
Key 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.
- connect
Via Property Map - The integration runtime reference.
- connection
String 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.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- sas
Token Property Map - The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri Any - SAS URI of the Azure 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 String
- Version of the linked service.
AzureTableStorageLinkedServiceResponse, AzureTableStorageLinkedServiceResponseArgs
- Account
Key Pulumi.Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response - The Azure key vault secret reference of accountKey in connection string.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Connection
String object - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference Response - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Sas
Token Pulumi.Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response - The Azure key vault secret reference of sasToken in sas uri.
- Sas
Uri object - SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Service
Endpoint 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.
- Account
Key AzureKey Vault Secret Reference Response - 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.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Connection
String interface{} - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Credential
Credential
Reference Response - The credential reference containing authentication information.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Sas
Token AzureKey Vault Secret Reference Response - The Azure key vault secret reference of sasToken in sas uri.
- Sas
Uri interface{} - SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Service
Endpoint 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.
- account
Key AzureKey Vault Secret Reference Response - 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.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String Object - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- sas
Token AzureKey Vault Secret Reference Response - The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri Object - SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
- service
Endpoint 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.
- account
Key AzureKey Vault Secret Reference Response - 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.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String any - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- sas
Token AzureKey Vault Secret Reference Response - The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri any - SAS URI of the Azure 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 string
- Version of the linked service.
- account_
key AzureKey Vault Secret Reference Response - 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 IntegrationRuntime Reference Response - The integration runtime reference.
- connection_
string Any - The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- sas_
token AzureKey Vault Secret Reference Response - The Azure key vault secret reference of sasToken in sas uri.
- sas_
uri Any - SAS URI of the Azure 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.
- account
Key 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.
- connect
Via Property Map - The integration runtime reference.
- connection
String 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.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- sas
Token Property Map - The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri Any - SAS URI of the Azure 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 String
- Version of the linked service.
CassandraLinkedService, CassandraLinkedServiceArgs
- Host object
- Host name for connection. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Authentication
Type object - AuthenticationType to be used for connection. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - 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 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.
- Authentication
Type interface{} - AuthenticationType to be used for connection. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference String - 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 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.
- authentication
Type Object - AuthenticationType to be used for connection. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - 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 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.
- authentication
Type any - AuthenticationType to be used for connection. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - 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 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 IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - 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 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.
- authentication
Type Any - AuthenticationType to be used for connection. Type: string (or Expression with resultType string).
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- 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 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.
- Authentication
Type object - AuthenticationType to be used for connection. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - 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 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.
- Authentication
Type interface{} - AuthenticationType to be used for connection. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - 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 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.
- authentication
Type Object - AuthenticationType to be used for connection. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - 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 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.
- authentication
Type any - AuthenticationType to be used for connection. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - 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 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 IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - 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 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.
- authentication
Type Any - AuthenticationType to be used for connection. Type: string (or Expression with resultType string).
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- 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
- Authentication
Type 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).
- Deployment
Type 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - 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).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Host
Name 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).
- Organization
Name 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.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - 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.
- Service
Principal Pulumi.Credential Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal objectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal objectId - The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
- Service
Uri 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.
- Authentication
Type 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).
- Deployment
Type 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.
- Connect
Via IntegrationRuntime Reference - 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).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Host
Name 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).
- Organization
Name 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]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference String - 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.
- Service
Principal AzureCredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal interface{}Credential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal interface{}Id - The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
- Service
Uri 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.
- authentication
Type 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).
- deployment
Type 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.
- connect
Via IntegrationRuntime Reference - 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).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- host
Name 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).
- organization
Name 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,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - 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.
- service
Principal AzureCredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal ObjectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal ObjectId - The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
- service
Uri 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.
- authentication
Type any - The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
- deployment
Type any - The deployment type of the Common Data Service for Apps instance. 'Online' for Common Data Service for Apps Online and 'OnPremisesWithIfd' for Common Data Service for Apps on-premises with Ifd. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- domain any
- The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - 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 AzureCredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal anyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal anyId - The 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 string
- Version of the linked service.
- authentication_
type Any - The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
- deployment_
type Any - The deployment type of the Common Data Service for Apps instance. 'Online' for Common Data Service for Apps Online and 'OnPremisesWithIfd' for Common Data Service for Apps on-premises with Ifd. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - 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, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - 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_ Azurecredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service_
principal_ Anycredential_ type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service_
principal_ Anyid - The 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.
- authentication
Type Any - The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
- deployment
Type Any - The deployment type of the Common Data Service for Apps instance. 'Online' for Common Data Service for Apps Online and 'OnPremisesWithIfd' for Common Data Service for Apps on-premises with Ifd. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- domain Any
- The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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 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.
- service
Principal Property Map | Property MapCredential - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal AnyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal AnyId - The 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 String
- Version of the linked service.
CommonDataServiceForAppsLinkedServiceResponse, CommonDataServiceForAppsLinkedServiceResponseArgs
- Authentication
Type 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).
- Deployment
Type 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - 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).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Host
Name 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).
- Organization
Name 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.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - 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.
- Service
Principal Pulumi.Credential Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal objectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal objectId - The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
- Service
Uri 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.
- Authentication
Type 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).
- Deployment
Type 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.
- Connect
Via IntegrationRuntime Reference Response - 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).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Host
Name 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).
- Organization
Name 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]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - 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.
- Service
Principal AzureCredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal interface{}Credential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal interface{}Id - The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
- Service
Uri 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.
- authentication
Type 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).
- deployment
Type 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.
- connect
Via IntegrationRuntime Reference Response - 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).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- host
Name 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).
- organization
Name 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,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - 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.
- service
Principal AzureCredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal ObjectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal ObjectId - The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
- service
Uri 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.
- authentication
Type any - The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
- deployment
Type any - The deployment type of the Common Data Service for Apps instance. 'Online' for Common Data Service for Apps Online and 'OnPremisesWithIfd' for Common Data Service for Apps on-premises with Ifd. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- domain any
- The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - 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 AzureCredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal anyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal anyId - The 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 string
- Version of the linked service.
- authentication_
type Any - The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
- deployment_
type Any - The deployment type of the Common Data Service for Apps instance. 'Online' for Common Data Service for Apps Online and 'OnPremisesWithIfd' for Common Data Service for Apps on-premises with Ifd. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - 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, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - 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_ Azurecredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service_
principal_ Anycredential_ type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service_
principal_ Anyid - The 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.
- authentication
Type Any - The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
- deployment
Type Any - The deployment type of the Common Data Service for Apps instance. 'Online' for Common Data Service for Apps Online and 'OnPremisesWithIfd' for Common Data Service for Apps on-premises with Ifd. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- domain Any
- The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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 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.
- service
Principal Property Map | Property MapCredential - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal AnyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal AnyId - The 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 String
- Version of the linked service.
ConcurLinkedService, ConcurLinkedServiceArgs
- Client
Id object - Application client_id supplied by Concur App Management.
- Username object
- The user name that you use to access Concur Service.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Connection
Properties 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.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The password corresponding to the user name that you provided in the username field.
- Use
Encrypted objectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- Use
Host objectVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- Use
Peer objectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- Version string
- Version of the linked service.
- Client
Id interface{} - Application client_id supplied by Concur App Management.
- Username interface{}
- The user name that you use to access Concur Service.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Connection
Properties 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.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference String - The password corresponding to the user name that you provided in the username field.
- Use
Encrypted interface{}Endpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- Use
Host interface{}Verification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- Use
Peer interface{}Verification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- Version string
- Version of the linked service.
- client
Id Object - Application client_id supplied by Concur App Management.
- username Object
- The user name that you use to access Concur Service.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
Properties 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.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The password corresponding to the user name that you provided in the username field.
- use
Encrypted ObjectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host ObjectVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use
Peer ObjectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- version String
- Version of the linked service.
- client
Id any - Application client_id supplied by Concur App Management.
- username any
- The user name that you use to access Concur Service.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - 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 string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The password corresponding to the user name that you provided in the username field.
- use
Encrypted anyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host anyVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use
Peer anyVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- version string
- Version of the linked service.
- client_
id Any - Application client_id supplied by Concur App Management.
- username Any
- The user name that you use to access Concur Service.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - 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, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The password corresponding to the user name that you provided in the username field.
- use_
encrypted_ Anyendpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use_
host_ Anyverification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use_
peer_ Anyverification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- version str
- Version of the linked service.
- client
Id Any - Application client_id supplied by Concur App Management.
- username Any
- The user name that you use to access Concur Service.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - 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 String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The password corresponding to the user name that you provided in the username field.
- use
Encrypted AnyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host AnyVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use
Peer AnyVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- version String
- Version of the linked service.
ConcurLinkedServiceResponse, ConcurLinkedServiceResponseArgs
- Client
Id object - Application client_id supplied by Concur App Management.
- Username object
- The user name that you use to access Concur Service.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Connection
Properties 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.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The password corresponding to the user name that you provided in the username field.
- Use
Encrypted objectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- Use
Host objectVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- Use
Peer objectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- Version string
- Version of the linked service.
- Client
Id interface{} - Application client_id supplied by Concur App Management.
- Username interface{}
- The user name that you use to access Concur Service.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Connection
Properties 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.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - The password corresponding to the user name that you provided in the username field.
- Use
Encrypted interface{}Endpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- Use
Host interface{}Verification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- Use
Peer interface{}Verification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- Version string
- Version of the linked service.
- client
Id Object - Application client_id supplied by Concur App Management.
- username Object
- The user name that you use to access Concur Service.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
Properties 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.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password corresponding to the user name that you provided in the username field.
- use
Encrypted ObjectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host ObjectVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use
Peer ObjectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- version String
- Version of the linked service.
- client
Id any - Application client_id supplied by Concur App Management.
- username any
- The user name that you use to access Concur Service.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - 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 string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password corresponding to the user name that you provided in the username field.
- use
Encrypted anyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host anyVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use
Peer anyVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- version string
- Version of the linked service.
- client_
id Any - Application client_id supplied by Concur App Management.
- username Any
- The user name that you use to access Concur Service.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - 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, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password corresponding to the user name that you provided in the username field.
- use_
encrypted_ Anyendpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use_
host_ Anyverification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use_
peer_ Anyverification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- version str
- Version of the linked service.
- client
Id Any - Application client_id supplied by Concur App Management.
- username Any
- The user name that you use to access Concur Service.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - 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 String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The password corresponding to the user name that you provided in the username field.
- use
Encrypted AnyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host AnyVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use
Peer AnyVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- version String
- Version of the linked service.
CosmosDbConnectionMode, CosmosDbConnectionModeArgs
- Gateway
- Gateway
- Direct
- Direct
- Cosmos
Db Connection Mode Gateway - Gateway
- Cosmos
Db Connection Mode Direct - Direct
- Gateway
- Gateway
- Direct
- Direct
- Gateway
- Gateway
- Direct
- Direct
- GATEWAY
- Gateway
- DIRECT
- Direct
- "Gateway"
- Gateway
- "Direct"
- Direct
CosmosDbLinkedService, CosmosDbLinkedServiceArgs
- Account
Endpoint object - The endpoint of the Azure CosmosDB account. Type: string (or Expression with resultType string)
- Account
Key Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - 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.
- Azure
Cloud objectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Connection
Mode string | Pulumi.Azure Native. Data Factory. Cosmos Db Connection Mode - The connection mode used to access CosmosDB account. Type: string.
- Connection
String object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference - 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.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Service
Principal Pulumi.Credential Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal objectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string.
- Service
Principal objectId - 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.
- Account
Endpoint interface{} - The endpoint of the Azure CosmosDB account. Type: string (or Expression with resultType string)
- Account
Key AzureKey | SecureVault Secret Reference String - 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.
- Azure
Cloud interface{}Type - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Connection
Mode string | CosmosDb Connection Mode - The connection mode used to access CosmosDB account. Type: string.
- Connection
String interface{} - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Credential
Credential
Reference - 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.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Service
Principal AzureCredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal interface{}Credential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string.
- Service
Principal interface{}Id - 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.
- account
Endpoint Object - The endpoint of the Azure CosmosDB account. Type: string (or Expression with resultType string)
- account
Key AzureKey | SecureVault Secret Reference String - 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.
- azure
Cloud ObjectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
Mode String | CosmosDb Connection Mode - The connection mode used to access CosmosDB account. Type: string.
- connection
String Object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference - 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.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- service
Principal AzureCredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal ObjectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string.
- service
Principal ObjectId - 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.
- account
Endpoint any - The endpoint of the Azure CosmosDB account. Type: string (or Expression with resultType string)
- account
Key AzureKey | SecureVault Secret Reference String - 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.
- azure
Cloud anyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
Mode string | CosmosDb Connection Mode - The connection mode used to access CosmosDB account. Type: string.
- connection
String any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference - 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.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- service
Principal AzureCredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal anyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string.
- service
Principal anyId - 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 AzureKey | SecureVault Secret Reference String - 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_ Anytype - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- connection_
mode str | CosmosDb Connection Mode - The connection mode used to access CosmosDB account. Type: string.
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference - 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, Parameter
Specification] - Parameters for linked service.
- service_
principal_ Azurecredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service_
principal_ Anycredential_ type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string.
- service_
principal_ Anyid - 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.
- account
Endpoint Any - The endpoint of the Azure CosmosDB account. Type: string (or Expression with resultType string)
- account
Key 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.
- azure
Cloud AnyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect
Via Property Map - The integration runtime reference.
- connection
Mode String | "Gateway" | "Direct" - The connection mode used to access CosmosDB account. Type: string.
- connection
String 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.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- service
Principal Property Map | Property MapCredential - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal AnyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string.
- service
Principal AnyId - 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
- Account
Endpoint object - The endpoint of the Azure CosmosDB account. Type: string (or Expression with resultType string)
- Account
Key Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - 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.
- Azure
Cloud objectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Connection
Mode string - The connection mode used to access CosmosDB account. Type: string.
- Connection
String object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference Response - 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.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Service
Principal Pulumi.Credential Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal objectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string.
- Service
Principal objectId - 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.
- Account
Endpoint interface{} - The endpoint of the Azure CosmosDB account. Type: string (or Expression with resultType string)
- Account
Key AzureKey | SecureVault Secret Reference Response String Response - 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.
- Azure
Cloud interface{}Type - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Connection
Mode string - The connection mode used to access CosmosDB account. Type: string.
- Connection
String interface{} - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Credential
Credential
Reference Response - 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.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Service
Principal AzureCredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal interface{}Credential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string.
- Service
Principal interface{}Id - 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.
- account
Endpoint Object - The endpoint of the Azure CosmosDB account. Type: string (or Expression with resultType string)
- account
Key AzureKey | SecureVault Secret Reference Response String Response - 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.
- azure
Cloud ObjectType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
Mode String - The connection mode used to access CosmosDB account. Type: string.
- connection
String Object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference Response - 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.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- service
Principal AzureCredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal ObjectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string.
- service
Principal ObjectId - 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.
- account
Endpoint any - The endpoint of the Azure CosmosDB account. Type: string (or Expression with resultType string)
- account
Key AzureKey | SecureVault Secret Reference Response String Response - 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.
- azure
Cloud anyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
Mode string - The connection mode used to access CosmosDB account. Type: string.
- connection
String any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference Response - 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.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- service
Principal AzureCredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal anyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string.
- service
Principal anyId - 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 AzureKey | SecureVault Secret Reference Response String Response - 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_ Anytype - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- connection_
mode str - The connection mode used to access CosmosDB account. Type: string.
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- credential
Credential
Reference Response - 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, Parameter
Specification Response] - Parameters for linked service.
- service_
principal_ Azurecredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service_
principal_ Anycredential_ type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string.
- service_
principal_ Anyid - 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.
- account
Endpoint Any - The endpoint of the Azure CosmosDB account. Type: string (or Expression with resultType string)
- account
Key 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.
- azure
Cloud AnyType - Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
- connect
Via Property Map - The integration runtime reference.
- connection
Mode String - The connection mode used to access CosmosDB account. Type: string.
- connection
String 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.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- service
Principal Property Map | Property MapCredential - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal AnyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string.
- service
Principal AnyId - 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
- Connection
String object - The CosmosDB (MongoDB API) connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- Database object
- The name of the CosmosDB (MongoDB API) database that you want to access. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Is
Server objectVersion Above32 - 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.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Version string
- Version of the linked service.
- Connection
String interface{} - The CosmosDB (MongoDB API) connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- Database interface{}
- The name of the CosmosDB (MongoDB API) database that you want to access. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Is
Server interface{}Version Above32 - 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]Parameter
Specification - Parameters for linked service.
- Version string
- Version of the linked service.
- connection
String Object - The CosmosDB (MongoDB API) connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Object
- The name of the CosmosDB (MongoDB API) database that you want to access. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- is
Server ObjectVersion Above32 - 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,Parameter
Specification> - Parameters for linked service.
- version String
- Version of the linked service.
- connection
String any - The CosmosDB (MongoDB API) connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- database any
- The name of the CosmosDB (MongoDB API) database that you want to access. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- is
Server anyVersion Above32 - 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]: Parameter
Specification} - Parameters for linked service.
- version string
- Version of the linked service.
- connection_
string Any - The CosmosDB (MongoDB API) connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Any
- The name of the CosmosDB (MongoDB API) database that you want to access. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- is_
server_ Anyversion_ above32 - 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, Parameter
Specification] - Parameters for linked service.
- version str
- Version of the linked service.
- connection
String Any - The CosmosDB (MongoDB API) connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Any
- The name of the CosmosDB (MongoDB API) database that you want to access. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- is
Server AnyVersion Above32 - 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
- Connection
String object - The CosmosDB (MongoDB API) connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- Database object
- The name of the CosmosDB (MongoDB API) database that you want to access. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Is
Server objectVersion Above32 - 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.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Version string
- Version of the linked service.
- Connection
String interface{} - The CosmosDB (MongoDB API) connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- Database interface{}
- The name of the CosmosDB (MongoDB API) database that you want to access. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Is
Server interface{}Version Above32 - 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]Parameter
Specification Response - Parameters for linked service.
- Version string
- Version of the linked service.
- connection
String Object - The CosmosDB (MongoDB API) connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Object
- The name of the CosmosDB (MongoDB API) database that you want to access. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- is
Server ObjectVersion Above32 - 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,Parameter
Specification Response> - Parameters for linked service.
- version String
- Version of the linked service.
- connection
String any - The CosmosDB (MongoDB API) connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- database any
- The name of the CosmosDB (MongoDB API) database that you want to access. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- is
Server anyVersion Above32 - 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]: Parameter
Specification Response} - Parameters for linked service.
- version string
- Version of the linked service.
- connection_
string Any - The CosmosDB (MongoDB API) connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Any
- The name of the CosmosDB (MongoDB API) database that you want to access. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- is_
server_ Anyversion_ above32 - 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, Parameter
Specification Response] - Parameters for linked service.
- version str
- Version of the linked service.
- connection
String Any - The CosmosDB (MongoDB API) connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Any
- The name of the CosmosDB (MongoDB API) database that you want to access. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- is
Server AnyVersion Above32 - 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Connection
String object - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Cred
String Pulumi.Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference - The Azure key vault secret reference of credString in connection string.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Version string
- Version of the linked service.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Connection
String interface{} - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Cred
String AzureKey Vault Secret Reference - The Azure key vault secret reference of credString in connection string.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Version string
- Version of the linked service.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String Object - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- cred
String AzureKey Vault Secret Reference - The Azure key vault secret reference of credString in connection string.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- version String
- Version of the linked service.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String any - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- cred
String AzureKey Vault Secret Reference - The Azure key vault secret reference of credString in connection string.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- version string
- Version of the linked service.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- connection_
string Any - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- cred_
string AzureKey Vault Secret Reference - 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, Parameter
Specification] - 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.
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- cred
String Property Map - The Azure key vault secret reference of credString in connection string.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- version String
- Version of the linked service.
CouchbaseLinkedServiceResponse, CouchbaseLinkedServiceResponseArgs
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Connection
String object - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Cred
String Pulumi.Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response - The Azure key vault secret reference of credString in connection string.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Version string
- Version of the linked service.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Connection
String interface{} - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Cred
String AzureKey Vault Secret Reference Response - The Azure key vault secret reference of credString in connection string.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Version string
- Version of the linked service.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String Object - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- cred
String AzureKey Vault Secret Reference Response - The Azure key vault secret reference of credString in connection string.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- version String
- Version of the linked service.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String any - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- cred
String AzureKey Vault Secret Reference Response - The Azure key vault secret reference of credString in connection string.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- version string
- Version of the linked service.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- connection_
string Any - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- cred_
string AzureKey Vault Secret Reference Response - 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, Parameter
Specification Response] - 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.
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- cred
String Property Map - The Azure key vault secret reference of credString in connection string.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- version String
- Version of the linked service.
CredentialReference, CredentialReferenceArgs
- Reference
Name string - Reference credential name.
- Type
string | Pulumi.
Azure Native. Data Factory. Credential Reference Type - Credential reference type.
- Reference
Name string - Reference credential name.
- Type
string | Credential
Reference Type - Credential reference type.
- reference
Name String - Reference credential name.
- type
String | Credential
Reference Type - Credential reference type.
- reference
Name string - Reference credential name.
- type
string | Credential
Reference Type - Credential reference type.
- reference_
name str - Reference credential name.
- type
str | Credential
Reference Type - Credential reference type.
- reference
Name String - Reference credential name.
- type
String | "Credential
Reference" - Credential reference type.
CredentialReferenceResponse, CredentialReferenceResponseArgs
- Reference
Name string - Reference credential name.
- Type string
- Credential reference type.
- Reference
Name string - Reference credential name.
- Type string
- Credential reference type.
- reference
Name String - Reference credential name.
- type String
- Credential reference type.
- reference
Name string - Reference credential name.
- type string
- Credential reference type.
- reference_
name str - Reference credential name.
- type str
- Credential reference type.
- reference
Name String - Reference credential name.
- type String
- Credential reference type.
CredentialReferenceType, CredentialReferenceTypeArgs
- Credential
Reference - CredentialReference
- Credential
Reference Type Credential Reference - CredentialReference
- Credential
Reference - CredentialReference
- Credential
Reference - CredentialReference
- CREDENTIAL_REFERENCE
- CredentialReference
- "Credential
Reference" - CredentialReference
CustomDataSourceLinkedService, CustomDataSourceLinkedServiceArgs
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Version string
- Version of the linked service.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Version string
- Version of the linked service.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- version String
- Version of the linked service.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- version string
- Version of the linked service.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- version str
- Version of the linked service.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- parameters Map<Property Map>
- Parameters for linked service.
- version String
- Version of the linked service.
CustomDataSourceLinkedServiceResponse, CustomDataSourceLinkedServiceResponseArgs
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Version string
- Version of the linked service.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Version string
- Version of the linked service.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- version String
- Version of the linked service.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- version string
- Version of the linked service.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- version str
- Version of the linked service.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- parameters Map<Property Map>
- Parameters for linked service.
- version String
- Version of the linked service.
DataworldLinkedService, DataworldLinkedServiceArgs
- Api
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The api token for the Dataworld source.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Version string
- Version of the linked service.
- Api
Token AzureKey | SecureVault Secret Reference String - The api token for the Dataworld source.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Version string
- Version of the linked service.
- api
Token AzureKey | SecureVault Secret Reference String - The api token for the Dataworld source.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- version String
- Version of the linked service.
- api
Token AzureKey | SecureVault Secret Reference String - The api token for the Dataworld source.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- version string
- Version of the linked service.
- api_
token AzureKey | SecureVault Secret Reference String - The api token for the Dataworld source.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- version str
- Version of the linked service.
- api
Token Property Map | Property Map - The api token for the Dataworld source.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- version String
- Version of the linked service.
DataworldLinkedServiceResponse, DataworldLinkedServiceResponseArgs
- Api
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The api token for the Dataworld source.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Version string
- Version of the linked service.
- Api
Token AzureKey | SecureVault Secret Reference Response String Response - The api token for the Dataworld source.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Version string
- Version of the linked service.
- api
Token AzureKey | SecureVault Secret Reference Response String Response - The api token for the Dataworld source.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- version String
- Version of the linked service.
- api
Token AzureKey | SecureVault Secret Reference Response String Response - The api token for the Dataworld source.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- version string
- Version of the linked service.
- api_
token AzureKey | SecureVault Secret Reference Response String Response - The api token for the Dataworld source.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- version str
- Version of the linked service.
- api
Token Property Map | Property Map - The api token for the Dataworld source.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- version String
- Version of the linked service.
Db2AuthenticationType, Db2AuthenticationTypeArgs
- Basic
- Basic
- Db2Authentication
Type Basic - 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.
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Db2Authentication Type - AuthenticationType to be used for connection. It is mutually exclusive with connectionString property.
- Certificate
Common objectName - Certificate Common Name when TLS is enabled. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Connection
String object - The connection string. It is mutually exclusive with 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.
- Encrypted
Credential 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.
- Package
Collection 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.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - 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.
- Authentication
Type string | Db2AuthenticationType - AuthenticationType to be used for connection. It is mutually exclusive with connectionString property.
- Certificate
Common interface{}Name - Certificate Common Name when TLS is enabled. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Connection
String interface{} - The connection string. It is mutually exclusive with 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.
- Encrypted
Credential 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.
- Package
Collection 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]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference String - 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.
- authentication
Type String | Db2AuthenticationType - AuthenticationType to be used for connection. It is mutually exclusive with connectionString property.
- certificate
Common ObjectName - Certificate Common Name when TLS is enabled. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String Object - The connection string. It is mutually exclusive with 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.
- encrypted
Credential 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.
- package
Collection 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,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - 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.
- authentication
Type string | Db2AuthenticationType - AuthenticationType to be used for connection. It is mutually exclusive with connectionString property.
- certificate
Common anyName - Certificate Common Name when TLS is enabled. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String any - The connection string. It is mutually exclusive with 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.
- encrypted
Credential 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.
- 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
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - 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_ Anyname - Certificate Common Name when TLS is enabled. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- connection_
string Any - The connection string. It is mutually exclusive with 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, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - 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.
- authentication
Type String | "Basic" - AuthenticationType to be used for connection. It is mutually exclusive with connectionString property.
- certificate
Common AnyName - Certificate Common Name when TLS is enabled. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - The connection string. It is mutually exclusive with 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.
- encrypted
Credential 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.
- 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 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.
- Authentication
Type string - AuthenticationType to be used for connection. It is mutually exclusive with connectionString property.
- Certificate
Common objectName - Certificate Common Name when TLS is enabled. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Connection
String object - The connection string. It is mutually exclusive with 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.
- Encrypted
Credential 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.
- Package
Collection 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.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - 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.
- Authentication
Type string - AuthenticationType to be used for connection. It is mutually exclusive with connectionString property.
- Certificate
Common interface{}Name - Certificate Common Name when TLS is enabled. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Connection
String interface{} - The connection string. It is mutually exclusive with 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.
- Encrypted
Credential 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.
- Package
Collection 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]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - 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.
- authentication
Type String - AuthenticationType to be used for connection. It is mutually exclusive with connectionString property.
- certificate
Common ObjectName - Certificate Common Name when TLS is enabled. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String Object - The connection string. It is mutually exclusive with 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.
- encrypted
Credential 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.
- package
Collection 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,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - 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.
- authentication
Type string - AuthenticationType to be used for connection. It is mutually exclusive with connectionString property.
- certificate
Common anyName - Certificate Common Name when TLS is enabled. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String any - The connection string. It is mutually exclusive with 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.
- encrypted
Credential 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.
- 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
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - 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_ Anyname - Certificate Common Name when TLS is enabled. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- connection_
string Any - The connection string. It is mutually exclusive with 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, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - 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.
- authentication
Type String - AuthenticationType to be used for connection. It is mutually exclusive with connectionString property.
- certificate
Common AnyName - Certificate Common Name when TLS is enabled. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - The connection string. It is mutually exclusive with 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.
- encrypted
Credential 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.
- 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 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Connection
String object - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Pwd
Pulumi.
Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference - 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.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Connection
String interface{} - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Pwd
Azure
Key Vault Secret Reference - 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.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String Object - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- pwd
Azure
Key Vault Secret Reference - 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.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String any - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- pwd
Azure
Key Vault Secret Reference - 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 IntegrationRuntime Reference - 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, Parameter
Specification] - Parameters for linked service.
- pwd
Azure
Key Vault Secret Reference - 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.
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Connection
String object - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Pwd
Pulumi.
Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response - 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.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Connection
String interface{} - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Pwd
Azure
Key Vault Secret Reference Response - 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.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String Object - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- pwd
Azure
Key Vault Secret Reference Response - 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.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String any - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- pwd
Azure
Key Vault Secret Reference Response - 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 IntegrationRuntime Reference Response - 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, Parameter
Specification Response] - Parameters for linked service.
- pwd
Azure
Key Vault Secret Reference Response - 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.
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- pwd Property Map
- The Azure key vault secret reference of password in connection string.
- version String
- Version of the linked service.
DynamicsAXLinkedService, DynamicsAXLinkedServiceArgs
- Aad
Resource objectId - Specify the resource you are requesting authorization. Type: string (or Expression with resultType string).
- Service
Principal objectId - Specify the application's client ID. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - Specify the application's key. Mark this field as a SecureString to store it securely in Data Factory, or reference a secret stored in Azure Key Vault. Type: string (or Expression with resultType string).
- Tenant object
- Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. Type: string (or Expression with resultType string).
- Url object
- The Dynamics AX (or Dynamics 365 Finance and Operations) instance OData endpoint.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Version string
- Version of the linked service.
- Aad
Resource interface{}Id - Specify the resource you are requesting authorization. Type: string (or Expression with resultType string).
- Service
Principal interface{}Id - Specify the application's client ID. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference String - Specify the application's key. Mark this field as a SecureString to store it securely in Data Factory, or reference a secret stored in Azure Key Vault. Type: string (or Expression with resultType string).
- Tenant interface{}
- Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. Type: string (or Expression with resultType string).
- Url interface{}
- The Dynamics AX (or Dynamics 365 Finance and Operations) instance OData endpoint.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Version string
- Version of the linked service.
- aad
Resource ObjectId - Specify the resource you are requesting authorization. Type: string (or Expression with resultType string).
- service
Principal ObjectId - Specify the application's client ID. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - Specify the application's key. Mark this field as a SecureString to store it securely in Data Factory, or reference a secret stored in Azure Key Vault. Type: string (or Expression with resultType string).
- tenant Object
- Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. Type: string (or Expression with resultType string).
- url Object
- The Dynamics AX (or Dynamics 365 Finance and Operations) instance OData endpoint.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- version String
- Version of the linked service.
- aad
Resource anyId - Specify the resource you are requesting authorization. Type: string (or Expression with resultType string).
- service
Principal anyId - Specify the application's client ID. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - Specify the application's key. Mark this field as a SecureString to store it securely in Data Factory, or reference a secret stored in Azure Key Vault. Type: string (or Expression with resultType string).
- tenant any
- Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. Type: string (or Expression with resultType string).
- url any
- The Dynamics AX (or Dynamics 365 Finance and Operations) instance OData endpoint.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- version string
- Version of the linked service.
- aad_
resource_ Anyid - Specify the resource you are requesting authorization. Type: string (or Expression with resultType string).
- service_
principal_ Anyid - Specify the application's client ID. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference String - Specify the application's key. Mark this field as a SecureString to store it securely in Data Factory, or reference a secret stored in Azure Key Vault. Type: string (or Expression with resultType string).
- tenant Any
- Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. Type: string (or Expression with resultType string).
- url Any
- The Dynamics AX (or Dynamics 365 Finance and Operations) instance OData endpoint.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- version str
- Version of the linked service.
- aad
Resource AnyId - Specify the resource you are requesting authorization. Type: string (or Expression with resultType string).
- service
Principal AnyId - Specify the application's client ID. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - Specify the application's key. Mark this field as a SecureString to store it securely in Data Factory, or reference a secret stored in Azure Key Vault. Type: string (or Expression with resultType string).
- tenant Any
- Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. Type: string (or Expression with resultType string).
- url Any
- The Dynamics AX (or Dynamics 365 Finance and Operations) instance OData endpoint.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- version String
- Version of the linked service.
DynamicsAXLinkedServiceResponse, DynamicsAXLinkedServiceResponseArgs
- Aad
Resource objectId - Specify the resource you are requesting authorization. Type: string (or Expression with resultType string).
- Service
Principal objectId - Specify the application's client ID. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - Specify the application's key. Mark this field as a SecureString to store it securely in Data Factory, or reference a secret stored in Azure Key Vault. Type: string (or Expression with resultType string).
- Tenant object
- Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. Type: string (or Expression with resultType string).
- Url object
- The Dynamics AX (or Dynamics 365 Finance and Operations) instance OData endpoint.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Version string
- Version of the linked service.
- Aad
Resource interface{}Id - Specify the resource you are requesting authorization. Type: string (or Expression with resultType string).
- Service
Principal interface{}Id - Specify the application's client ID. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - Specify the application's key. Mark this field as a SecureString to store it securely in Data Factory, or reference a secret stored in Azure Key Vault. Type: string (or Expression with resultType string).
- Tenant interface{}
- Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. Type: string (or Expression with resultType string).
- Url interface{}
- The Dynamics AX (or Dynamics 365 Finance and Operations) instance OData endpoint.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Version string
- Version of the linked service.
- aad
Resource ObjectId - Specify the resource you are requesting authorization. Type: string (or Expression with resultType string).
- service
Principal ObjectId - Specify the application's client ID. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - Specify the application's key. Mark this field as a SecureString to store it securely in Data Factory, or reference a secret stored in Azure Key Vault. Type: string (or Expression with resultType string).
- tenant Object
- Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. Type: string (or Expression with resultType string).
- url Object
- The Dynamics AX (or Dynamics 365 Finance and Operations) instance OData endpoint.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- version String
- Version of the linked service.
- aad
Resource anyId - Specify the resource you are requesting authorization. Type: string (or Expression with resultType string).
- service
Principal anyId - Specify the application's client ID. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - Specify the application's key. Mark this field as a SecureString to store it securely in Data Factory, or reference a secret stored in Azure Key Vault. Type: string (or Expression with resultType string).
- tenant any
- Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. Type: string (or Expression with resultType string).
- url any
- The Dynamics AX (or Dynamics 365 Finance and Operations) instance OData endpoint.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- version string
- Version of the linked service.
- aad_
resource_ Anyid - Specify the resource you are requesting authorization. Type: string (or Expression with resultType string).
- service_
principal_ Anyid - Specify the application's client ID. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference Response String Response - Specify the application's key. Mark this field as a SecureString to store it securely in Data Factory, or reference a secret stored in Azure Key Vault. Type: string (or Expression with resultType string).
- tenant Any
- Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. Type: string (or Expression with resultType string).
- url Any
- The Dynamics AX (or Dynamics 365 Finance and Operations) instance OData endpoint.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- version str
- Version of the linked service.
- aad
Resource AnyId - Specify the resource you are requesting authorization. Type: string (or Expression with resultType string).
- service
Principal AnyId - Specify the application's client ID. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - Specify the application's key. Mark this field as a SecureString to store it securely in Data Factory, or reference a secret stored in Azure Key Vault. Type: string (or Expression with resultType string).
- tenant Any
- Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. Type: string (or Expression with resultType string).
- url Any
- The Dynamics AX (or Dynamics 365 Finance and Operations) instance OData endpoint.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- version String
- Version of the linked service.
DynamicsCrmLinkedService, DynamicsCrmLinkedServiceArgs
- Authentication
Type 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).
- Deployment
Type 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference - The credential reference containing authentication information.
- Description string
- Linked service description.
- Domain object
- The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Host
Name 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).
- Organization
Name 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.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - 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.
- Service
Principal Pulumi.Credential Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal objectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal objectId - The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
- Service
Uri 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.
- Authentication
Type 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).
- Deployment
Type 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.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Credential
Credential
Reference - 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).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Host
Name 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).
- Organization
Name 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]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference String - 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.
- Service
Principal AzureCredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal interface{}Credential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal interface{}Id - The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
- Service
Uri 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.
- authentication
Type 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).
- deployment
Type 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.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - 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).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- host
Name 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).
- organization
Name 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,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - 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.
- service
Principal AzureCredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal ObjectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal ObjectId - The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
- service
Uri 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.
- authentication
Type any - The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
- deployment
Type any - The deployment type of the Dynamics CRM instance. 'Online' for Dynamics CRM Online and 'OnPremisesWithIfd' for Dynamics CRM on-premises with Ifd. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description string
- Linked service description.
- domain any
- The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - 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 AzureCredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal anyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal anyId - The 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 string
- Version of the linked service.
- authentication_
type Any - The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
- deployment_
type Any - The deployment type of the Dynamics CRM instance. 'Online' for Dynamics CRM Online and 'OnPremisesWithIfd' for Dynamics CRM on-premises with Ifd. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - 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, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - 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_ Azurecredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service_
principal_ Anycredential_ type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service_
principal_ Anyid - The 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.
- authentication
Type Any - The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
- deployment
Type Any - The deployment type of the Dynamics CRM instance. 'Online' for Dynamics CRM Online and 'OnPremisesWithIfd' for Dynamics CRM on-premises with Ifd. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- credential Property Map
- The credential reference containing authentication information.
- description String
- Linked service description.
- domain Any
- The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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 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.
- service
Principal Property Map | Property MapCredential - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal AnyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal AnyId - The 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 String
- Version of the linked service.
DynamicsCrmLinkedServiceResponse, DynamicsCrmLinkedServiceResponseArgs
- Authentication
Type 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).
- Deployment
Type 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference Response - The credential reference containing authentication information.
- Description string
- Linked service description.
- Domain object
- The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Host
Name 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).
- Organization
Name 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.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - 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.
- Service
Principal Pulumi.Credential Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal objectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal objectId - The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
- Service
Uri 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.
- Authentication
Type 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).
- Deployment
Type 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.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Credential
Credential
Reference Response - 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).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Host
Name 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).
- Organization
Name 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]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - 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.
- Service
Principal AzureCredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal interface{}Credential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal interface{}Id - The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
- Service
Uri 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.
- authentication
Type 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).
- deployment
Type 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.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - 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).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- host
Name 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).
- organization
Name 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,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - 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.
- service
Principal AzureCredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal ObjectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal ObjectId - The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
- service
Uri 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.
- authentication
Type any - The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
- deployment
Type any - The deployment type of the Dynamics CRM instance. 'Online' for Dynamics CRM Online and 'OnPremisesWithIfd' for Dynamics CRM on-premises with Ifd. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description string
- Linked service description.
- domain any
- The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - 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 AzureCredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal anyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal anyId - The 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 string
- Version of the linked service.
- authentication_
type Any - The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
- deployment_
type Any - The deployment type of the Dynamics CRM instance. 'Online' for Dynamics CRM Online and 'OnPremisesWithIfd' for Dynamics CRM on-premises with Ifd. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - 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, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - 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_ Azurecredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service_
principal_ Anycredential_ type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service_
principal_ Anyid - The 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.
- authentication
Type Any - The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
- deployment
Type Any - The deployment type of the Dynamics CRM instance. 'Online' for Dynamics CRM Online and 'OnPremisesWithIfd' for Dynamics CRM on-premises with Ifd. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- credential Property Map
- The credential reference containing authentication information.
- description String
- Linked service description.
- domain Any
- The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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 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.
- service
Principal Property Map | Property MapCredential - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal AnyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal AnyId - The 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 String
- Version of the linked service.
DynamicsLinkedService, DynamicsLinkedServiceArgs
- Authentication
Type 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).
- Deployment
Type 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference - The credential reference containing authentication information.
- Description string
- Linked service description.
- Domain object
- The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Host
Name 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).
- Organization
Name 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.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - 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.
- Service
Principal Pulumi.Credential Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal objectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal objectId - The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
- Service
Uri 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.
- Authentication
Type 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).
- Deployment
Type 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.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Credential
Credential
Reference - 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).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Host
Name 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).
- Organization
Name 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]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference String - 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.
- Service
Principal AzureCredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal interface{}Credential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal interface{}Id - The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
- Service
Uri 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.
- authentication
Type 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).
- deployment
Type 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.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - 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).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- host
Name 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).
- organization
Name 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,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - 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.
- service
Principal AzureCredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal ObjectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal ObjectId - The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
- service
Uri 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.
- authentication
Type any - The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
- deployment
Type any - The deployment type of the Dynamics instance. 'Online' for Dynamics Online and 'OnPremisesWithIfd' for Dynamics on-premises with Ifd. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description string
- Linked service description.
- domain any
- The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - 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 AzureCredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal anyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal anyId - The 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 string
- Version of the linked service.
- authentication_
type Any - The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
- deployment_
type Any - The deployment type of the Dynamics instance. 'Online' for Dynamics Online and 'OnPremisesWithIfd' for Dynamics on-premises with Ifd. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - 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, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - 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_ Azurecredential Key | SecureVault Secret Reference String - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service_
principal_ Anycredential_ type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service_
principal_ Anyid - The 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.
- authentication
Type Any - The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
- deployment
Type Any - The deployment type of the Dynamics instance. 'Online' for Dynamics Online and 'OnPremisesWithIfd' for Dynamics on-premises with Ifd. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- credential Property Map
- The credential reference containing authentication information.
- description String
- Linked service description.
- domain Any
- The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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 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.
- service
Principal Property Map | Property MapCredential - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal AnyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal AnyId - The 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 String
- Version of the linked service.
DynamicsLinkedServiceResponse, DynamicsLinkedServiceResponseArgs
- Authentication
Type 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).
- Deployment
Type 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference Response - The credential reference containing authentication information.
- Description string
- Linked service description.
- Domain object
- The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Host
Name 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).
- Organization
Name 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.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - 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.
- Service
Principal Pulumi.Credential Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal objectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal objectId - The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
- Service
Uri 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.
- Authentication
Type 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).
- Deployment
Type 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.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Credential
Credential
Reference Response - 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).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Host
Name 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).
- Organization
Name 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]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - 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.
- Service
Principal AzureCredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- Service
Principal interface{}Credential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- Service
Principal interface{}Id - The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
- Service
Uri 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.
- authentication
Type 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).
- deployment
Type 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.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - 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).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- host
Name 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).
- organization
Name 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,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - 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.
- service
Principal AzureCredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal ObjectCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal ObjectId - The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
- service
Uri 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.
- authentication
Type any - The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
- deployment
Type any - The deployment type of the Dynamics instance. 'Online' for Dynamics Online and 'OnPremisesWithIfd' for Dynamics on-premises with Ifd. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description string
- Linked service description.
- domain any
- The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - 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 AzureCredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal anyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal anyId - The 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 string
- Version of the linked service.
- authentication_
type Any - The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
- deployment_
type Any - The deployment type of the Dynamics instance. 'Online' for Dynamics Online and 'OnPremisesWithIfd' for Dynamics on-premises with Ifd. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - 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, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - 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_ Azurecredential Key | SecureVault Secret Reference Response String Response - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service_
principal_ Anycredential_ type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service_
principal_ Anyid - The 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.
- authentication
Type Any - The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
- deployment
Type Any - The deployment type of the Dynamics instance. 'Online' for Dynamics Online and 'OnPremisesWithIfd' for Dynamics on-premises with Ifd. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- credential Property Map
- The credential reference containing authentication information.
- description String
- Linked service description.
- domain Any
- The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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 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.
- service
Principal Property Map | Property MapCredential - The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
- service
Principal AnyCredential Type - The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
- service
Principal AnyId - The 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 String
- Version of the linked service.
EloquaLinkedService, EloquaLinkedServiceArgs
- Endpoint object
- The endpoint of the Eloqua server. (i.e. eloqua.example.com)
- Username object
- The site name and user name of your Eloqua account in the form: sitename/username. (i.e. Eloqua/Alice)
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The password corresponding to the user name.
- Use
Encrypted objectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- Use
Host objectVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- Use
Peer objectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- Version string
- Version of the linked service.
- Endpoint interface{}
- The endpoint of the Eloqua server. (i.e. eloqua.example.com)
- Username interface{}
- The site name and user name of your Eloqua account in the form: sitename/username. (i.e. Eloqua/Alice)
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference String - The password corresponding to the user name.
- Use
Encrypted interface{}Endpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- Use
Host interface{}Verification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- Use
Peer interface{}Verification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- Version string
- Version of the linked service.
- endpoint Object
- The endpoint of the Eloqua server. (i.e. eloqua.example.com)
- username Object
- The site name and user name of your Eloqua account in the form: sitename/username. (i.e. Eloqua/Alice)
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The password corresponding to the user name.
- use
Encrypted ObjectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host ObjectVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use
Peer ObjectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- version String
- Version of the linked service.
- endpoint any
- The endpoint of the Eloqua server. (i.e. eloqua.example.com)
- username any
- The site name and user name of your Eloqua account in the form: sitename/username. (i.e. Eloqua/Alice)
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The password corresponding to the user name.
- use
Encrypted anyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host anyVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use
Peer anyVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- version string
- Version of the linked service.
- endpoint Any
- The endpoint of the Eloqua server. (i.e. eloqua.example.com)
- username Any
- The site name and user name of your Eloqua account in the form: sitename/username. (i.e. Eloqua/Alice)
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The password corresponding to the user name.
- use_
encrypted_ Anyendpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use_
host_ Anyverification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use_
peer_ Anyverification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- version str
- Version of the linked service.
- endpoint Any
- The endpoint of the Eloqua server. (i.e. eloqua.example.com)
- username Any
- The site name and user name of your Eloqua account in the form: sitename/username. (i.e. Eloqua/Alice)
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The password corresponding to the user name.
- use
Encrypted AnyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host AnyVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use
Peer AnyVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- version String
- Version of the linked service.
EloquaLinkedServiceResponse, EloquaLinkedServiceResponseArgs
- Endpoint object
- The endpoint of the Eloqua server. (i.e. eloqua.example.com)
- Username object
- The site name and user name of your Eloqua account in the form: sitename/username. (i.e. Eloqua/Alice)
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The password corresponding to the user name.
- Use
Encrypted objectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- Use
Host objectVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- Use
Peer objectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- Version string
- Version of the linked service.
- Endpoint interface{}
- The endpoint of the Eloqua server. (i.e. eloqua.example.com)
- Username interface{}
- The site name and user name of your Eloqua account in the form: sitename/username. (i.e. Eloqua/Alice)
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - The password corresponding to the user name.
- Use
Encrypted interface{}Endpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- Use
Host interface{}Verification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- Use
Peer interface{}Verification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- Version string
- Version of the linked service.
- endpoint Object
- The endpoint of the Eloqua server. (i.e. eloqua.example.com)
- username Object
- The site name and user name of your Eloqua account in the form: sitename/username. (i.e. Eloqua/Alice)
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password corresponding to the user name.
- use
Encrypted ObjectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host ObjectVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use
Peer ObjectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- version String
- Version of the linked service.
- endpoint any
- The endpoint of the Eloqua server. (i.e. eloqua.example.com)
- username any
- The site name and user name of your Eloqua account in the form: sitename/username. (i.e. Eloqua/Alice)
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password corresponding to the user name.
- use
Encrypted anyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host anyVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use
Peer anyVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- version string
- Version of the linked service.
- endpoint Any
- The endpoint of the Eloqua server. (i.e. eloqua.example.com)
- username Any
- The site name and user name of your Eloqua account in the form: sitename/username. (i.e. Eloqua/Alice)
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password corresponding to the user name.
- use_
encrypted_ Anyendpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use_
host_ Anyverification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use_
peer_ Anyverification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- version str
- Version of the linked service.
- endpoint Any
- The endpoint of the Eloqua server. (i.e. eloqua.example.com)
- username Any
- The site name and user name of your Eloqua account in the form: sitename/username. (i.e. Eloqua/Alice)
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The password corresponding to the user name.
- use
Encrypted AnyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host AnyVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use
Peer AnyVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- version String
- Version of the linked service.
FileServerLinkedService, FileServerLinkedServiceArgs
- Host object
- Host name of the server. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - Password to logon the server.
- User
Id object - User ID to logon the server. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Host interface{}
- Host name of the server. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference String - Password to logon the server.
- User
Id interface{} - User ID to logon the server. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- host Object
- Host name of the server. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - Password to logon the server.
- user
Id Object - User ID to logon the server. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- host any
- Host name of the server. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - Password to logon the server.
- user
Id any - User ID to logon the server. Type: string (or Expression with resultType string).
- version string
- Version of the linked service.
- host Any
- Host name of the server. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - 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 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.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- Password to logon the server.
- user
Id Any - User ID to logon the server. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
FileServerLinkedServiceResponse, FileServerLinkedServiceResponseArgs
- Host object
- Host name of the server. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - Password to logon the server.
- User
Id object - User ID to logon the server. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Host interface{}
- Host name of the server. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - Password to logon the server.
- User
Id interface{} - User ID to logon the server. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- host Object
- Host name of the server. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - Password to logon the server.
- user
Id Object - User ID to logon the server. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- host any
- Host name of the server. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - Password to logon the server.
- user
Id any - User ID to logon the server. Type: string (or Expression with resultType string).
- version string
- Version of the linked service.
- host Any
- Host name of the server. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - 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 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.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- Password to logon the server.
- user
Id 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
- Ftp
Authentication Type Basic - Basic
- Ftp
Authentication Type Anonymous - Anonymous
- Basic
- Basic
- Anonymous
- Anonymous
- Basic
- Basic
- Anonymous
- Anonymous
- BASIC
- Basic
- ANONYMOUS
- Anonymous
- "Basic"
- Basic
- "Anonymous"
- Anonymous
FtpServerLinkedService, FtpServerLinkedServiceArgs
- Host object
- Host name of the FTP server. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Ftp Authentication Type - The authentication type to be used to connect to the FTP server.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Enable
Server objectCertificate Validation - 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 object - If true, connect to the FTP server over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - 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.
- User
Name object - Username to logon the FTP server. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Host interface{}
- Host name of the FTP server. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Authentication
Type string | FtpAuthentication Type - The authentication type to be used to connect to the FTP server.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Enable
Server interface{}Certificate Validation - 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 interface{} - If true, connect to the FTP server over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference String - 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.
- User
Name interface{} - Username to logon the FTP server. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- host Object
- Host name of the FTP server. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- authentication
Type String | FtpAuthentication Type - The authentication type to be used to connect to the FTP server.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- enable
Server ObjectCertificate Validation - 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 Object - If true, connect to the FTP server over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - 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.
- user
Name Object - Username to logon the FTP server. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- host any
- Host name of the FTP server. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- authentication
Type string | FtpAuthentication Type - The authentication type to be used to connect to the FTP server.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- enable
Server anyCertificate Validation - 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - 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 string
- Version of the linked service.
- host Any
- Host name of the FTP server. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication_
type str | FtpAuthentication Type - The authentication type to be used to connect to the FTP server.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- enable_
server_ Anycertificate_ validation - 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, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - 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 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.
- authentication
Type String | "Basic" | "Anonymous" - The authentication type to be used to connect to the FTP server.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- enable
Server AnyCertificate Validation - 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 String - The 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.
- user
Name Any - Username to logon the FTP server. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
FtpServerLinkedServiceResponse, FtpServerLinkedServiceResponseArgs
- Host object
- Host name of the FTP server. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Authentication
Type string - The authentication type to be used to connect to the FTP server.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Enable
Server objectCertificate Validation - 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 object - If true, connect to the FTP server over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - 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.
- User
Name object - Username to logon the FTP server. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Host interface{}
- Host name of the FTP server. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Authentication
Type string - The authentication type to be used to connect to the FTP server.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Enable
Server interface{}Certificate Validation - 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 interface{} - If true, connect to the FTP server over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - 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.
- User
Name interface{} - Username to logon the FTP server. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- host Object
- Host name of the FTP server. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- authentication
Type String - The authentication type to be used to connect to the FTP server.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- enable
Server ObjectCertificate Validation - 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 Object - If true, connect to the FTP server over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - 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.
- user
Name Object - Username to logon the FTP server. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- host any
- Host name of the FTP server. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- authentication
Type string - The authentication type to be used to connect to the FTP server.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- enable
Server anyCertificate Validation - 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - 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 string
- Version of the linked service.
- host Any
- Host name of the FTP server. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication_
type str - The authentication type to be used to connect to the FTP server.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- enable_
server_ Anycertificate_ validation - 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, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - 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 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.
- authentication
Type String - The authentication type to be used to connect to the FTP server.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- enable
Server AnyCertificate Validation - 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 String - The 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.
- user
Name Any - Username to logon the FTP server. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
GoogleAdWordsAuthenticationType, GoogleAdWordsAuthenticationTypeArgs
- Service
Authentication - ServiceAuthentication
- User
Authentication - UserAuthentication
- Google
Ad Words Authentication Type Service Authentication - ServiceAuthentication
- Google
Ad Words Authentication Type User Authentication - UserAuthentication
- Service
Authentication - ServiceAuthentication
- User
Authentication - UserAuthentication
- Service
Authentication - ServiceAuthentication
- User
Authentication - UserAuthentication
- SERVICE_AUTHENTICATION
- ServiceAuthentication
- USER_AUTHENTICATION
- UserAuthentication
- "Service
Authentication" - ServiceAuthentication
- "User
Authentication" - UserAuthentication
GoogleAdWordsLinkedService, GoogleAdWordsLinkedServiceArgs
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Google Ad Words Authentication Type - The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
- Client
Customer objectID - 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 object - The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
- Client
Secret Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The client secret of the google application used to acquire the refresh token.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Connection
Properties 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.
- Developer
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - 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).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Google
Ads objectApi Version - 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 objectPath - (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 objectID - 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.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Private
Key Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The private key that is used to authenticate the service account email address and can only be used on self-hosted IR.
- Refresh
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The refresh token obtained from Google for authorizing access to AdWords for UserAuthentication.
- Support
Legacy objectData Types - 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 objectPath - (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 objectTrust Store - (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.
- Authentication
Type string | GoogleAd Words Authentication Type - The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
- Client
Customer interface{}ID - 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 interface{} - The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
- Client
Secret AzureKey | SecureVault Secret Reference String - The client secret of the google application used to acquire the refresh token.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Connection
Properties 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.
- Developer
Token AzureKey | SecureVault Secret Reference String - 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).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Google
Ads interface{}Api Version - 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 interface{}Path - (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 interface{}ID - 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]Parameter
Specification - Parameters for linked service.
- Private
Key AzureKey | SecureVault Secret Reference String - The private key that is used to authenticate the service account email address and can only be used on self-hosted IR.
- Refresh
Token AzureKey | SecureVault Secret Reference String - The refresh token obtained from Google for authorizing access to AdWords for UserAuthentication.
- Support
Legacy interface{}Data Types - 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 interface{}Path - (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 interface{}Trust Store - (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.
- authentication
Type String | GoogleAd Words Authentication Type - The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
- client
Customer ObjectID - 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 Object - The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
- client
Secret AzureKey | SecureVault Secret Reference String - The client secret of the google application used to acquire the refresh token.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
Properties 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.
- developer
Token AzureKey | SecureVault Secret Reference String - 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).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- google
Ads ObjectApi Version - 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 ObjectPath - (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 ObjectID - 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,Parameter
Specification> - Parameters for linked service.
- private
Key AzureKey | SecureVault Secret Reference String - The private key that is used to authenticate the service account email address and can only be used on self-hosted IR.
- refresh
Token AzureKey | SecureVault Secret Reference String - The refresh token obtained from Google for authorizing access to AdWords for UserAuthentication.
- support
Legacy ObjectData Types - 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 ObjectPath - (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 ObjectTrust Store - (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.
- authentication
Type string | GoogleAd Words Authentication Type - The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
- client
Customer anyID - 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 AzureKey | SecureVault Secret Reference String - The client secret of the google application used to acquire the refresh token.
- connect
Via IntegrationRuntime Reference - 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 string
- Linked service description.
- developer
Token AzureKey | SecureVault Secret Reference String - 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- google
Ads anyApi Version - 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 anyPath - (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 anyID - 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]: Parameter
Specification} - Parameters for linked service.
- private
Key AzureKey | SecureVault Secret Reference String - The private key that is used to authenticate the service account email address and can only be used on self-hosted IR.
- refresh
Token AzureKey | SecureVault Secret Reference String - The refresh token obtained from Google for authorizing access to AdWords for UserAuthentication.
- support
Legacy anyData Types - 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 anyPath - (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 anyTrust Store - (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 | GoogleAd Words Authentication Type - The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
- client_
customer_ Anyid - 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 AzureKey | SecureVault Secret Reference String - The client secret of the google application used to acquire the refresh token.
- connect_
via IntegrationRuntime Reference - 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 AzureKey | SecureVault Secret Reference String - 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.
- google_
ads_ Anyapi_ version - 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_ Anypath - (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_ Anyid - 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, Parameter
Specification] - Parameters for linked service.
- private_
key AzureKey | SecureVault Secret Reference String - The private key that is used to authenticate the service account email address and can only be used on self-hosted IR.
- refresh_
token AzureKey | SecureVault Secret Reference String - The refresh token obtained from Google for authorizing access to AdWords for UserAuthentication.
- support_
legacy_ Anydata_ types - 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_ Anypath - (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_ Anytrust_ store - (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.
- authentication
Type String | "ServiceAuthentication" | "User Authentication" - The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
- client
Customer AnyID - 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 Property Map | Property Map - The client secret of the google application used to acquire the refresh token.
- connect
Via Property Map - 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 String
- Linked service description.
- developer
Token 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).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- google
Ads AnyApi Version - 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 AnyPath - (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 AnyID - 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.
- private
Key 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.
- refresh
Token Property Map | Property Map - The refresh token obtained from Google for authorizing access to AdWords for UserAuthentication.
- support
Legacy AnyData Types - 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 AnyPath - (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 AnyTrust Store - (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.
- Authentication
Type string - The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
- Client
Customer objectID - 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 object - The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
- Client
Secret Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The client secret of the google application used to acquire the refresh token.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Connection
Properties 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.
- Developer
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - 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).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Google
Ads objectApi Version - 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 objectPath - (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 objectID - 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.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Private
Key Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The private key that is used to authenticate the service account email address and can only be used on self-hosted IR.
- Refresh
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The refresh token obtained from Google for authorizing access to AdWords for UserAuthentication.
- Support
Legacy objectData Types - 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 objectPath - (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 objectTrust Store - (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.
- Authentication
Type string - The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
- Client
Customer interface{}ID - 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 interface{} - The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
- Client
Secret AzureKey | SecureVault Secret Reference Response String Response - The client secret of the google application used to acquire the refresh token.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Connection
Properties 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.
- Developer
Token AzureKey | SecureVault Secret Reference Response String Response - 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).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Google
Ads interface{}Api Version - 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 interface{}Path - (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 interface{}ID - 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]Parameter
Specification Response - Parameters for linked service.
- Private
Key AzureKey | SecureVault Secret Reference Response String Response - The private key that is used to authenticate the service account email address and can only be used on self-hosted IR.
- Refresh
Token AzureKey | SecureVault Secret Reference Response String Response - The refresh token obtained from Google for authorizing access to AdWords for UserAuthentication.
- Support
Legacy interface{}Data Types - 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 interface{}Path - (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 interface{}Trust Store - (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.
- authentication
Type String - The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
- client
Customer ObjectID - 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 Object - The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
- client
Secret AzureKey | SecureVault Secret Reference Response String Response - The client secret of the google application used to acquire the refresh token.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
Properties 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.
- developer
Token AzureKey | SecureVault Secret Reference Response String Response - 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).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- google
Ads ObjectApi Version - 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 ObjectPath - (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 ObjectID - 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,Parameter
Specification Response> - Parameters for linked service.
- private
Key AzureKey | SecureVault Secret Reference Response String Response - The private key that is used to authenticate the service account email address and can only be used on self-hosted IR.
- refresh
Token AzureKey | SecureVault Secret Reference Response String Response - The refresh token obtained from Google for authorizing access to AdWords for UserAuthentication.
- support
Legacy ObjectData Types - 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 ObjectPath - (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 ObjectTrust Store - (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.
- authentication
Type string - The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
- client
Customer anyID - 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 AzureKey | SecureVault Secret Reference Response String Response - The client secret of the google application used to acquire the refresh token.
- connect
Via IntegrationRuntime Reference Response - 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 string
- Linked service description.
- developer
Token AzureKey | SecureVault Secret Reference Response String Response - 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- google
Ads anyApi Version - 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 anyPath - (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 anyID - 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]: Parameter
Specification Response} - Parameters for linked service.
- private
Key AzureKey | SecureVault Secret Reference Response String Response - The private key that is used to authenticate the service account email address and can only be used on self-hosted IR.
- refresh
Token AzureKey | SecureVault Secret Reference Response String Response - The refresh token obtained from Google for authorizing access to AdWords for UserAuthentication.
- support
Legacy anyData Types - 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 anyPath - (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 anyTrust Store - (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_ Anyid - 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 AzureKey | SecureVault Secret Reference Response String Response - The client secret of the google application used to acquire the refresh token.
- connect_
via IntegrationRuntime Reference Response - 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 AzureKey | SecureVault Secret Reference Response String Response - 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.
- google_
ads_ Anyapi_ version - 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_ Anypath - (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_ Anyid - 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, Parameter
Specification Response] - Parameters for linked service.
- private_
key AzureKey | SecureVault Secret Reference Response String Response - The private key that is used to authenticate the service account email address and can only be used on self-hosted IR.
- refresh_
token AzureKey | SecureVault Secret Reference Response String Response - The refresh token obtained from Google for authorizing access to AdWords for UserAuthentication.
- support_
legacy_ Anydata_ types - 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_ Anypath - (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_ Anytrust_ store - (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.
- authentication
Type String - The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
- client
Customer AnyID - 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 Property Map | Property Map - The client secret of the google application used to acquire the refresh token.
- connect
Via Property Map - 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 String
- Linked service description.
- developer
Token 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).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- google
Ads AnyApi Version - 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 AnyPath - (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 AnyID - 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.
- private
Key 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.
- refresh
Token Property Map | Property Map - The refresh token obtained from Google for authorizing access to AdWords for UserAuthentication.
- support
Legacy AnyData Types - 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 AnyPath - (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 AnyTrust Store - (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
- Service
Authentication - ServiceAuthentication
- User
Authentication - UserAuthentication
- Google
Big Query Authentication Type Service Authentication - ServiceAuthentication
- Google
Big Query Authentication Type User Authentication - UserAuthentication
- Service
Authentication - ServiceAuthentication
- User
Authentication - UserAuthentication
- Service
Authentication - ServiceAuthentication
- User
Authentication - UserAuthentication
- SERVICE_AUTHENTICATION
- ServiceAuthentication
- USER_AUTHENTICATION
- UserAuthentication
- "Service
Authentication" - ServiceAuthentication
- "User
Authentication" - UserAuthentication
GoogleBigQueryLinkedService, GoogleBigQueryLinkedServiceArgs
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Google Big Query Authentication Type - The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
- Project object
- The default BigQuery project to query against. Type: string (or Expression with resultType string).
- Additional
Projects 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.
- Client
Id object - The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
- Client
Secret Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The client secret of the google application used to acquire the refresh token.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - 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).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Key
File objectPath - 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.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Refresh
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
- Request
Google objectDrive Scope - 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 objectPath - 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 objectTrust Store - 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 string | GoogleBig Query Authentication Type - The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
- Project interface{}
- The default BigQuery project to query against. Type: string (or Expression with resultType string).
- Additional
Projects 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.
- Client
Id interface{} - The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
- Client
Secret AzureKey | SecureVault Secret Reference String - The client secret of the google application used to acquire the refresh token.
- Connect
Via IntegrationRuntime Reference - 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).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Key
File interface{}Path - 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]Parameter
Specification - Parameters for linked service.
- Refresh
Token AzureKey | SecureVault Secret Reference String - The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
- Request
Google interface{}Drive Scope - 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 interface{}Path - 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 interface{}Trust Store - 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 String | GoogleBig Query Authentication Type - The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
- project Object
- The default BigQuery project to query against. Type: string (or Expression with resultType string).
- additional
Projects 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.
- client
Id Object - The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
- client
Secret AzureKey | SecureVault Secret Reference String - The client secret of the google application used to acquire the refresh token.
- connect
Via IntegrationRuntime Reference - 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).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- key
File ObjectPath - 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,Parameter
Specification> - Parameters for linked service.
- refresh
Token AzureKey | SecureVault Secret Reference String - The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
- request
Google ObjectDrive Scope - 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 ObjectPath - 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 ObjectTrust Store - 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 string | GoogleBig Query Authentication Type - The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
- project any
- The default BigQuery project to query against. Type: string (or Expression with resultType string).
- additional
Projects any - A comma-separated list of public BigQuery projects to access. Type: string (or Expression with resultType string).
- annotations 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 AzureKey | SecureVault Secret Reference String - The client secret of the google application used to acquire the refresh token.
- connect
Via IntegrationRuntime Reference - 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).
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- key
File anyPath - 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]: Parameter
Specification} - Parameters for linked service.
- refresh
Token AzureKey | SecureVault Secret Reference String - The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
- request
Google anyDrive Scope - 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 anyPath - 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 anyTrust Store - 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 str | GoogleBig Query Authentication Type - The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
- project Any
- The default BigQuery project to query against. Type: string (or Expression with resultType string).
- additional_
projects Any - A comma-separated list of public BigQuery projects to access. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- client_
id Any - The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
- client_
secret AzureKey | SecureVault Secret Reference String - The client secret of the google application used to acquire the refresh token.
- connect_
via IntegrationRuntime Reference - 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_ Anypath - 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, Parameter
Specification] - Parameters for linked service.
- refresh_
token AzureKey | SecureVault Secret Reference String - The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
- request_
google_ Anydrive_ scope - 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_ Anypath - 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_ Anytrust_ store - 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.
- authentication
Type String | "ServiceAuthentication" | "User Authentication" - The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
- project Any
- The default BigQuery project to query against. Type: string (or Expression with resultType string).
- additional
Projects Any - A comma-separated list of public BigQuery projects to access. Type: string (or Expression with resultType string).
- annotations List<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 Property Map | Property Map - The client secret of the google application used to acquire the refresh token.
- connect
Via 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).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- key
File AnyPath - 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.
- refresh
Token Property Map | Property Map - The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
- request
Google AnyDrive Scope - 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 AnyPath - 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 AnyTrust Store - 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
- Authentication
Type string - The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
- Project object
- The default BigQuery project to query against. Type: string (or Expression with resultType string).
- Additional
Projects 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.
- Client
Id object - The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
- Client
Secret Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The client secret of the google application used to acquire the refresh token.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - 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).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Key
File objectPath - 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.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Refresh
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
- Request
Google objectDrive Scope - 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 objectPath - 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 objectTrust Store - 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 string - The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
- Project interface{}
- The default BigQuery project to query against. Type: string (or Expression with resultType string).
- Additional
Projects 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.
- Client
Id interface{} - The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
- Client
Secret AzureKey | SecureVault Secret Reference Response String Response - The client secret of the google application used to acquire the refresh token.
- Connect
Via IntegrationRuntime Reference Response - 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).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Key
File interface{}Path - 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]Parameter
Specification Response - Parameters for linked service.
- Refresh
Token AzureKey | SecureVault Secret Reference Response String Response - The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
- Request
Google interface{}Drive Scope - 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 interface{}Path - 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 interface{}Trust Store - 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 String - The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
- project Object
- The default BigQuery project to query against. Type: string (or Expression with resultType string).
- additional
Projects 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.
- client
Id Object - The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
- client
Secret AzureKey | SecureVault Secret Reference Response String Response - The client secret of the google application used to acquire the refresh token.
- connect
Via IntegrationRuntime Reference Response - 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).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- key
File ObjectPath - 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,Parameter
Specification Response> - Parameters for linked service.
- refresh
Token AzureKey | SecureVault Secret Reference Response String Response - The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
- request
Google ObjectDrive Scope - 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 ObjectPath - 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 ObjectTrust Store - 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 string - The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
- project any
- The default BigQuery project to query against. Type: string (or Expression with resultType string).
- additional
Projects 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.
- 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 AzureKey | SecureVault Secret Reference Response String Response - The client secret of the google application used to acquire the refresh token.
- connect
Via IntegrationRuntime Reference Response - 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).
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- key
File anyPath - 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]: Parameter
Specification Response} - Parameters for linked service.
- refresh
Token AzureKey | SecureVault Secret Reference Response String Response - The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
- request
Google anyDrive Scope - 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 anyPath - 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 anyTrust Store - 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 str - The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
- project Any
- The default BigQuery project to query against. Type: string (or Expression with resultType string).
- additional_
projects Any - A comma-separated list of public BigQuery projects to access. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- client_
id Any - The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
- client_
secret AzureKey | SecureVault Secret Reference Response String Response - The client secret of the google application used to acquire the refresh token.
- connect_
via IntegrationRuntime Reference Response - 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_ Anypath - 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, Parameter
Specification Response] - Parameters for linked service.
- refresh_
token AzureKey | SecureVault Secret Reference Response String Response - The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
- request_
google_ Anydrive_ scope - 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_ Anypath - 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_ Anytrust_ store - 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.
- authentication
Type String - The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
- project Any
- The default BigQuery project to query against. Type: string (or Expression with resultType string).
- additional
Projects 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.
- 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 Property Map | Property Map - The client secret of the google application used to acquire the refresh token.
- connect
Via 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).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- key
File AnyPath - 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.
- refresh
Token Property Map | Property Map - The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
- request
Google AnyDrive Scope - 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 AnyPath - 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 AnyTrust Store - 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
- Service
Authentication - ServiceAuthentication
- User
Authentication - UserAuthentication
- Google
Big Query V2Authentication Type Service Authentication - ServiceAuthentication
- Google
Big Query V2Authentication Type User Authentication - UserAuthentication
- Service
Authentication - ServiceAuthentication
- User
Authentication - UserAuthentication
- Service
Authentication - ServiceAuthentication
- User
Authentication - UserAuthentication
- SERVICE_AUTHENTICATION
- ServiceAuthentication
- USER_AUTHENTICATION
- UserAuthentication
- "Service
Authentication" - ServiceAuthentication
- "User
Authentication" - UserAuthentication
GoogleBigQueryV2LinkedService, GoogleBigQueryV2LinkedServiceArgs
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Google Big Query V2Authentication Type - The OAuth 2.0 authentication mechanism used for authentication.
- Project
Id 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.
- Client
Id object - The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
- Client
Secret Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The client secret of the google application used to acquire the refresh token.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Key
File Pulumi.Content Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - 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.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Refresh
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
- Version string
- Version of the linked service.
- Authentication
Type string | GoogleBig Query V2Authentication Type - The OAuth 2.0 authentication mechanism used for authentication.
- Project
Id 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.
- Client
Id interface{} - The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
- Client
Secret AzureKey | SecureVault Secret Reference String - The client secret of the google application used to acquire the refresh token.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Key
File AzureContent Key | SecureVault Secret Reference String - 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]Parameter
Specification - Parameters for linked service.
- Refresh
Token AzureKey | SecureVault Secret Reference String - The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
- Version string
- Version of the linked service.
- authentication
Type String | GoogleBig Query V2Authentication Type - The OAuth 2.0 authentication mechanism used for authentication.
- project
Id 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.
- client
Id Object - The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
- client
Secret AzureKey | SecureVault Secret Reference String - The client secret of the google application used to acquire the refresh token.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- key
File AzureContent Key | SecureVault Secret Reference String - 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,Parameter
Specification> - Parameters for linked service.
- refresh
Token AzureKey | SecureVault Secret Reference String - The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
- version String
- Version of the linked service.
- authentication
Type string | GoogleBig Query V2Authentication Type - The OAuth 2.0 authentication mechanism used for authentication.
- project
Id any - The default BigQuery project id to query against. Type: string (or Expression with resultType string).
- annotations 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 AzureKey | SecureVault Secret Reference String - The client secret of the google application used to acquire the refresh token.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- key
File AzureContent Key | SecureVault Secret Reference String - 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]: Parameter
Specification} - Parameters for linked service.
- refresh
Token AzureKey | SecureVault Secret Reference String - The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
- version string
- Version of the linked service.
- authentication_
type str | GoogleBig Query V2Authentication Type - The OAuth 2.0 authentication mechanism used for authentication.
- project_
id Any - The default BigQuery project id to query against. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- client_
id Any - The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
- client_
secret AzureKey | SecureVault Secret Reference String - The client secret of the google application used to acquire the refresh token.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- key_
file_ Azurecontent Key | SecureVault Secret Reference String - 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, Parameter
Specification] - Parameters for linked service.
- refresh_
token AzureKey | SecureVault Secret Reference String - The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
- version str
- Version of the linked service.
- authentication
Type String | "ServiceAuthentication" | "User Authentication" - The OAuth 2.0 authentication mechanism used for authentication.
- project
Id Any - The default BigQuery project id to query against. Type: string (or Expression with resultType string).
- annotations List<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 Property Map | Property Map - The client secret of the google application used to acquire the refresh token.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- key
File Property Map | Property MapContent - 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.
- refresh
Token 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
- Authentication
Type string - The OAuth 2.0 authentication mechanism used for authentication.
- Project
Id 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.
- Client
Id object - The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
- Client
Secret Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The client secret of the google application used to acquire the refresh token.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Key
File Pulumi.Content Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - 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.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Refresh
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
- Version string
- Version of the linked service.
- Authentication
Type string - The OAuth 2.0 authentication mechanism used for authentication.
- Project
Id 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.
- Client
Id interface{} - The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
- Client
Secret AzureKey | SecureVault Secret Reference Response String Response - The client secret of the google application used to acquire the refresh token.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Key
File AzureContent Key | SecureVault Secret Reference Response String Response - 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]Parameter
Specification Response - Parameters for linked service.
- Refresh
Token AzureKey | SecureVault Secret Reference Response String Response - The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
- Version string
- Version of the linked service.
- authentication
Type String - The OAuth 2.0 authentication mechanism used for authentication.
- project
Id 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.
- client
Id Object - The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
- client
Secret AzureKey | SecureVault Secret Reference Response String Response - The client secret of the google application used to acquire the refresh token.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- key
File AzureContent Key | SecureVault Secret Reference Response String Response - 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,Parameter
Specification Response> - Parameters for linked service.
- refresh
Token AzureKey | SecureVault Secret Reference Response String Response - The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
- version String
- Version of the linked service.
- authentication
Type string - The OAuth 2.0 authentication mechanism used for authentication.
- project
Id any - The default BigQuery project id to query against. Type: string (or Expression with resultType string).
- annotations 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 AzureKey | SecureVault Secret Reference Response String Response - The client secret of the google application used to acquire the refresh token.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- key
File AzureContent Key | SecureVault Secret Reference Response String Response - 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]: Parameter
Specification Response} - Parameters for linked service.
- refresh
Token AzureKey | SecureVault Secret Reference Response String Response - The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
- version string
- Version of the linked service.
- authentication_
type str - The OAuth 2.0 authentication mechanism used for authentication.
- project_
id Any - The default BigQuery project id to query against. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- client_
id Any - The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
- client_
secret AzureKey | SecureVault Secret Reference Response String Response - The client secret of the google application used to acquire the refresh token.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- key_
file_ Azurecontent Key | SecureVault Secret Reference Response String Response - 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, Parameter
Specification Response] - Parameters for linked service.
- refresh_
token AzureKey | SecureVault Secret Reference Response String Response - The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
- version str
- Version of the linked service.
- authentication
Type String - The OAuth 2.0 authentication mechanism used for authentication.
- project
Id Any - The default BigQuery project id to query against. Type: string (or Expression with resultType string).
- annotations List<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 Property Map | Property Map - The client secret of the google application used to acquire the refresh token.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- key
File Property Map | Property MapContent - 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.
- refresh
Token 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
- Access
Key objectId - 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Secret
Access Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The secret access key of the Google Cloud Storage Identity and Access Management (IAM) user.
- Service
Url 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.
- Access
Key interface{}Id - 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.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Secret
Access AzureKey Key | SecureVault Secret Reference String - The secret access key of the Google Cloud Storage Identity and Access Management (IAM) user.
- Service
Url 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.
- access
Key ObjectId - 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.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- secret
Access AzureKey Key | SecureVault Secret Reference String - The secret access key of the Google Cloud Storage Identity and Access Management (IAM) user.
- service
Url 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.
- access
Key anyId - 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.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- secret
Access AzureKey Key | SecureVault Secret Reference String - The secret access key of the 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 string
- Version of the linked service.
- access_
key_ Anyid - 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 IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- secret_
access_ Azurekey Key | SecureVault Secret Reference String - The secret access key of the 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.
- access
Key AnyId - 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.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- secret
Access Property Map | Property MapKey - The secret access key of the 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 String
- Version of the linked service.
GoogleCloudStorageLinkedServiceResponse, GoogleCloudStorageLinkedServiceResponseArgs
- Access
Key objectId - 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Secret
Access Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The secret access key of the Google Cloud Storage Identity and Access Management (IAM) user.
- Service
Url 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.
- Access
Key interface{}Id - 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.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Secret
Access AzureKey Key | SecureVault Secret Reference Response String Response - The secret access key of the Google Cloud Storage Identity and Access Management (IAM) user.
- Service
Url 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.
- access
Key ObjectId - 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.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- secret
Access AzureKey Key | SecureVault Secret Reference Response String Response - The secret access key of the Google Cloud Storage Identity and Access Management (IAM) user.
- service
Url 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.
- access
Key anyId - 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.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- secret
Access AzureKey Key | SecureVault Secret Reference Response String Response - The secret access key of the 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 string
- Version of the linked service.
- access_
key_ Anyid - 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 IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- secret_
access_ Azurekey Key | SecureVault Secret Reference Response String Response - The secret access key of the 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.
- access
Key AnyId - 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.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- secret
Access Property Map | Property MapKey - The secret access key of the 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 String
- Version of the linked service.
GoogleSheetsLinkedService, GoogleSheetsLinkedServiceArgs
- Api
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The api token for the GoogleSheets source.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Version string
- Version of the linked service.
- Api
Token AzureKey | SecureVault Secret Reference String - The api token for the GoogleSheets source.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Version string
- Version of the linked service.
- api
Token AzureKey | SecureVault Secret Reference String - The api token for the GoogleSheets source.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- version String
- Version of the linked service.
- api
Token AzureKey | SecureVault Secret Reference String - The api token for the GoogleSheets source.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- version string
- Version of the linked service.
- api_
token AzureKey | SecureVault Secret Reference String - The api token for the GoogleSheets source.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- version str
- Version of the linked service.
- api
Token Property Map | Property Map - The api token for the GoogleSheets source.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- version String
- Version of the linked service.
GoogleSheetsLinkedServiceResponse, GoogleSheetsLinkedServiceResponseArgs
- Api
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The api token for the GoogleSheets source.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Version string
- Version of the linked service.
- Api
Token AzureKey | SecureVault Secret Reference Response String Response - The api token for the GoogleSheets source.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Version string
- Version of the linked service.
- api
Token AzureKey | SecureVault Secret Reference Response String Response - The api token for the GoogleSheets source.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- version String
- Version of the linked service.
- api
Token AzureKey | SecureVault Secret Reference Response String Response - The api token for the GoogleSheets source.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- version string
- Version of the linked service.
- api_
token AzureKey | SecureVault Secret Reference Response String Response - The api token for the GoogleSheets source.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- version str
- Version of the linked service.
- api
Token Property Map | Property Map - The api token for the GoogleSheets source.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- version String
- Version of the linked service.
GreenplumAuthenticationType, GreenplumAuthenticationTypeArgs
- Basic
- Basic
- Greenplum
Authentication Type Basic - Basic
- Basic
- Basic
- Basic
- Basic
- BASIC
- Basic
- "Basic"
- Basic
GreenplumLinkedService, GreenplumLinkedServiceArgs
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Greenplum Authentication Type - The authentication type to use. Type: string. Only used for V2.
- Command
Timeout 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. Only used for V2.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Connection
String object - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Connection
Timeout object - The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer. Only used for V2.
- Database object
- Database name for connection. Type: string. Only used for V2.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Host object
- Host name for connection. Type: string. Only used for V2.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Port object
- The port for the connection. Type: integer. Only used for V2.
- Pwd
Pulumi.
Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference - The Azure key vault secret reference of password in connection string.
- Ssl
Mode object - SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer. Only used for V2.
- Username object
- Username for authentication. Type: string. Only used for V2.
- Version string
- Version of the linked service.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Authentication
Type string | GreenplumAuthentication Type - The authentication type to use. Type: string. Only used for V2.
- Command
Timeout 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. Only used for V2.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Connection
String interface{} - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Connection
Timeout interface{} - The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer. Only used for V2.
- Database interface{}
- Database name for connection. Type: string. Only used for V2.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Host interface{}
- Host name for connection. Type: string. Only used for V2.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Port interface{}
- The port for the connection. Type: integer. Only used for V2.
- Pwd
Azure
Key Vault Secret Reference - The Azure key vault secret reference of password in connection string.
- Ssl
Mode interface{} - SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer. Only used for V2.
- Username interface{}
- Username for authentication. Type: string. Only used for V2.
- Version string
- Version of the linked service.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- authentication
Type String | GreenplumAuthentication Type - The authentication type to use. Type: string. Only used for V2.
- command
Timeout 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. Only used for V2.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String Object - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- connection
Timeout Object - The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer. Only used for V2.
- database Object
- Database name for connection. Type: string. Only used for V2.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- host Object
- Host name for connection. Type: string. Only used for V2.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- port Object
- The port for the connection. Type: integer. Only used for V2.
- pwd
Azure
Key Vault Secret Reference - The Azure key vault secret reference of password in connection string.
- ssl
Mode Object - SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer. Only used for V2.
- username Object
- Username for authentication. Type: string. Only used for V2.
- version String
- Version of the linked service.
- annotations any[]
- List of tags that can be used for describing the linked service.
- authentication
Type string | GreenplumAuthentication Type - The authentication type to use. Type: string. Only used for V2.
- 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. Only used for V2.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String any - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- 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. Only used for V2.
- database any
- Database name for connection. Type: string. Only used for V2.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- host any
- Host name for connection. Type: string. Only used for V2.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- port any
- The port for the connection. Type: integer. Only used for V2.
- pwd
Azure
Key Vault Secret Reference - The Azure key vault secret reference of password in connection 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. Only used for V2.
- username any
- Username for authentication. Type: string. Only used for V2.
- 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 | GreenplumAuthentication Type - The authentication type to use. Type: string. Only used for V2.
- 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. Only used for V2.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- connection_
string Any - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- 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. Only used for V2.
- database Any
- Database name for connection. Type: string. Only used for V2.
- description 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
- Host name for connection. Type: string. Only used for V2.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- port Any
- The port for the connection. Type: integer. Only used for V2.
- pwd
Azure
Key Vault Secret Reference - The Azure key vault secret reference of password in connection 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. Only used for V2.
- username Any
- Username for authentication. Type: string. Only used for V2.
- version str
- Version of the linked service.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- authentication
Type String | "Basic" - The authentication type to use. Type: string. Only used for V2.
- 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. Only used for V2.
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- 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. Only used for V2.
- database Any
- Database name for connection. Type: string. Only used for V2.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- host Any
- Host name for connection. Type: string. Only used for V2.
- parameters Map<Property Map>
- Parameters for linked service.
- port Any
- The port for the connection. Type: integer. Only used for V2.
- pwd Property Map
- The Azure key vault secret reference of password in connection 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. Only used for V2.
- username Any
- Username for authentication. Type: string. Only used for V2.
- version String
- Version of the linked service.
GreenplumLinkedServiceResponse, GreenplumLinkedServiceResponseArgs
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Authentication
Type string - The authentication type to use. Type: string. Only used for V2.
- Command
Timeout 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. Only used for V2.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Connection
String object - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Connection
Timeout object - The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer. Only used for V2.
- Database object
- Database name for connection. Type: string. Only used for V2.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Host object
- Host name for connection. Type: string. Only used for V2.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Port object
- The port for the connection. Type: integer. Only used for V2.
- Pwd
Pulumi.
Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection string.
- Ssl
Mode object - SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer. Only used for V2.
- Username object
- Username for authentication. Type: string. Only used for V2.
- Version string
- Version of the linked service.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Authentication
Type string - The authentication type to use. Type: string. Only used for V2.
- Command
Timeout 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. Only used for V2.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Connection
String interface{} - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Connection
Timeout interface{} - The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer. Only used for V2.
- Database interface{}
- Database name for connection. Type: string. Only used for V2.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Host interface{}
- Host name for connection. Type: string. Only used for V2.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Port interface{}
- The port for the connection. Type: integer. Only used for V2.
- Pwd
Azure
Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection string.
- Ssl
Mode interface{} - SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer. Only used for V2.
- Username interface{}
- Username for authentication. Type: string. Only used for V2.
- Version string
- Version of the linked service.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- authentication
Type String - The authentication type to use. Type: string. Only used for V2.
- command
Timeout 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. Only used for V2.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String Object - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- connection
Timeout Object - The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer. Only used for V2.
- database Object
- Database name for connection. Type: string. Only used for V2.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- host Object
- Host name for connection. Type: string. Only used for V2.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- port Object
- The port for the connection. Type: integer. Only used for V2.
- pwd
Azure
Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection string.
- ssl
Mode Object - SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer. Only used for V2.
- username Object
- Username for authentication. Type: string. Only used for V2.
- version String
- Version of the linked service.
- annotations any[]
- List of tags that can be used for describing the linked service.
- authentication
Type string - The authentication type to use. Type: string. Only used for V2.
- 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. Only used for V2.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String any - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- 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. Only used for V2.
- database any
- Database name for connection. Type: string. Only used for V2.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- host any
- Host name for connection. Type: string. Only used for V2.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- port any
- The port for the connection. Type: integer. Only used for V2.
- pwd
Azure
Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection 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. Only used for V2.
- username any
- Username for authentication. Type: string. Only used for V2.
- 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 use. Type: string. Only used for V2.
- 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. Only used for V2.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- connection_
string Any - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- 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. Only used for V2.
- database Any
- Database name for connection. Type: string. Only used for V2.
- description 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
- Host name for connection. Type: string. Only used for V2.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- port Any
- The port for the connection. Type: integer. Only used for V2.
- pwd
Azure
Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection 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. Only used for V2.
- username Any
- Username for authentication. Type: string. Only used for V2.
- version str
- Version of the linked service.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- authentication
Type String - The authentication type to use. Type: string. Only used for V2.
- 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. Only used for V2.
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- 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. Only used for V2.
- database Any
- Database name for connection. Type: string. Only used for V2.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- host Any
- Host name for connection. Type: string. Only used for V2.
- parameters Map<Property Map>
- Parameters for linked service.
- port Any
- The port for the connection. Type: integer. Only used for V2.
- pwd Property Map
- The Azure key vault secret reference of password in connection 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. Only used for V2.
- username Any
- Username for authentication. Type: string. Only used for V2.
- version String
- Version of the linked service.
HBaseAuthenticationType, HBaseAuthenticationTypeArgs
- Anonymous
- Anonymous
- Basic
- Basic
- HBase
Authentication Type Anonymous - Anonymous
- HBase
Authentication Type Basic - Basic
- Anonymous
- Anonymous
- Basic
- Basic
- Anonymous
- Anonymous
- Basic
- Basic
- ANONYMOUS
- Anonymous
- BASIC
- Basic
- "Anonymous"
- Anonymous
- "Basic"
- Basic
HBaseLinkedService, HBaseLinkedServiceArgs
- Authentication
Type string | Pulumi.Azure Native. Data Factory. HBase Authentication Type - The authentication mechanism to use to connect to the HBase server.
- Host object
- The IP address or host name of the HBase server. (i.e. 192.168.222.160)
- Allow
Host objectName CNMismatch - 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 objectSigned Server Cert - 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Enable
Ssl object - Specifies whether the connections to the server are encrypted using SSL. The default value is false.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Http
Path object - The partial URL corresponding to the HBase server. (i.e. /gateway/sandbox/hbase/version)
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The password 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.
- Trusted
Cert objectPath - 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.
- Authentication
Type string | HBaseAuthentication Type - The authentication mechanism to use to connect to the HBase server.
- Host interface{}
- The IP address or host name of the HBase server. (i.e. 192.168.222.160)
- Allow
Host interface{}Name CNMismatch - 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 interface{}Signed Server Cert - 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.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Enable
Ssl interface{} - Specifies whether the connections to the server are encrypted using SSL. The default value is false.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Http
Path interface{} - The partial URL corresponding to the HBase server. (i.e. /gateway/sandbox/hbase/version)
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference String - 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.
- Trusted
Cert interface{}Path - 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.
- authentication
Type String | HBaseAuthentication Type - The authentication mechanism to use to connect to the HBase server.
- host Object
- The IP address or host name of the HBase server. (i.e. 192.168.222.160)
- allow
Host ObjectName CNMismatch - 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 ObjectSigned Server Cert - 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.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- enable
Ssl Object - Specifies whether the connections to the server are encrypted using SSL. The default value is false.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- http
Path Object - The partial URL corresponding to the HBase server. (i.e. /gateway/sandbox/hbase/version)
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - 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.
- trusted
Cert ObjectPath - 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.
- authentication
Type string | HBaseAuthentication Type - The authentication mechanism to use to connect to the HBase server.
- host any
- The IP address or host name of the HBase server. (i.e. 192.168.222.160)
- allow
Host anyName CNMismatch - 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 anySigned Server Cert - 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.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- enable
Ssl any - Specifies whether the connections to the server are encrypted using SSL. The default value is false.
- encrypted
Credential string - 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
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - 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 anyPath - 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 str | HBaseAuthentication Type - The authentication mechanism to use to connect to the HBase server.
- host Any
- The IP address or host name of the HBase server. (i.e. 192.168.222.160)
- allow_
host_ Anyname_ cn_ mismatch - 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_ Anysigned_ server_ cert - 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 IntegrationRuntime Reference - 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, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - 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_ Anypath - 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.
- authentication
Type String | "Anonymous" | "Basic" - The authentication mechanism to use to connect to the HBase server.
- host Any
- The IP address or host name of the HBase server. (i.e. 192.168.222.160)
- allow
Host AnyName CNMismatch - 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 AnySigned Server Cert - 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.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- enable
Ssl Any - Specifies whether the connections to the server are encrypted using SSL. The default value is false.
- encrypted
Credential String - 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 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.
- trusted
Cert AnyPath - 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
- Authentication
Type string - The authentication mechanism to use to connect to the HBase server.
- Host object
- The IP address or host name of the HBase server. (i.e. 192.168.222.160)
- Allow
Host objectName CNMismatch - 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 objectSigned Server Cert - 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Enable
Ssl object - Specifies whether the connections to the server are encrypted using SSL. The default value is false.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Http
Path object - The partial URL corresponding to the HBase server. (i.e. /gateway/sandbox/hbase/version)
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The password 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.
- Trusted
Cert objectPath - 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.
- Authentication
Type string - The authentication mechanism to use to connect to the HBase server.
- Host interface{}
- The IP address or host name of the HBase server. (i.e. 192.168.222.160)
- Allow
Host interface{}Name CNMismatch - 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 interface{}Signed Server Cert - 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.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Enable
Ssl interface{} - Specifies whether the connections to the server are encrypted using SSL. The default value is false.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Http
Path interface{} - The partial URL corresponding to the HBase server. (i.e. /gateway/sandbox/hbase/version)
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - 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.
- Trusted
Cert interface{}Path - 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.
- authentication
Type String - The authentication mechanism to use to connect to the HBase server.
- host Object
- The IP address or host name of the HBase server. (i.e. 192.168.222.160)
- allow
Host ObjectName CNMismatch - 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 ObjectSigned Server Cert - 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.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- enable
Ssl Object - Specifies whether the connections to the server are encrypted using SSL. The default value is false.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- http
Path Object - The partial URL corresponding to the HBase server. (i.e. /gateway/sandbox/hbase/version)
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - 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.
- trusted
Cert ObjectPath - 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.
- authentication
Type string - The authentication mechanism to use to connect to the HBase server.
- host any
- The IP address or host name of the HBase server. (i.e. 192.168.222.160)
- allow
Host anyName CNMismatch - 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 anySigned Server Cert - 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.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- enable
Ssl any - Specifies whether the connections to the server are encrypted using SSL. The default value is false.
- encrypted
Credential string - 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
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - 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 anyPath - 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 str - The authentication mechanism to use to connect to the HBase server.
- host Any
- The IP address or host name of the HBase server. (i.e. 192.168.222.160)
- allow_
host_ Anyname_ cn_ mismatch - 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_ Anysigned_ server_ cert - 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 IntegrationRuntime Reference Response - 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, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - 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_ Anypath - 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.
- authentication
Type String - The authentication mechanism to use to connect to the HBase server.
- host Any
- The IP address or host name of the HBase server. (i.e. 192.168.222.160)
- allow
Host AnyName CNMismatch - 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 AnySigned Server Cert - 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.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- enable
Ssl Any - Specifies whether the connections to the server are encrypted using SSL. The default value is false.
- encrypted
Credential String - 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 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.
- trusted
Cert AnyPath - 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
- Cluster
Uri 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- File
System object - Specify the FileSystem if the main storage for the HDInsight is ADLS Gen2. Type: string (or Expression with resultType string).
- Hcatalog
Linked Pulumi.Service Name Azure Native. Data Factory. Inputs. Linked Service Reference - A reference to the Azure SQL linked service that points to the HCatalog database.
- Is
Esp objectEnabled - Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean.
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference - The Azure Storage linked service reference.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - HDInsight cluster password.
- User
Name object - HDInsight cluster user name. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Cluster
Uri 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.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- File
System interface{} - Specify the FileSystem if the main storage for the HDInsight is ADLS Gen2. Type: string (or Expression with resultType string).
- Hcatalog
Linked LinkedService Name Service Reference - A reference to the Azure SQL linked service that points to the HCatalog database.
- Is
Esp interface{}Enabled - Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean.
- Linked
Service LinkedName Service Reference - The Azure Storage linked service reference.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference String - HDInsight cluster password.
- User
Name interface{} - HDInsight cluster user name. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- cluster
Uri 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.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- file
System Object - Specify the FileSystem if the main storage for the HDInsight is ADLS Gen2. Type: string (or Expression with resultType string).
- hcatalog
Linked LinkedService Name Service Reference - A reference to the Azure SQL linked service that points to the HCatalog database.
- is
Esp ObjectEnabled - Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean.
- linked
Service LinkedName Service Reference - The Azure Storage linked service reference.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - HDInsight cluster password.
- user
Name Object - HDInsight cluster user name. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- cluster
Uri 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.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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 LinkedService Name Service Reference - A reference to the Azure SQL linked service that points to the HCatalog database.
- is
Esp anyEnabled - Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean.
- linked
Service LinkedName Service Reference - The Azure Storage linked service reference.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - HDInsight cluster password.
- user
Name any - HDInsight cluster user name. Type: string (or Expression with resultType string).
- version string
- Version of the linked service.
- cluster_
uri Any - HDInsight cluster URI. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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_ Linkedservice_ name Service Reference - A reference to the Azure SQL linked service that points to the HCatalog database.
- is_
esp_ Anyenabled - Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean.
- linked_
service_ Linkedname Service Reference - The Azure Storage linked service reference.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - HDInsight cluster password.
- user_
name Any - HDInsight cluster user name. Type: string (or Expression with resultType string).
- version str
- Version of the linked service.
- cluster
Uri 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.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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 Property MapService Name - A reference to the Azure SQL linked service that points to the HCatalog database.
- is
Esp AnyEnabled - Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean.
- linked
Service Property MapName - The Azure Storage linked service reference.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- HDInsight cluster password.
- user
Name Any - HDInsight cluster user name. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
HDInsightLinkedServiceResponse, HDInsightLinkedServiceResponseArgs
- Cluster
Uri 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- File
System object - Specify the FileSystem if the main storage for the HDInsight is ADLS Gen2. Type: string (or Expression with resultType string).
- Hcatalog
Linked Pulumi.Service Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - A reference to the Azure SQL linked service that points to the HCatalog database.
- Is
Esp objectEnabled - Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean.
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - The Azure Storage linked service reference.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - HDInsight cluster password.
- User
Name object - HDInsight cluster user name. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Cluster
Uri 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.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- File
System interface{} - Specify the FileSystem if the main storage for the HDInsight is ADLS Gen2. Type: string (or Expression with resultType string).
- Hcatalog
Linked LinkedService Name Service Reference Response - A reference to the Azure SQL linked service that points to the HCatalog database.
- Is
Esp interface{}Enabled - Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean.
- Linked
Service LinkedName Service Reference Response - The Azure Storage linked service reference.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - HDInsight cluster password.
- User
Name interface{} - HDInsight cluster user name. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- cluster
Uri 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.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- file
System Object - Specify the FileSystem if the main storage for the HDInsight is ADLS Gen2. Type: string (or Expression with resultType string).
- hcatalog
Linked LinkedService Name Service Reference Response - A reference to the Azure SQL linked service that points to the HCatalog database.
- is
Esp ObjectEnabled - Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean.
- linked
Service LinkedName Service Reference Response - The Azure Storage linked service reference.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - HDInsight cluster password.
- user
Name Object - HDInsight cluster user name. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- cluster
Uri 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.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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 LinkedService Name Service Reference Response - A reference to the Azure SQL linked service that points to the HCatalog database.
- is
Esp anyEnabled - Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean.
- linked
Service LinkedName Service Reference Response - The Azure Storage linked service reference.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - HDInsight cluster password.
- user
Name any - HDInsight cluster user name. Type: string (or Expression with resultType string).
- version string
- Version of the linked service.
- cluster_
uri Any - HDInsight cluster URI. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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_ Linkedservice_ name Service Reference Response - A reference to the Azure SQL linked service that points to the HCatalog database.
- is_
esp_ Anyenabled - Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean.
- linked_
service_ Linkedname Service Reference Response - The Azure Storage linked service reference.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - HDInsight cluster password.
- user_
name Any - HDInsight cluster user name. Type: string (or Expression with resultType string).
- version str
- Version of the linked service.
- cluster
Uri 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.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- 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 Property MapService Name - A reference to the Azure SQL linked service that points to the HCatalog database.
- is
Esp AnyEnabled - Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean.
- linked
Service Property MapName - The Azure Storage linked service reference.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- HDInsight cluster password.
- user
Name Any - HDInsight cluster user name. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
HDInsightOnDemandLinkedService, HDInsightOnDemandLinkedServiceArgs
- Cluster
Resource objectGroup - The resource group where the cluster belongs. Type: string (or Expression with resultType string).
- Cluster
Size object - Number of worker/data nodes in the cluster. Suggestion value: 4. Type: int (or Expression with resultType int).
- Host
Subscription objectId - The customer’s subscription to host the cluster. Type: string (or Expression with resultType string).
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference - Azure Storage linked service to be used by the on-demand cluster for storing and processing data.
- Tenant object
- The Tenant id/name to which the service principal belongs. Type: string (or Expression with resultType string).
- Time
To objectLive - 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 string
- Version of the linked service.
- Additional
Linked List<Pulumi.Service Names Azure Native. Data Factory. Inputs. Linked Service Reference> - 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.
- Cluster
Name objectPrefix - The prefix of cluster name, postfix will be distinct with timestamp. Type: string (or Expression with resultType string).
- Cluster
Password Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The password to access the cluster.
- Cluster
Ssh Pulumi.Password Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The password to SSH remotely connect cluster’s node (for Linux).
- Cluster
Ssh objectUser Name - The username to SSH remotely connect to cluster’s node (for Linux). Type: string (or Expression with resultType string).
- Cluster
Type object - The cluster type. Type: string (or Expression with resultType string).
- Cluster
User objectName - The username to access the cluster. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Core
Configuration object - Specifies the core configuration parameters (as in core-site.xml) for the HDInsight cluster to be created.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference - The credential reference containing authentication information.
- Data
Node objectSize - Specifies the size of the data node for the HDInsight cluster.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- HBase
Configuration object - Specifies the HBase configuration parameters (hbase-site.xml) for the HDInsight cluster.
- Hcatalog
Linked Pulumi.Service Name Azure Native. Data Factory. Inputs. Linked Service Reference - 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 object - Specifies the HDFS configuration parameters (hdfs-site.xml) for the HDInsight cluster.
- Head
Node objectSize - Specifies the size of the head node for the HDInsight cluster.
- Hive
Configuration object - Specifies the hive configuration parameters (hive-site.xml) for the HDInsight cluster.
- Map
Reduce objectConfiguration - Specifies the MapReduce configuration parameters (mapred-site.xml) for the HDInsight cluster.
- Oozie
Configuration object - Specifies the Oozie configuration parameters (oozie-site.xml) for the HDInsight cluster.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Script
Actions List<Pulumi.Azure Native. Data Factory. Inputs. Script Action> - 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 objectId - The service principal id for the hostSubscriptionId. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The key for the service principal id.
- Spark
Version object - The version of spark if the cluster type is 'spark'. Type: string (or Expression with resultType string).
- Storm
Configuration object - Specifies the Storm configuration parameters (storm-site.xml) for the HDInsight cluster.
- Subnet
Name 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).
- Virtual
Network objectId - 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 object - Specifies the Yarn configuration parameters (yarn-site.xml) for the HDInsight cluster.
- Zookeeper
Node objectSize - Specifies the size of the Zoo Keeper node for the HDInsight cluster.
- Cluster
Resource interface{}Group - The resource group where the cluster belongs. Type: string (or Expression with resultType string).
- Cluster
Size interface{} - Number of worker/data nodes in the cluster. Suggestion value: 4. Type: int (or Expression with resultType int).
- Host
Subscription interface{}Id - The customer’s subscription to host the cluster. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference - Azure Storage linked service to be used by the on-demand cluster for storing and processing data.
- Tenant interface{}
- The Tenant id/name to which the service principal belongs. Type: string (or Expression with resultType string).
- Time
To interface{}Live - 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 string
- Version of the linked service.
- Additional
Linked []LinkedService Names Service Reference - 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.
- Cluster
Name interface{}Prefix - The prefix of cluster name, postfix will be distinct with timestamp. Type: string (or Expression with resultType string).
- Cluster
Password AzureKey | SecureVault Secret Reference String - The password to access the cluster.
- Cluster
Ssh AzurePassword Key | SecureVault Secret Reference String - The password to SSH remotely connect cluster’s node (for Linux).
- Cluster
Ssh interface{}User Name - The username to SSH remotely connect to cluster’s node (for Linux). Type: string (or Expression with resultType string).
- Cluster
Type interface{} - The cluster type. Type: string (or Expression with resultType string).
- Cluster
User interface{}Name - The username to access the cluster. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Core
Configuration interface{} - Specifies the core configuration parameters (as in core-site.xml) for the HDInsight cluster to be created.
- Credential
Credential
Reference - The credential reference containing authentication information.
- Data
Node interface{}Size - Specifies the size of the data node for the HDInsight cluster.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- HBase
Configuration interface{} - Specifies the HBase configuration parameters (hbase-site.xml) for the HDInsight cluster.
- Hcatalog
Linked LinkedService Name Service Reference - 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 interface{} - Specifies the HDFS configuration parameters (hdfs-site.xml) for the HDInsight cluster.
- Head
Node interface{}Size - Specifies the size of the head node for the HDInsight cluster.
- Hive
Configuration interface{} - Specifies the hive configuration parameters (hive-site.xml) for the HDInsight cluster.
- Map
Reduce interface{}Configuration - Specifies the MapReduce configuration parameters (mapred-site.xml) for the HDInsight cluster.
- Oozie
Configuration interface{} - Specifies the Oozie configuration parameters (oozie-site.xml) for the HDInsight cluster.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Script
Actions []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 interface{}Id - The service principal id for the hostSubscriptionId. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference String - The key for the service principal id.
- Spark
Version interface{} - The version of spark if the cluster type is 'spark'. Type: string (or Expression with resultType string).
- Storm
Configuration interface{} - Specifies the Storm configuration parameters (storm-site.xml) for the HDInsight cluster.
- Subnet
Name 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).
- Virtual
Network interface{}Id - 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 interface{} - Specifies the Yarn configuration parameters (yarn-site.xml) for the HDInsight cluster.
- Zookeeper
Node interface{}Size - Specifies the size of the Zoo Keeper node for the HDInsight cluster.
- cluster
Resource ObjectGroup - The resource group where the cluster belongs. Type: string (or Expression with resultType string).
- cluster
Size Object - Number of worker/data nodes in the cluster. Suggestion value: 4. Type: int (or Expression with resultType int).
- host
Subscription ObjectId - The customer’s subscription to host the cluster. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference - Azure Storage linked service to be used by the on-demand cluster for storing and processing data.
- tenant Object
- The Tenant id/name to which the service principal belongs. Type: string (or Expression with resultType string).
- time
To ObjectLive - 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 String
- Version of the linked service.
- additional
Linked List<LinkedService Names Service Reference> - 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.
- cluster
Name ObjectPrefix - The prefix of cluster name, postfix will be distinct with timestamp. Type: string (or Expression with resultType string).
- cluster
Password AzureKey | SecureVault Secret Reference String - The password to access the cluster.
- cluster
Ssh AzurePassword Key | SecureVault Secret Reference String - The password to SSH remotely connect cluster’s node (for Linux).
- cluster
Ssh ObjectUser Name - The username to SSH remotely connect to cluster’s node (for Linux). Type: string (or Expression with resultType string).
- cluster
Type Object - The cluster type. Type: string (or Expression with resultType string).
- cluster
User ObjectName - The username to access the cluster. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- core
Configuration Object - Specifies the core configuration parameters (as in core-site.xml) for the HDInsight cluster to be created.
- credential
Credential
Reference - The credential reference containing authentication information.
- data
Node ObjectSize - Specifies the size of the data node for the HDInsight cluster.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- h
Base ObjectConfiguration - Specifies the HBase configuration parameters (hbase-site.xml) for the HDInsight cluster.
- hcatalog
Linked LinkedService Name Service Reference - 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 Object - Specifies the HDFS configuration parameters (hdfs-site.xml) for the HDInsight cluster.
- head
Node ObjectSize - Specifies the size of the head node for the HDInsight cluster.
- hive
Configuration Object - Specifies the hive configuration parameters (hive-site.xml) for the HDInsight cluster.
- map
Reduce ObjectConfiguration - Specifies the MapReduce configuration parameters (mapred-site.xml) for the HDInsight cluster.
- oozie
Configuration Object - Specifies the Oozie configuration parameters (oozie-site.xml) for the HDInsight cluster.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- script
Actions 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.
- service
Principal ObjectId - The service principal id for the hostSubscriptionId. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - The key for the service principal id.
- spark
Version Object - The version of spark if the cluster type is 'spark'. Type: string (or Expression with resultType string).
- storm
Configuration Object - Specifies the Storm configuration parameters (storm-site.xml) for the HDInsight cluster.
- subnet
Name 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).
- virtual
Network ObjectId - 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 Object - Specifies the Yarn configuration parameters (yarn-site.xml) for the HDInsight cluster.
- zookeeper
Node ObjectSize - Specifies the size of the Zoo Keeper node for the HDInsight cluster.
- cluster
Resource anyGroup - The resource group where the cluster belongs. Type: string (or Expression with resultType string).
- cluster
Size any - Number of worker/data nodes in the cluster. Suggestion value: 4. Type: int (or Expression with resultType int).
- host
Subscription anyId - The customer’s subscription to host the cluster. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference - Azure Storage linked service to be used by the on-demand cluster for storing and processing data.
- tenant any
- The Tenant id/name to which the service principal belongs. Type: string (or Expression with resultType string).
- time
To anyLive - 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 string
- Version of the linked service.
- additional
Linked LinkedService Names Service Reference[] - 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.
- cluster
Name anyPrefix - The prefix of cluster name, postfix will be distinct with timestamp. Type: string (or Expression with resultType string).
- cluster
Password AzureKey | SecureVault Secret Reference String - The password to access the cluster.
- cluster
Ssh AzurePassword Key | SecureVault Secret Reference String - The password to SSH remotely connect cluster’s node (for Linux).
- cluster
Ssh anyUser Name - 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 anyName - The username to access the cluster. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - 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
Credential
Reference - The credential reference containing authentication information.
- data
Node anySize - Specifies the size of the data node for the HDInsight cluster.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- h
Base anyConfiguration - Specifies the HBase configuration parameters (hbase-site.xml) for the HDInsight cluster.
- hcatalog
Linked LinkedService Name Service Reference - 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 anySize - 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 anyConfiguration - 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
{[key: string]: Parameter
Specification} - Parameters for linked service.
- script
Actions 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 anyId - The service principal id for the hostSubscriptionId. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - 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 anyId - 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 anySize - Specifies the size of the Zoo Keeper node for the HDInsight cluster.
- cluster_
resource_ Anygroup - The resource group where the cluster belongs. Type: string (or Expression with resultType string).
- cluster_
size Any - Number of worker/data nodes in the cluster. Suggestion value: 4. Type: int (or Expression with resultType int).
- host_
subscription_ Anyid - The customer’s subscription to host the cluster. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference - Azure Storage linked service to be used by the on-demand cluster for storing and processing data.
- tenant Any
- The Tenant id/name to which the service principal belongs. Type: string (or Expression with resultType string).
- time_
to_ Anylive - 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 str
- Version of the linked service.
- additional_
linked_ Sequence[Linkedservice_ names Service Reference] - 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_ Anyprefix - The prefix of cluster name, postfix will be distinct with timestamp. Type: string (or Expression with resultType string).
- cluster_
password AzureKey | SecureVault Secret Reference String - The password to access the cluster.
- cluster_
ssh_ Azurepassword Key | SecureVault Secret Reference String - The password to SSH remotely connect cluster’s node (for Linux).
- cluster_
ssh_ Anyuser_ name - 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_ Anyname - The username to access the cluster. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference - 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
Credential
Reference - The credential reference containing authentication information.
- data_
node_ Anysize - 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_ Anyconfiguration - Specifies the HBase configuration parameters (hbase-site.xml) for the HDInsight cluster.
- hcatalog_
linked_ Linkedservice_ name Service Reference - 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_ Anysize - 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_ Anyconfiguration - 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, Parameter
Specification] - 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_ Anyid - The service principal id for the hostSubscriptionId. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference String - 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_ Anyid - 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_ Anysize - Specifies the size of the Zoo Keeper node for the HDInsight cluster.
- cluster
Resource AnyGroup - The resource group where the cluster belongs. Type: string (or Expression with resultType string).
- cluster
Size Any - Number of worker/data nodes in the cluster. Suggestion value: 4. Type: int (or Expression with resultType int).
- host
Subscription AnyId - The customer’s subscription to host the cluster. Type: string (or Expression with resultType string).
- linked
Service Property MapName - Azure Storage linked service to be used by the on-demand cluster for storing and processing data.
- tenant Any
- The Tenant id/name to which the service principal belongs. Type: string (or Expression with resultType string).
- time
To AnyLive - 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 String
- Version of the linked service.
- additional
Linked List<Property Map>Service Names - 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.
- cluster
Name AnyPrefix - The prefix of cluster name, postfix will be distinct with timestamp. Type: string (or Expression with resultType string).
- cluster
Password Property Map | Property Map - The password to access the cluster.
- cluster
Ssh Property Map | Property MapPassword - The password to SSH remotely connect cluster’s node (for Linux).
- cluster
Ssh AnyUser Name - 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 AnyName - The username to access the cluster. Type: string (or Expression with resultType string).
- connect
Via Property Map - 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 Property Map
- The credential reference containing authentication information.
- data
Node AnySize - Specifies the size of the data node for the HDInsight cluster.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- h
Base AnyConfiguration - Specifies the HBase configuration parameters (hbase-site.xml) for the HDInsight cluster.
- hcatalog
Linked Property MapService Name - 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 AnySize - 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 AnyConfiguration - 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 Map<Property Map>
- Parameters for linked service.
- script
Actions 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.
- service
Principal AnyId - The service principal id for the hostSubscriptionId. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - 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 AnyId - 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 AnySize - Specifies the size of the Zoo Keeper node for the HDInsight cluster.
HDInsightOnDemandLinkedServiceResponse, HDInsightOnDemandLinkedServiceResponseArgs
- Cluster
Resource objectGroup - The resource group where the cluster belongs. Type: string (or Expression with resultType string).
- Cluster
Size object - Number of worker/data nodes in the cluster. Suggestion value: 4. Type: int (or Expression with resultType int).
- Host
Subscription objectId - The customer’s subscription to host the cluster. Type: string (or Expression with resultType string).
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - Azure Storage linked service to be used by the on-demand cluster for storing and processing data.
- Tenant object
- The Tenant id/name to which the service principal belongs. Type: string (or Expression with resultType string).
- Time
To objectLive - 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 string
- Version of the linked service.
- Additional
Linked List<Pulumi.Service Names Azure Native. Data Factory. Inputs. Linked Service Reference Response> - 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.
- Cluster
Name objectPrefix - The prefix of cluster name, postfix will be distinct with timestamp. Type: string (or Expression with resultType string).
- Cluster
Password Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The password to access the cluster.
- Cluster
Ssh Pulumi.Password Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The password to SSH remotely connect cluster’s node (for Linux).
- Cluster
Ssh objectUser Name - The username to SSH remotely connect to cluster’s node (for Linux). Type: string (or Expression with resultType string).
- Cluster
Type object - The cluster type. Type: string (or Expression with resultType string).
- Cluster
User objectName - The username to access the cluster. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Core
Configuration object - Specifies the core configuration parameters (as in core-site.xml) for the HDInsight cluster to be created.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference Response - The credential reference containing authentication information.
- Data
Node objectSize - Specifies the size of the data node for the HDInsight cluster.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- HBase
Configuration object - Specifies the HBase configuration parameters (hbase-site.xml) for the HDInsight cluster.
- Hcatalog
Linked Pulumi.Service Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - 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 object - Specifies the HDFS configuration parameters (hdfs-site.xml) for the HDInsight cluster.
- Head
Node objectSize - Specifies the size of the head node for the HDInsight cluster.
- Hive
Configuration object - Specifies the hive configuration parameters (hive-site.xml) for the HDInsight cluster.
- Map
Reduce objectConfiguration - Specifies the MapReduce configuration parameters (mapred-site.xml) for the HDInsight cluster.
- Oozie
Configuration object - Specifies the Oozie configuration parameters (oozie-site.xml) for the HDInsight cluster.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Script
Actions List<Pulumi.Azure Native. Data Factory. Inputs. Script Action Response> - 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 objectId - The service principal id for the hostSubscriptionId. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The key for the service principal id.
- Spark
Version object - The version of spark if the cluster type is 'spark'. Type: string (or Expression with resultType string).
- Storm
Configuration object - Specifies the Storm configuration parameters (storm-site.xml) for the HDInsight cluster.
- Subnet
Name 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).
- Virtual
Network objectId - 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 object - Specifies the Yarn configuration parameters (yarn-site.xml) for the HDInsight cluster.
- Zookeeper
Node objectSize - Specifies the size of the Zoo Keeper node for the HDInsight cluster.
- Cluster
Resource interface{}Group - The resource group where the cluster belongs. Type: string (or Expression with resultType string).
- Cluster
Size interface{} - Number of worker/data nodes in the cluster. Suggestion value: 4. Type: int (or Expression with resultType int).
- Host
Subscription interface{}Id - The customer’s subscription to host the cluster. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Response - Azure Storage linked service to be used by the on-demand cluster for storing and processing data.
- Tenant interface{}
- The Tenant id/name to which the service principal belongs. Type: string (or Expression with resultType string).
- Time
To interface{}Live - 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 string
- Version of the linked service.
- Additional
Linked []LinkedService Names Service Reference Response - 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.
- Cluster
Name interface{}Prefix - The prefix of cluster name, postfix will be distinct with timestamp. Type: string (or Expression with resultType string).
- Cluster
Password AzureKey | SecureVault Secret Reference Response String Response - The password to access the cluster.
- Cluster
Ssh AzurePassword Key | SecureVault Secret Reference Response String Response - The password to SSH remotely connect cluster’s node (for Linux).
- Cluster
Ssh interface{}User Name - The username to SSH remotely connect to cluster’s node (for Linux). Type: string (or Expression with resultType string).
- Cluster
Type interface{} - The cluster type. Type: string (or Expression with resultType string).
- Cluster
User interface{}Name - The username to access the cluster. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Core
Configuration interface{} - Specifies the core configuration parameters (as in core-site.xml) for the HDInsight cluster to be created.
- Credential
Credential
Reference Response - The credential reference containing authentication information.
- Data
Node interface{}Size - Specifies the size of the data node for the HDInsight cluster.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- HBase
Configuration interface{} - Specifies the HBase configuration parameters (hbase-site.xml) for the HDInsight cluster.
- Hcatalog
Linked LinkedService Name Service Reference Response - 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 interface{} - Specifies the HDFS configuration parameters (hdfs-site.xml) for the HDInsight cluster.
- Head
Node interface{}Size - Specifies the size of the head node for the HDInsight cluster.
- Hive
Configuration interface{} - Specifies the hive configuration parameters (hive-site.xml) for the HDInsight cluster.
- Map
Reduce interface{}Configuration - Specifies the MapReduce configuration parameters (mapred-site.xml) for the HDInsight cluster.
- Oozie
Configuration interface{} - Specifies the Oozie configuration parameters (oozie-site.xml) for the HDInsight cluster.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Script
Actions []ScriptAction Response - 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 interface{}Id - The service principal id for the hostSubscriptionId. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The key for the service principal id.
- Spark
Version interface{} - The version of spark if the cluster type is 'spark'. Type: string (or Expression with resultType string).
- Storm
Configuration interface{} - Specifies the Storm configuration parameters (storm-site.xml) for the HDInsight cluster.
- Subnet
Name 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).
- Virtual
Network interface{}Id - 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 interface{} - Specifies the Yarn configuration parameters (yarn-site.xml) for the HDInsight cluster.
- Zookeeper
Node interface{}Size - Specifies the size of the Zoo Keeper node for the HDInsight cluster.
- cluster
Resource ObjectGroup - The resource group where the cluster belongs. Type: string (or Expression with resultType string).
- cluster
Size Object - Number of worker/data nodes in the cluster. Suggestion value: 4. Type: int (or Expression with resultType int).
- host
Subscription ObjectId - The customer’s subscription to host the cluster. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response - Azure Storage linked service to be used by the on-demand cluster for storing and processing data.
- tenant Object
- The Tenant id/name to which the service principal belongs. Type: string (or Expression with resultType string).
- time
To ObjectLive - 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 String
- Version of the linked service.
- additional
Linked List<LinkedService Names Service Reference Response> - 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.
- cluster
Name ObjectPrefix - The prefix of cluster name, postfix will be distinct with timestamp. Type: string (or Expression with resultType string).
- cluster
Password AzureKey | SecureVault Secret Reference Response String Response - The password to access the cluster.
- cluster
Ssh AzurePassword Key | SecureVault Secret Reference Response String Response - The password to SSH remotely connect cluster’s node (for Linux).
- cluster
Ssh ObjectUser Name - The username to SSH remotely connect to cluster’s node (for Linux). Type: string (or Expression with resultType string).
- cluster
Type Object - The cluster type. Type: string (or Expression with resultType string).
- cluster
User ObjectName - The username to access the cluster. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- core
Configuration Object - Specifies the core configuration parameters (as in core-site.xml) for the HDInsight cluster to be created.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- data
Node ObjectSize - Specifies the size of the data node for the HDInsight cluster.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- h
Base ObjectConfiguration - Specifies the HBase configuration parameters (hbase-site.xml) for the HDInsight cluster.
- hcatalog
Linked LinkedService Name Service Reference Response - 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 Object - Specifies the HDFS configuration parameters (hdfs-site.xml) for the HDInsight cluster.
- head
Node ObjectSize - Specifies the size of the head node for the HDInsight cluster.
- hive
Configuration Object - Specifies the hive configuration parameters (hive-site.xml) for the HDInsight cluster.
- map
Reduce ObjectConfiguration - Specifies the MapReduce configuration parameters (mapred-site.xml) for the HDInsight cluster.
- oozie
Configuration Object - Specifies the Oozie configuration parameters (oozie-site.xml) for the HDInsight cluster.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- script
Actions List<ScriptAction Response> - 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 ObjectId - The service principal id for the hostSubscriptionId. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The key for the service principal id.
- spark
Version Object - The version of spark if the cluster type is 'spark'. Type: string (or Expression with resultType string).
- storm
Configuration Object - Specifies the Storm configuration parameters (storm-site.xml) for the HDInsight cluster.
- subnet
Name 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).
- virtual
Network ObjectId - 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 Object - Specifies the Yarn configuration parameters (yarn-site.xml) for the HDInsight cluster.
- zookeeper
Node ObjectSize - Specifies the size of the Zoo Keeper node for the HDInsight cluster.
- cluster
Resource anyGroup - The resource group where the cluster belongs. Type: string (or Expression with resultType string).
- cluster
Size any - Number of worker/data nodes in the cluster. Suggestion value: 4. Type: int (or Expression with resultType int).
- host
Subscription anyId - The customer’s subscription to host the cluster. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response - Azure Storage linked service to be used by the on-demand cluster for storing and processing data.
- tenant any
- The Tenant id/name to which the service principal belongs. Type: string (or Expression with resultType string).
- time
To anyLive - 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 string
- Version of the linked service.
- additional
Linked LinkedService Names Service Reference Response[] - 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.
- cluster
Name anyPrefix - The prefix of cluster name, postfix will be distinct with timestamp. Type: string (or Expression with resultType string).
- cluster
Password AzureKey | SecureVault Secret Reference Response String Response - The password to access the cluster.
- cluster
Ssh AzurePassword Key | SecureVault Secret Reference Response String Response - The password to SSH remotely connect cluster’s node (for Linux).
- cluster
Ssh anyUser Name - 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 anyName - The username to access the cluster. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - 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
Credential
Reference Response - The credential reference containing authentication information.
- data
Node anySize - Specifies the size of the data node for the HDInsight cluster.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- h
Base anyConfiguration - Specifies the HBase configuration parameters (hbase-site.xml) for the HDInsight cluster.
- hcatalog
Linked LinkedService Name Service Reference Response - 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 anySize - 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 anyConfiguration - 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
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- script
Actions ScriptAction Response[] - 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 anyId - The service principal id for the hostSubscriptionId. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - 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 anyId - 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 anySize - Specifies the size of the Zoo Keeper node for the HDInsight cluster.
- cluster_
resource_ Anygroup - The resource group where the cluster belongs. Type: string (or Expression with resultType string).
- cluster_
size Any - Number of worker/data nodes in the cluster. Suggestion value: 4. Type: int (or Expression with resultType int).
- host_
subscription_ Anyid - The customer’s subscription to host the cluster. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response - Azure Storage linked service to be used by the on-demand cluster for storing and processing data.
- tenant Any
- The Tenant id/name to which the service principal belongs. Type: string (or Expression with resultType string).
- time_
to_ Anylive - 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 str
- Version of the linked service.
- additional_
linked_ Sequence[Linkedservice_ names Service Reference Response] - 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_ Anyprefix - The prefix of cluster name, postfix will be distinct with timestamp. Type: string (or Expression with resultType string).
- cluster_
password AzureKey | SecureVault Secret Reference Response String Response - The password to access the cluster.
- cluster_
ssh_ Azurepassword Key | SecureVault Secret Reference Response String Response - The password to SSH remotely connect cluster’s node (for Linux).
- cluster_
ssh_ Anyuser_ name - 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_ Anyname - The username to access the cluster. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference Response - 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
Credential
Reference Response - The credential reference containing authentication information.
- data_
node_ Anysize - 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_ Anyconfiguration - Specifies the HBase configuration parameters (hbase-site.xml) for the HDInsight cluster.
- hcatalog_
linked_ Linkedservice_ name Service Reference Response - 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_ Anysize - 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_ Anyconfiguration - 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, Parameter
Specification Response] - Parameters for linked service.
- script_
actions Sequence[ScriptAction Response] - 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_ Anyid - The service principal id for the hostSubscriptionId. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference Response String Response - 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_ Anyid - 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_ Anysize - Specifies the size of the Zoo Keeper node for the HDInsight cluster.
- cluster
Resource AnyGroup - The resource group where the cluster belongs. Type: string (or Expression with resultType string).
- cluster
Size Any - Number of worker/data nodes in the cluster. Suggestion value: 4. Type: int (or Expression with resultType int).
- host
Subscription AnyId - The customer’s subscription to host the cluster. Type: string (or Expression with resultType string).
- linked
Service Property MapName - Azure Storage linked service to be used by the on-demand cluster for storing and processing data.
- tenant Any
- The Tenant id/name to which the service principal belongs. Type: string (or Expression with resultType string).
- time
To AnyLive - 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 String
- Version of the linked service.
- additional
Linked List<Property Map>Service Names - 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.
- cluster
Name AnyPrefix - The prefix of cluster name, postfix will be distinct with timestamp. Type: string (or Expression with resultType string).
- cluster
Password Property Map | Property Map - The password to access the cluster.
- cluster
Ssh Property Map | Property MapPassword - The password to SSH remotely connect cluster’s node (for Linux).
- cluster
Ssh AnyUser Name - 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 AnyName - The username to access the cluster. Type: string (or Expression with resultType string).
- connect
Via Property Map - 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 Property Map
- The credential reference containing authentication information.
- data
Node AnySize - Specifies the size of the data node for the HDInsight cluster.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- h
Base AnyConfiguration - Specifies the HBase configuration parameters (hbase-site.xml) for the HDInsight cluster.
- hcatalog
Linked Property MapService Name - 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 AnySize - 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 AnyConfiguration - 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 Map<Property Map>
- Parameters for linked service.
- script
Actions 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.
- service
Principal AnyId - The service principal id for the hostSubscriptionId. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - 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 AnyId - 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 AnySize - Specifies the size of the Zoo Keeper node for the HDInsight cluster.
HdfsLinkedService, HdfsLinkedServiceArgs
- Url object
- The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Authentication
Type object - Type of authentication used to connect to the HDFS. Possible values are: Anonymous and Windows. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - Password for Windows authentication.
- User
Name object - User name for Windows authentication. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Url interface{}
- The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Authentication
Type interface{} - Type of authentication used to connect to the HDFS. Possible values are: Anonymous and Windows. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference String - Password for Windows authentication.
- User
Name interface{} - User name for Windows authentication. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- url Object
- The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- authentication
Type Object - Type of authentication used to connect to the HDFS. Possible values are: Anonymous and Windows. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - Password for Windows authentication.
- user
Name Object - User name for Windows authentication. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- url any
- The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- 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 IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - Password for Windows authentication.
- user
Name any - User name for Windows authentication. Type: string (or Expression with resultType string).
- version string
- Version of the linked service.
- url Any
- The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication_
type Any - Type of authentication used to connect to the HDFS. Possible values are: Anonymous and Windows. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - 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 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.
- 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 Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- Password for Windows authentication.
- user
Name Any - User name for Windows authentication. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
HdfsLinkedServiceResponse, HdfsLinkedServiceResponseArgs
- Url object
- The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Authentication
Type object - Type of authentication used to connect to the HDFS. Possible values are: Anonymous and Windows. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - Password for Windows authentication.
- User
Name object - User name for Windows authentication. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Url interface{}
- The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Authentication
Type interface{} - Type of authentication used to connect to the HDFS. Possible values are: Anonymous and Windows. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - Password for Windows authentication.
- User
Name interface{} - User name for Windows authentication. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- url Object
- The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- authentication
Type Object - Type of authentication used to connect to the HDFS. Possible values are: Anonymous and Windows. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - Password for Windows authentication.
- user
Name Object - User name for Windows authentication. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- url any
- The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- 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 IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - Password for Windows authentication.
- user
Name any - User name for Windows authentication. Type: string (or Expression with resultType string).
- version string
- Version of the linked service.
- url Any
- The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication_
type Any - Type of authentication used to connect to the HDFS. Possible values are: Anonymous and Windows. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - 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 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.
- 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 Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- Password for Windows authentication.
- user
Name 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
- Username
And Password - UsernameAndPassword
- Windows
Azure HDInsight Service - WindowsAzureHDInsightService
- Hive
Authentication Type Anonymous - Anonymous
- Hive
Authentication Type Username - Username
- Hive
Authentication Type Username And Password - UsernameAndPassword
- Hive
Authentication Type Windows Azure HDInsight Service - WindowsAzureHDInsightService
- Anonymous
- Anonymous
- Username
- Username
- Username
And Password - UsernameAndPassword
- Windows
Azure HDInsight Service - WindowsAzureHDInsightService
- Anonymous
- Anonymous
- Username
- Username
- Username
And Password - UsernameAndPassword
- Windows
Azure HDInsight Service - WindowsAzureHDInsightService
- ANONYMOUS
- Anonymous
- USERNAME
- Username
- USERNAME_AND_PASSWORD
- UsernameAndPassword
- WINDOWS_AZURE_HD_INSIGHT_SERVICE
- WindowsAzureHDInsightService
- "Anonymous"
- Anonymous
- "Username"
- Username
- "Username
And Password" - UsernameAndPassword
- "Windows
Azure HDInsight Service" - WindowsAzureHDInsightService
HiveLinkedService, HiveLinkedServiceArgs
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Hive Authentication Type - The authentication method used to access the Hive server.
- Host object
- IP address or host name of the Hive server, separated by ';' for multiple hosts (only when serviceDiscoveryMode is enable).
- Allow
Host objectName CNMismatch - 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 objectSigned Server Cert - 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Enable
Server objectCertificate Validation - Specifies whether the connections to the server will validate server certificate, the default value is True. Only used for Version 2.0
- Enable
Ssl object - Specifies whether the connections to the server are encrypted using SSL. The default value is false.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Http
Path object - The partial URL corresponding to the Hive server.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The password 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.
- Server
Type string | Pulumi.Azure Native. Data Factory. Hive Server Type - The type of Hive server.
- Service
Discovery objectMode - true to indicate using the ZooKeeper service, false not.
- Thrift
Transport string | Pulumi.Protocol Azure Native. Data Factory. Hive Thrift Transport Protocol - The transport protocol to use in the Thrift layer.
- Trusted
Cert objectPath - 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 objectQuery - Specifies whether the driver uses native HiveQL queries,or converts them into an equivalent form in HiveQL.
- Use
System objectTrust Store - 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.
- Zoo
Keeper objectName Space - The namespace on ZooKeeper under which Hive Server 2 nodes are added.
- Authentication
Type string | HiveAuthentication Type - The authentication method used to access the Hive server.
- Host interface{}
- IP address or host name of the Hive server, separated by ';' for multiple hosts (only when serviceDiscoveryMode is enable).
- Allow
Host interface{}Name CNMismatch - 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 interface{}Signed Server Cert - 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.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Enable
Server interface{}Certificate Validation - Specifies whether the connections to the server will validate server certificate, the default value is True. Only used for Version 2.0
- Enable
Ssl interface{} - Specifies whether the connections to the server are encrypted using SSL. The default value is false.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Http
Path interface{} - The partial URL corresponding to the Hive server.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference String - 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.
- Server
Type string | HiveServer Type - The type of Hive server.
- Service
Discovery interface{}Mode - true to indicate using the ZooKeeper service, false not.
- Thrift
Transport string | HiveProtocol Thrift Transport Protocol - The transport protocol to use in the Thrift layer.
- Trusted
Cert interface{}Path - 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 interface{}Query - Specifies whether the driver uses native HiveQL queries,or converts them into an equivalent form in HiveQL.
- Use
System interface{}Trust Store - 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.
- Zoo
Keeper interface{}Name Space - The namespace on ZooKeeper under which Hive Server 2 nodes are added.
- authentication
Type String | HiveAuthentication Type - The authentication method used to access the Hive server.
- host Object
- IP address or host name of the Hive server, separated by ';' for multiple hosts (only when serviceDiscoveryMode is enable).
- allow
Host ObjectName CNMismatch - 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 ObjectSigned Server Cert - 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.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- enable
Server ObjectCertificate Validation - Specifies whether the connections to the server will validate server certificate, the default value is True. Only used for Version 2.0
- enable
Ssl Object - Specifies whether the connections to the server are encrypted using SSL. The default value is false.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- http
Path Object - The partial URL corresponding to the Hive server.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - 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.
- server
Type String | HiveServer Type - The type of Hive server.
- service
Discovery ObjectMode - true to indicate using the ZooKeeper service, false not.
- thrift
Transport String | HiveProtocol Thrift Transport Protocol - The transport protocol to use in the Thrift layer.
- trusted
Cert ObjectPath - 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 ObjectQuery - Specifies whether the driver uses native HiveQL queries,or converts them into an equivalent form in HiveQL.
- use
System ObjectTrust Store - 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.
- zoo
Keeper ObjectName Space - The namespace on ZooKeeper under which Hive Server 2 nodes are added.
- authentication
Type string | HiveAuthentication Type - The authentication method used to access the Hive server.
- host any
- IP address or host name of the Hive server, separated by ';' for multiple hosts (only when serviceDiscoveryMode is enable).
- allow
Host anyName CNMismatch - 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 anySigned Server Cert - 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.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- enable
Server anyCertificate Validation - Specifies whether the connections to the server will validate server certificate, the default value is True. Only used for Version 2.0
- enable
Ssl any - Specifies whether the connections to the server are encrypted using SSL. The default value is false.
- encrypted
Credential string - 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
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - 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 string | HiveServer Type - The type of Hive server.
- service
Discovery anyMode - true to indicate using the ZooKeeper service, false not.
- thrift
Transport string | HiveProtocol Thrift Transport Protocol - The transport protocol to use in the Thrift layer.
- trusted
Cert anyPath - 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 anyQuery - Specifies whether the driver uses native HiveQL queries,or converts them into an equivalent form in HiveQL.
- use
System anyTrust Store - 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.
- zoo
Keeper anyName Space - The namespace on ZooKeeper under which Hive Server 2 nodes are added.
- authentication_
type str | HiveAuthentication Type - The authentication method used to access the Hive server.
- host Any
- IP address or host name of the Hive server, separated by ';' for multiple hosts (only when serviceDiscoveryMode is enable).
- allow_
host_ Anyname_ cn_ mismatch - 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_ Anysigned_ server_ cert - 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 IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- enable_
server_ Anycertificate_ validation - Specifies whether the connections to the server will validate server certificate, the default value is True. Only used for Version 2.0
- 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, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - 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 | HiveServer Type - The type of Hive server.
- service_
discovery_ Anymode - true to indicate using the ZooKeeper service, false not.
- thrift_
transport_ str | Hiveprotocol Thrift Transport Protocol - The transport protocol to use in the Thrift layer.
- trusted_
cert_ Anypath - 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_ Anyquery - Specifies whether the driver uses native HiveQL queries,or converts them into an equivalent form in HiveQL.
- use_
system_ Anytrust_ store - 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_ Anyname_ space - The namespace on ZooKeeper under which Hive Server 2 nodes are added.
- authentication
Type String | "Anonymous" | "Username" | "UsernameAnd Password" | "Windows Azure HDInsight Service" - The authentication method used to access the Hive server.
- host Any
- IP address or host name of the Hive server, separated by ';' for multiple hosts (only when serviceDiscoveryMode is enable).
- allow
Host AnyName CNMismatch - 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 AnySigned Server Cert - 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.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- enable
Server AnyCertificate Validation - Specifies whether the connections to the server will validate server certificate, the default value is True. Only used for Version 2.0
- enable
Ssl Any - Specifies whether the connections to the server are encrypted using SSL. The default value is false.
- encrypted
Credential String - 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 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.
- server
Type String | "HiveServer1" | "Hive Server2" | "Hive Thrift Server" - The type of Hive server.
- service
Discovery AnyMode - true to indicate using the ZooKeeper service, false not.
- thrift
Transport String | "Binary" | "SASL" | "HTTP "Protocol - The transport protocol to use in the Thrift layer.
- trusted
Cert AnyPath - 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 AnyQuery - Specifies whether the driver uses native HiveQL queries,or converts them into an equivalent form in HiveQL.
- use
System AnyTrust Store - 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.
- zoo
Keeper AnyName Space - The namespace on ZooKeeper under which Hive Server 2 nodes are added.
HiveLinkedServiceResponse, HiveLinkedServiceResponseArgs
- Authentication
Type string - The authentication method used to access the Hive server.
- Host object
- IP address or host name of the Hive server, separated by ';' for multiple hosts (only when serviceDiscoveryMode is enable).
- Allow
Host objectName CNMismatch - 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 objectSigned Server Cert - 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Enable
Server objectCertificate Validation - Specifies whether the connections to the server will validate server certificate, the default value is True. Only used for Version 2.0
- Enable
Ssl object - Specifies whether the connections to the server are encrypted using SSL. The default value is false.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Http
Path object - The partial URL corresponding to the Hive server.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The password 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.
- Server
Type string - The type of Hive server.
- Service
Discovery objectMode - true to indicate using the ZooKeeper service, false not.
- Thrift
Transport stringProtocol - The transport protocol to use in the Thrift layer.
- Trusted
Cert objectPath - 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 objectQuery - Specifies whether the driver uses native HiveQL queries,or converts them into an equivalent form in HiveQL.
- Use
System objectTrust Store - 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.
- Zoo
Keeper objectName Space - The namespace on ZooKeeper under which Hive Server 2 nodes are added.
- Authentication
Type string - The authentication method used to access the Hive server.
- Host interface{}
- IP address or host name of the Hive server, separated by ';' for multiple hosts (only when serviceDiscoveryMode is enable).
- Allow
Host interface{}Name CNMismatch - 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 interface{}Signed Server Cert - 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.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Enable
Server interface{}Certificate Validation - Specifies whether the connections to the server will validate server certificate, the default value is True. Only used for Version 2.0
- Enable
Ssl interface{} - Specifies whether the connections to the server are encrypted using SSL. The default value is false.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Http
Path interface{} - The partial URL corresponding to the Hive server.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - 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.
- Server
Type string - The type of Hive server.
- Service
Discovery interface{}Mode - true to indicate using the ZooKeeper service, false not.
- Thrift
Transport stringProtocol - The transport protocol to use in the Thrift layer.
- Trusted
Cert interface{}Path - 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 interface{}Query - Specifies whether the driver uses native HiveQL queries,or converts them into an equivalent form in HiveQL.
- Use
System interface{}Trust Store - 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.
- Zoo
Keeper interface{}Name Space - The namespace on ZooKeeper under which Hive Server 2 nodes are added.
- authentication
Type String - The authentication method used to access the Hive server.
- host Object
- IP address or host name of the Hive server, separated by ';' for multiple hosts (only when serviceDiscoveryMode is enable).
- allow
Host ObjectName CNMismatch - 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 ObjectSigned Server Cert - 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.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- enable
Server ObjectCertificate Validation - Specifies whether the connections to the server will validate server certificate, the default value is True. Only used for Version 2.0
- enable
Ssl Object - Specifies whether the connections to the server are encrypted using SSL. The default value is false.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- http
Path Object - The partial URL corresponding to the Hive server.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - 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.
- server
Type String - The type of Hive server.
- service
Discovery ObjectMode - true to indicate using the ZooKeeper service, false not.
- thrift
Transport StringProtocol - The transport protocol to use in the Thrift layer.
- trusted
Cert ObjectPath - 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 ObjectQuery - Specifies whether the driver uses native HiveQL queries,or converts them into an equivalent form in HiveQL.
- use
System ObjectTrust Store - 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.
- zoo
Keeper ObjectName Space - The namespace on ZooKeeper under which Hive Server 2 nodes are added.
- authentication
Type string - The authentication method used to access the Hive server.
- host any
- IP address or host name of the Hive server, separated by ';' for multiple hosts (only when serviceDiscoveryMode is enable).
- allow
Host anyName CNMismatch - 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 anySigned Server Cert - 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.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- enable
Server anyCertificate Validation - Specifies whether the connections to the server will validate server certificate, the default value is True. Only used for Version 2.0
- enable
Ssl any - Specifies whether the connections to the server are encrypted using SSL. The default value is false.
- encrypted
Credential string - 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
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - 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 string - The type of Hive server.
- service
Discovery anyMode - true to indicate using the ZooKeeper service, false not.
- thrift
Transport stringProtocol - The transport protocol to use in the Thrift layer.
- trusted
Cert anyPath - 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 anyQuery - Specifies whether the driver uses native HiveQL queries,or converts them into an equivalent form in HiveQL.
- use
System anyTrust Store - 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.
- zoo
Keeper anyName Space - The namespace on ZooKeeper under which Hive Server 2 nodes are added.
- authentication_
type str - The authentication method used to access the Hive server.
- host Any
- IP address or host name of the Hive server, separated by ';' for multiple hosts (only when serviceDiscoveryMode is enable).
- allow_
host_ Anyname_ cn_ mismatch - 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_ Anysigned_ server_ cert - 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 IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- enable_
server_ Anycertificate_ validation - Specifies whether the connections to the server will validate server certificate, the default value is True. Only used for Version 2.0
- 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, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - 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_ Anymode - true to indicate using the ZooKeeper service, false not.
- thrift_
transport_ strprotocol - The transport protocol to use in the Thrift layer.
- trusted_
cert_ Anypath - 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_ Anyquery - Specifies whether the driver uses native HiveQL queries,or converts them into an equivalent form in HiveQL.
- use_
system_ Anytrust_ store - 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_ Anyname_ space - The namespace on ZooKeeper under which Hive Server 2 nodes are added.
- authentication
Type String - The authentication method used to access the Hive server.
- host Any
- IP address or host name of the Hive server, separated by ';' for multiple hosts (only when serviceDiscoveryMode is enable).
- allow
Host AnyName CNMismatch - 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 AnySigned Server Cert - 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.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- enable
Server AnyCertificate Validation - Specifies whether the connections to the server will validate server certificate, the default value is True. Only used for Version 2.0
- enable
Ssl Any - Specifies whether the connections to the server are encrypted using SSL. The default value is false.
- encrypted
Credential String - 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 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.
- server
Type String - The type of Hive server.
- service
Discovery AnyMode - true to indicate using the ZooKeeper service, false not.
- thrift
Transport StringProtocol - The transport protocol to use in the Thrift layer.
- trusted
Cert AnyPath - 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 AnyQuery - Specifies whether the driver uses native HiveQL queries,or converts them into an equivalent form in HiveQL.
- use
System AnyTrust Store - 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.
- zoo
Keeper AnyName Space - The namespace on ZooKeeper under which Hive Server 2 nodes are added.
HiveServerType, HiveServerTypeArgs
- Hive
Server1 - HiveServer1
- Hive
Server2 - HiveServer2
- Hive
Thrift Server - HiveThriftServer
- Hive
Server Type Hive Server1 - HiveServer1
- Hive
Server Type Hive Server2 - HiveServer2
- Hive
Server Type Hive Thrift Server - HiveThriftServer
- Hive
Server1 - HiveServer1
- Hive
Server2 - HiveServer2
- Hive
Thrift Server - HiveThriftServer
- Hive
Server1 - HiveServer1
- Hive
Server2 - HiveServer2
- Hive
Thrift Server - HiveThriftServer
- HIVE_SERVER1
- HiveServer1
- HIVE_SERVER2
- HiveServer2
- HIVE_THRIFT_SERVER
- HiveThriftServer
- "Hive
Server1" - HiveServer1
- "Hive
Server2" - HiveServer2
- "Hive
Thrift Server" - HiveThriftServer
HiveThriftTransportProtocol, HiveThriftTransportProtocolArgs
- Binary
- Binary
- SASL
- SASL
- HTTP_
- HTTP
- Hive
Thrift Transport Protocol Binary - Binary
- Hive
Thrift Transport Protocol SASL - SASL
- Hive
Thrift Transport Protocol_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
- Client
Certificate - ClientCertificate
- Http
Authentication Type Basic - Basic
- Http
Authentication Type Anonymous - Anonymous
- Http
Authentication Type Digest - Digest
- Http
Authentication Type Windows - Windows
- Http
Authentication Type Client Certificate - ClientCertificate
- Basic
- Basic
- Anonymous
- Anonymous
- Digest
- Digest
- Windows
- Windows
- Client
Certificate - ClientCertificate
- Basic
- Basic
- Anonymous
- Anonymous
- Digest
- Digest
- Windows
- Windows
- Client
Certificate - ClientCertificate
- BASIC
- Basic
- ANONYMOUS
- Anonymous
- DIGEST
- Digest
- WINDOWS
- Windows
- CLIENT_CERTIFICATE
- ClientCertificate
- "Basic"
- Basic
- "Anonymous"
- Anonymous
- "Digest"
- Digest
- "Windows"
- Windows
- "Client
Certificate" - ClientCertificate
HttpLinkedService, HttpLinkedServiceArgs
- Url object
- The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Auth
Headers object - The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Http Authentication Type - The authentication type to be used to connect to the HTTP server.
- Cert
Thumbprint 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).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Embedded
Cert objectData - 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 objectCertificate Validation - If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - Password for Basic, Digest, Windows, or ClientCertificate with EmbeddedCertData authentication.
- User
Name object - User name for Basic, Digest, or Windows authentication. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Url interface{}
- The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Auth
Headers interface{} - The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
- Authentication
Type string | HttpAuthentication Type - The authentication type to be used to connect to the HTTP server.
- Cert
Thumbprint 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).
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Embedded
Cert interface{}Data - 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 interface{}Certificate Validation - If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference String - Password for Basic, Digest, Windows, or ClientCertificate with EmbeddedCertData authentication.
- User
Name interface{} - User name for Basic, Digest, or Windows authentication. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- url Object
- The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- auth
Headers Object - The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
- authentication
Type String | HttpAuthentication Type - The authentication type to be used to connect to the HTTP server.
- cert
Thumbprint 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).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- embedded
Cert ObjectData - 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 ObjectCertificate Validation - If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - Password for Basic, Digest, Windows, or ClientCertificate with EmbeddedCertData authentication.
- user
Name Object - User name for Basic, Digest, or Windows authentication. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- url any
- The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- 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 string | HttpAuthentication Type - 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 IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- embedded
Cert anyData - 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 anyCertificate Validation - If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean).
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - 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 string
- Version of the linked service.
- url Any
- The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- auth_
headers Any - The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
- authentication_
type str | HttpAuthentication Type - 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 IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- embedded_
cert_ Anydata - 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_ Anycertificate_ validation - 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, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - 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 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.
- 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 String | "Basic" | "Anonymous" | "Digest" | "Windows" | "ClientCertificate" - 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 Property Map - The integration runtime reference.
- description String
- Linked service description.
- embedded
Cert AnyData - 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 AnyCertificate Validation - If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- 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 String
- Version of the linked service.
HttpLinkedServiceResponse, HttpLinkedServiceResponseArgs
- Url object
- The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Auth
Headers object - The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
- Authentication
Type string - The authentication type to be used to connect to the HTTP server.
- Cert
Thumbprint 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).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Embedded
Cert objectData - 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 objectCertificate Validation - If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - Password for Basic, Digest, Windows, or ClientCertificate with EmbeddedCertData authentication.
- User
Name object - User name for Basic, Digest, or Windows authentication. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Url interface{}
- The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Auth
Headers interface{} - The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
- Authentication
Type string - The authentication type to be used to connect to the HTTP server.
- Cert
Thumbprint 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).
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Embedded
Cert interface{}Data - 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 interface{}Certificate Validation - If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - Password for Basic, Digest, Windows, or ClientCertificate with EmbeddedCertData authentication.
- User
Name interface{} - User name for Basic, Digest, or Windows authentication. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- url Object
- The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- auth
Headers Object - The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
- authentication
Type String - The authentication type to be used to connect to the HTTP server.
- cert
Thumbprint 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).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- embedded
Cert ObjectData - 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 ObjectCertificate Validation - If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - Password for Basic, Digest, Windows, or ClientCertificate with EmbeddedCertData authentication.
- user
Name Object - User name for Basic, Digest, or Windows authentication. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- url any
- The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- 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 string - 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 IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- embedded
Cert anyData - 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 anyCertificate Validation - If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean).
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - 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 string
- Version of the linked service.
- url Any
- The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- auth_
headers Any - The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
- authentication_
type str - The authentication type to be used to connect to the HTTP server.
- cert_
thumbprint Any - Thumbprint of certificate for ClientCertificate authentication. Only valid for on-premises copy. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- embedded_
cert_ Anydata - 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_ Anycertificate_ validation - 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, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - 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 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.
- 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 String - 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 Property Map - The integration runtime reference.
- description String
- Linked service description.
- embedded
Cert AnyData - 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 AnyCertificate Validation - If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- 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 String
- Version of the linked service.
HubspotLinkedService, HubspotLinkedServiceArgs
- Client
Id object - The client ID associated with your Hubspot application.
- Access
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - 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.
- Client
Secret Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The client secret associated with your Hubspot application.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Refresh
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The refresh token obtained when initially authenticating your OAuth integration.
- Use
Encrypted objectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- Use
Host objectVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- Use
Peer objectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- Version string
- Version of the linked service.
- Client
Id interface{} - The client ID associated with your Hubspot application.
- Access
Token AzureKey | SecureVault Secret Reference String - The access token obtained when initially authenticating your OAuth integration.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Client
Secret AzureKey | SecureVault Secret Reference String - The client secret associated with your Hubspot application.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Refresh
Token AzureKey | SecureVault Secret Reference String - The refresh token obtained when initially authenticating your OAuth integration.
- Use
Encrypted interface{}Endpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- Use
Host interface{}Verification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- Use
Peer interface{}Verification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- Version string
- Version of the linked service.
- client
Id Object - The client ID associated with your Hubspot application.
- access
Token AzureKey | SecureVault Secret Reference String - 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.
- client
Secret AzureKey | SecureVault Secret Reference String - The client secret associated with your Hubspot application.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- refresh
Token AzureKey | SecureVault Secret Reference String - The refresh token obtained when initially authenticating your OAuth integration.
- use
Encrypted ObjectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host ObjectVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use
Peer ObjectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- version String
- Version of the linked service.
- client
Id any - The client ID associated with your Hubspot application.
- access
Token AzureKey | SecureVault Secret Reference String - The access token obtained when initially authenticating your OAuth integration.
- annotations any[]
- List of tags that can be used for describing the linked service.
- client
Secret AzureKey | SecureVault Secret Reference String - The client secret associated with your Hubspot application.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- refresh
Token AzureKey | SecureVault Secret Reference String - The refresh token obtained when initially authenticating your OAuth integration.
- use
Encrypted anyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host anyVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use
Peer anyVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- version string
- Version of the linked service.
- client_
id Any - The client ID associated with your Hubspot application.
- access_
token AzureKey | SecureVault Secret Reference String - 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 AzureKey | SecureVault Secret Reference String - The client secret associated with your Hubspot application.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- refresh_
token AzureKey | SecureVault Secret Reference String - The refresh token obtained when initially authenticating your OAuth integration.
- use_
encrypted_ Anyendpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use_
host_ Anyverification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use_
peer_ Anyverification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- version str
- Version of the linked service.
- client
Id Any - The client ID associated with your Hubspot application.
- access
Token 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.
- client
Secret Property Map | Property Map - The client secret associated with your Hubspot application.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- refresh
Token Property Map | Property Map - The refresh token obtained when initially authenticating your OAuth integration.
- use
Encrypted AnyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host AnyVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use
Peer AnyVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- version String
- Version of the linked service.
HubspotLinkedServiceResponse, HubspotLinkedServiceResponseArgs
- Client
Id object - The client ID associated with your Hubspot application.
- Access
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - 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.
- Client
Secret Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The client secret associated with your Hubspot application.
- Connect
Via