azure-native.datafactory.LinkedService
Explore with Pulumi AI
Linked service resource type. 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 =
{
{ "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"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := datafactory.NewLinkedService(ctx, "linkedService", &datafactory.LinkedServiceArgs{
FactoryName: pulumi.String("exampleFactoryName"),
LinkedServiceName: pulumi.String("exampleLinkedService"),
Properties: datafactory.AzureStorageLinkedService{
ConnectionString: map[string]interface{}{
"type": "SecureString",
"value": "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
},
Type: "AzureStorage",
},
ResourceGroupName: pulumi.String("exampleResourceGroup"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.datafactory.LinkedService;
import com.pulumi.azurenative.datafactory.LinkedServiceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var linkedService = new LinkedService("linkedService", LinkedServiceArgs.builder()
.factoryName("exampleFactoryName")
.linkedServiceName("exampleLinkedService")
.properties(Map.ofEntries(
Map.entry("connectionString", AmazonMWSLinkedServiceArgs.builder()
.type("SecureString")
.value("DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>")
.build()),
Map.entry("type", "AzureStorage")
))
.resourceGroupName("exampleResourceGroup")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
linked_service = azure_native.datafactory.LinkedService("linkedService",
factory_name="exampleFactoryName",
linked_service_name="exampleLinkedService",
properties=azure_native.datafactory.AzureStorageLinkedServiceArgs(
connection_string={
"type": "SecureString",
"value": "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
},
type="AzureStorage",
),
resource_group_name="exampleResourceGroup")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const linkedService = new azure_native.datafactory.LinkedService("linkedService", {
factoryName: "exampleFactoryName",
linkedServiceName: "exampleLinkedService",
properties: {
connectionString: {
type: "SecureString",
value: "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
},
type: "AzureStorage",
},
resourceGroupName: "exampleResourceGroup",
});
resources:
linkedService:
type: azure-native:datafactory:LinkedService
properties:
factoryName: exampleFactoryName
linkedServiceName: exampleLinkedService
properties:
connectionString:
type: SecureString
value: DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>
type: AzureStorage
resourceGroupName: exampleResourceGroup
LinkedServices_Update
using System.Collections.Generic;
using 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 =
{
{ "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"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := datafactory.NewLinkedService(ctx, "linkedService", &datafactory.LinkedServiceArgs{
FactoryName: pulumi.String("exampleFactoryName"),
LinkedServiceName: pulumi.String("exampleLinkedService"),
Properties: datafactory.AzureStorageLinkedService{
ConnectionString: map[string]interface{}{
"type": "SecureString",
"value": "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
},
Description: "Example description",
Type: "AzureStorage",
},
ResourceGroupName: pulumi.String("exampleResourceGroup"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.datafactory.LinkedService;
import com.pulumi.azurenative.datafactory.LinkedServiceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var linkedService = new LinkedService("linkedService", LinkedServiceArgs.builder()
.factoryName("exampleFactoryName")
.linkedServiceName("exampleLinkedService")
.properties(Map.ofEntries(
Map.entry("connectionString", AmazonMWSLinkedServiceArgs.builder()
.type("SecureString")
.value("DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>")
.build()),
Map.entry("description", "Example description"),
Map.entry("type", "AzureStorage")
))
.resourceGroupName("exampleResourceGroup")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
linked_service = azure_native.datafactory.LinkedService("linkedService",
factory_name="exampleFactoryName",
linked_service_name="exampleLinkedService",
properties=azure_native.datafactory.AzureStorageLinkedServiceArgs(
connection_string={
"type": "SecureString",
"value": "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
},
description="Example description",
type="AzureStorage",
),
resource_group_name="exampleResourceGroup")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const linkedService = new azure_native.datafactory.LinkedService("linkedService", {
factoryName: "exampleFactoryName",
linkedServiceName: "exampleLinkedService",
properties: {
connectionString: {
type: "SecureString",
value: "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
},
description: "Example description",
type: "AzureStorage",
},
resourceGroupName: "exampleResourceGroup",
});
resources:
linkedService:
type: azure-native:datafactory:LinkedService
properties:
factoryName: exampleFactoryName
linkedServiceName: exampleLinkedService
properties:
connectionString:
type: SecureString
value: DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>
description: Example description
type: AzureStorage
resourceGroupName: exampleResourceGroup
Create LinkedService Resource
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, GoogleCloudStorageLinkedServiceArgs, GoogleSheetsLinkedServiceArgs, GreenplumLinkedServiceArgs, HBaseLinkedServiceArgs, HDInsightLinkedServiceArgs, HDInsightOnDemandLinkedServiceArgs, HdfsLinkedServiceArgs, HiveLinkedServiceArgs, HttpLinkedServiceArgs, HubspotLinkedServiceArgs, ImpalaLinkedServiceArgs, InformixLinkedServiceArgs, JiraLinkedServiceArgs, MagentoLinkedServiceArgs, MariaDBLinkedServiceArgs, MarketoLinkedServiceArgs, MicrosoftAccessLinkedServiceArgs, MongoDbAtlasLinkedServiceArgs, MongoDbLinkedServiceArgs, MongoDbV2LinkedServiceArgs, MySqlLinkedServiceArgs, NetezzaLinkedServiceArgs, ODataLinkedServiceArgs, OdbcLinkedServiceArgs, Office365LinkedServiceArgs, OracleCloudStorageLinkedServiceArgs, OracleLinkedServiceArgs, OracleServiceCloudLinkedServiceArgs, PaypalLinkedServiceArgs, PhoenixLinkedServiceArgs, PostgreSqlLinkedServiceArgs, PrestoLinkedServiceArgs, QuickBooksLinkedServiceArgs, QuickbaseLinkedServiceArgs, ResponsysLinkedServiceArgs, RestServiceLinkedServiceArgs, SalesforceLinkedServiceArgs, SalesforceMarketingCloudLinkedServiceArgs, SalesforceServiceCloudLinkedServiceArgs, SapBWLinkedServiceArgs, SapCloudForCustomerLinkedServiceArgs, SapEccLinkedServiceArgs, SapHanaLinkedServiceArgs, SapOdpLinkedServiceArgs, SapOpenHubLinkedServiceArgs, SapTableLinkedServiceArgs, ServiceNowLinkedServiceArgs, SftpServerLinkedServiceArgs, SharePointOnlineListLinkedServiceArgs, ShopifyLinkedServiceArgs, SmartsheetLinkedServiceArgs, SnowflakeLinkedServiceArgs, SparkLinkedServiceArgs, SqlServerLinkedServiceArgs, SquareLinkedServiceArgs, SybaseLinkedServiceArgs, TeamDeskLinkedServiceArgs, TeradataLinkedServiceArgs, TwilioLinkedServiceArgs, VerticaLinkedServiceArgs, WebLinkedServiceArgs, XeroLinkedServiceArgs, ZendeskLinkedServiceArgs, ZohoLinkedServiceArgs]] = None,
resource_group_name: Optional[str] = None,
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 =
{
{ "endpoint", "any" },
{ "type", "AmazonMWS" },
{ "sellerID", "any" },
{ "accessKeyId", "any" },
{ "marketplaceID", "any" },
{ "description", "string" },
{ "encryptedCredential", "string" },
{ "mwsAuthToken",
{
{ "secretName", "any" },
{ "store",
{
{ "referenceName", "string" },
{ "type", "string" },
{ "parameters",
{
{ "string", "any" },
} },
} },
{ "type", "AzureKeyVaultSecret" },
{ "secretVersion", "any" },
} },
{ "parameters",
{
{ "string",
{
{ "type", "string" },
{ "defaultValue", "any" },
} },
} },
{ "secretKey",
{
{ "secretName", "any" },
{ "store",
{
{ "referenceName", "string" },
{ "type", "string" },
{ "parameters",
{
{ "string", "any" },
} },
} },
{ "type", "AzureKeyVaultSecret" },
{ "secretVersion", "any" },
} },
{ "connectVia",
{
{ "referenceName", "string" },
{ "type", "string" },
{ "parameters",
{
{ "string", "any" },
} },
} },
{ "annotations", new[]
{
"any",
} },
{ "useEncryptedEndpoints", "any" },
{ "useHostVerification", "any" },
{ "usePeerVerification", "any" },
},
ResourceGroupName = "string",
LinkedServiceName = "string",
});
example, err := datafactory.NewLinkedService(ctx, "linkedServiceResource", &datafactory.LinkedServiceArgs{
FactoryName: "string",
Properties: map[string]interface{}{
"endpoint": "any",
"type": "AmazonMWS",
"sellerID": "any",
"accessKeyId": "any",
"marketplaceID": "any",
"description": "string",
"encryptedCredential": "string",
"mwsAuthToken": map[string]interface{}{
"secretName": "any",
"store": map[string]interface{}{
"referenceName": "string",
"type": "string",
"parameters": map[string]interface{}{
"string": "any",
},
},
"type": "AzureKeyVaultSecret",
"secretVersion": "any",
},
"parameters": map[string]interface{}{
"string": map[string]interface{}{
"type": "string",
"defaultValue": "any",
},
},
"secretKey": map[string]interface{}{
"secretName": "any",
"store": map[string]interface{}{
"referenceName": "string",
"type": "string",
"parameters": map[string]interface{}{
"string": "any",
},
},
"type": "AzureKeyVaultSecret",
"secretVersion": "any",
},
"connectVia": map[string]interface{}{
"referenceName": "string",
"type": "string",
"parameters": map[string]interface{}{
"string": "any",
},
},
"annotations": []string{
"any",
},
"useEncryptedEndpoints": "any",
"useHostVerification": "any",
"usePeerVerification": "any",
},
ResourceGroupName: "string",
LinkedServiceName: "string",
})
var linkedServiceResource = new LinkedService("linkedServiceResource", LinkedServiceArgs.builder()
.factoryName("string")
.properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.resourceGroupName("string")
.linkedServiceName("string")
.build());
linked_service_resource = azure_native.datafactory.LinkedService("linkedServiceResource",
factory_name=string,
properties={
endpoint: any,
type: AmazonMWS,
sellerID: any,
accessKeyId: any,
marketplaceID: any,
description: string,
encryptedCredential: string,
mwsAuthToken: {
secretName: any,
store: {
referenceName: string,
type: string,
parameters: {
string: any,
},
},
type: AzureKeyVaultSecret,
secretVersion: any,
},
parameters: {
string: {
type: string,
defaultValue: any,
},
},
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,
},
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",
description: "string",
encryptedCredential: "string",
mwsAuthToken: {
secretName: "any",
store: {
referenceName: "string",
type: "string",
parameters: {
string: "any",
},
},
type: "AzureKeyVaultSecret",
secretVersion: "any",
},
parameters: {
string: {
type: "string",
defaultValue: "any",
},
},
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",
},
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
resourceGroupName: string
LinkedService Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The LinkedService resource accepts the following input properties:
- Factory
Name string - The factory name.
- Properties
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Amazon MWSLinked Service Azure | Pulumi.Native. Data Factory. Inputs. Amazon Rds For Oracle Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Amazon Rds For Sql Server Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Amazon Redshift Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Linked Service Azure | Pulumi.Native. Data Factory. Inputs. App Figures Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Asana Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Batch Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLinked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Explorer Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Analytics Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Databricks Delta Lake Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Databricks Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Function Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure MLLinked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure MLService Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Maria DBLinked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure My Sql Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Postgre Sql Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Search Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Sql DWLinked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Sql Database Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Sql MILinked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Storage Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Synapse Artifacts Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Table Storage Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Cassandra Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Common Data Service For Apps Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Concur Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Cosmos Db Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Cosmos Db Mongo Db Api Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Couchbase Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Custom Data Source Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Dataworld Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Db2Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Drill Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Dynamics AXLinked Service Azure | Pulumi.Native. Data Factory. Inputs. Dynamics Crm Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Dynamics Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Eloqua Linked Service Azure | Pulumi.Native. Data Factory. Inputs. File Server Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Google Ad Words Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Google Big Query Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Google 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. 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. 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. 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. 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. 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. 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 Cloud | GoogleStorage Linked Service Args Sheets | GreenplumLinked Service Args Linked | HBaseService Args Linked | HDInsightService Args Linked | HDInsightService Args On | HdfsDemand Linked Service Args Linked | HiveService Args Linked | HttpService Args Linked | HubspotService Args Linked | ImpalaService Args Linked | InformixService Args Linked | JiraService Args Linked | MagentoService Args Linked | MariaService Args DBLinked | MarketoService Args Linked | MicrosoftService Args Access | MongoLinked Service Args Db | MongoAtlas Linked Service Args Db | MongoLinked Service Args Db | MyV2Linked Service Args Sql | NetezzaLinked Service Args Linked | ODataService Args Linked | OdbcService Args Linked | Office365LinkedService Args Service | OracleArgs Cloud | OracleStorage Linked Service Args Linked | OracleService Args Service | PaypalCloud Linked Service Args Linked | PhoenixService Args Linked | PostgreService Args Sql | PrestoLinked Service Args Linked | QuickService Args Books | QuickbaseLinked Service Args Linked | ResponsysService Args Linked | RestService Args Service | SalesforceLinked Service Args Linked | SalesforceService Args Marketing | SalesforceCloud Linked Service Args Service | SapCloud Linked Service Args BWLinked | SapService Args Cloud | SapFor Customer Linked Service Args Ecc | SapLinked Service Args Hana | SapLinked Service Args Odp | SapLinked Service Args Open | SapHub Linked Service Args Table | ServiceLinked Service Args Now | SftpLinked Service Args Server | ShareLinked Service Args Point | ShopifyOnline List Linked Service Args Linked | SmartsheetService Args Linked | SnowflakeService Args Linked | SparkService Args Linked | SqlService Args Server | SquareLinked Service Args Linked | SybaseService Args Linked | TeamService Args Desk | TeradataLinked Service Args Linked | TwilioService Args Linked | VerticaService Args Linked | WebService Args Linked | XeroService Args Linked | ZendeskService Args Linked | ZohoService Args Linked Service Args - Properties of linked service.
- Resource
Group stringName - The resource group name.
- Linked
Service stringName - The linked service name.
- factory
Name String - The factory name.
- properties
Amazon
MWSLinked | AmazonService 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 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 | MagentoService 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 | PrestoLinked Service Linked | QuickService Books | QuickbaseLinked Service Linked | ResponsysService Linked | RestService Service | SalesforceLinked Service Linked | SalesforceService Marketing | SalesforceCloud Linked Service Service | SapCloud Linked Service BWLinked | SapService Cloud | SapFor Customer Linked Service Ecc | SapLinked Service Hana | SapLinked Service Odp | SapLinked Service Open | SapHub Linked Service Table | ServiceLinked Service Now | SftpLinked Service Server | ShareLinked Service Point | ShopifyOnline List Linked Service Linked | SmartsheetService Linked | SnowflakeService Linked | SparkService Linked | SqlService Server | SquareLinked Service Linked | SybaseService Linked | TeamService Desk | TeradataLinked Service Linked | TwilioService Linked | VerticaService 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 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 | MagentoService 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 | PrestoLinked Service Linked | QuickService Books | QuickbaseLinked Service Linked | ResponsysService Linked | RestService Service | SalesforceLinked Service Linked | SalesforceService Marketing | SalesforceCloud Linked Service Service | SapCloud Linked Service BWLinked | SapService Cloud | SapFor Customer Linked Service Ecc | SapLinked Service Hana | SapLinked Service Odp | SapLinked Service Open | SapHub Linked Service Table | ServiceLinked Service Now | SftpLinked Service Server | ShareLinked Service Point | ShopifyOnline List Linked Service Linked | SmartsheetService Linked | SnowflakeService Linked | SparkService Linked | SqlService Server | SquareLinked Service Linked | SybaseService Linked | TeamService Desk | TeradataLinked Service Linked | TwilioService Linked | VerticaService 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 Cloud | GoogleStorage Linked Service Args Sheets | GreenplumLinked Service Args Linked | HBaseService Args Linked | HDInsightService Args Linked | HDInsightService Args On | HdfsDemand Linked Service Args Linked | HiveService Args Linked | HttpService Args Linked | HubspotService Args Linked | ImpalaService Args Linked | InformixService Args Linked | JiraService Args Linked | MagentoService Args Linked | MariaService Args DBLinked | MarketoService Args Linked | MicrosoftService Args Access | MongoLinked Service Args Db | MongoAtlas Linked Service Args Db | MongoLinked Service Args Db | MyV2Linked Service Args Sql | NetezzaLinked Service Args Linked | ODataService Args Linked | OdbcService Args Linked | Office365LinkedService Args Service | OracleArgs Cloud | OracleStorage Linked Service Args Linked | OracleService Args Service | PaypalCloud Linked Service Args Linked | PhoenixService Args Linked | PostgreService Args Sql | PrestoLinked Service Args Linked | QuickService Args Books | QuickbaseLinked Service Args Linked | ResponsysService Args Linked | RestService Args Service | SalesforceLinked Service Args Linked | SalesforceService Args Marketing | SalesforceCloud Linked Service Args Service | SapCloud Linked Service Args BWLinked | SapService Args Cloud | SapFor Customer Linked Service Args Ecc | SapLinked Service Args Hana | SapLinked Service Args Odp | SapLinked Service Args Open | SapHub Linked Service Args Table | ServiceLinked Service Args Now | SftpLinked Service Args Server | ShareLinked Service Args Point | ShopifyOnline List Linked Service Args Linked | SmartsheetService Args Linked | SnowflakeService Args Linked | SparkService Args Linked | SqlService Args Server | SquareLinked Service Args Linked | SybaseService Args Linked | TeamService Args Desk | TeradataLinked Service Args Linked | TwilioService Args Linked | VerticaService Args Linked | WebService Args Linked | XeroService Args Linked | ZendeskService Args Linked | ZohoService Args Linked Service Args - Properties of linked service.
- resource_
group_ strname - The resource group name.
- linked_
service_ strname - The linked service name.
- factory
Name String - The factory name.
- properties Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
- Properties of linked service.
- resource
Group StringName - The resource group name.
- linked
Service StringName - The linked service name.
Outputs
All input properties are implicitly available as output properties. Additionally, the LinkedService resource produces the following output properties:
Supporting Types
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
AmazonRdsForOracleLinkedService, AmazonRdsForOracleLinkedServiceArgs
- Connection
String object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The Azure key vault secret reference of password in connection string.
- Connection
String interface{} - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference String - The Azure key vault secret reference of password in connection string.
- connection
String Object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The Azure key vault secret reference of password in connection string.
- connection
String any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The Azure key vault secret reference of password in connection string.
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The Azure key vault secret reference of password in connection string.
- connection
String Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The Azure key vault secret reference of password in connection string.
AmazonRdsForOracleLinkedServiceResponse, AmazonRdsForOracleLinkedServiceResponseArgs
- Connection
String object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The Azure key vault secret reference of password in connection string.
- Connection
String interface{} - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - The Azure key vault secret reference of password in connection string.
- connection
String Object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The Azure key vault secret reference of password in connection string.
- connection
String any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The Azure key vault secret reference of password in connection string.
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The Azure key vault secret reference of password in connection string.
- connection
String Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The Azure key vault secret reference of password in connection string.
AmazonRdsForSqlServerLinkedService, AmazonRdsForSqlServerLinkedServiceArgs
- Connection
String object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Always
Encrypted Pulumi.Settings Azure Native. Data Factory. Inputs. Sql Always Encrypted Properties - Sql always encrypted properties.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential 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 on-premises Windows authentication password.
- User
Name object - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- Connection
String interface{} - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Always
Encrypted SqlSettings Always Encrypted Properties - Sql always encrypted properties.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential 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 on-premises Windows authentication password.
- User
Name interface{} - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- connection
String Object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always
Encrypted SqlSettings Always Encrypted Properties - Sql always encrypted properties.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential 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 on-premises Windows authentication password.
- user
Name Object - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- connection
String any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always
Encrypted SqlSettings Always Encrypted Properties - Sql always encrypted properties.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential 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 on-premises Windows authentication password.
- user
Name any - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always_
encrypted_ Sqlsettings Always Encrypted Properties - Sql always encrypted properties.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential 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 on-premises Windows authentication password.
- user_
name Any - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- connection
String Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always
Encrypted Property MapSettings - Sql always encrypted properties.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential 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 on-premises Windows authentication password.
- user
Name Any - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
AmazonRdsForSqlServerLinkedServiceResponse, AmazonRdsForSqlServerLinkedServiceResponseArgs
- Connection
String object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Always
Encrypted Pulumi.Settings Azure Native. Data Factory. Inputs. Sql Always Encrypted Properties Response - Sql always encrypted properties.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential 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 on-premises Windows authentication password.
- User
Name object - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- Connection
String interface{} - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Always
Encrypted SqlSettings Always Encrypted Properties Response - Sql always encrypted properties.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential 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 on-premises Windows authentication password.
- User
Name interface{} - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- connection
String Object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always
Encrypted SqlSettings Always Encrypted Properties Response - Sql always encrypted properties.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential 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 on-premises Windows authentication password.
- user
Name Object - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- connection
String any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always
Encrypted SqlSettings Always Encrypted Properties Response - Sql always encrypted properties.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential 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 on-premises Windows authentication password.
- user
Name any - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always_
encrypted_ Sqlsettings Always Encrypted Properties Response - Sql always encrypted properties.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential 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 on-premises Windows authentication password.
- user_
name Any - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- connection
String Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always
Encrypted Property MapSettings - Sql always encrypted properties.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential 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 on-premises Windows authentication password.
- user
Name Any - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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).
- Database interface{}
- Database name for connection. Type: string (or Expression with resultType string).
- Endpoint interface{}
- The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Credential
Credential
Reference - The credential reference containing authentication information.
- Description string
- Linked service description.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Service
Principal interface{}Id - The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Kusto.
- Tenant interface{}
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- database Object
- Database name for connection. Type: string (or Expression with resultType string).
- endpoint Object
- The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description String
- Linked service description.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- service
Principal ObjectId - The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Kusto.
- tenant Object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- database any
- Database name for connection. Type: string (or Expression with resultType string).
- endpoint any
- The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description string
- Linked service description.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- service
Principal anyId - The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Kusto.
- tenant any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- database Any
- Database name for connection. Type: string (or Expression with resultType string).
- endpoint Any
- The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description str
- Linked service description.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- service_
principal_ Anyid - The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Kusto.
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- database Any
- Database name for connection. Type: string (or Expression with resultType string).
- endpoint Any
- The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- credential Property Map
- The credential reference containing authentication information.
- description String
- Linked service description.
- parameters Map<Property Map>
- Parameters for linked service.
- service
Principal AnyId - The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - The key of the service principal used to authenticate against Kusto.
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
AzureDataExplorerLinkedServiceResponse, 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).
- Database interface{}
- Database name for connection. Type: string (or Expression with resultType string).
- Endpoint interface{}
- The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Credential
Credential
Reference Response - The credential reference containing authentication information.
- Description string
- Linked service description.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Service
Principal interface{}Id - The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Kusto.
- Tenant interface{}
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- database Object
- Database name for connection. Type: string (or Expression with resultType string).
- endpoint Object
- The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description String
- Linked service description.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- service
Principal ObjectId - The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Kusto.
- tenant Object
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- database any
- Database name for connection. Type: string (or Expression with resultType string).
- endpoint any
- The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description string
- Linked service description.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- service
Principal anyId - The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Kusto.
- tenant any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- database Any
- Database name for connection. Type: string (or Expression with resultType string).
- endpoint Any
- The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description str
- Linked service description.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- service_
principal_ Anyid - The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Kusto.
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
- database Any
- Database name for connection. Type: string (or Expression with resultType string).
- endpoint Any
- The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- credential Property Map
- The credential reference containing authentication information.
- description String
- Linked service description.
- parameters Map<Property Map>
- Parameters for linked service.
- service
Principal AnyId - The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - The key of the service principal used to authenticate against Kusto.
- tenant Any
- The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
AzureDataLakeAnalyticsLinkedService, 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).
- 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).
- 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).
- 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).
- 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).
- 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).
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- Description 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).
- 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.
- Description 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).
- 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.
- description 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).
- 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.
- description 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).
- 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.
- description 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).
- 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.
- description 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).
- 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.
- Description 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).
- 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.
- Description 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).
- 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.
- description 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).
- 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.
- description 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).
- 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.
- description 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).
- 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.
- description 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).
- 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.
- Description 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.
- 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).
- 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.
- 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.
- 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).
- 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.
- 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.
- 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).
- 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.
- 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.
- 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).
- 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.
- 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.
- 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).
- 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.
- 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.
- 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).
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.
- Description 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.
- 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).
- 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.
- 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.
- 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).
- 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.
- 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.
- 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).
- 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.
- 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.
- 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).
- 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.
- 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.
- 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).
- 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.
- 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.
- 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).
AzureFunctionLinkedService, AzureFunctionLinkedServiceArgs
- Function
App objectUrl - The endpoint of the Azure Function App. URL will be in the format https://.azurewebsites.net.
- 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.
- Function
App interface{}Url - The endpoint of the Azure Function App. URL will be in the format https://.azurewebsites.net.
- 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.
- function
App ObjectUrl - The endpoint of the Azure Function App. URL will be in the format https://.azurewebsites.net.
- 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.
- function
App anyUrl - The endpoint of the Azure Function App. URL will be in the format https://.azurewebsites.net.
- 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.
- function_
app_ Anyurl - The endpoint of the Azure Function App. URL will be in the format https://.azurewebsites.net.
- 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.
- function
App AnyUrl - The endpoint of the Azure Function App. URL will be in the format https://.azurewebsites.net.
- 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.
AzureFunctionLinkedServiceResponse, AzureFunctionLinkedServiceResponseArgs
- Function
App objectUrl - The endpoint of the Azure Function App. URL will be in the format https://.azurewebsites.net.
- 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.
- Function
App interface{}Url - The endpoint of the Azure Function App. URL will be in the format https://.azurewebsites.net.
- 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.
- function
App ObjectUrl - The endpoint of the Azure Function App. URL will be in the format https://.azurewebsites.net.
- 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.
- function
App anyUrl - The endpoint of the Azure Function App. URL will be in the format https://.azurewebsites.net.
- 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.
- function_
app_ Anyurl - The endpoint of the Azure Function App. URL will be in the format https://.azurewebsites.net.
- 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.
- function
App AnyUrl - The endpoint of the Azure Function App. URL will be in the format https://.azurewebsites.net.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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.
- 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).
- 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.
- 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).
- 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.
- 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).
- 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.
- 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).
- 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.
- 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).
- 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.
- 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).
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.
- 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).
- 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.
- 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).
- 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.
- 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).
- 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.
- 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).
- 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.
- 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).
- 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.
- 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).
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
AzurePostgreSqlLinkedService, AzurePostgreSqlLinkedServiceArgs
- 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.
- Password
Pulumi.
Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference - The Azure key vault secret reference of password 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{} - 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.
- Password
Azure
Key Vault Secret Reference - The Azure key vault secret reference of password 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 - 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.
- password
Azure
Key Vault Secret Reference - The Azure key vault secret reference of password 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 - 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.
- password
Azure
Key Vault Secret Reference - The Azure key vault secret reference of password 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 - 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.
- password
Azure
Key Vault Secret Reference - The Azure key vault secret reference of password 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 - 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.
- password Property Map
- The Azure key vault secret reference of password in connection string.
AzurePostgreSqlLinkedServiceResponse, AzurePostgreSqlLinkedServiceResponseArgs
- 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.
- Password
Pulumi.
Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response - The Azure key vault secret reference of password 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{} - 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.
- Password
Azure
Key Vault Secret Reference Response - The Azure key vault secret reference of password 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 - 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.
- password
Azure
Key Vault Secret Reference Response - The Azure key vault secret reference of password 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 - 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.
- password
Azure
Key Vault Secret Reference Response - The Azure key vault secret reference of password 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 - 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.
- password
Azure
Key Vault Secret Reference Response - The Azure key vault secret reference of password 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 - 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.
- password Property Map
- The Azure key vault secret reference of password in connection string.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
AzureSqlDWLinkedService, AzureSqlDWLinkedServiceArgs
- Connection
String object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, 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.
- 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.
- Password
Pulumi.
Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference - The Azure key vault secret reference of password in connection 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).
- Connection
String interface{} - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, 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.
- 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.
- Password
Azure
Key Vault Secret Reference - The Azure key vault secret reference of password in connection 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).
- connection
String Object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, 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.
- 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.
- password
Azure
Key Vault Secret Reference - The Azure key vault secret reference of password in connection 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).
- connection
String any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, 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.
- 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.
- password
Azure
Key Vault Secret Reference - The Azure key vault secret reference of password in connection 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).
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, 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.
- 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.
- password
Azure
Key Vault Secret Reference - The Azure key vault secret reference of password in connection 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).
- connection
String Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, 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.
- 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.
- password Property Map
- The Azure key vault secret reference of password in connection 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).
AzureSqlDWLinkedServiceResponse, AzureSqlDWLinkedServiceResponseArgs
- Connection
String object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, 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.
- 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.
- Password
Pulumi.
Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection 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).
- Connection
String interface{} - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, 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.
- 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.
- Password
Azure
Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection 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).
- connection
String Object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, 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.
- 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.
- password
Azure
Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection 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).
- connection
String any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, 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.
- 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.
- password
Azure
Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection 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).
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, 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.
- 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.
- password
Azure
Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection 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).
- connection
String Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, 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.
- 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.
- password Property Map
- The Azure key vault secret reference of password in connection 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).
AzureSqlDatabaseLinkedService, AzureSqlDatabaseLinkedServiceArgs
- Connection
String object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Always
Encrypted Pulumi.Settings Azure Native. Data Factory. Inputs. Sql Always Encrypted Properties - Sql always encrypted properties.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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.
- Password
Pulumi.
Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference - The Azure key vault secret reference of password in connection 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).
- Connection
String interface{} - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Always
Encrypted SqlSettings Always Encrypted Properties - Sql always encrypted properties.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- 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.
- Password
Azure
Key Vault Secret Reference - The Azure key vault secret reference of password in connection 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).
- connection
String Object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always
Encrypted SqlSettings Always Encrypted Properties - Sql always encrypted properties.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- 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.
- password
Azure
Key Vault Secret Reference - The Azure key vault secret reference of password in connection 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).
- connection
String any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always
Encrypted SqlSettings Always Encrypted Properties - Sql always encrypted properties.
- annotations any[]
- List of tags that can be used for describing the linked service.
- 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.
- password
Azure
Key Vault Secret Reference - The Azure key vault secret reference of password in connection 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).
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always_
encrypted_ Sqlsettings Always Encrypted Properties - Sql always encrypted properties.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- 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.
- password
Azure
Key Vault Secret Reference - The Azure key vault secret reference of password in connection 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).
- connection
String Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always
Encrypted Property MapSettings - Sql always encrypted properties.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- 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.
- password Property Map
- The Azure key vault secret reference of password in connection 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).
AzureSqlDatabaseLinkedServiceResponse, AzureSqlDatabaseLinkedServiceResponseArgs
- Connection
String object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Always
Encrypted Pulumi.Settings Azure Native. Data Factory. Inputs. Sql Always Encrypted Properties Response - Sql always encrypted properties.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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.
- Password
Pulumi.
Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection 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).
- Connection
String interface{} - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Always
Encrypted SqlSettings Always Encrypted Properties Response - Sql always encrypted properties.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- 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.
- Password
Azure
Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection 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).
- connection
String Object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always
Encrypted SqlSettings Always Encrypted Properties Response - Sql always encrypted properties.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- 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.
- password
Azure
Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection 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).
- connection
String any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always
Encrypted SqlSettings Always Encrypted Properties Response - Sql always encrypted properties.
- annotations any[]
- List of tags that can be used for describing the linked service.
- 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.
- password
Azure
Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection 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).
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always_
encrypted_ Sqlsettings Always Encrypted Properties Response - Sql always encrypted properties.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- 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.
- password
Azure
Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection 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).
- connection
String Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always
Encrypted Property MapSettings - Sql always encrypted properties.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- 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.
- password Property Map
- The Azure key vault secret reference of password in connection 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).
AzureSqlMILinkedService, AzureSqlMILinkedServiceArgs
- Connection
String object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Always
Encrypted Pulumi.Settings Azure Native. Data Factory. Inputs. Sql Always Encrypted Properties - Sql always encrypted properties.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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.
- Password
Pulumi.
Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference - The Azure key vault secret reference of password in connection 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).
- Connection
String interface{} - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Always
Encrypted SqlSettings Always Encrypted Properties - Sql always encrypted properties.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- 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.
- Password
Azure
Key Vault Secret Reference - The Azure key vault secret reference of password in connection 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).
- connection
String Object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always
Encrypted SqlSettings Always Encrypted Properties - Sql always encrypted properties.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- 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.
- password
Azure
Key Vault Secret Reference - The Azure key vault secret reference of password in connection 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).
- connection
String any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always
Encrypted SqlSettings Always Encrypted Properties - Sql always encrypted properties.
- annotations any[]
- List of tags that can be used for describing the linked service.
- 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.
- password
Azure
Key Vault Secret Reference - The Azure key vault secret reference of password in connection 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).
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always_
encrypted_ Sqlsettings Always Encrypted Properties - Sql always encrypted properties.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- 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.
- password
Azure
Key Vault Secret Reference - The Azure key vault secret reference of password in connection 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).
- connection
String Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always
Encrypted Property MapSettings - Sql always encrypted properties.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- 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.
- password Property Map
- The Azure key vault secret reference of password in connection 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).
AzureSqlMILinkedServiceResponse, AzureSqlMILinkedServiceResponseArgs
- Connection
String object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Always
Encrypted Pulumi.Settings Azure Native. Data Factory. Inputs. Sql Always Encrypted Properties Response - Sql always encrypted properties.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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.
- Password
Pulumi.
Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection 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).
- Connection
String interface{} - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Always
Encrypted SqlSettings Always Encrypted Properties Response - Sql always encrypted properties.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- 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.
- Password
Azure
Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection 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).
- connection
String Object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always
Encrypted SqlSettings Always Encrypted Properties Response - Sql always encrypted properties.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- 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.
- password
Azure
Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection 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).
- connection
String any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always
Encrypted SqlSettings Always Encrypted Properties Response - Sql always encrypted properties.
- annotations any[]
- List of tags that can be used for describing the linked service.
- 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.
- password
Azure
Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection 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).
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always_
encrypted_ Sqlsettings Always Encrypted Properties Response - Sql always encrypted properties.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- 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.
- password
Azure
Key Vault Secret Reference Response - The Azure key vault secret reference of password in connection 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).
- connection
String Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always
Encrypted Property MapSettings - Sql always encrypted properties.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- 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.
- password Property Map
- The Azure key vault secret reference of password in connection 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).
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- Description string
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- Description string
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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. 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.
- 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).
- 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. 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.
- 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).
- 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. 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.
- 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).
- 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. 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.
- 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).
- 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. 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.
- 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).
- 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. 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.
- 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).
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. 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.
- 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).
- 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. 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.
- 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).
- 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. 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.
- 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).
- 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. 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.
- 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).
- 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. 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.
- 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).
- 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. 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.
- 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).
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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. 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.
- Description 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
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).
- 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. 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.
- Description 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
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).
- 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. 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.
- description 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
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).
- 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. 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.
- description 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
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).
- 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. 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.
- description 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_
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).
- 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. 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.
- description 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
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).
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. 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.
- Description 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
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).
- 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. 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.
- Description 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
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).
- 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. 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.
- description 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
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).
- 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. 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.
- description 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
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).
- 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. 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.
- description 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_
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).
- 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. 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.
- description 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
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).
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. 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.
- 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).
- 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. 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.
- 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).
- 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. 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.
- 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).
- 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. 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.
- 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).
- 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. 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.
- 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).
- 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. 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.
- 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).
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. 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.
- 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).
- 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. 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.
- 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).
- 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. 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.
- 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).
- 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. 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.
- 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).
- 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. 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.
- 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).
- 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. 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.
- 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).
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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 - 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.
- 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 AdWords for UserAuthentication.
- 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).
- 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{} - 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.
- 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 AdWords for UserAuthentication.
- 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).
- 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 - 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.
- 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 AdWords for UserAuthentication.
- 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).
- 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 - 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.
- 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 AdWords for UserAuthentication.
- 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).
- 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 - 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.
- 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 AdWords for UserAuthentication.
- 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).
- 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 - 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.
- 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 AdWords for UserAuthentication.
- 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).
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 - 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.
- 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 AdWords for UserAuthentication.
- 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).
- 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{} - 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.
- 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 AdWords for UserAuthentication.
- 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).
- 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 - 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.
- 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 AdWords for UserAuthentication.
- 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).
- 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 - 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.
- 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 AdWords for UserAuthentication.
- 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).
- 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 - 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.
- 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 AdWords for UserAuthentication.
- 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).
- 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 - 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.
- 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 AdWords for UserAuthentication.
- 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).
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
GreenplumLinkedService, GreenplumLinkedServiceArgs
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
GreenplumLinkedServiceResponse, GreenplumLinkedServiceResponseArgs
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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: string (or Expression with resultType string).
- 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 object
- Version of the HDInsight cluster. Type: string (or Expression with resultType string).
- 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: string (or Expression with resultType string).
- 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 interface{}
- Version of the HDInsight cluster. Type: string (or Expression with resultType string).
- 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: string (or Expression with resultType string).
- 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 Object
- Version of the HDInsight cluster. Type: string (or Expression with resultType string).
- 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: string (or Expression with resultType string).
- 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 any
- Version of the HDInsight cluster. Type: string (or Expression with resultType string).
- 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: string (or Expression with resultType string).
- 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 Any
- Version of the HDInsight cluster. Type: string (or Expression with resultType string).
- 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: string (or Expression with resultType string).
- 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 Any
- Version of the HDInsight cluster. Type: string (or Expression with resultType string).
- 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: string (or Expression with resultType string).
- 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 object
- Version of the HDInsight cluster. Type: string (or Expression with resultType string).
- 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: string (or Expression with resultType string).
- 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 interface{}
- Version of the HDInsight cluster. Type: string (or Expression with resultType string).
- 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: string (or Expression with resultType string).
- 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 Object
- Version of the HDInsight cluster. Type: string (or Expression with resultType string).
- 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: string (or Expression with resultType string).
- 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 any
- Version of the HDInsight cluster. Type: string (or Expression with resultType string).
- 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: string (or Expression with resultType string).
- 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 Any
- Version of the HDInsight cluster. Type: string (or Expression with resultType string).
- 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: string (or Expression with resultType string).
- 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 Any
- Version of the HDInsight cluster. Type: string (or Expression with resultType string).
- 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).
- 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).
- 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).
- 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).
- 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).
- 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).
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).
- 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).
- 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).
- 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).
- 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).
- 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).
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
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.
- 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
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.
- 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
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.
- 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
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.
- 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_
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.
- 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
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.
- 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
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.
- 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
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.
- 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
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.
- 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
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.
- 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_
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.
- 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
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.
- 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: object (or Expression with resultType object).
- 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).
- 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: object (or Expression with resultType object).
- 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).
- 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: object (or Expression with resultType object).
- 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).
- 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: object (or Expression with resultType object).
- 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).
- 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: object (or Expression with resultType object).
- 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).
- 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: object (or Expression with resultType object).
- 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).
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: object (or Expression with resultType object).
- 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).
- 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: object (or Expression with resultType object).
- 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).
- 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: object (or Expression with resultType object).
- 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).
- 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: object (or Expression with resultType object).
- 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).
- 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: object (or Expression with resultType object).
- 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).
- 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: object (or Expression with resultType object).
- 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).
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.
- 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.
- 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.
- 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.
- 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.
- 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.
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 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.
- 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 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.
- Client
Id interface{} - The client ID associated with your Hubspot application.
- Access
Token AzureKey | SecureVault Secret Reference Response String Response - 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 Response String Response - The client secret associated with your Hubspot application.
- 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.
- Refresh
Token AzureKey | SecureVault Secret Reference Response String Response - 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.
- client
Id Object - The client ID associated with your Hubspot application.
- access
Token AzureKey | SecureVault Secret Reference Response 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 AzureKey | SecureVault Secret Reference Response String Response - The client secret associated with your Hubspot application.
- 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.
- refresh
Token AzureKey | SecureVault Secret Reference Response String Response - 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.
- client
Id any - The client ID associated with your Hubspot application.
- access
Token AzureKey | SecureVault Secret Reference Response String Response - 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 Response String Response - The client secret associated with your Hubspot application.
- 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.
- refresh
Token AzureKey | SecureVault Secret Reference Response String Response - 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.
- client_
id Any - The client ID associated with your Hubspot application.
- access_
token AzureKey | SecureVault Secret Reference Response String Response - 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 Response String Response - The client secret associated with your Hubspot application.
- 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.
- refresh_
token AzureKey | SecureVault Secret Reference Response String Response - 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.
- 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.
ImpalaAuthenticationType, ImpalaAuthenticationTypeArgs
- Anonymous
- Anonymous
- SASLUsername
- SASLUsername
- Username
And Password - UsernameAndPassword
- Impala
Authentication Type Anonymous - Anonymous
- Impala
Authentication Type SASLUsername - SASLUsername
- Impala
Authentication Type Username And Password - UsernameAndPassword
- Anonymous
- Anonymous
- SASLUsername
- SASLUsername
- Username
And Password - UsernameAndPassword
- Anonymous
- Anonymous
- SASLUsername
- SASLUsername
- Username
And Password - UsernameAndPassword
- ANONYMOUS
- Anonymous
- SASLUSERNAME
- SASLUsername
- USERNAME_AND_PASSWORD
- UsernameAndPassword
- "Anonymous"
- Anonymous
- "SASLUsername"
- SASLUsername
- "Username
And Password" - UsernameAndPassword
ImpalaLinkedService, ImpalaLinkedServiceArgs
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Impala Authentication Type - The authentication type to use.
- Host object
- The IP address or host name of the Impala 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.
- 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 when using UsernameAndPassword.
- Port object
- The TCP port that the Impala server uses to listen for client connections. The default value is 21050.
- 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
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 used to access the Impala server. The default value is anonymous when using SASLUsername.
- Authentication
Type string | ImpalaAuthentication Type - The authentication type to use.
- Host interface{}
- The IP address or host name of the Impala 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.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference String - The password corresponding to the user name when using UsernameAndPassword.
- Port interface{}
- The TCP port that the Impala server uses to listen for client connections. The default value is 21050.
- 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
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 used to access the Impala server. The default value is anonymous when using SASLUsername.
- authentication
Type String | ImpalaAuthentication Type - The authentication type to use.
- host Object
- The IP address or host name of the Impala 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.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The password corresponding to the user name when using UsernameAndPassword.
- port Object
- The TCP port that the Impala server uses to listen for client connections. The default value is 21050.
- 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
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 used to access the Impala server. The default value is anonymous when using SASLUsername.
- authentication
Type string | ImpalaAuthentication Type - The authentication type to use.
- host any
- The IP address or host name of the Impala 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.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The password corresponding to the user name when using UsernameAndPassword.
- port any
- The TCP port that the Impala server uses to listen for client connections. The default value is 21050.
- trusted
Cert 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
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 used to access the Impala server. The default value is anonymous when using SASLUsername.
- authentication_
type str | ImpalaAuthentication Type - The authentication type to use.
- host Any
- The IP address or host name of the Impala 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.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The password corresponding to the user name when using UsernameAndPassword.
- port Any
- The TCP port that the Impala server uses to listen for client connections. The default value is 21050.
- trusted_
cert_ 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_
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 used to access the Impala server. The default value is anonymous when using SASLUsername.
- authentication
Type String | "Anonymous" | "SASLUsername" | "UsernameAnd Password" - The authentication type to use.
- host Any
- The IP address or host name of the Impala 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.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The password corresponding to the user name when using UsernameAndPassword.
- port Any
- The TCP port that the Impala server uses to listen for client connections. The default value is 21050.
- 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
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 used to access the Impala server. The default value is anonymous when using SASLUsername.
ImpalaLinkedServiceResponse, ImpalaLinkedServiceResponseArgs
- Authentication
Type string - The authentication type to use.
- Host object
- The IP address or host name of the Impala 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.
- 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 when using UsernameAndPassword.
- Port object
- The TCP port that the Impala server uses to listen for client connections. The default value is 21050.
- 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
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 used to access the Impala server. The default value is anonymous when using SASLUsername.
- Authentication
Type string - The authentication type to use.
- Host interface{}
- The IP address or host name of the Impala 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.
- 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 when using UsernameAndPassword.
- Port interface{}
- The TCP port that the Impala server uses to listen for client connections. The default value is 21050.
- 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
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 used to access the Impala server. The default value is anonymous when using SASLUsername.
- authentication
Type String - The authentication type to use.
- host Object
- The IP address or host name of the Impala 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.
- 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 when using UsernameAndPassword.
- port Object
- The TCP port that the Impala server uses to listen for client connections. The default value is 21050.
- 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
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 used to access the Impala server. The default value is anonymous when using SASLUsername.
- authentication
Type string - The authentication type to use.
- host any
- The IP address or host name of the Impala 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.
- 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 when using UsernameAndPassword.
- port any
- The TCP port that the Impala server uses to listen for client connections. The default value is 21050.
- trusted
Cert 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
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 used to access the Impala server. The default value is anonymous when using SASLUsername.
- authentication_
type str - The authentication type to use.
- host Any
- The IP address or host name of the Impala 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.
- 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 when using UsernameAndPassword.
- port Any
- The TCP port that the Impala server uses to listen for client connections. The default value is 21050.
- trusted_
cert_ 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_
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 used to access the Impala server. The default value is anonymous when using SASLUsername.
- authentication
Type String - The authentication type to use.
- host Any
- The IP address or host name of the Impala 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.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The password corresponding to the user name when using UsernameAndPassword.
- port Any
- The TCP port that the Impala server uses to listen for client connections. The default value is 21050.
- 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
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 used to access the Impala server. The default value is anonymous when using SASLUsername.
InformixLinkedService, InformixLinkedServiceArgs
- Connection
String object - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Authentication
Type object - Type of authentication used to connect to the Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Credential
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The access credential portion of the connection string specified in driver-specific property-value format.
- Description string
- 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 Basic authentication.
- User
Name object - User name for Basic authentication. Type: string (or Expression with resultType string).
- Connection
String interface{} - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Authentication
Type interface{} - Type of authentication used to connect to the Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Credential
Azure
Key | SecureVault Secret Reference String - The access credential portion of the connection string specified in driver-specific property-value format.
- Description string
- 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 Basic authentication.
- User
Name interface{} - User name for Basic authentication. Type: string (or Expression with resultType string).
- connection
String Object - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- authentication
Type Object - Type of authentication used to connect to the Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Azure
Key | SecureVault Secret Reference String - The access credential portion of the connection string specified in driver-specific property-value format.
- description String
- 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 Basic authentication.
- user
Name Object - User name for Basic authentication. Type: string (or Expression with resultType string).
- connection
String any - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- annotations any[]
- List of tags that can be used for describing the linked service.
- authentication
Type any - Type of authentication used to connect to the Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Azure
Key | SecureVault Secret Reference String - The access credential portion of the connection string specified in driver-specific property-value format.
- description string
- 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 Basic authentication.
- user
Name any - User name for Basic authentication. Type: string (or Expression with resultType string).
- connection_
string Any - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication_
type Any - Type of authentication used to connect to the Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- credential
Azure
Key | SecureVault Secret Reference String - The access credential portion of the connection string specified in driver-specific property-value format.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - Password for Basic authentication.
- user_
name Any - User name for Basic authentication. Type: string (or Expression with resultType string).
- connection
String Any - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- authentication
Type Any - Type of authentication used to connect to the Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- connect
Via Property Map - The integration runtime reference.
- credential Property Map | Property Map
- The access credential portion of the connection string specified in driver-specific property-value format.
- description String
- Linked service description.
- 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 authentication.
- user
Name Any - User name for Basic authentication. Type: string (or Expression with resultType string).
InformixLinkedServiceResponse, InformixLinkedServiceResponseArgs
- Connection
String object - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Authentication
Type object - Type of authentication used to connect to the Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Credential
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The access credential portion of the connection string specified in driver-specific property-value format.
- Description string
- 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 Basic authentication.
- User
Name object - User name for Basic authentication. Type: string (or Expression with resultType string).
- Connection
String interface{} - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Authentication
Type interface{} - Type of authentication used to connect to the Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Credential
Azure
Key | SecureVault Secret Reference Response String Response - The access credential portion of the connection string specified in driver-specific property-value format.
- Description string
- 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 Basic authentication.
- User
Name interface{} - User name for Basic authentication. Type: string (or Expression with resultType string).
- connection
String Object - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- authentication
Type Object - Type of authentication used to connect to the Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Azure
Key | SecureVault Secret Reference Response String Response - The access credential portion of the connection string specified in driver-specific property-value format.
- description String
- 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 Basic authentication.
- user
Name Object - User name for Basic authentication. Type: string (or Expression with resultType string).
- connection
String any - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- annotations any[]
- List of tags that can be used for describing the linked service.
- authentication
Type any - Type of authentication used to connect to the Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Azure
Key | SecureVault Secret Reference Response String Response - The access credential portion of the connection string specified in driver-specific property-value format.
- description string
- 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 Basic authentication.
- user
Name any - User name for Basic authentication. Type: string (or Expression with resultType string).
- connection_
string Any - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication_
type Any - Type of authentication used to connect to the Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Azure
Key | SecureVault Secret Reference Response String Response - The access credential portion of the connection string specified in driver-specific property-value format.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - Password for Basic authentication.
- user_
name Any - User name for Basic authentication. Type: string (or Expression with resultType string).
- connection
String Any - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- authentication
Type Any - Type of authentication used to connect to the Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- connect
Via Property Map - The integration runtime reference.
- credential Property Map | Property Map
- The access credential portion of the connection string specified in driver-specific property-value format.
- description String
- Linked service description.
- 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 authentication.
- user
Name Any - User name for Basic authentication. Type: string (or Expression with resultType string).
IntegrationRuntimeReference, IntegrationRuntimeReferenceArgs
- Reference
Name string - Reference integration runtime name.
- Type string
- Type of integration runtime.
- Parameters Dictionary<string, object>
- Arguments for integration runtime.
- Reference
Name string - Reference integration runtime name.
- Type string
- Type of integration runtime.
- Parameters map[string]interface{}
- Arguments for integration runtime.
- reference
Name String - Reference integration runtime name.
- type String
- Type of integration runtime.
- parameters Map<String,Object>
- Arguments for integration runtime.
- reference
Name string - Reference integration runtime name.
- type string
- Type of integration runtime.
- parameters {[key: string]: any}
- Arguments for integration runtime.
- reference_
name str - Reference integration runtime name.
- type str
- Type of integration runtime.
- parameters Mapping[str, Any]
- Arguments for integration runtime.
- reference
Name String - Reference integration runtime name.
- type String
- Type of integration runtime.
- parameters Map<Any>
- Arguments for integration runtime.
IntegrationRuntimeReferenceResponse, IntegrationRuntimeReferenceResponseArgs
- Reference
Name string - Reference integration runtime name.
- Type string
- Type of integration runtime.
- Parameters Dictionary<string, object>
- Arguments for integration runtime.
- Reference
Name string - Reference integration runtime name.
- Type string
- Type of integration runtime.
- Parameters map[string]interface{}
- Arguments for integration runtime.
- reference
Name String - Reference integration runtime name.
- type String
- Type of integration runtime.
- parameters Map<String,Object>
- Arguments for integration runtime.
- reference
Name string - Reference integration runtime name.
- type string
- Type of integration runtime.
- parameters {[key: string]: any}
- Arguments for integration runtime.
- reference_
name str - Reference integration runtime name.
- type str
- Type of integration runtime.
- parameters Mapping[str, Any]
- Arguments for integration runtime.
- reference
Name String - Reference integration runtime name.
- type String
- Type of integration runtime.
- parameters Map<Any>
- Arguments for integration runtime.
JiraLinkedService, JiraLinkedServiceArgs
- Host object
- The IP address or host name of the Jira service. (e.g. jira.example.com)
- Username object
- The user name that you use to access Jira Service.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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 that you provided in the username field.
- Port object
- The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
- 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.
- Host interface{}
- The IP address or host name of the Jira service. (e.g. jira.example.com)
- Username interface{}
- The user name that you use to access Jira Service.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- 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 that you provided in the username field.
- Port interface{}
- The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
- 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.
- host Object
- The IP address or host name of the Jira service. (e.g. jira.example.com)
- username Object
- The user name that you use to access Jira Service.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- 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 that you provided in the username field.
- port Object
- The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
- 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.
- host any
- The IP address or host name of the Jira service. (e.g. jira.example.com)
- username any
- The user name that you use to access Jira Service.
- annotations any[]
- List of tags that can be used for describing the linked service.
- 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 that you provided in the username field.
- port any
- The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
- use
Encrypted 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.
- host Any
- The IP address or host name of the Jira service. (e.g. jira.example.com)
- username Any
- The user name that you use to access Jira Service.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via 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 that you provided in the username field.
- port Any
- The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
- use_
encrypted_ 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.
- host Any
- The IP address or host name of the Jira service. (e.g. jira.example.com)
- username Any
- The user name that you use to access Jira Service.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- 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 that you provided in the username field.
- port Any
- The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
- use
Encrypted 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.
JiraLinkedServiceResponse, JiraLinkedServiceResponseArgs
- Host object
- The IP address or host name of the Jira service. (e.g. jira.example.com)
- Username object
- The user name that you use to access Jira Service.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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 that you provided in the username field.
- Port object
- The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
- 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.
- Host interface{}
- The IP address or host name of the Jira service. (e.g. jira.example.com)
- Username interface{}
- The user name that you use to access Jira Service.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- 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 that you provided in the username field.
- Port interface{}
- The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
- 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.
- host Object
- The IP address or host name of the Jira service. (e.g. jira.example.com)
- username Object
- The user name that you use to access Jira Service.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- 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 that you provided in the username field.
- port Object
- The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
- 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.
- host any
- The IP address or host name of the Jira service. (e.g. jira.example.com)
- username any
- The user name that you use to access Jira Service.
- annotations any[]
- List of tags that can be used for describing the linked service.
- 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 that you provided in the username field.
- port any
- The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
- use
Encrypted 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.
- host Any
- The IP address or host name of the Jira service. (e.g. jira.example.com)
- username Any
- The user name that you use to access Jira Service.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via 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 that you provided in the username field.
- port Any
- The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
- use_
encrypted_ 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.
- host Any
- The IP address or host name of the Jira service. (e.g. jira.example.com)
- username Any
- The user name that you use to access Jira Service.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- 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 that you provided in the username field.
- port Any
- The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
- use
Encrypted 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.
LinkedServiceReference, LinkedServiceReferenceArgs
- Reference
Name string - Reference LinkedService name.
- Type
string | Pulumi.
Azure Native. Data Factory. Type - Linked service reference type.
- Parameters Dictionary<string, object>
- Arguments for LinkedService.
- Reference
Name string - Reference LinkedService name.
- Type string | Type
- Linked service reference type.
- Parameters map[string]interface{}
- Arguments for LinkedService.
- reference
Name String - Reference LinkedService name.
- type String | Type
- Linked service reference type.
- parameters Map<String,Object>
- Arguments for LinkedService.
- reference
Name string - Reference LinkedService name.
- type string | Type
- Linked service reference type.
- parameters {[key: string]: any}
- Arguments for LinkedService.
- reference_
name str - Reference LinkedService name.
- type str | Type
- Linked service reference type.
- parameters Mapping[str, Any]
- Arguments for LinkedService.
- reference
Name String - Reference LinkedService name.
- type
String | "Linked
Service Reference" - Linked service reference type.
- parameters Map<Any>
- Arguments for LinkedService.
LinkedServiceReferenceResponse, LinkedServiceReferenceResponseArgs
- Reference
Name string - Reference LinkedService name.
- Type string
- Linked service reference type.
- Parameters Dictionary<string, object>
- Arguments for LinkedService.
- Reference
Name string - Reference LinkedService name.
- Type string
- Linked service reference type.
- Parameters map[string]interface{}
- Arguments for LinkedService.
- reference
Name String - Reference LinkedService name.
- type String
- Linked service reference type.
- parameters Map<String,Object>
- Arguments for LinkedService.
- reference
Name string - Reference LinkedService name.
- type string
- Linked service reference type.
- parameters {[key: string]: any}
- Arguments for LinkedService.
- reference_
name str - Reference LinkedService name.
- type str
- Linked service reference type.
- parameters Mapping[str, Any]
- Arguments for LinkedService.
- reference
Name String - Reference LinkedService name.
- type String
- Linked service reference type.
- parameters Map<Any>
- Arguments for LinkedService.
MagentoLinkedService, MagentoLinkedServiceArgs
- Host object
- The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
- Access
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The access token from Magento.
- 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.
- 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.
- Host interface{}
- The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
- Access
Token AzureKey | SecureVault Secret Reference String - The access token from Magento.
- 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.
- 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.
- host Object
- The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
- access
Token AzureKey | SecureVault Secret Reference String - The access token from Magento.
- 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.
- 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.
- host any
- The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
- access
Token AzureKey | SecureVault Secret Reference String - The access token from Magento.
- 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.
- 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.
- host Any
- The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
- access_
token AzureKey | SecureVault Secret Reference String - The access token from Magento.
- 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.
- 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.
- host Any
- The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
- access
Token Property Map | Property Map - The access token from Magento.
- 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.
- 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.
MagentoLinkedServiceResponse, MagentoLinkedServiceResponseArgs
- Host object
- The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
- 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 from Magento.
- 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.
- 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.
- Host interface{}
- The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
- Access
Token AzureKey | SecureVault Secret Reference Response String Response - The access token from Magento.
- 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.
- 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.
- host Object
- The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
- access
Token AzureKey | SecureVault Secret Reference Response String Response - The access token from Magento.
- 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.
- 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.
- host any
- The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
- access
Token AzureKey | SecureVault Secret Reference Response String Response - The access token from Magento.
- 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.
- 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.
- host Any
- The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
- access_
token AzureKey | SecureVault Secret Reference Response String Response - The access token from Magento.
- 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.
- 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.
- host Any
- The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
- access
Token Property Map | Property Map - The access token from Magento.
- 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.
- 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.
MariaDBLinkedService, MariaDBLinkedServiceArgs
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
MariaDBLinkedServiceResponse, MariaDBLinkedServiceResponseArgs
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
MarketoLinkedService, MarketoLinkedServiceArgs
- Client
Id object - The client Id of your Marketo service.
- Endpoint object
- The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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 your Marketo 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.
- 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.
- Client
Id interface{} - The client Id of your Marketo service.
- Endpoint interface{}
- The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Client
Secret AzureKey | SecureVault Secret Reference String - The client secret of your Marketo 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.
- 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.
- client
Id Object - The client Id of your Marketo service.
- endpoint Object
- The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- client
Secret AzureKey | SecureVault Secret Reference String - The client secret of your Marketo 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.
- 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.
- client
Id any - The client Id of your Marketo service.
- endpoint any
- The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
- annotations any[]
- List of tags that can be used for describing the linked service.
- client
Secret AzureKey | SecureVault Secret Reference String - The client secret of your Marketo 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.
- 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.
- client_
id Any - The client Id of your Marketo service.
- endpoint Any
- The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- client_
secret AzureKey | SecureVault Secret Reference String - The client secret of your Marketo 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.
- 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.
- client
Id Any - The client Id of your Marketo service.
- endpoint Any
- The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- client
Secret Property Map | Property Map - The client secret of your Marketo 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.
- 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.
MarketoLinkedServiceResponse, MarketoLinkedServiceResponseArgs
- Client
Id object - The client Id of your Marketo service.
- Endpoint object
- The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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 your Marketo 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.
- 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.
- Client
Id interface{} - The client Id of your Marketo service.
- Endpoint interface{}
- The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Client
Secret AzureKey | SecureVault Secret Reference Response String Response - The client secret of your Marketo 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.
- 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.
- client
Id Object - The client Id of your Marketo service.
- endpoint Object
- The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- client
Secret AzureKey | SecureVault Secret Reference Response String Response - The client secret of your Marketo 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.
- 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.
- client
Id any - The client Id of your Marketo service.
- endpoint any
- The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
- annotations any[]
- List of tags that can be used for describing the linked service.
- client
Secret AzureKey | SecureVault Secret Reference Response String Response - The client secret of your Marketo 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.
- 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.
- client_
id Any - The client Id of your Marketo service.
- endpoint Any
- The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- client_
secret AzureKey | SecureVault Secret Reference Response String Response - The client secret of your Marketo 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.
- 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.
- client
Id Any - The client Id of your Marketo service.
- endpoint Any
- The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- client
Secret Property Map | Property Map - The client secret of your Marketo 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.
- 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.
MicrosoftAccessLinkedService, MicrosoftAccessLinkedServiceArgs
- Connection
String object - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Authentication
Type object - Type of authentication used to connect to the Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Credential
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The access credential portion of the connection string specified in driver-specific property-value format.
- Description string
- 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 Basic authentication.
- User
Name object - User name for Basic authentication. Type: string (or Expression with resultType string).
- Connection
String interface{} - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Authentication
Type interface{} - Type of authentication used to connect to the Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Credential
Azure
Key | SecureVault Secret Reference String - The access credential portion of the connection string specified in driver-specific property-value format.
- Description string
- 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 Basic authentication.
- User
Name interface{} - User name for Basic authentication. Type: string (or Expression with resultType string).
- connection
String Object - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- authentication
Type Object - Type of authentication used to connect to the Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Azure
Key | SecureVault Secret Reference String - The access credential portion of the connection string specified in driver-specific property-value format.
- description String
- 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 Basic authentication.
- user
Name Object - User name for Basic authentication. Type: string (or Expression with resultType string).
- connection
String any - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- annotations any[]
- List of tags that can be used for describing the linked service.
- authentication
Type any - Type of authentication used to connect to the Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Azure
Key | SecureVault Secret Reference String - The access credential portion of the connection string specified in driver-specific property-value format.
- description string
- 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 Basic authentication.
- user
Name any - User name for Basic authentication. Type: string (or Expression with resultType string).
- connection_
string Any - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication_
type Any - Type of authentication used to connect to the Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- credential
Azure
Key | SecureVault Secret Reference String - The access credential portion of the connection string specified in driver-specific property-value format.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - Password for Basic authentication.
- user_
name Any - User name for Basic authentication. Type: string (or Expression with resultType string).
- connection
String Any - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- authentication
Type Any - Type of authentication used to connect to the Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- connect
Via Property Map - The integration runtime reference.
- credential Property Map | Property Map
- The access credential portion of the connection string specified in driver-specific property-value format.
- description String
- Linked service description.
- 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 authentication.
- user
Name Any - User name for Basic authentication. Type: string (or Expression with resultType string).
MicrosoftAccessLinkedServiceResponse, MicrosoftAccessLinkedServiceResponseArgs
- Connection
String object - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Authentication
Type object - Type of authentication used to connect to the Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Credential
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The access credential portion of the connection string specified in driver-specific property-value format.
- Description string
- 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 Basic authentication.
- User
Name object - User name for Basic authentication. Type: string (or Expression with resultType string).
- Connection
String interface{} - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Authentication
Type interface{} - Type of authentication used to connect to the Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Credential
Azure
Key | SecureVault Secret Reference Response String Response - The access credential portion of the connection string specified in driver-specific property-value format.
- Description string
- 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 Basic authentication.
- User
Name interface{} - User name for Basic authentication. Type: string (or Expression with resultType string).
- connection
String Object - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- authentication
Type Object - Type of authentication used to connect to the Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Azure
Key | SecureVault Secret Reference Response String Response - The access credential portion of the connection string specified in driver-specific property-value format.
- description String
- 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 Basic authentication.
- user
Name Object - User name for Basic authentication. Type: string (or Expression with resultType string).
- connection
String any - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- annotations any[]
- List of tags that can be used for describing the linked service.
- authentication
Type any - Type of authentication used to connect to the Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Azure
Key | SecureVault Secret Reference Response String Response - The access credential portion of the connection string specified in driver-specific property-value format.
- description string
- 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 Basic authentication.
- user
Name any - User name for Basic authentication. Type: string (or Expression with resultType string).
- connection_
string Any - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication_
type Any - Type of authentication used to connect to the Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Azure
Key | SecureVault Secret Reference Response String Response - The access credential portion of the connection string specified in driver-specific property-value format.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - Password for Basic authentication.
- user_
name Any - User name for Basic authentication. Type: string (or Expression with resultType string).
- connection
String Any - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- authentication
Type Any - Type of authentication used to connect to the Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- connect
Via Property Map - The integration runtime reference.
- credential Property Map | Property Map
- The access credential portion of the connection string specified in driver-specific property-value format.
- description String
- Linked service description.
- 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 authentication.
- user
Name Any - User name for Basic authentication. Type: string (or Expression with resultType string).
MongoDbAtlasLinkedService, MongoDbAtlasLinkedServiceArgs
- Connection
String object - The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- Database object
- The name of the MongoDB Atlas database that you want to access. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Mongo
Db objectAtlas Driver Version - The MongoDB Atlas Driver version that you want to choose. Allowed value are 2.10.4 and 2.19.0. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Connection
String interface{} - The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- Database interface{}
- The name of the MongoDB Atlas database that you want to access. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Mongo
Db interface{}Atlas Driver Version - The MongoDB Atlas Driver version that you want to choose. Allowed value are 2.10.4 and 2.19.0. Type: string (or Expression with resultType string).
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- connection
String Object - The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Object
- The name of the MongoDB Atlas database that you want to access. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- mongo
Db ObjectAtlas Driver Version - The MongoDB Atlas Driver version that you want to choose. Allowed value are 2.10.4 and 2.19.0. Type: string (or Expression with resultType string).
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- connection
String any - The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- database any
- The name of the MongoDB Atlas database that you want to access. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- mongo
Db anyAtlas Driver Version - The MongoDB Atlas Driver version that you want to choose. Allowed value are 2.10.4 and 2.19.0. Type: string (or Expression with resultType string).
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- connection_
string Any - The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Any
- The name of the MongoDB Atlas database that you want to access. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- mongo_
db_ Anyatlas_ driver_ version - The MongoDB Atlas Driver version that you want to choose. Allowed value are 2.10.4 and 2.19.0. Type: string (or Expression with resultType string).
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- connection
String Any - The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Any
- The name of the MongoDB Atlas database that you want to access. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- mongo
Db AnyAtlas Driver Version - The MongoDB Atlas Driver version that you want to choose. Allowed value are 2.10.4 and 2.19.0. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for linked service.
MongoDbAtlasLinkedServiceResponse, MongoDbAtlasLinkedServiceResponseArgs
- Connection
String object - The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- Database object
- The name of the MongoDB Atlas database that you want to access. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Mongo
Db objectAtlas Driver Version - The MongoDB Atlas Driver version that you want to choose. Allowed value are 2.10.4 and 2.19.0. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Connection
String interface{} - The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- Database interface{}
- The name of the MongoDB Atlas database that you want to access. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Mongo
Db interface{}Atlas Driver Version - The MongoDB Atlas Driver version that you want to choose. Allowed value are 2.10.4 and 2.19.0. Type: string (or Expression with resultType string).
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- connection
String Object - The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Object
- The name of the MongoDB Atlas database that you want to access. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- mongo
Db ObjectAtlas Driver Version - The MongoDB Atlas Driver version that you want to choose. Allowed value are 2.10.4 and 2.19.0. Type: string (or Expression with resultType string).
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- connection
String any - The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- database any
- The name of the MongoDB Atlas database that you want to access. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- mongo
Db anyAtlas Driver Version - The MongoDB Atlas Driver version that you want to choose. Allowed value are 2.10.4 and 2.19.0. Type: string (or Expression with resultType string).
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- connection_
string Any - The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Any
- The name of the MongoDB Atlas database that you want to access. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- mongo_
db_ Anyatlas_ driver_ version - The MongoDB Atlas Driver version that you want to choose. Allowed value are 2.10.4 and 2.19.0. Type: string (or Expression with resultType string).
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- connection
String Any - The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Any
- The name of the MongoDB Atlas database that you want to access. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- mongo
Db AnyAtlas Driver Version - The MongoDB Atlas Driver version that you want to choose. Allowed value are 2.10.4 and 2.19.0. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for linked service.
MongoDbAuthenticationType, MongoDbAuthenticationTypeArgs
- Basic
- Basic
- Anonymous
- Anonymous
- Mongo
Db Authentication Type Basic - Basic
- Mongo
Db Authentication Type Anonymous - Anonymous
- Basic
- Basic
- Anonymous
- Anonymous
- Basic
- Basic
- Anonymous
- Anonymous
- BASIC
- Basic
- ANONYMOUS
- Anonymous
- "Basic"
- Basic
- "Anonymous"
- Anonymous
MongoDbLinkedService, MongoDbLinkedServiceArgs
- Database
Name object - The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
- Server object
- The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
- Allow
Self objectSigned Server Cert - Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Auth
Source object - Database to verify the username and password. Type: string (or Expression with resultType string).
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Mongo Db Authentication Type - The authentication type to be used to connect to the MongoDB database.
- 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. 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 authentication.
- Port object
- The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
- Username object
- Username for authentication. Type: string (or Expression with resultType string).
- Database
Name interface{} - The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
- Server interface{}
- The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
- Allow
Self interface{}Signed Server Cert - Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Auth
Source interface{} - Database to verify the username and password. Type: string (or Expression with resultType string).
- Authentication
Type string | MongoDb Authentication Type - The authentication type to be used to connect to the MongoDB database.
- 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. 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 authentication.
- Port interface{}
- The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
- Username interface{}
- Username for authentication. Type: string (or Expression with resultType string).
- database
Name Object - The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
- server Object
- The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
- allow
Self ObjectSigned Server Cert - Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- auth
Source Object - Database to verify the username and password. Type: string (or Expression with resultType string).
- authentication
Type String | MongoDb Authentication Type - The authentication type to be used to connect to the MongoDB database.
- 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. 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 authentication.
- port Object
- The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
- username Object
- Username for authentication. Type: string (or Expression with resultType string).
- database
Name any - The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
- server any
- The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
- allow
Self anySigned Server Cert - Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
- annotations any[]
- List of tags that can be used for describing the linked service.
- auth
Source any - Database to verify the username and password. Type: string (or Expression with resultType string).
- authentication
Type string | MongoDb Authentication Type - The authentication type to be used to connect to the MongoDB database.
- 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. 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 authentication.
- port any
- The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
- username any
- Username for authentication. Type: string (or Expression with resultType string).
- database_
name Any - The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
- server Any
- The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
- allow_
self_ Anysigned_ server_ cert - Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- auth_
source Any - Database to verify the username and password. Type: string (or Expression with resultType string).
- authentication_
type str | MongoDb Authentication Type - The authentication type to be used to connect to the MongoDB database.
- 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. 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 authentication.
- port Any
- The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
- username Any
- Username for authentication. Type: string (or Expression with resultType string).
- database
Name Any - The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
- server Any
- The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
- allow
Self AnySigned Server Cert - Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- auth
Source Any - Database to verify the username and password. Type: string (or Expression with resultType string).
- authentication
Type String | "Basic" | "Anonymous" - The authentication type to be used to connect to the MongoDB database.
- 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. 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 authentication.
- port Any
- The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
- username Any
- Username for authentication. Type: string (or Expression with resultType string).
MongoDbLinkedServiceResponse, MongoDbLinkedServiceResponseArgs
- Database
Name object - The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
- Server object
- The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
- Allow
Self objectSigned Server Cert - Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Auth
Source object - Database to verify the username and password. Type: string (or Expression with resultType string).
- Authentication
Type string - The authentication type to be used to connect to the MongoDB database.
- 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. 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 authentication.
- Port object
- The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
- Username object
- Username for authentication. Type: string (or Expression with resultType string).
- Database
Name interface{} - The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
- Server interface{}
- The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
- Allow
Self interface{}Signed Server Cert - Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Auth
Source interface{} - Database to verify the username and password. Type: string (or Expression with resultType string).
- Authentication
Type string - The authentication type to be used to connect to the MongoDB database.
- 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. 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 authentication.
- Port interface{}
- The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
- Username interface{}
- Username for authentication. Type: string (or Expression with resultType string).
- database
Name Object - The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
- server Object
- The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
- allow
Self ObjectSigned Server Cert - Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- auth
Source Object - Database to verify the username and password. Type: string (or Expression with resultType string).
- authentication
Type String - The authentication type to be used to connect to the MongoDB database.
- 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. 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 authentication.
- port Object
- The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
- username Object
- Username for authentication. Type: string (or Expression with resultType string).
- database
Name any - The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
- server any
- The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
- allow
Self anySigned Server Cert - Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
- annotations any[]
- List of tags that can be used for describing the linked service.
- auth
Source any - Database to verify the username and password. Type: string (or Expression with resultType string).
- authentication
Type string - The authentication type to be used to connect to the MongoDB database.
- 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. 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 authentication.
- port any
- The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
- username any
- Username for authentication. Type: string (or Expression with resultType string).
- database_
name Any - The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
- server Any
- The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
- allow_
self_ Anysigned_ server_ cert - Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- auth_
source Any - Database to verify the username and password. Type: string (or Expression with resultType string).
- authentication_
type str - The authentication type to be used to connect to the MongoDB database.
- connect_
via 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. 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 authentication.
- port Any
- The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
- username Any
- Username for authentication. Type: string (or Expression with resultType string).
- database
Name Any - The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
- server Any
- The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
- allow
Self AnySigned Server Cert - Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- auth
Source Any - Database to verify the username and password. Type: string (or Expression with resultType string).
- authentication
Type String - The authentication type to be used to connect to the MongoDB database.
- 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. 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 authentication.
- port Any
- The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
- username Any
- Username for authentication. Type: string (or Expression with resultType string).
MongoDbV2LinkedService, MongoDbV2LinkedServiceArgs
- Connection
String object - The MongoDB connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- Database object
- The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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.
- Connection
String interface{} - The MongoDB connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- Database interface{}
- The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- connection
String Object - The MongoDB connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Object
- The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- connection
String any - The MongoDB connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- database any
- The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- connection_
string Any - The MongoDB connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Any
- The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- connection
String Any - The MongoDB connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Any
- The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- parameters Map<Property Map>
- Parameters for linked service.
MongoDbV2LinkedServiceResponse, MongoDbV2LinkedServiceResponseArgs
- Connection
String object - The MongoDB connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- Database object
- The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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.
- Connection
String interface{} - The MongoDB connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- Database interface{}
- The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- connection
String Object - The MongoDB connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Object
- The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- connection
String any - The MongoDB connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- database any
- The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- connection_
string Any - The MongoDB connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Any
- The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- connection
String Any - The MongoDB connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Any
- The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- parameters Map<Property Map>
- Parameters for linked service.
MySqlLinkedService, MySqlLinkedServiceArgs
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
MySqlLinkedServiceResponse, MySqlLinkedServiceResponseArgs
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
NetezzaLinkedService, NetezzaLinkedServiceArgs
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
NetezzaLinkedServiceResponse, NetezzaLinkedServiceResponseArgs
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
ODataAadServicePrincipalCredentialType, ODataAadServicePrincipalCredentialTypeArgs
- Service
Principal Key - ServicePrincipalKey
- Service
Principal Cert - ServicePrincipalCert
- OData
Aad Service Principal Credential Type Service Principal Key - ServicePrincipalKey
- OData
Aad Service Principal Credential Type Service Principal Cert - ServicePrincipalCert
- Service
Principal Key - ServicePrincipalKey
- Service
Principal Cert - ServicePrincipalCert
- Service
Principal Key - ServicePrincipalKey
- Service
Principal Cert - ServicePrincipalCert
- SERVICE_PRINCIPAL_KEY
- ServicePrincipalKey
- SERVICE_PRINCIPAL_CERT
- ServicePrincipalCert
- "Service
Principal Key" - ServicePrincipalKey
- "Service
Principal Cert" - ServicePrincipalCert
ODataAuthenticationType, ODataAuthenticationTypeArgs
- Basic
- Basic
- Anonymous
- Anonymous
- Windows
- Windows
- Aad
Service Principal - AadServicePrincipal
- Managed
Service Identity - ManagedServiceIdentity
- OData
Authentication Type Basic - Basic
- OData
Authentication Type Anonymous - Anonymous
- OData
Authentication Type Windows - Windows
- OData
Authentication Type Aad Service Principal - AadServicePrincipal
- OData
Authentication Type Managed Service Identity - ManagedServiceIdentity
- Basic
- Basic
- Anonymous
- Anonymous
- Windows
- Windows
- Aad
Service Principal - AadServicePrincipal
- Managed
Service Identity - ManagedServiceIdentity
- Basic
- Basic
- Anonymous
- Anonymous
- Windows
- Windows
- Aad
Service Principal - AadServicePrincipal
- Managed
Service Identity - ManagedServiceIdentity
- BASIC
- Basic
- ANONYMOUS
- Anonymous
- WINDOWS
- Windows
- AAD_SERVICE_PRINCIPAL
- AadServicePrincipal
- MANAGED_SERVICE_IDENTITY
- ManagedServiceIdentity
- "Basic"
- Basic
- "Anonymous"
- Anonymous
- "Windows"
- Windows
- "Aad
Service Principal" - AadServicePrincipal
- "Managed
Service Identity" - ManagedServiceIdentity
ODataLinkedService, ODataLinkedServiceArgs
- Url object
- The URL of the OData service endpoint. Type: string (or Expression with resultType string).
- Aad
Resource objectId - Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
- Aad
Service string | Pulumi.Principal Credential Type Azure Native. Data Factory. OData Aad Service Principal Credential Type - Specify the credential type (key or cert) is used for service principal.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Auth
Headers object - The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
- Authentication
Type string | Pulumi.Azure Native. Data Factory. OData Authentication Type - Type of authentication used to connect to the OData 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.
- Description string
- 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 of the OData service.
- 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 - Specify the application id of your application registered in Azure Active Directory. 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 secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- Tenant object
- Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
- User
Name object - User name of the OData service. Type: string (or Expression with resultType string).
- Url interface{}
- The URL of the OData service endpoint. Type: string (or Expression with resultType string).
- Aad
Resource interface{}Id - Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
- Aad
Service string | ODataPrincipal Credential Type Aad Service Principal Credential Type - Specify the credential type (key or cert) is used for service principal.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Auth
Headers interface{} - The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
- Authentication
Type string | ODataAuthentication Type - Type of authentication used to connect to the OData 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.
- Description string
- 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 of the OData service.
- 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 - Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference String - Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- Tenant interface{}
- Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
- User
Name interface{} - User name of the OData service. Type: string (or Expression with resultType string).
- url Object
- The URL of the OData service endpoint. Type: string (or Expression with resultType string).
- aad
Resource ObjectId - Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
- aad
Service String | ODataPrincipal Credential Type Aad Service Principal Credential Type - Specify the credential type (key or cert) is used for service principal.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- auth
Headers Object - The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
- authentication
Type String | ODataAuthentication Type - Type of authentication used to connect to the OData 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.
- description String
- 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 of the OData service.
- 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 - Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- tenant Object
- Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
- user
Name Object - User name of the OData service. Type: string (or Expression with resultType string).
- url any
- The URL of the OData service endpoint. Type: string (or Expression with resultType string).
- aad
Resource anyId - Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
- aad
Service string | ODataPrincipal Credential Type Aad Service Principal Credential Type - Specify the credential type (key or cert) is used for service principal.
- annotations any[]
- List of tags that can be used for describing the linked service.
- auth
Headers any - The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
- authentication
Type string | ODataAuthentication Type - Type of authentication used to connect to the OData 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.
- description string
- 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 of the OData service.
- 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 - Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- tenant any
- Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
- user
Name any - User name of the OData service. Type: string (or Expression with resultType string).
- url Any
- The URL of the OData service endpoint. Type: string (or Expression with resultType string).
- aad_
resource_ Anyid - Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
- aad_
service_ str | ODataprincipal_ credential_ type Aad Service Principal Credential Type - Specify the credential type (key or cert) is used for service principal.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- auth_
headers Any - The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
- authentication_
type str | ODataAuthentication Type - Type of authentication used to connect to the OData 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.
- description 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 of the OData service.
- 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 - Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference String - Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- tenant Any
- Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
- user_
name Any - User name of the OData service. Type: string (or Expression with resultType string).
- url Any
- The URL of the OData service endpoint. Type: string (or Expression with resultType string).
- aad
Resource AnyId - Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
- aad
Service String | "ServicePrincipal Credential Type Principal Key" | "Service Principal Cert" - Specify the credential type (key or cert) is used for service principal.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- auth
Headers Any - The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
- authentication
Type String | "Basic" | "Anonymous" | "Windows" | "AadService Principal" | "Managed Service Identity" - Type of authentication used to connect to the OData 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.
- description String
- 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 of the OData service.
- 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 - Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- tenant Any
- Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
- user
Name Any - User name of the OData service. Type: string (or Expression with resultType string).
ODataLinkedServiceResponse, ODataLinkedServiceResponseArgs
- Url object
- The URL of the OData service endpoint. Type: string (or Expression with resultType string).
- Aad
Resource objectId - Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
- Aad
Service stringPrincipal Credential Type - Specify the credential type (key or cert) is used for service principal.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Auth
Headers object - The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
- Authentication
Type string - Type of authentication used to connect to the OData 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.
- Description string
- 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 of the OData service.
- 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 - Specify the application id of your application registered in Azure Active Directory. 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 secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- Tenant object
- Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
- User
Name object - User name of the OData service. Type: string (or Expression with resultType string).
- Url interface{}
- The URL of the OData service endpoint. Type: string (or Expression with resultType string).
- Aad
Resource interface{}Id - Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
- Aad
Service stringPrincipal Credential Type - Specify the credential type (key or cert) is used for service principal.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Auth
Headers interface{} - The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
- Authentication
Type string - Type of authentication used to connect to the OData 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.
- Description string
- 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 of the OData service.
- 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 - Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- Tenant interface{}
- Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
- User
Name interface{} - User name of the OData service. Type: string (or Expression with resultType string).
- url Object
- The URL of the OData service endpoint. Type: string (or Expression with resultType string).
- aad
Resource ObjectId - Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
- aad
Service StringPrincipal Credential Type - Specify the credential type (key or cert) is used for service principal.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- auth
Headers Object - The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
- authentication
Type String - Type of authentication used to connect to the OData 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.
- description String
- 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 of the OData service.
- 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 - Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- tenant Object
- Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
- user
Name Object - User name of the OData service. Type: string (or Expression with resultType string).
- url any
- The URL of the OData service endpoint. Type: string (or Expression with resultType string).
- aad
Resource anyId - Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
- aad
Service stringPrincipal Credential Type - Specify the credential type (key or cert) is used for service principal.
- annotations any[]
- List of tags that can be used for describing the linked service.
- auth
Headers any - The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
- authentication
Type string - Type of authentication used to connect to the OData 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.
- description string
- 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 of the OData service.
- 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 - Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- tenant any
- Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
- user
Name any - User name of the OData service. Type: string (or Expression with resultType string).
- url Any
- The URL of the OData service endpoint. Type: string (or Expression with resultType string).
- aad_
resource_ Anyid - Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
- aad_
service_ strprincipal_ credential_ type - Specify the credential type (key or cert) is used for service principal.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- auth_
headers Any - The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
- authentication_
type str - Type of authentication used to connect to the OData 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.
- description 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 of the OData service.
- 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 - Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference Response String Response - Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- tenant Any
- Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
- user_
name Any - User name of the OData service. Type: string (or Expression with resultType string).
- url Any
- The URL of the OData service endpoint. Type: string (or Expression with resultType string).
- aad
Resource AnyId - Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
- aad
Service StringPrincipal Credential Type - Specify the credential type (key or cert) is used for service principal.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- auth
Headers Any - The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
- authentication
Type String - Type of authentication used to connect to the OData 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.
- description String
- 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 of the OData service.
- 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 - Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- tenant Any
- Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
- user
Name Any - User name of the OData service. Type: string (or Expression with resultType string).
OdbcLinkedService, OdbcLinkedServiceArgs
- Connection
String object - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Authentication
Type object - Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Credential
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The access credential portion of the connection string specified in driver-specific property-value format.
- Description string
- 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 Basic authentication.
- User
Name object - User name for Basic authentication. Type: string (or Expression with resultType string).
- Connection
String interface{} - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Authentication
Type interface{} - Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Credential
Azure
Key | SecureVault Secret Reference String - The access credential portion of the connection string specified in driver-specific property-value format.
- Description string
- 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 Basic authentication.
- User
Name interface{} - User name for Basic authentication. Type: string (or Expression with resultType string).
- connection
String Object - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- authentication
Type Object - Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Azure
Key | SecureVault Secret Reference String - The access credential portion of the connection string specified in driver-specific property-value format.
- description String
- 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 Basic authentication.
- user
Name Object - User name for Basic authentication. Type: string (or Expression with resultType string).
- connection
String any - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- annotations any[]
- List of tags that can be used for describing the linked service.
- authentication
Type any - Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Azure
Key | SecureVault Secret Reference String - The access credential portion of the connection string specified in driver-specific property-value format.
- description string
- 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 Basic authentication.
- user
Name any - User name for Basic authentication. Type: string (or Expression with resultType string).
- connection_
string Any - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication_
type Any - Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- credential
Azure
Key | SecureVault Secret Reference String - The access credential portion of the connection string specified in driver-specific property-value format.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - Password for Basic authentication.
- user_
name Any - User name for Basic authentication. Type: string (or Expression with resultType string).
- connection
String Any - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- authentication
Type Any - Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- connect
Via Property Map - The integration runtime reference.
- credential Property Map | Property Map
- The access credential portion of the connection string specified in driver-specific property-value format.
- description String
- Linked service description.
- 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 authentication.
- user
Name Any - User name for Basic authentication. Type: string (or Expression with resultType string).
OdbcLinkedServiceResponse, OdbcLinkedServiceResponseArgs
- Connection
String object - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Authentication
Type object - Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Credential
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The access credential portion of the connection string specified in driver-specific property-value format.
- Description string
- 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 Basic authentication.
- User
Name object - User name for Basic authentication. Type: string (or Expression with resultType string).
- Connection
String interface{} - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Authentication
Type interface{} - Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Credential
Azure
Key | SecureVault Secret Reference Response String Response - The access credential portion of the connection string specified in driver-specific property-value format.
- Description string
- 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 Basic authentication.
- User
Name interface{} - User name for Basic authentication. Type: string (or Expression with resultType string).
- connection
String Object - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- authentication
Type Object - Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Azure
Key | SecureVault Secret Reference Response String Response - The access credential portion of the connection string specified in driver-specific property-value format.
- description String
- 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 Basic authentication.
- user
Name Object - User name for Basic authentication. Type: string (or Expression with resultType string).
- connection
String any - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- annotations any[]
- List of tags that can be used for describing the linked service.
- authentication
Type any - Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Azure
Key | SecureVault Secret Reference Response String Response - The access credential portion of the connection string specified in driver-specific property-value format.
- description string
- 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 Basic authentication.
- user
Name any - User name for Basic authentication. Type: string (or Expression with resultType string).
- connection_
string Any - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication_
type Any - Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Azure
Key | SecureVault Secret Reference Response String Response - The access credential portion of the connection string specified in driver-specific property-value format.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - Password for Basic authentication.
- user_
name Any - User name for Basic authentication. Type: string (or Expression with resultType string).
- connection
String Any - The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- authentication
Type Any - Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
- connect
Via Property Map - The integration runtime reference.
- credential Property Map | Property Map
- The access credential portion of the connection string specified in driver-specific property-value format.
- description String
- Linked service description.
- 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 authentication.
- user
Name Any - User name for Basic authentication. Type: string (or Expression with resultType string).
Office365LinkedService, Office365LinkedServiceArgs
- Office365Tenant
Id object - Azure tenant ID to which the Office 365 account belongs. 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.
- Service
Principal objectTenant Id - Specify the tenant information under which your Azure AD web application resides. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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.
- Office365Tenant
Id interface{} - Azure tenant ID to which the Office 365 account belongs. 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.
- Service
Principal interface{}Tenant Id - Specify the tenant information under which your Azure AD web application resides. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- 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.
- office365Tenant
Id Object - Azure tenant ID to which the Office 365 account belongs. 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.
- service
Principal ObjectTenant Id - Specify the tenant information under which your Azure AD web application resides. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- 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.
- office365Tenant
Id any - Azure tenant ID to which the Office 365 account belongs. 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.
- service
Principal anyTenant Id - Specify the tenant information under which your Azure AD web application resides. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- 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.
- office365_
tenant_ Anyid - Azure tenant ID to which the Office 365 account belongs. 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.
- service_
principal_ Anytenant_ id - Specify the tenant information under which your Azure AD web application resides. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via 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.
- office365Tenant
Id Any - Azure tenant ID to which the Office 365 account belongs. 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.
- service
Principal AnyTenant Id - Specify the tenant information under which your Azure AD web application resides. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- 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.
Office365LinkedServiceResponse, Office365LinkedServiceResponseArgs
- Office365Tenant
Id object - Azure tenant ID to which the Office 365 account belongs. 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.
- Service
Principal objectTenant Id - Specify the tenant information under which your Azure AD web application resides. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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.
- Office365Tenant
Id interface{} - Azure tenant ID to which the Office 365 account belongs. 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.
- Service
Principal interface{}Tenant Id - Specify the tenant information under which your Azure AD web application resides. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- 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.
- office365Tenant
Id Object - Azure tenant ID to which the Office 365 account belongs. 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.
- service
Principal ObjectTenant Id - Specify the tenant information under which your Azure AD web application resides. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- 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.
- office365Tenant
Id any - Azure tenant ID to which the Office 365 account belongs. 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.
- service
Principal anyTenant Id - Specify the tenant information under which your Azure AD web application resides. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- 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.
- office365_
tenant_ Anyid - Azure tenant ID to which the Office 365 account belongs. 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.
- service_
principal_ Anytenant_ id - Specify the tenant information under which your Azure AD web application resides. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via 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.
- office365Tenant
Id Any - Azure tenant ID to which the Office 365 account belongs. 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.
- service
Principal AnyTenant Id - Specify the tenant information under which your Azure AD web application resides. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- 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.
OracleCloudStorageLinkedService, OracleCloudStorageLinkedServiceArgs
- Access
Key objectId - The access key identifier of the Oracle Cloud Storage Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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 Oracle Cloud Storage Identity and Access Management (IAM) user.
- Service
Url object - This value specifies the endpoint to access with the Oracle Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- Access
Key interface{}Id - The access key identifier of the Oracle Cloud Storage Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- 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 Oracle Cloud Storage Identity and Access Management (IAM) user.
- Service
Url interface{} - This value specifies the endpoint to access with the Oracle Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- access
Key ObjectId - The access key identifier of the Oracle Cloud Storage Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- 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 Oracle Cloud Storage Identity and Access Management (IAM) user.
- service
Url Object - This value specifies the endpoint to access with the Oracle Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- access
Key anyId - The access key identifier of the Oracle Cloud Storage Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- 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 Oracle Cloud Storage Identity and Access Management (IAM) user.
- service
Url any - This value specifies the endpoint to access with the Oracle Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- access_
key_ Anyid - The access key identifier of the Oracle Cloud Storage Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via 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 Oracle Cloud Storage Identity and Access Management (IAM) user.
- service_
url Any - This value specifies the endpoint to access with the Oracle Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- access
Key AnyId - The access key identifier of the Oracle Cloud Storage Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- 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 Oracle Cloud Storage Identity and Access Management (IAM) user.
- service
Url Any - This value specifies the endpoint to access with the Oracle Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
OracleCloudStorageLinkedServiceResponse, OracleCloudStorageLinkedServiceResponseArgs
- Access
Key objectId - The access key identifier of the Oracle Cloud Storage Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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 Oracle Cloud Storage Identity and Access Management (IAM) user.
- Service
Url object - This value specifies the endpoint to access with the Oracle Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- Access
Key interface{}Id - The access key identifier of the Oracle Cloud Storage Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- 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 Oracle Cloud Storage Identity and Access Management (IAM) user.
- Service
Url interface{} - This value specifies the endpoint to access with the Oracle Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- access
Key ObjectId - The access key identifier of the Oracle Cloud Storage Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- 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 Oracle Cloud Storage Identity and Access Management (IAM) user.
- service
Url Object - This value specifies the endpoint to access with the Oracle Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- access
Key anyId - The access key identifier of the Oracle Cloud Storage Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- 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 Oracle Cloud Storage Identity and Access Management (IAM) user.
- service
Url any - This value specifies the endpoint to access with the Oracle Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- access_
key_ Anyid - The access key identifier of the Oracle Cloud Storage Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via 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 Oracle Cloud Storage Identity and Access Management (IAM) user.
- service_
url Any - This value specifies the endpoint to access with the Oracle Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
- access
Key AnyId - The access key identifier of the Oracle Cloud Storage Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- 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 Oracle Cloud Storage Identity and Access Management (IAM) user.
- service
Url Any - This value specifies the endpoint to access with the Oracle Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
OracleLinkedService, OracleLinkedServiceArgs
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
OracleLinkedServiceResponse, OracleLinkedServiceResponseArgs
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
OracleServiceCloudLinkedService, OracleServiceCloudLinkedServiceArgs
- Host object
- The URL of the Oracle Service Cloud instance.
- 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 key.
- Username object
- The user name that you use to access Oracle Service Cloud server.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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.
- Use
Encrypted objectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- Use
Peer objectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- Host interface{}
- The URL of the Oracle Service Cloud instance.
- Password
Azure
Key | SecureVault Secret Reference String - The password corresponding to the user name that you provided in the username key.
- Username interface{}
- The user name that you use to access Oracle Service Cloud server.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- 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.
- Use
Encrypted interface{}Endpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- Use
Peer interface{}Verification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- host Object
- The URL of the Oracle Service Cloud instance.
- password
Azure
Key | SecureVault Secret Reference String - The password corresponding to the user name that you provided in the username key.
- username Object
- The user name that you use to access Oracle Service Cloud server.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- 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.
- use
Encrypted ObjectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- use
Peer ObjectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- host any
- The URL of the Oracle Service Cloud instance.
- password
Azure
Key | SecureVault Secret Reference String - The password corresponding to the user name that you provided in the username key.
- username any
- The user name that you use to access Oracle Service Cloud server.
- annotations any[]
- List of tags that can be used for describing the linked service.
- 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.
- use
Encrypted anyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- use
Peer anyVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- host Any
- The URL of the Oracle Service Cloud instance.
- password
Azure
Key | SecureVault Secret Reference String - The password corresponding to the user name that you provided in the username key.
- username Any
- The user name that you use to access Oracle Service Cloud server.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via 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.
- use_
encrypted_ Anyendpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- use_
peer_ Anyverification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- host Any
- The URL of the Oracle Service Cloud instance.
- password Property Map | Property Map
- The password corresponding to the user name that you provided in the username key.
- username Any
- The user name that you use to access Oracle Service Cloud server.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- 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.
- use
Encrypted AnyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- use
Peer AnyVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
OracleServiceCloudLinkedServiceResponse, OracleServiceCloudLinkedServiceResponseArgs
- Host object
- The URL of the Oracle Service Cloud instance.
- 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 key.
- Username object
- The user name that you use to access Oracle Service Cloud server.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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.
- Use
Encrypted objectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- Use
Peer objectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- Host interface{}
- The URL of the Oracle Service Cloud instance.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - The password corresponding to the user name that you provided in the username key.
- Username interface{}
- The user name that you use to access Oracle Service Cloud server.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- 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.
- Use
Encrypted interface{}Endpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- Use
Peer interface{}Verification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- host Object
- The URL of the Oracle Service Cloud instance.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password corresponding to the user name that you provided in the username key.
- username Object
- The user name that you use to access Oracle Service Cloud server.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- 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.
- use
Encrypted ObjectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- use
Peer ObjectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- host any
- The URL of the Oracle Service Cloud instance.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password corresponding to the user name that you provided in the username key.
- username any
- The user name that you use to access Oracle Service Cloud server.
- annotations any[]
- List of tags that can be used for describing the linked service.
- 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.
- use
Encrypted anyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- use
Peer anyVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- host Any
- The URL of the Oracle Service Cloud instance.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password corresponding to the user name that you provided in the username key.
- username Any
- The user name that you use to access Oracle Service Cloud server.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via 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.
- use_
encrypted_ Anyendpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- use_
peer_ Anyverification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- host Any
- The URL of the Oracle Service Cloud instance.
- password Property Map | Property Map
- The password corresponding to the user name that you provided in the username key.
- username Any
- The user name that you use to access Oracle Service Cloud server.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- 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.
- use
Encrypted AnyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- use
Peer AnyVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
ParameterSpecification, ParameterSpecificationArgs
- Type
string | Pulumi.
Azure Native. Data Factory. Parameter Type - Parameter type.
- Default
Value object - Default value of parameter.
- Type
string | Parameter
Type - Parameter type.
- Default
Value interface{} - Default value of parameter.
- type
String | Parameter
Type - Parameter type.
- default
Value Object - Default value of parameter.
- type
string | Parameter
Type - Parameter type.
- default
Value any - Default value of parameter.
- type
str | Parameter
Type - Parameter type.
- default_
value Any - Default value of parameter.
- type
String | "Object" | "String" | "Int" | "Float" | "Bool" | "Array" | "Secure
String" - Parameter type.
- default
Value Any - Default value of parameter.
ParameterSpecificationResponse, ParameterSpecificationResponseArgs
- Type string
- Parameter type.
- Default
Value object - Default value of parameter.
- Type string
- Parameter type.
- Default
Value interface{} - Default value of parameter.
- type String
- Parameter type.
- default
Value Object - Default value of parameter.
- type string
- Parameter type.
- default
Value any - Default value of parameter.
- type str
- Parameter type.
- default_
value Any - Default value of parameter.
- type String
- Parameter type.
- default
Value Any - Default value of parameter.
ParameterType, ParameterTypeArgs
- Object
- Object
- String
- String
- Int
- Int
- Float
- Float
- Bool
- Bool
- Array
- Array
- Secure
String - SecureString
- Parameter
Type Object - Object
- Parameter
Type String - String
- Parameter
Type Int - Int
- Parameter
Type Float - Float
- Parameter
Type Bool - Bool
- Parameter
Type Array - Array
- Parameter
Type Secure String - SecureString
- Object
- Object
- String
- String
- Int
- Int
- Float
- Float
- Bool
- Bool
- Array
- Array
- Secure
String - SecureString
- Object
- Object
- String
- String
- Int
- Int
- Float
- Float
- Bool
- Bool
- Array
- Array
- Secure
String - SecureString
- OBJECT
- Object
- STRING
- String
- INT
- Int
- FLOAT
- Float
- BOOL
- Bool
- ARRAY
- Array
- SECURE_STRING
- SecureString
- "Object"
- Object
- "String"
- String
- "Int"
- Int
- "Float"
- Float
- "Bool"
- Bool
- "Array"
- Array
- "Secure
String" - SecureString
PaypalLinkedService, PaypalLinkedServiceArgs
- Client
Id object - The client ID associated with your PayPal application.
- Host object
- The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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 PayPal 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.
- 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.
- Client
Id interface{} - The client ID associated with your PayPal application.
- Host interface{}
- The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Client
Secret AzureKey | SecureVault Secret Reference String - The client secret associated with your PayPal 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.
- 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.
- client
Id Object - The client ID associated with your PayPal application.
- host Object
- The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- client
Secret AzureKey | SecureVault Secret Reference String - The client secret associated with your PayPal 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.
- 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.
- client
Id any - The client ID associated with your PayPal application.
- host any
- The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
- annotations any[]
- List of tags that can be used for describing the linked service.
- client
Secret AzureKey | SecureVault Secret Reference String - The client secret associated with your PayPal 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.
- 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.
- client_
id Any - The client ID associated with your PayPal application.
- host Any
- The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- client_
secret AzureKey | SecureVault Secret Reference String - The client secret associated with your PayPal 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.
- 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.
- client
Id Any - The client ID associated with your PayPal application.
- host Any
- The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- client
Secret Property Map | Property Map - The client secret associated with your PayPal 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.
- 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.
PaypalLinkedServiceResponse, PaypalLinkedServiceResponseArgs
- Client
Id object - The client ID associated with your PayPal application.
- Host object
- The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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 PayPal application.
- 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.
- 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.
- Client
Id interface{} - The client ID associated with your PayPal application.
- Host interface{}
- The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Client
Secret AzureKey | SecureVault Secret Reference Response String Response - The client secret associated with your PayPal application.
- 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.
- 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.
- client
Id Object - The client ID associated with your PayPal application.
- host Object
- The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- client
Secret AzureKey | SecureVault Secret Reference Response String Response - The client secret associated with your PayPal application.
- 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.
- 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.
- client
Id any - The client ID associated with your PayPal application.
- host any
- The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
- annotations any[]
- List of tags that can be used for describing the linked service.
- client
Secret AzureKey | SecureVault Secret Reference Response String Response - The client secret associated with your PayPal application.
- 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.
- 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.
- client_
id Any - The client ID associated with your PayPal application.
- host Any
- The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- client_
secret AzureKey | SecureVault Secret Reference Response String Response - The client secret associated with your PayPal application.
- 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.
- 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.
- client
Id Any - The client ID associated with your PayPal application.
- host Any
- The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- client
Secret Property Map | Property Map - The client secret associated with your PayPal 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.
- 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.
PhoenixAuthenticationType, PhoenixAuthenticationTypeArgs
- Anonymous
- Anonymous
- Username
And Password - UsernameAndPassword
- Windows
Azure HDInsight Service - WindowsAzureHDInsightService
- Phoenix
Authentication Type Anonymous - Anonymous
- Phoenix
Authentication Type Username And Password - UsernameAndPassword
- Phoenix
Authentication Type Windows Azure HDInsight Service - WindowsAzureHDInsightService
- Anonymous
- Anonymous
- Username
And Password - UsernameAndPassword
- Windows
Azure HDInsight Service - WindowsAzureHDInsightService
- Anonymous
- Anonymous
- Username
And Password - UsernameAndPassword
- Windows
Azure HDInsight Service - WindowsAzureHDInsightService
- ANONYMOUS
- Anonymous
- USERNAME_AND_PASSWORD
- UsernameAndPassword
- WINDOWS_AZURE_HD_INSIGHT_SERVICE
- WindowsAzureHDInsightService
- "Anonymous"
- Anonymous
- "Username
And Password" - UsernameAndPassword
- "Windows
Azure HDInsight Service" - WindowsAzureHDInsightService
PhoenixLinkedService, PhoenixLinkedServiceArgs
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Phoenix Authentication Type - The authentication mechanism used to connect to the Phoenix server.
- Host object
- The IP address or host name of the Phoenix 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 Phoenix server. (i.e. /gateway/sandbox/phoenix/version). The default value is hbasephoenix if using WindowsAzureHDInsightService.
- 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 Phoenix server uses to listen for client connections. The default value is 8765.
- 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
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 used to connect to the Phoenix server.
- Authentication
Type string | PhoenixAuthentication Type - The authentication mechanism used to connect to the Phoenix server.
- Host interface{}
- The IP address or host name of the Phoenix 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 Phoenix server. (i.e. /gateway/sandbox/phoenix/version). The default value is hbasephoenix if using WindowsAzureHDInsightService.
- 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 Phoenix server uses to listen for client connections. The default value is 8765.
- 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
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 used to connect to the Phoenix server.
- authentication
Type String | PhoenixAuthentication Type - The authentication mechanism used to connect to the Phoenix server.
- host Object
- The IP address or host name of the Phoenix 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 Phoenix server. (i.e. /gateway/sandbox/phoenix/version). The default value is hbasephoenix if using WindowsAzureHDInsightService.
- 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 Phoenix server uses to listen for client connections. The default value is 8765.
- 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
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 used to connect to the Phoenix server.
- authentication
Type string | PhoenixAuthentication Type - The authentication mechanism used to connect to the Phoenix server.
- host any
- The IP address or host name of the Phoenix 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 Phoenix server. (i.e. /gateway/sandbox/phoenix/version). The default value is hbasephoenix if using WindowsAzureHDInsightService.
- 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 Phoenix server uses to listen for client connections. The default value is 8765.
- 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
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 used to connect to the Phoenix server.
- authentication_
type str | PhoenixAuthentication Type - The authentication mechanism used to connect to the Phoenix server.
- host Any
- The IP address or host name of the Phoenix 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 Phoenix server. (i.e. /gateway/sandbox/phoenix/version). The default value is hbasephoenix if using WindowsAzureHDInsightService.
- 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 Phoenix server uses to listen for client connections. The default value is 8765.
- 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_
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 used to connect to the Phoenix server.
- authentication
Type String | "Anonymous" | "UsernameAnd Password" | "Windows Azure HDInsight Service" - The authentication mechanism used to connect to the Phoenix server.
- host Any
- The IP address or host name of the Phoenix 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 Phoenix server. (i.e. /gateway/sandbox/phoenix/version). The default value is hbasephoenix if using WindowsAzureHDInsightService.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The password corresponding to the user name.
- port Any
- The TCP port that the Phoenix server uses to listen for client connections. The default value is 8765.
- 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
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 used to connect to the Phoenix server.
PhoenixLinkedServiceResponse, PhoenixLinkedServiceResponseArgs
- Authentication
Type string - The authentication mechanism used to connect to the Phoenix server.
- Host object
- The IP address or host name of the Phoenix 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 Phoenix server. (i.e. /gateway/sandbox/phoenix/version). The default value is hbasephoenix if using WindowsAzureHDInsightService.
- 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 Phoenix server uses to listen for client connections. The default value is 8765.
- 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
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 used to connect to the Phoenix server.
- Authentication
Type string - The authentication mechanism used to connect to the Phoenix server.
- Host interface{}
- The IP address or host name of the Phoenix 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 Phoenix server. (i.e. /gateway/sandbox/phoenix/version). The default value is hbasephoenix if using WindowsAzureHDInsightService.
- 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 Phoenix server uses to listen for client connections. The default value is 8765.
- 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
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 used to connect to the Phoenix server.
- authentication
Type String - The authentication mechanism used to connect to the Phoenix server.
- host Object
- The IP address or host name of the Phoenix 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 Phoenix server. (i.e. /gateway/sandbox/phoenix/version). The default value is hbasephoenix if using WindowsAzureHDInsightService.
- 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 Phoenix server uses to listen for client connections. The default value is 8765.
- 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
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 used to connect to the Phoenix server.
- authentication
Type string - The authentication mechanism used to connect to the Phoenix server.
- host any
- The IP address or host name of the Phoenix 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 Phoenix server. (i.e. /gateway/sandbox/phoenix/version). The default value is hbasephoenix if using WindowsAzureHDInsightService.
- 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 Phoenix server uses to listen for client connections. The default value is 8765.
- 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
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 used to connect to the Phoenix server.
- authentication_
type str - The authentication mechanism used to connect to the Phoenix server.
- host Any
- The IP address or host name of the Phoenix 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 Phoenix server. (i.e. /gateway/sandbox/phoenix/version). The default value is hbasephoenix if using WindowsAzureHDInsightService.
- 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 Phoenix server uses to listen for client connections. The default value is 8765.
- 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_
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 used to connect to the Phoenix server.
- authentication
Type String - The authentication mechanism used to connect to the Phoenix server.
- host Any
- The IP address or host name of the Phoenix 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 Phoenix server. (i.e. /gateway/sandbox/phoenix/version). The default value is hbasephoenix if using WindowsAzureHDInsightService.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The password corresponding to the user name.
- port Any
- The TCP port that the Phoenix server uses to listen for client connections. The default value is 8765.
- 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
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 used to connect to the Phoenix server.
PostgreSqlLinkedService, PostgreSqlLinkedServiceArgs
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
PostgreSqlLinkedServiceResponse, PostgreSqlLinkedServiceResponseArgs
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
PrestoAuthenticationType, PrestoAuthenticationTypeArgs
- Anonymous
- Anonymous
- LDAP
- LDAP
- Presto
Authentication Type Anonymous - Anonymous
- Presto
Authentication Type LDAP - LDAP
- Anonymous
- Anonymous
- LDAP
- LDAP
- Anonymous
- Anonymous
- LDAP
- LDAP
- ANONYMOUS
- Anonymous
- LDAP
- LDAP
- "Anonymous"
- Anonymous
- "LDAP"
- LDAP
PrestoLinkedService, PrestoLinkedServiceArgs
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Presto Authentication Type - The authentication mechanism used to connect to the Presto server.
- Catalog object
- The catalog context for all request against the server.
- Host object
- The IP address or host name of the Presto server. (i.e. 192.168.222.160)
- Server
Version object - The version of the Presto server. (i.e. 0.148-t)
- 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.
- 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 Presto server uses to listen for client connections. The default value is 8080.
- Time
Zone objectID - The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
- Trusted
Cert 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
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 used to connect to the Presto server.
- Authentication
Type string | PrestoAuthentication Type - The authentication mechanism used to connect to the Presto server.
- Catalog interface{}
- The catalog context for all request against the server.
- Host interface{}
- The IP address or host name of the Presto server. (i.e. 192.168.222.160)
- Server
Version interface{} - The version of the Presto server. (i.e. 0.148-t)
- 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.
- 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 Presto server uses to listen for client connections. The default value is 8080.
- Time
Zone interface{}ID - The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
- Trusted
Cert 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
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 used to connect to the Presto server.
- authentication
Type String | PrestoAuthentication Type - The authentication mechanism used to connect to the Presto server.
- catalog Object
- The catalog context for all request against the server.
- host Object
- The IP address or host name of the Presto server. (i.e. 192.168.222.160)
- server
Version Object - The version of the Presto server. (i.e. 0.148-t)
- 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.
- 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 Presto server uses to listen for client connections. The default value is 8080.
- time
Zone ObjectID - The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
- trusted
Cert 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
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 used to connect to the Presto server.
- authentication
Type string | PrestoAuthentication Type - The authentication mechanism used to connect to the Presto server.
- catalog any
- The catalog context for all request against the server.
- host any
- The IP address or host name of the Presto server. (i.e. 192.168.222.160)
- server
Version any - The version of the Presto server. (i.e. 0.148-t)
- 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.
- 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 Presto server uses to listen for client connections. The default value is 8080.
- time
Zone anyID - The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
- trusted
Cert 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
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 used to connect to the Presto server.
- authentication_
type str | PrestoAuthentication Type - The authentication mechanism used to connect to the Presto server.
- catalog Any
- The catalog context for all request against the server.
- host Any
- The IP address or host name of the Presto server. (i.e. 192.168.222.160)
- server_
version Any - The version of the Presto server. (i.e. 0.148-t)
- 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.
- 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 Presto server uses to listen for client connections. The default value is 8080.
- time_
zone_ Anyid - The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
- trusted_
cert_ 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_
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 used to connect to the Presto server.
- authentication
Type String | "Anonymous" | "LDAP" - The authentication mechanism used to connect to the Presto server.
- catalog Any
- The catalog context for all request against the server.
- host Any
- The IP address or host name of the Presto server. (i.e. 192.168.222.160)
- server
Version Any - The version of the Presto server. (i.e. 0.148-t)
- 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.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The password corresponding to the user name.
- port Any
- The TCP port that the Presto server uses to listen for client connections. The default value is 8080.
- time
Zone AnyID - The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
- trusted
Cert 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
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 used to connect to the Presto server.
PrestoLinkedServiceResponse, PrestoLinkedServiceResponseArgs
- Authentication
Type string - The authentication mechanism used to connect to the Presto server.
- Catalog object
- The catalog context for all request against the server.
- Host object
- The IP address or host name of the Presto server. (i.e. 192.168.222.160)
- Server
Version object - The version of the Presto server. (i.e. 0.148-t)
- 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.
- 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 Presto server uses to listen for client connections. The default value is 8080.
- Time
Zone objectID - The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
- Trusted
Cert 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
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 used to connect to the Presto server.
- Authentication
Type string - The authentication mechanism used to connect to the Presto server.
- Catalog interface{}
- The catalog context for all request against the server.
- Host interface{}
- The IP address or host name of the Presto server. (i.e. 192.168.222.160)
- Server
Version interface{} - The version of the Presto server. (i.e. 0.148-t)
- 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.
- 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 Presto server uses to listen for client connections. The default value is 8080.
- Time
Zone interface{}ID - The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
- Trusted
Cert 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
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 used to connect to the Presto server.
- authentication
Type String - The authentication mechanism used to connect to the Presto server.
- catalog Object
- The catalog context for all request against the server.
- host Object
- The IP address or host name of the Presto server. (i.e. 192.168.222.160)
- server
Version Object - The version of the Presto server. (i.e. 0.148-t)
- 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.
- 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 Presto server uses to listen for client connections. The default value is 8080.
- time
Zone ObjectID - The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
- trusted
Cert 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
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 used to connect to the Presto server.
- authentication
Type string - The authentication mechanism used to connect to the Presto server.
- catalog any
- The catalog context for all request against the server.
- host any
- The IP address or host name of the Presto server. (i.e. 192.168.222.160)
- server
Version any - The version of the Presto server. (i.e. 0.148-t)
- 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.
- 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 Presto server uses to listen for client connections. The default value is 8080.
- time
Zone anyID - The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
- trusted
Cert 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
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 used to connect to the Presto server.
- authentication_
type str - The authentication mechanism used to connect to the Presto server.
- catalog Any
- The catalog context for all request against the server.
- host Any
- The IP address or host name of the Presto server. (i.e. 192.168.222.160)
- server_
version Any - The version of the Presto server. (i.e. 0.148-t)
- 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.
- 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 Presto server uses to listen for client connections. The default value is 8080.
- time_
zone_ Anyid - The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
- trusted_
cert_ 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_
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 used to connect to the Presto server.
- authentication
Type String - The authentication mechanism used to connect to the Presto server.
- catalog Any
- The catalog context for all request against the server.
- host Any
- The IP address or host name of the Presto server. (i.e. 192.168.222.160)
- server
Version Any - The version of the Presto server. (i.e. 0.148-t)
- 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.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The password corresponding to the user name.
- port Any
- The TCP port that the Presto server uses to listen for client connections. The default value is 8080.
- time
Zone AnyID - The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
- trusted
Cert 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
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 used to connect to the Presto server.
QuickBooksLinkedService, QuickBooksLinkedServiceArgs
- Access
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The access token for OAuth 1.0 authentication.
- Access
Token Pulumi.Secret Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The access token secret for OAuth 1.0 authentication.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Company
Id object - The company ID of the QuickBooks company to authorize.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Connection
Properties object - Properties used to connect to QuickBooks. It is mutually exclusive with any other properties in the linked service. Type: object.
- Consumer
Key object - The consumer key for OAuth 1.0 authentication.
- Consumer
Secret Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The consumer secret for OAuth 1.0 authentication.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Endpoint object
- The endpoint of the QuickBooks server. (i.e. quickbooks.api.intuit.com)
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Use
Encrypted objectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- Access
Token AzureKey | SecureVault Secret Reference String - The access token for OAuth 1.0 authentication.
- Access
Token AzureSecret Key | SecureVault Secret Reference String - The access token secret for OAuth 1.0 authentication.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Company
Id interface{} - The company ID of the QuickBooks company to authorize.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Connection
Properties interface{} - Properties used to connect to QuickBooks. It is mutually exclusive with any other properties in the linked service. Type: object.
- Consumer
Key interface{} - The consumer key for OAuth 1.0 authentication.
- Consumer
Secret AzureKey | SecureVault Secret Reference String - The consumer secret for OAuth 1.0 authentication.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Endpoint interface{}
- The endpoint of the QuickBooks server. (i.e. quickbooks.api.intuit.com)
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Use
Encrypted interface{}Endpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- access
Token AzureKey | SecureVault Secret Reference String - The access token for OAuth 1.0 authentication.
- access
Token AzureSecret Key | SecureVault Secret Reference String - The access token secret for OAuth 1.0 authentication.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- company
Id Object - The company ID of the QuickBooks company to authorize.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
Properties Object - Properties used to connect to QuickBooks. It is mutually exclusive with any other properties in the linked service. Type: object.
- consumer
Key Object - The consumer key for OAuth 1.0 authentication.
- consumer
Secret AzureKey | SecureVault Secret Reference String - The consumer secret for OAuth 1.0 authentication.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- endpoint Object
- The endpoint of the QuickBooks server. (i.e. quickbooks.api.intuit.com)
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- use
Encrypted ObjectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- access
Token AzureKey | SecureVault Secret Reference String - The access token for OAuth 1.0 authentication.
- access
Token AzureSecret Key | SecureVault Secret Reference String - The access token secret for OAuth 1.0 authentication.
- annotations any[]
- List of tags that can be used for describing the linked service.
- company
Id any - The company ID of the QuickBooks company to authorize.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
Properties any - Properties used to connect to QuickBooks. It is mutually exclusive with any other properties in the linked service. Type: object.
- consumer
Key any - The consumer key for OAuth 1.0 authentication.
- consumer
Secret AzureKey | SecureVault Secret Reference String - The consumer secret for OAuth 1.0 authentication.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- endpoint any
- The endpoint of the QuickBooks server. (i.e. quickbooks.api.intuit.com)
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- use
Encrypted anyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- access_
token AzureKey | SecureVault Secret Reference String - The access token for OAuth 1.0 authentication.
- access_
token_ Azuresecret Key | SecureVault Secret Reference String - The access token secret for OAuth 1.0 authentication.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- company_
id Any - The company ID of the QuickBooks company to authorize.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- connection_
properties Any - Properties used to connect to QuickBooks. It is mutually exclusive with any other properties in the linked service. Type: object.
- consumer_
key Any - The consumer key for OAuth 1.0 authentication.
- consumer_
secret AzureKey | SecureVault Secret Reference String - The consumer secret for OAuth 1.0 authentication.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- endpoint Any
- The endpoint of the QuickBooks server. (i.e. quickbooks.api.intuit.com)
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- use_
encrypted_ Anyendpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- access
Token Property Map | Property Map - The access token for OAuth 1.0 authentication.
- access
Token Property Map | Property MapSecret - The access token secret for OAuth 1.0 authentication.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- company
Id Any - The company ID of the QuickBooks company to authorize.
- connect
Via Property Map - The integration runtime reference.
- connection
Properties Any - Properties used to connect to QuickBooks. It is mutually exclusive with any other properties in the linked service. Type: object.
- consumer
Key Any - The consumer key for OAuth 1.0 authentication.
- consumer
Secret Property Map | Property Map - The consumer secret for OAuth 1.0 authentication.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- endpoint Any
- The endpoint of the QuickBooks server. (i.e. quickbooks.api.intuit.com)
- parameters Map<Property Map>
- Parameters for linked service.
- use
Encrypted AnyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
QuickBooksLinkedServiceResponse, QuickBooksLinkedServiceResponseArgs
- 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 for OAuth 1.0 authentication.
- Access
Token Pulumi.Secret Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The access token secret for OAuth 1.0 authentication.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Company
Id object - The company ID of the QuickBooks company to authorize.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Connection
Properties object - Properties used to connect to QuickBooks. It is mutually exclusive with any other properties in the linked service. Type: object.
- Consumer
Key object - The consumer key for OAuth 1.0 authentication.
- Consumer
Secret Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The consumer secret for OAuth 1.0 authentication.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Endpoint object
- The endpoint of the QuickBooks server. (i.e. quickbooks.api.intuit.com)
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Use
Encrypted objectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- Access
Token AzureKey | SecureVault Secret Reference Response String Response - The access token for OAuth 1.0 authentication.
- Access
Token AzureSecret Key | SecureVault Secret Reference Response String Response - The access token secret for OAuth 1.0 authentication.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Company
Id interface{} - The company ID of the QuickBooks company to authorize.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Connection
Properties interface{} - Properties used to connect to QuickBooks. It is mutually exclusive with any other properties in the linked service. Type: object.
- Consumer
Key interface{} - The consumer key for OAuth 1.0 authentication.
- Consumer
Secret AzureKey | SecureVault Secret Reference Response String Response - The consumer secret for OAuth 1.0 authentication.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Endpoint interface{}
- The endpoint of the QuickBooks server. (i.e. quickbooks.api.intuit.com)
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Use
Encrypted interface{}Endpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- access
Token AzureKey | SecureVault Secret Reference Response String Response - The access token for OAuth 1.0 authentication.
- access
Token AzureSecret Key | SecureVault Secret Reference Response String Response - The access token secret for OAuth 1.0 authentication.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- company
Id Object - The company ID of the QuickBooks company to authorize.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
Properties Object - Properties used to connect to QuickBooks. It is mutually exclusive with any other properties in the linked service. Type: object.
- consumer
Key Object - The consumer key for OAuth 1.0 authentication.
- consumer
Secret AzureKey | SecureVault Secret Reference Response String Response - The consumer secret for OAuth 1.0 authentication.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- endpoint Object
- The endpoint of the QuickBooks server. (i.e. quickbooks.api.intuit.com)
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- use
Encrypted ObjectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- access
Token AzureKey | SecureVault Secret Reference Response String Response - The access token for OAuth 1.0 authentication.
- access
Token AzureSecret Key | SecureVault Secret Reference Response String Response - The access token secret for OAuth 1.0 authentication.
- annotations any[]
- List of tags that can be used for describing the linked service.
- company
Id any - The company ID of the QuickBooks company to authorize.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
Properties any - Properties used to connect to QuickBooks. It is mutually exclusive with any other properties in the linked service. Type: object.
- consumer
Key any - The consumer key for OAuth 1.0 authentication.
- consumer
Secret AzureKey | SecureVault Secret Reference Response String Response - The consumer secret for OAuth 1.0 authentication.
- description string
- Linked service description.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- endpoint any
- The endpoint of the QuickBooks server. (i.e. quickbooks.api.intuit.com)
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- use
Encrypted anyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- access_
token AzureKey | SecureVault Secret Reference Response String Response - The access token for OAuth 1.0 authentication.
- access_
token_ Azuresecret Key | SecureVault Secret Reference Response String Response - The access token secret for OAuth 1.0 authentication.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- company_
id Any - The company ID of the QuickBooks company to authorize.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- connection_
properties Any - Properties used to connect to QuickBooks. It is mutually exclusive with any other properties in the linked service. Type: object.
- consumer_
key Any - The consumer key for OAuth 1.0 authentication.
- consumer_
secret AzureKey | SecureVault Secret Reference Response String Response - The consumer secret for OAuth 1.0 authentication.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- endpoint Any
- The endpoint of the QuickBooks server. (i.e. quickbooks.api.intuit.com)
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- use_
encrypted_ Anyendpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- access
Token Property Map | Property Map - The access token for OAuth 1.0 authentication.
- access
Token Property Map | Property MapSecret - The access token secret for OAuth 1.0 authentication.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- company
Id Any - The company ID of the QuickBooks company to authorize.
- connect
Via Property Map - The integration runtime reference.
- connection
Properties Any - Properties used to connect to QuickBooks. It is mutually exclusive with any other properties in the linked service. Type: object.
- consumer
Key Any - The consumer key for OAuth 1.0 authentication.
- consumer
Secret Property Map | Property Map - The consumer secret for OAuth 1.0 authentication.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- endpoint Any
- The endpoint of the QuickBooks server. (i.e. quickbooks.api.intuit.com)
- parameters Map<Property Map>
- Parameters for linked service.
- use
Encrypted AnyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
QuickbaseLinkedService, QuickbaseLinkedServiceArgs
- Url object
- The url to connect Quickbase source. Type: string (or Expression with resultType string).
- User
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The user token for the Quickbase 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.
- Url interface{}
- The url to connect Quickbase source. Type: string (or Expression with resultType string).
- User
Token AzureKey | SecureVault Secret Reference String - The user token for the Quickbase 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.
- url Object
- The url to connect Quickbase source. Type: string (or Expression with resultType string).
- user
Token AzureKey | SecureVault Secret Reference String - The user token for the Quickbase 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.
- url any
- The url to connect Quickbase source. Type: string (or Expression with resultType string).
- user
Token AzureKey | SecureVault Secret Reference String - The user token for the Quickbase 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.
- url Any
- The url to connect Quickbase source. Type: string (or Expression with resultType string).
- user_
token AzureKey | SecureVault Secret Reference String - The user token for the Quickbase 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.
- url Any
- The url to connect Quickbase source. Type: string (or Expression with resultType string).
- user
Token Property Map | Property Map - The user token for the Quickbase source.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- 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.
QuickbaseLinkedServiceResponse, QuickbaseLinkedServiceResponseArgs
- Url object
- The url to connect Quickbase source. Type: string (or Expression with resultType string).
- User
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The user token for the Quickbase 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.
- Url interface{}
- The url to connect Quickbase source. Type: string (or Expression with resultType string).
- User
Token AzureKey | SecureVault Secret Reference Response String Response - The user token for the Quickbase 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.
- url Object
- The url to connect Quickbase source. Type: string (or Expression with resultType string).
- user
Token AzureKey | SecureVault Secret Reference Response String Response - The user token for the Quickbase 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.
- url any
- The url to connect Quickbase source. Type: string (or Expression with resultType string).
- user
Token AzureKey | SecureVault Secret Reference Response String Response - The user token for the Quickbase 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.
- url Any
- The url to connect Quickbase source. Type: string (or Expression with resultType string).
- user_
token AzureKey | SecureVault Secret Reference Response String Response - The user token for the Quickbase 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.
- url Any
- The url to connect Quickbase source. Type: string (or Expression with resultType string).
- user
Token Property Map | Property Map - The user token for the Quickbase source.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- 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.
ResponsysLinkedService, ResponsysLinkedServiceArgs
- Client
Id object - The client ID associated with the Responsys application. Type: string (or Expression with resultType string).
- Endpoint object
- The endpoint of the Responsys server.
- 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 the Responsys application. 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.
- Use
Encrypted objectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- Use
Peer objectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- Client
Id interface{} - The client ID associated with the Responsys application. Type: string (or Expression with resultType string).
- Endpoint interface{}
- The endpoint of the Responsys server.
- 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 the Responsys application. 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.
- Use
Encrypted interface{}Endpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- Use
Peer interface{}Verification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- client
Id Object - The client ID associated with the Responsys application. Type: string (or Expression with resultType string).
- endpoint Object
- The endpoint of the Responsys server.
- 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 the Responsys application. 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.
- use
Encrypted ObjectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- use
Peer ObjectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- client
Id any - The client ID associated with the Responsys application. Type: string (or Expression with resultType string).
- endpoint any
- The endpoint of the Responsys server.
- 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 the Responsys application. 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.
- use
Encrypted anyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- use
Peer anyVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- client_
id Any - The client ID associated with the Responsys application. Type: string (or Expression with resultType string).
- endpoint Any
- The endpoint of the Responsys server.
- 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 the Responsys application. 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.
- use_
encrypted_ Anyendpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- use_
peer_ Anyverification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- client
Id Any - The client ID associated with the Responsys application. Type: string (or Expression with resultType string).
- endpoint Any
- The endpoint of the Responsys server.
- 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 the Responsys application. 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.
- use
Encrypted AnyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- use
Peer AnyVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
ResponsysLinkedServiceResponse, ResponsysLinkedServiceResponseArgs
- Client
Id object - The client ID associated with the Responsys application. Type: string (or Expression with resultType string).
- Endpoint object
- The endpoint of the Responsys server.
- 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 the Responsys application. 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.
- Use
Encrypted objectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- Use
Peer objectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- Client
Id interface{} - The client ID associated with the Responsys application. Type: string (or Expression with resultType string).
- Endpoint interface{}
- The endpoint of the Responsys server.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Client
Secret AzureKey | SecureVault Secret Reference Response String Response - The client secret associated with the Responsys application. 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.
- Use
Encrypted interface{}Endpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- Use
Peer interface{}Verification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- client
Id Object - The client ID associated with the Responsys application. Type: string (or Expression with resultType string).
- endpoint Object
- The endpoint of the Responsys server.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- client
Secret AzureKey | SecureVault Secret Reference Response String Response - The client secret associated with the Responsys application. 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.
- use
Encrypted ObjectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- use
Peer ObjectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- client
Id any - The client ID associated with the Responsys application. Type: string (or Expression with resultType string).
- endpoint any
- The endpoint of the Responsys server.
- annotations any[]
- List of tags that can be used for describing the linked service.
- client
Secret AzureKey | SecureVault Secret Reference Response String Response - The client secret associated with the Responsys application. 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.
- use
Encrypted anyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- use
Peer anyVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- client_
id Any - The client ID associated with the Responsys application. Type: string (or Expression with resultType string).
- endpoint Any
- The endpoint of the Responsys server.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- client_
secret AzureKey | SecureVault Secret Reference Response String Response - The client secret associated with the Responsys application. 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.
- use_
encrypted_ Anyendpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- use_
peer_ Anyverification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- client
Id Any - The client ID associated with the Responsys application. Type: string (or Expression with resultType string).
- endpoint Any
- The endpoint of the Responsys server.
- 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 the Responsys application. 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.
- use
Encrypted AnyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- use
Peer AnyVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
RestServiceAuthenticationType, RestServiceAuthenticationTypeArgs
- Anonymous
- Anonymous
- Basic
- Basic
- Aad
Service Principal - AadServicePrincipal
- Managed
Service Identity - ManagedServiceIdentity
- OAuth2Client
Credential - OAuth2ClientCredential
- Rest
Service Authentication Type Anonymous - Anonymous
- Rest
Service Authentication Type Basic - Basic
- Rest
Service Authentication Type Aad Service Principal - AadServicePrincipal
- Rest
Service Authentication Type Managed Service Identity - ManagedServiceIdentity
- Rest
Service Authentication Type OAuth2Client Credential - OAuth2ClientCredential
- Anonymous
- Anonymous
- Basic
- Basic
- Aad
Service Principal - AadServicePrincipal
- Managed
Service Identity - ManagedServiceIdentity
- OAuth2Client
Credential - OAuth2ClientCredential
- Anonymous
- Anonymous
- Basic
- Basic
- Aad
Service Principal - AadServicePrincipal
- Managed
Service Identity - ManagedServiceIdentity
- OAuth2Client
Credential - OAuth2ClientCredential
- ANONYMOUS
- Anonymous
- BASIC
- Basic
- AAD_SERVICE_PRINCIPAL
- AadServicePrincipal
- MANAGED_SERVICE_IDENTITY
- ManagedServiceIdentity
- O_AUTH2_CLIENT_CREDENTIAL
- OAuth2ClientCredential
- "Anonymous"
- Anonymous
- "Basic"
- Basic
- "Aad
Service Principal" - AadServicePrincipal
- "Managed
Service Identity" - ManagedServiceIdentity
- "OAuth2Client
Credential" - OAuth2ClientCredential
RestServiceLinkedService, RestServiceLinkedServiceArgs
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Rest Service Authentication Type - Type of authentication used to connect to the REST service.
- Url object
- The base URL of the REST service. Type: string (or Expression with resultType string).
- Aad
Resource objectId - The resource you are requesting authorization to use. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Auth
Headers object - The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
- 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).
- Client
Id object - The client ID associated with your application. 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 associated with your application.
- 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.
- Enable
Server objectCertificate Validation - Whether to validate server side SSL certificate when connecting to the endpoint.The default value is true. Type: boolean (or Expression with resultType boolean).
- Encrypted
Credential 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 used in Basic authentication type.
- Resource object
- The target service or resource to which the access will be requested. Type: string (or Expression with resultType string).
- Scope object
- The scope of the access required. It describes what kind of access will be requested. Type: string (or Expression with resultType string).
- Service
Principal objectId - The application's client ID used in AadServicePrincipal authentication type. 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 application's key used in AadServicePrincipal authentication type.
- Tenant object
- The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. Type: string (or Expression with resultType string).
- Token
Endpoint object - The token endpoint of the authorization server to acquire access token. Type: string (or Expression with resultType string).
- User
Name object - The user name used in Basic authentication type. Type: string (or Expression with resultType string).
- Authentication
Type string | RestService Authentication Type - Type of authentication used to connect to the REST service.
- Url interface{}
- The base URL of the REST service. Type: string (or Expression with resultType string).
- Aad
Resource interface{}Id - The resource you are requesting authorization to use. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Auth
Headers interface{} - The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
- 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).
- Client
Id interface{} - The client ID associated with your application. Type: string (or Expression with resultType string).
- Client
Secret AzureKey | SecureVault Secret Reference String - The client secret associated with your application.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Credential
Credential
Reference - The credential reference containing authentication information.
- Description string
- Linked service description.
- Enable
Server interface{}Certificate Validation - Whether to validate server side SSL certificate when connecting to the endpoint.The default value is true. Type: boolean (or Expression with resultType boolean).
- Encrypted
Credential 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 used in Basic authentication type.
- Resource interface{}
- The target service or resource to which the access will be requested. Type: string (or Expression with resultType string).
- Scope interface{}
- The scope of the access required. It describes what kind of access will be requested. Type: string (or Expression with resultType string).
- Service
Principal interface{}Id - The application's client ID used in AadServicePrincipal authentication type. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference String - The application's key used in AadServicePrincipal authentication type.
- Tenant interface{}
- The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. Type: string (or Expression with resultType string).
- Token
Endpoint interface{} - The token endpoint of the authorization server to acquire access token. Type: string (or Expression with resultType string).
- User
Name interface{} - The user name used in Basic authentication type. Type: string (or Expression with resultType string).
- authentication
Type String | RestService Authentication Type - Type of authentication used to connect to the REST service.
- url Object
- The base URL of the REST service. Type: string (or Expression with resultType string).
- aad
Resource ObjectId - The resource you are requesting authorization to use. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- auth
Headers Object - The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
- 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).
- client
Id Object - The client ID associated with your application. Type: string (or Expression with resultType string).
- client
Secret AzureKey | SecureVault Secret Reference String - The client secret associated with your application.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description String
- Linked service description.
- enable
Server ObjectCertificate Validation - Whether to validate server side SSL certificate when connecting to the endpoint.The default value is true. Type: boolean (or Expression with resultType boolean).
- encrypted
Credential 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 used in Basic authentication type.
- resource Object
- The target service or resource to which the access will be requested. Type: string (or Expression with resultType string).
- scope Object
- The scope of the access required. It describes what kind of access will be requested. Type: string (or Expression with resultType string).
- service
Principal ObjectId - The application's client ID used in AadServicePrincipal authentication type. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - The application's key used in AadServicePrincipal authentication type.
- tenant Object
- The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. Type: string (or Expression with resultType string).
- token
Endpoint Object - The token endpoint of the authorization server to acquire access token. Type: string (or Expression with resultType string).
- user
Name Object - The user name used in Basic authentication type. Type: string (or Expression with resultType string).
- authentication
Type string | RestService Authentication Type - Type of authentication used to connect to the REST service.
- url any
- The base URL of the REST service. Type: string (or Expression with resultType string).
- aad
Resource anyId - The resource you are requesting authorization to use. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- auth
Headers any - The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
- azure
Cloud 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).
- client
Id any - The client ID associated with your application. Type: string (or Expression with resultType string).
- client
Secret AzureKey | SecureVault Secret Reference String - The client secret associated with your application.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description string
- Linked service description.
- enable
Server anyCertificate Validation - Whether to validate server side SSL certificate when connecting to the endpoint.The default value is true. Type: boolean (or Expression with resultType boolean).
- encrypted
Credential 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 used in Basic authentication type.
- resource any
- The target service or resource to which the access will be requested. Type: string (or Expression with resultType string).
- scope any
- The scope of the access required. It describes what kind of access will be requested. Type: string (or Expression with resultType string).
- service
Principal anyId - The application's client ID used in AadServicePrincipal authentication type. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - The application's key used in AadServicePrincipal authentication type.
- tenant any
- The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. Type: string (or Expression with resultType string).
- token
Endpoint any - The token endpoint of the authorization server to acquire access token. Type: string (or Expression with resultType string).
- user
Name any - The user name used in Basic authentication type. Type: string (or Expression with resultType string).
- authentication_
type str | RestService Authentication Type - Type of authentication used to connect to the REST service.
- url Any
- The base URL of the REST service. Type: string (or Expression with resultType string).
- aad_
resource_ Anyid - The resource you are requesting authorization to use. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- auth_
headers Any - The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
- azure_
cloud_ 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).
- client_
id Any - The client ID associated with your application. Type: string (or Expression with resultType string).
- client_
secret AzureKey | SecureVault Secret Reference String - The client secret associated with your application.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- credential
Credential
Reference - The credential reference containing authentication information.
- description str
- Linked service description.
- enable_
server_ Anycertificate_ validation - Whether to validate server side SSL certificate when connecting to the endpoint.The default value is true. Type: boolean (or Expression with resultType boolean).
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The password used in Basic authentication type.
- resource Any
- The target service or resource to which the access will be requested. Type: string (or Expression with resultType string).
- scope Any
- The scope of the access required. It describes what kind of access will be requested. Type: string (or Expression with resultType string).
- service_
principal_ Anyid - The application's client ID used in AadServicePrincipal authentication type. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference String - The application's key used in AadServicePrincipal authentication type.
- tenant Any
- The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. Type: string (or Expression with resultType string).
- token_
endpoint Any - The token endpoint of the authorization server to acquire access token. Type: string (or Expression with resultType string).
- user_
name Any - The user name used in Basic authentication type. Type: string (or Expression with resultType string).
- authentication
Type String | "Anonymous" | "Basic" | "AadService Principal" | "Managed Service Identity" | "OAuth2Client Credential" - Type of authentication used to connect to the REST service.
- url Any
- The base URL of the REST service. Type: string (or Expression with resultType string).
- aad
Resource AnyId - The resource you are requesting authorization to use. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- auth
Headers Any - The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
- azure
Cloud 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).
- client
Id Any - The client ID associated with your application. Type: string (or Expression with resultType string).
- client
Secret Property Map | Property Map - The client secret associated with your application.
- connect
Via Property Map - The integration runtime reference.
- credential Property Map
- The credential reference containing authentication information.
- description String
- Linked service description.
- enable
Server AnyCertificate Validation - Whether to validate server side SSL certificate when connecting to the endpoint.The default value is true. Type: boolean (or Expression with resultType boolean).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The password used in Basic authentication type.
- resource Any
- The target service or resource to which the access will be requested. Type: string (or Expression with resultType string).
- scope Any
- The scope of the access required. It describes what kind of access will be requested. Type: string (or Expression with resultType string).
- service
Principal AnyId - The application's client ID used in AadServicePrincipal authentication type. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - The application's key used in AadServicePrincipal authentication type.
- tenant Any
- The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. Type: string (or Expression with resultType string).
- token
Endpoint Any - The token endpoint of the authorization server to acquire access token. Type: string (or Expression with resultType string).
- user
Name Any - The user name used in Basic authentication type. Type: string (or Expression with resultType string).
RestServiceLinkedServiceResponse, RestServiceLinkedServiceResponseArgs
- Authentication
Type string - Type of authentication used to connect to the REST service.
- Url object
- The base URL of the REST service. Type: string (or Expression with resultType string).
- Aad
Resource objectId - The resource you are requesting authorization to use. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Auth
Headers object - The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
- 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).
- Client
Id object - The client ID associated with your application. 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 associated with your application.
- 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.
- Enable
Server objectCertificate Validation - Whether to validate server side SSL certificate when connecting to the endpoint.The default value is true. Type: boolean (or Expression with resultType boolean).
- Encrypted
Credential 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 used in Basic authentication type.
- Resource object
- The target service or resource to which the access will be requested. Type: string (or Expression with resultType string).
- Scope object
- The scope of the access required. It describes what kind of access will be requested. Type: string (or Expression with resultType string).
- Service
Principal objectId - The application's client ID used in AadServicePrincipal authentication type. 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 application's key used in AadServicePrincipal authentication type.
- Tenant object
- The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. Type: string (or Expression with resultType string).
- Token
Endpoint object - The token endpoint of the authorization server to acquire access token. Type: string (or Expression with resultType string).
- User
Name object - The user name used in Basic authentication type. Type: string (or Expression with resultType string).
- Authentication
Type string - Type of authentication used to connect to the REST service.
- Url interface{}
- The base URL of the REST service. Type: string (or Expression with resultType string).
- Aad
Resource interface{}Id - The resource you are requesting authorization to use. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Auth
Headers interface{} - The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
- 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).
- Client
Id interface{} - The client ID associated with your application. Type: string (or Expression with resultType string).
- Client
Secret AzureKey | SecureVault Secret Reference Response String Response - The client secret associated with your application.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Credential
Credential
Reference Response - The credential reference containing authentication information.
- Description string
- Linked service description.
- Enable
Server interface{}Certificate Validation - Whether to validate server side SSL certificate when connecting to the endpoint.The default value is true. Type: boolean (or Expression with resultType boolean).
- Encrypted
Credential 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 used in Basic authentication type.
- Resource interface{}
- The target service or resource to which the access will be requested. Type: string (or Expression with resultType string).
- Scope interface{}
- The scope of the access required. It describes what kind of access will be requested. Type: string (or Expression with resultType string).
- Service
Principal interface{}Id - The application's client ID used in AadServicePrincipal authentication type. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The application's key used in AadServicePrincipal authentication type.
- Tenant interface{}
- The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. Type: string (or Expression with resultType string).
- Token
Endpoint interface{} - The token endpoint of the authorization server to acquire access token. Type: string (or Expression with resultType string).
- User
Name interface{} - The user name used in Basic authentication type. Type: string (or Expression with resultType string).
- authentication
Type String - Type of authentication used to connect to the REST service.
- url Object
- The base URL of the REST service. Type: string (or Expression with resultType string).
- aad
Resource ObjectId - The resource you are requesting authorization to use. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- auth
Headers Object - The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
- 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).
- client
Id Object - The client ID associated with your application. Type: string (or Expression with resultType string).
- client
Secret AzureKey | SecureVault Secret Reference Response String Response - The client secret associated with your application.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description String
- Linked service description.
- enable
Server ObjectCertificate Validation - Whether to validate server side SSL certificate when connecting to the endpoint.The default value is true. Type: boolean (or Expression with resultType boolean).
- encrypted
Credential 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 used in Basic authentication type.
- resource Object
- The target service or resource to which the access will be requested. Type: string (or Expression with resultType string).
- scope Object
- The scope of the access required. It describes what kind of access will be requested. Type: string (or Expression with resultType string).
- service
Principal ObjectId - The application's client ID used in AadServicePrincipal authentication type. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The application's key used in AadServicePrincipal authentication type.
- tenant Object
- The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. Type: string (or Expression with resultType string).
- token
Endpoint Object - The token endpoint of the authorization server to acquire access token. Type: string (or Expression with resultType string).
- user
Name Object - The user name used in Basic authentication type. Type: string (or Expression with resultType string).
- authentication
Type string - Type of authentication used to connect to the REST service.
- url any
- The base URL of the REST service. Type: string (or Expression with resultType string).
- aad
Resource anyId - The resource you are requesting authorization to use. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- auth
Headers any - The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
- azure
Cloud 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).
- client
Id any - The client ID associated with your application. Type: string (or Expression with resultType string).
- client
Secret AzureKey | SecureVault Secret Reference Response String Response - The client secret associated with your application.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description string
- Linked service description.
- enable
Server anyCertificate Validation - Whether to validate server side SSL certificate when connecting to the endpoint.The default value is true. Type: boolean (or Expression with resultType boolean).
- encrypted
Credential 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 used in Basic authentication type.
- resource any
- The target service or resource to which the access will be requested. Type: string (or Expression with resultType string).
- scope any
- The scope of the access required. It describes what kind of access will be requested. Type: string (or Expression with resultType string).
- service
Principal anyId - The application's client ID used in AadServicePrincipal authentication type. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The application's key used in AadServicePrincipal authentication type.
- tenant any
- The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. Type: string (or Expression with resultType string).
- token
Endpoint any - The token endpoint of the authorization server to acquire access token. Type: string (or Expression with resultType string).
- user
Name any - The user name used in Basic authentication type. Type: string (or Expression with resultType string).
- authentication_
type str - Type of authentication used to connect to the REST service.
- url Any
- The base URL of the REST service. Type: string (or Expression with resultType string).
- aad_
resource_ Anyid - The resource you are requesting authorization to use. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- auth_
headers Any - The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
- azure_
cloud_ 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).
- client_
id Any - The client ID associated with your application. Type: string (or Expression with resultType string).
- client_
secret AzureKey | SecureVault Secret Reference Response String Response - The client secret associated with your application.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- description str
- Linked service description.
- enable_
server_ Anycertificate_ validation - Whether to validate server side SSL certificate when connecting to the endpoint.The default value is true. Type: boolean (or Expression with resultType boolean).
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password used in Basic authentication type.
- resource Any
- The target service or resource to which the access will be requested. Type: string (or Expression with resultType string).
- scope Any
- The scope of the access required. It describes what kind of access will be requested. Type: string (or Expression with resultType string).
- service_
principal_ Anyid - The application's client ID used in AadServicePrincipal authentication type. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference Response String Response - The application's key used in AadServicePrincipal authentication type.
- tenant Any
- The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. Type: string (or Expression with resultType string).
- token_
endpoint Any - The token endpoint of the authorization server to acquire access token. Type: string (or Expression with resultType string).
- user_
name Any - The user name used in Basic authentication type. Type: string (or Expression with resultType string).
- authentication
Type String - Type of authentication used to connect to the REST service.
- url Any
- The base URL of the REST service. Type: string (or Expression with resultType string).
- aad
Resource AnyId - The resource you are requesting authorization to use. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- auth
Headers Any - The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
- azure
Cloud 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).
- client
Id Any - The client ID associated with your application. Type: string (or Expression with resultType string).
- client
Secret Property Map | Property Map - The client secret associated with your application.
- connect
Via Property Map - The integration runtime reference.
- credential Property Map
- The credential reference containing authentication information.
- description String
- Linked service description.
- enable
Server AnyCertificate Validation - Whether to validate server side SSL certificate when connecting to the endpoint.The default value is true. Type: boolean (or Expression with resultType boolean).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The password used in Basic authentication type.
- resource Any
- The target service or resource to which the access will be requested. Type: string (or Expression with resultType string).
- scope Any
- The scope of the access required. It describes what kind of access will be requested. Type: string (or Expression with resultType string).
- service
Principal AnyId - The application's client ID used in AadServicePrincipal authentication type. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - The application's key used in AadServicePrincipal authentication type.
- tenant Any
- The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. Type: string (or Expression with resultType string).
- token
Endpoint Any - The token endpoint of the authorization server to acquire access token. Type: string (or Expression with resultType string).
- user
Name Any - The user name used in Basic authentication type. Type: string (or Expression with resultType string).
SalesforceLinkedService, SalesforceLinkedServiceArgs
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Api
Version object - The Salesforce API version used in ADF. 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.
- Environment
Url object - The URL of Salesforce instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
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 for Basic authentication of the Salesforce instance.
- Security
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The security token is optional to remotely access Salesforce instance.
- Username object
- The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Api
Version interface{} - The Salesforce API version used in ADF. 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.
- Environment
Url interface{} - The URL of Salesforce instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference String - The password for Basic authentication of the Salesforce instance.
- Security
Token AzureKey | SecureVault Secret Reference String - The security token is optional to remotely access Salesforce instance.
- Username interface{}
- The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- api
Version Object - The Salesforce API version used in ADF. 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.
- environment
Url Object - The URL of Salesforce instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The password for Basic authentication of the Salesforce instance.
- security
Token AzureKey | SecureVault Secret Reference String - The security token is optional to remotely access Salesforce instance.
- username Object
- The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- api
Version any - The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
- connect
Via 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.
- environment
Url any - The URL of Salesforce instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The password for Basic authentication of the Salesforce instance.
- security
Token AzureKey | SecureVault Secret Reference String - The security token is optional to remotely access Salesforce instance.
- username any
- The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- api_
version Any - The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
- connect_
via 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.
- environment_
url Any - The URL of Salesforce instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The password for Basic authentication of the Salesforce instance.
- security_
token AzureKey | SecureVault Secret Reference String - The security token is optional to remotely access Salesforce instance.
- username Any
- The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- api
Version Any - The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
- connect
Via 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.
- environment
Url Any - The URL of Salesforce instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The password for Basic authentication of the Salesforce instance.
- security
Token Property Map | Property Map - The security token is optional to remotely access Salesforce instance.
- username Any
- The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
SalesforceLinkedServiceResponse, SalesforceLinkedServiceResponseArgs
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Api
Version object - The Salesforce API version used in ADF. 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.
- Environment
Url object - The URL of Salesforce instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
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 for Basic authentication of the Salesforce instance.
- Security
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The security token is optional to remotely access Salesforce instance.
- Username object
- The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Api
Version interface{} - The Salesforce API version used in ADF. 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.
- Environment
Url interface{} - The URL of Salesforce instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - The password for Basic authentication of the Salesforce instance.
- Security
Token AzureKey | SecureVault Secret Reference Response String Response - The security token is optional to remotely access Salesforce instance.
- Username interface{}
- The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- api
Version Object - The Salesforce API version used in ADF. 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.
- environment
Url Object - The URL of Salesforce instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password for Basic authentication of the Salesforce instance.
- security
Token AzureKey | SecureVault Secret Reference Response String Response - The security token is optional to remotely access Salesforce instance.
- username Object
- The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- api
Version any - The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
- connect
Via 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.
- environment
Url any - The URL of Salesforce instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password for Basic authentication of the Salesforce instance.
- security
Token AzureKey | SecureVault Secret Reference Response String Response - The security token is optional to remotely access Salesforce instance.
- username any
- The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- api_
version Any - The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
- connect_
via 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.
- environment_
url Any - The URL of Salesforce instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password for Basic authentication of the Salesforce instance.
- security_
token AzureKey | SecureVault Secret Reference Response String Response - The security token is optional to remotely access Salesforce instance.
- username Any
- The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- api
Version Any - The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
- connect
Via 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.
- environment
Url Any - The URL of Salesforce instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The password for Basic authentication of the Salesforce instance.
- security
Token Property Map | Property Map - The security token is optional to remotely access Salesforce instance.
- username Any
- The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
SalesforceMarketingCloudLinkedService, SalesforceMarketingCloudLinkedServiceArgs
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Client
Id object - The client ID associated with the Salesforce Marketing Cloud application. 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 associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Connection
Properties object - Properties used to connect to Salesforce Marketing Cloud. It is mutually exclusive with any other properties in the linked service. Type: object.
- Description string
- Linked service description.
- 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.
- Use
Encrypted objectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- Use
Peer objectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Client
Id interface{} - The client ID associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
- Client
Secret AzureKey | SecureVault Secret Reference String - The client secret associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Connection
Properties interface{} - Properties used to connect to Salesforce Marketing Cloud. It is mutually exclusive with any other properties in the linked service. Type: object.
- Description string
- Linked service description.
- 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.
- Use
Encrypted interface{}Endpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- Use
Peer interface{}Verification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- client
Id Object - The client ID associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
- client
Secret AzureKey | SecureVault Secret Reference String - The client secret associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
Properties Object - Properties used to connect to Salesforce Marketing Cloud. It is mutually exclusive with any other properties in the linked service. Type: object.
- description String
- Linked service description.
- 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.
- use
Encrypted ObjectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- use
Peer ObjectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- annotations any[]
- List of tags that can be used for describing the linked service.
- client
Id any - The client ID associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
- client
Secret AzureKey | SecureVault Secret Reference String - The client secret associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
Properties any - Properties used to connect to Salesforce Marketing Cloud. It is mutually exclusive with any other properties in the linked service. Type: object.
- description string
- 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.
- use
Encrypted anyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- use
Peer anyVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- client_
id Any - The client ID associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
- client_
secret AzureKey | SecureVault Secret Reference String - The client secret associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- connection_
properties Any - Properties used to connect to Salesforce Marketing Cloud. It is mutually exclusive with any other properties in the linked service. Type: object.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- use_
encrypted_ Anyendpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- use_
peer_ Anyverification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- client
Id Any - The client ID associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
- client
Secret Property Map | Property Map - The client secret associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
- connect
Via Property Map - The integration runtime reference.
- connection
Properties Any - Properties used to connect to Salesforce Marketing Cloud. It is mutually exclusive with any other properties in the linked service. Type: object.
- description String
- 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.
- use
Encrypted AnyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- use
Peer AnyVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
SalesforceMarketingCloudLinkedServiceResponse, SalesforceMarketingCloudLinkedServiceResponseArgs
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Client
Id object - The client ID associated with the Salesforce Marketing Cloud application. 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 associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Connection
Properties object - Properties used to connect to Salesforce Marketing Cloud. It is mutually exclusive with any other properties in the linked service. Type: object.
- Description string
- Linked service description.
- 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.
- Use
Encrypted objectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- Use
Peer objectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Client
Id interface{} - The client ID associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
- Client
Secret AzureKey | SecureVault Secret Reference Response String Response - The client secret associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Connection
Properties interface{} - Properties used to connect to Salesforce Marketing Cloud. It is mutually exclusive with any other properties in the linked service. Type: object.
- Description string
- Linked service description.
- 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.
- Use
Encrypted interface{}Endpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- Use
Peer interface{}Verification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- client
Id Object - The client ID associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
- client
Secret AzureKey | SecureVault Secret Reference Response String Response - The client secret associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
Properties Object - Properties used to connect to Salesforce Marketing Cloud. It is mutually exclusive with any other properties in the linked service. Type: object.
- description String
- Linked service description.
- 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.
- use
Encrypted ObjectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- use
Peer ObjectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- annotations any[]
- List of tags that can be used for describing the linked service.
- client
Id any - The client ID associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
- client
Secret AzureKey | SecureVault Secret Reference Response String Response - The client secret associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
Properties any - Properties used to connect to Salesforce Marketing Cloud. It is mutually exclusive with any other properties in the linked service. Type: object.
- description string
- 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.
- use
Encrypted anyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- use
Peer anyVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- client_
id Any - The client ID associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
- client_
secret AzureKey | SecureVault Secret Reference Response String Response - The client secret associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- connection_
properties Any - Properties used to connect to Salesforce Marketing Cloud. It is mutually exclusive with any other properties in the linked service. Type: object.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- use_
encrypted_ Anyendpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- use_
peer_ Anyverification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- client
Id Any - The client ID associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
- client
Secret Property Map | Property Map - The client secret associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
- connect
Via Property Map - The integration runtime reference.
- connection
Properties Any - Properties used to connect to Salesforce Marketing Cloud. It is mutually exclusive with any other properties in the linked service. Type: object.
- description String
- 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.
- use
Encrypted AnyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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. Type: boolean (or Expression with resultType boolean).
- use
Peer AnyVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
SalesforceServiceCloudLinkedService, SalesforceServiceCloudLinkedServiceArgs
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Api
Version object - The Salesforce API version used in ADF. 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.
- Environment
Url object - The URL of Salesforce Service Cloud instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
- Extended
Properties object - Extended properties appended to the connection string. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The password for Basic authentication of the Salesforce instance.
- Security
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The security token is optional to remotely access Salesforce instance.
- Username object
- The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Api
Version interface{} - The Salesforce API version used in ADF. 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.
- Environment
Url interface{} - The URL of Salesforce Service Cloud instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
- Extended
Properties interface{} - Extended properties appended to the connection string. Type: string (or Expression with resultType string).
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference String - The password for Basic authentication of the Salesforce instance.
- Security
Token AzureKey | SecureVault Secret Reference String - The security token is optional to remotely access Salesforce instance.
- Username interface{}
- The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- api
Version Object - The Salesforce API version used in ADF. 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.
- environment
Url Object - The URL of Salesforce Service Cloud instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
- extended
Properties Object - Extended properties appended to the connection string. Type: string (or Expression with resultType string).
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The password for Basic authentication of the Salesforce instance.
- security
Token AzureKey | SecureVault Secret Reference String - The security token is optional to remotely access Salesforce instance.
- username Object
- The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- api
Version any - The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
- connect
Via 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.
- environment
Url any - The URL of Salesforce Service Cloud instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
- extended
Properties any - Extended properties appended to the connection string. Type: string (or Expression with resultType string).
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The password for Basic authentication of the Salesforce instance.
- security
Token AzureKey | SecureVault Secret Reference String - The security token is optional to remotely access Salesforce instance.
- username any
- The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- api_
version Any - The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
- connect_
via 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.
- environment_
url Any - The URL of Salesforce Service Cloud instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
- extended_
properties Any - Extended properties appended to the connection string. Type: string (or Expression with resultType string).
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The password for Basic authentication of the Salesforce instance.
- security_
token AzureKey | SecureVault Secret Reference String - The security token is optional to remotely access Salesforce instance.
- username Any
- The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- api
Version Any - The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
- connect
Via 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.
- environment
Url Any - The URL of Salesforce Service Cloud instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
- extended
Properties Any - Extended properties appended to the connection string. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The password for Basic authentication of the Salesforce instance.
- security
Token Property Map | Property Map - The security token is optional to remotely access Salesforce instance.
- username Any
- The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
SalesforceServiceCloudLinkedServiceResponse, SalesforceServiceCloudLinkedServiceResponseArgs
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Api
Version object - The Salesforce API version used in ADF. 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.
- Environment
Url object - The URL of Salesforce Service Cloud instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
- Extended
Properties object - Extended properties appended to the connection string. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The password for Basic authentication of the Salesforce instance.
- Security
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The security token is optional to remotely access Salesforce instance.
- Username object
- The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Api
Version interface{} - The Salesforce API version used in ADF. 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.
- Environment
Url interface{} - The URL of Salesforce Service Cloud instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
- Extended
Properties interface{} - Extended properties appended to the connection string. Type: string (or Expression with resultType string).
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - The password for Basic authentication of the Salesforce instance.
- Security
Token AzureKey | SecureVault Secret Reference Response String Response - The security token is optional to remotely access Salesforce instance.
- Username interface{}
- The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- api
Version Object - The Salesforce API version used in ADF. 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.
- environment
Url Object - The URL of Salesforce Service Cloud instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
- extended
Properties Object - Extended properties appended to the connection string. Type: string (or Expression with resultType string).
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password for Basic authentication of the Salesforce instance.
- security
Token AzureKey | SecureVault Secret Reference Response String Response - The security token is optional to remotely access Salesforce instance.
- username Object
- The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- api
Version any - The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
- connect
Via 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.
- environment
Url any - The URL of Salesforce Service Cloud instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
- extended
Properties any - Extended properties appended to the connection string. Type: string (or Expression with resultType string).
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password for Basic authentication of the Salesforce instance.
- security
Token AzureKey | SecureVault Secret Reference Response String Response - The security token is optional to remotely access Salesforce instance.
- username any
- The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- api_
version Any - The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
- connect_
via 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.
- environment_
url Any - The URL of Salesforce Service Cloud instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
- extended_
properties Any - Extended properties appended to the connection string. Type: string (or Expression with resultType string).
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password for Basic authentication of the Salesforce instance.
- security_
token AzureKey | SecureVault Secret Reference Response String Response - The security token is optional to remotely access Salesforce instance.
- username Any
- The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- api
Version Any - The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
- connect
Via 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.
- environment
Url Any - The URL of Salesforce Service Cloud instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
- extended
Properties Any - Extended properties appended to the connection string. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The password for Basic authentication of the Salesforce instance.
- security
Token Property Map | Property Map - The security token is optional to remotely access Salesforce instance.
- username Any
- The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
SapBWLinkedService, SapBWLinkedServiceArgs
- Client
Id object - Client ID of the client on the BW system. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- Server object
- Host name of the SAP BW instance. Type: string (or Expression with resultType string).
- System
Number object - System number of the BW system. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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 access the SAP BW server.
- User
Name object - Username to access the SAP BW server. Type: string (or Expression with resultType string).
- Client
Id interface{} - Client ID of the client on the BW system. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- Server interface{}
- Host name of the SAP BW instance. Type: string (or Expression with resultType string).
- System
Number interface{} - System number of the BW system. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- 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 access the SAP BW server.
- User
Name interface{} - Username to access the SAP BW server. Type: string (or Expression with resultType string).
- client
Id Object - Client ID of the client on the BW system. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- server Object
- Host name of the SAP BW instance. Type: string (or Expression with resultType string).
- system
Number Object - System number of the BW system. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- 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 access the SAP BW server.
- user
Name Object - Username to access the SAP BW server. Type: string (or Expression with resultType string).
- client
Id any - Client ID of the client on the BW system. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- server any
- Host name of the SAP BW instance. Type: string (or Expression with resultType string).
- system
Number any - System number of the BW system. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- 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 access the SAP BW server.
- user
Name any - Username to access the SAP BW server. Type: string (or Expression with resultType string).
- client_
id Any - Client ID of the client on the BW system. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- server Any
- Host name of the SAP BW instance. Type: string (or Expression with resultType string).
- system_
number Any - System number of the BW system. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via 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 access the SAP BW server.
- user_
name Any - Username to access the SAP BW server. Type: string (or Expression with resultType string).
- client
Id Any - Client ID of the client on the BW system. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- server Any
- Host name of the SAP BW instance. Type: string (or Expression with resultType string).
- system
Number Any - System number of the BW system. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- 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 access the SAP BW server.
- user
Name Any - Username to access the SAP BW server. Type: string (or Expression with resultType string).
SapBWLinkedServiceResponse, SapBWLinkedServiceResponseArgs
- Client
Id object - Client ID of the client on the BW system. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- Server object
- Host name of the SAP BW instance. Type: string (or Expression with resultType string).
- System
Number object - System number of the BW system. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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 access the SAP BW server.
- User
Name object - Username to access the SAP BW server. Type: string (or Expression with resultType string).
- Client
Id interface{} - Client ID of the client on the BW system. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- Server interface{}
- Host name of the SAP BW instance. Type: string (or Expression with resultType string).
- System
Number interface{} - System number of the BW system. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- 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 access the SAP BW server.
- User
Name interface{} - Username to access the SAP BW server. Type: string (or Expression with resultType string).
- client
Id Object - Client ID of the client on the BW system. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- server Object
- Host name of the SAP BW instance. Type: string (or Expression with resultType string).
- system
Number Object - System number of the BW system. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- 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 access the SAP BW server.
- user
Name Object - Username to access the SAP BW server. Type: string (or Expression with resultType string).
- client
Id any - Client ID of the client on the BW system. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- server any
- Host name of the SAP BW instance. Type: string (or Expression with resultType string).
- system
Number any - System number of the BW system. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- 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 access the SAP BW server.
- user
Name any - Username to access the SAP BW server. Type: string (or Expression with resultType string).
- client_
id Any - Client ID of the client on the BW system. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- server Any
- Host name of the SAP BW instance. Type: string (or Expression with resultType string).
- system_
number Any - System number of the BW system. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via 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 access the SAP BW server.
- user_
name Any - Username to access the SAP BW server. Type: string (or Expression with resultType string).
- client
Id Any - Client ID of the client on the BW system. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- server Any
- Host name of the SAP BW instance. Type: string (or Expression with resultType string).
- system
Number Any - System number of the BW system. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- 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 access the SAP BW server.
- user
Name Any - Username to access the SAP BW server. Type: string (or Expression with resultType string).
SapCloudForCustomerLinkedService, SapCloudForCustomerLinkedServiceArgs
- Url object
- The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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. Either encryptedCredential or username/password must be provided. 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 for Basic authentication.
- Username object
- The username for Basic authentication. Type: string (or Expression with resultType string).
- Url interface{}
- The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- 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. Either encryptedCredential or username/password must be provided. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference String - The password for Basic authentication.
- Username interface{}
- The username for Basic authentication. Type: string (or Expression with resultType string).
- url Object
- The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- 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. Either encryptedCredential or username/password must be provided. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The password for Basic authentication.
- username Object
- The username for Basic authentication. Type: string (or Expression with resultType string).
- url any
- The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- 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. Either encryptedCredential or username/password must be provided. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The password for Basic authentication.
- username any
- The username for Basic authentication. Type: string (or Expression with resultType string).
- url Any
- The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via 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. Either encryptedCredential or username/password must be provided. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The password for Basic authentication.
- username Any
- The username for Basic authentication. Type: string (or Expression with resultType string).
- url Any
- The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- 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. Either encryptedCredential or username/password must be provided. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The password for Basic authentication.
- username Any
- The username for Basic authentication. Type: string (or Expression with resultType string).
SapCloudForCustomerLinkedServiceResponse, SapCloudForCustomerLinkedServiceResponseArgs
- Url object
- The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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. Either encryptedCredential or username/password must be provided. 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 for Basic authentication.
- Username object
- The username for Basic authentication. Type: string (or Expression with resultType string).
- Url interface{}
- The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- 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. Either encryptedCredential or username/password must be provided. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - The password for Basic authentication.
- Username interface{}
- The username for Basic authentication. Type: string (or Expression with resultType string).
- url Object
- The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- 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. Either encryptedCredential or username/password must be provided. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password for Basic authentication.
- username Object
- The username for Basic authentication. Type: string (or Expression with resultType string).
- url any
- The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- 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. Either encryptedCredential or username/password must be provided. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password for Basic authentication.
- username any
- The username for Basic authentication. Type: string (or Expression with resultType string).
- url Any
- The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via 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. Either encryptedCredential or username/password must be provided. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password for Basic authentication.
- username Any
- The username for Basic authentication. Type: string (or Expression with resultType string).
- url Any
- The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- 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. Either encryptedCredential or username/password must be provided. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The password for Basic authentication.
- username Any
- The username for Basic authentication. Type: string (or Expression with resultType string).
SapEccLinkedService, SapEccLinkedServiceArgs
- Url object
- The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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. Either encryptedCredential or username/password must be provided. 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 for Basic authentication.
- Username object
- The username for Basic authentication. Type: string (or Expression with resultType string).
- Url interface{}
- The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- 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. Either encryptedCredential or username/password must be provided. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference String - The password for Basic authentication.
- Username interface{}
- The username for Basic authentication. Type: string (or Expression with resultType string).
- url Object
- The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- 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. Either encryptedCredential or username/password must be provided. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The password for Basic authentication.
- username Object
- The username for Basic authentication. Type: string (or Expression with resultType string).
- url any
- The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- 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. Either encryptedCredential or username/password must be provided. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The password for Basic authentication.
- username any
- The username for Basic authentication. Type: string (or Expression with resultType string).
- url Any
- The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via 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. Either encryptedCredential or username/password must be provided. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The password for Basic authentication.
- username Any
- The username for Basic authentication. Type: string (or Expression with resultType string).
- url Any
- The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- 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. Either encryptedCredential or username/password must be provided. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The password for Basic authentication.
- username Any
- The username for Basic authentication. Type: string (or Expression with resultType string).
SapEccLinkedServiceResponse, SapEccLinkedServiceResponseArgs
- Url object
- The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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. Either encryptedCredential or username/password must be provided. 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 for Basic authentication.
- Username object
- The username for Basic authentication. Type: string (or Expression with resultType string).
- Url interface{}
- The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- 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. Either encryptedCredential or username/password must be provided. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - The password for Basic authentication.
- Username interface{}
- The username for Basic authentication. Type: string (or Expression with resultType string).
- url Object
- The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- 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. Either encryptedCredential or username/password must be provided. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password for Basic authentication.
- username Object
- The username for Basic authentication. Type: string (or Expression with resultType string).
- url any
- The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- 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. Either encryptedCredential or username/password must be provided. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password for Basic authentication.
- username any
- The username for Basic authentication. Type: string (or Expression with resultType string).
- url Any
- The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via 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. Either encryptedCredential or username/password must be provided. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password for Basic authentication.
- username Any
- The username for Basic authentication. Type: string (or Expression with resultType string).
- url Any
- The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- 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. Either encryptedCredential or username/password must be provided. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The password for Basic authentication.
- username Any
- The username for Basic authentication. Type: string (or Expression with resultType string).
SapHanaAuthenticationType, SapHanaAuthenticationTypeArgs
- Basic
- Basic
- Windows
- Windows
- Sap
Hana Authentication Type Basic - Basic
- Sap
Hana Authentication Type Windows - Windows
- Basic
- Basic
- Windows
- Windows
- Basic
- Basic
- Windows
- Windows
- BASIC
- Basic
- WINDOWS
- Windows
- "Basic"
- Basic
- "Windows"
- Windows
SapHanaLinkedService, SapHanaLinkedServiceArgs
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Sap Hana Authentication Type - The authentication type to be used to connect to the SAP HANA server.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Connection
String object - SAP HANA 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.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - Password to access the SAP HANA server.
- Server object
- Host name of the SAP HANA server. Type: string (or Expression with resultType string).
- User
Name object - Username to access the SAP HANA 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 | SapHana Authentication Type - The authentication type to be used to connect to the SAP HANA server.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Connection
String interface{} - SAP HANA 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.
- Password
Azure
Key | SecureVault Secret Reference String - Password to access the SAP HANA server.
- Server interface{}
- Host name of the SAP HANA server. Type: string (or Expression with resultType string).
- User
Name interface{} - Username to access the SAP HANA 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 | SapHana Authentication Type - The authentication type to be used to connect to the SAP HANA server.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String Object - SAP HANA 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.
- password
Azure
Key | SecureVault Secret Reference String - Password to access the SAP HANA server.
- server Object
- Host name of the SAP HANA server. Type: string (or Expression with resultType string).
- user
Name Object - Username to access the SAP HANA 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 | SapHana Authentication Type - The authentication type to be used to connect to the SAP HANA server.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String any - SAP HANA 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.
- password
Azure
Key | SecureVault Secret Reference String - Password to access the SAP HANA server.
- server any
- Host name of the SAP HANA server. Type: string (or Expression with resultType string).
- user
Name any - Username to access the SAP HANA server. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication_
type str | SapHana Authentication Type - The authentication type to be used to connect to the SAP HANA server.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- connection_
string Any - SAP HANA ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - Password to access the SAP HANA server.
- server Any
- Host name of the SAP HANA server. Type: string (or Expression with resultType string).
- user_
name Any - Username to access the SAP HANA server. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- authentication
Type String | "Basic" | "Windows" - The authentication type to be used to connect to the SAP HANA server.
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - SAP HANA 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.
- password Property Map | Property Map
- Password to access the SAP HANA server.
- server Any
- Host name of the SAP HANA server. Type: string (or Expression with resultType string).
- user
Name Any - Username to access the SAP HANA server. Type: string (or Expression with resultType string).
SapHanaLinkedServiceResponse, SapHanaLinkedServiceResponseArgs
- 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 SAP HANA server.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Connection
String object - SAP HANA 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.
- 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 SAP HANA server.
- Server object
- Host name of the SAP HANA server. Type: string (or Expression with resultType string).
- User
Name object - Username to access the SAP HANA 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 SAP HANA server.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Connection
String interface{} - SAP HANA 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.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - Password to access the SAP HANA server.
- Server interface{}
- Host name of the SAP HANA server. Type: string (or Expression with resultType string).
- User
Name interface{} - Username to access the SAP HANA 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 SAP HANA server.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String Object - SAP HANA 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.
- password
Azure
Key | SecureVault Secret Reference Response String Response - Password to access the SAP HANA server.
- server Object
- Host name of the SAP HANA server. Type: string (or Expression with resultType string).
- user
Name Object - Username to access the SAP HANA 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 SAP HANA server.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String any - SAP HANA 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.
- password
Azure
Key | SecureVault Secret Reference Response String Response - Password to access the SAP HANA server.
- server any
- Host name of the SAP HANA server. Type: string (or Expression with resultType string).
- user
Name any - Username to access the SAP HANA server. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication_
type str - The authentication type to be used to connect to the SAP HANA server.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- connection_
string Any - SAP HANA ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - Password to access the SAP HANA server.
- server Any
- Host name of the SAP HANA server. Type: string (or Expression with resultType string).
- user_
name Any - Username to access the SAP HANA server. Type: string (or Expression with resultType string).
- 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 SAP HANA server.
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - SAP HANA 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.
- password Property Map | Property Map
- Password to access the SAP HANA server.
- server Any
- Host name of the SAP HANA server. Type: string (or Expression with resultType string).
- user
Name Any - Username to access the SAP HANA server. Type: string (or Expression with resultType string).
SapOdpLinkedService, SapOdpLinkedServiceArgs
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Client
Id object - Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- 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.
- Language object
- Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
- Logon
Group object - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- Message
Server object - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- Message
Server objectService - The service name or port number of the Message 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 access the SAP server where the table is located.
- Server object
- Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
- Snc
Library objectPath - External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- Snc
Mode object - SNC activation indicator to access the SAP server where the table is located. Must be either 0 (off) or 1 (on). Type: string (or Expression with resultType string).
- Snc
My objectName - Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- Snc
Partner objectName - Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- Snc
Qop object - SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
- Subscriber
Name object - The subscriber name. Type: string (or Expression with resultType string).
- System
Id object - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- System
Number object - System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- User
Name object - Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- X509Certificate
Path object - SNC X509 certificate file path. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Client
Id interface{} - Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- 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.
- Language interface{}
- Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
- Logon
Group interface{} - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- Message
Server interface{} - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- Message
Server interface{}Service - The service name or port number of the Message 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 access the SAP server where the table is located.
- Server interface{}
- Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
- Snc
Library interface{}Path - External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- Snc
Mode interface{} - SNC activation indicator to access the SAP server where the table is located. Must be either 0 (off) or 1 (on). Type: string (or Expression with resultType string).
- Snc
My interface{}Name - Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- Snc
Partner interface{}Name - Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- Snc
Qop interface{} - SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
- Subscriber
Name interface{} - The subscriber name. Type: string (or Expression with resultType string).
- System
Id interface{} - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- System
Number interface{} - System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- User
Name interface{} - Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- X509Certificate
Path interface{} - SNC X509 certificate file path. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- client
Id Object - Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- 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.
- language Object
- Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
- logon
Group Object - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- message
Server Object - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- message
Server ObjectService - The service name or port number of the Message 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 access the SAP server where the table is located.
- server Object
- Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
- snc
Library ObjectPath - External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Mode Object - SNC activation indicator to access the SAP server where the table is located. Must be either 0 (off) or 1 (on). Type: string (or Expression with resultType string).
- snc
My ObjectName - Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Partner ObjectName - Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Qop Object - SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
- subscriber
Name Object - The subscriber name. Type: string (or Expression with resultType string).
- system
Id Object - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- system
Number Object - System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- user
Name Object - Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- x509Certificate
Path Object - SNC X509 certificate file path. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- client
Id any - Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- connect
Via 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.
- language any
- Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
- logon
Group any - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- message
Server any - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- message
Server anyService - The service name or port number of the Message 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 access the SAP server where the table is located.
- server any
- Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
- snc
Library anyPath - External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Mode any - SNC activation indicator to access the SAP server where the table is located. Must be either 0 (off) or 1 (on). Type: string (or Expression with resultType string).
- snc
My anyName - Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Partner anyName - Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Qop any - SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
- subscriber
Name any - The subscriber name. Type: string (or Expression with resultType string).
- system
Id any - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- system
Number any - System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- user
Name any - Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- x509Certificate
Path any - SNC X509 certificate file path. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- client_
id Any - Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- connect_
via 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.
- language Any
- Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
- logon_
group Any - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- message_
server Any - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- message_
server_ Anyservice - The service name or port number of the Message 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 access the SAP server where the table is located.
- server Any
- Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
- snc_
library_ Anypath - External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc_
mode Any - SNC activation indicator to access the SAP server where the table is located. Must be either 0 (off) or 1 (on). Type: string (or Expression with resultType string).
- snc_
my_ Anyname - Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc_
partner_ Anyname - Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc_
qop Any - SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
- subscriber_
name Any - The subscriber name. Type: string (or Expression with resultType string).
- system_
id Any - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- system_
number Any - System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- user_
name Any - Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- x509_
certificate_ Anypath - SNC X509 certificate file path. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- client
Id Any - Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- connect
Via 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.
- language Any
- Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
- logon
Group Any - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- message
Server Any - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- message
Server AnyService - The service name or port number of the Message Server. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- Password to access the SAP server where the table is located.
- server Any
- Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
- snc
Library AnyPath - External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Mode Any - SNC activation indicator to access the SAP server where the table is located. Must be either 0 (off) or 1 (on). Type: string (or Expression with resultType string).
- snc
My AnyName - Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Partner AnyName - Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Qop Any - SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
- subscriber
Name Any - The subscriber name. Type: string (or Expression with resultType string).
- system
Id Any - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- system
Number Any - System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- user
Name Any - Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- x509Certificate
Path Any - SNC X509 certificate file path. Type: string (or Expression with resultType string).
SapOdpLinkedServiceResponse, SapOdpLinkedServiceResponseArgs
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Client
Id object - Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- 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.
- Language object
- Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
- Logon
Group object - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- Message
Server object - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- Message
Server objectService - The service name or port number of the Message 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 access the SAP server where the table is located.
- Server object
- Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
- Snc
Library objectPath - External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- Snc
Mode object - SNC activation indicator to access the SAP server where the table is located. Must be either 0 (off) or 1 (on). Type: string (or Expression with resultType string).
- Snc
My objectName - Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- Snc
Partner objectName - Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- Snc
Qop object - SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
- Subscriber
Name object - The subscriber name. Type: string (or Expression with resultType string).
- System
Id object - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- System
Number object - System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- User
Name object - Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- X509Certificate
Path object - SNC X509 certificate file path. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Client
Id interface{} - Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- 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.
- Language interface{}
- Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
- Logon
Group interface{} - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- Message
Server interface{} - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- Message
Server interface{}Service - The service name or port number of the Message 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 access the SAP server where the table is located.
- Server interface{}
- Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
- Snc
Library interface{}Path - External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- Snc
Mode interface{} - SNC activation indicator to access the SAP server where the table is located. Must be either 0 (off) or 1 (on). Type: string (or Expression with resultType string).
- Snc
My interface{}Name - Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- Snc
Partner interface{}Name - Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- Snc
Qop interface{} - SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
- Subscriber
Name interface{} - The subscriber name. Type: string (or Expression with resultType string).
- System
Id interface{} - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- System
Number interface{} - System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- User
Name interface{} - Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- X509Certificate
Path interface{} - SNC X509 certificate file path. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- client
Id Object - Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- 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.
- language Object
- Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
- logon
Group Object - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- message
Server Object - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- message
Server ObjectService - The service name or port number of the Message 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 access the SAP server where the table is located.
- server Object
- Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
- snc
Library ObjectPath - External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Mode Object - SNC activation indicator to access the SAP server where the table is located. Must be either 0 (off) or 1 (on). Type: string (or Expression with resultType string).
- snc
My ObjectName - Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Partner ObjectName - Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Qop Object - SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
- subscriber
Name Object - The subscriber name. Type: string (or Expression with resultType string).
- system
Id Object - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- system
Number Object - System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- user
Name Object - Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- x509Certificate
Path Object - SNC X509 certificate file path. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- client
Id any - Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- connect
Via 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.
- language any
- Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
- logon
Group any - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- message
Server any - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- message
Server anyService - The service name or port number of the Message 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 access the SAP server where the table is located.
- server any
- Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
- snc
Library anyPath - External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Mode any - SNC activation indicator to access the SAP server where the table is located. Must be either 0 (off) or 1 (on). Type: string (or Expression with resultType string).
- snc
My anyName - Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Partner anyName - Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Qop any - SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
- subscriber
Name any - The subscriber name. Type: string (or Expression with resultType string).
- system
Id any - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- system
Number any - System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- user
Name any - Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- x509Certificate
Path any - SNC X509 certificate file path. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- client_
id Any - Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- connect_
via 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.
- language Any
- Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
- logon_
group Any - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- message_
server Any - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- message_
server_ Anyservice - The service name or port number of the Message 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 access the SAP server where the table is located.
- server Any
- Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
- snc_
library_ Anypath - External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc_
mode Any - SNC activation indicator to access the SAP server where the table is located. Must be either 0 (off) or 1 (on). Type: string (or Expression with resultType string).
- snc_
my_ Anyname - Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc_
partner_ Anyname - Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc_
qop Any - SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
- subscriber_
name Any - The subscriber name. Type: string (or Expression with resultType string).
- system_
id Any - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- system_
number Any - System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- user_
name Any - Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- x509_
certificate_ Anypath - SNC X509 certificate file path. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- client
Id Any - Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- connect
Via 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.
- language Any
- Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
- logon
Group Any - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- message
Server Any - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- message
Server AnyService - The service name or port number of the Message Server. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- Password to access the SAP server where the table is located.
- server Any
- Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
- snc
Library AnyPath - External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Mode Any - SNC activation indicator to access the SAP server where the table is located. Must be either 0 (off) or 1 (on). Type: string (or Expression with resultType string).
- snc
My AnyName - Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Partner AnyName - Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Qop Any - SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
- subscriber
Name Any - The subscriber name. Type: string (or Expression with resultType string).
- system
Id Any - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- system
Number Any - System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- user
Name Any - Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- x509Certificate
Path Any - SNC X509 certificate file path. Type: string (or Expression with resultType string).
SapOpenHubLinkedService, SapOpenHubLinkedServiceArgs
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Client
Id object - Client ID of the client on the BW system where the open hub destination is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- 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.
- Language object
- Language of the BW system where the open hub destination is located. The default value is EN. Type: string (or Expression with resultType string).
- Logon
Group object - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- Message
Server object - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- Message
Server objectService - The service name or port number of the Message 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 access the SAP BW server where the open hub destination is located.
- Server object
- Host name of the SAP BW instance where the open hub destination is located. Type: string (or Expression with resultType string).
- System
Id object - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- System
Number object - System number of the BW system where the open hub destination is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- User
Name object - Username to access the SAP BW server where the open hub destination is located. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Client
Id interface{} - Client ID of the client on the BW system where the open hub destination is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- 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.
- Language interface{}
- Language of the BW system where the open hub destination is located. The default value is EN. Type: string (or Expression with resultType string).
- Logon
Group interface{} - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- Message
Server interface{} - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- Message
Server interface{}Service - The service name or port number of the Message 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 access the SAP BW server where the open hub destination is located.
- Server interface{}
- Host name of the SAP BW instance where the open hub destination is located. Type: string (or Expression with resultType string).
- System
Id interface{} - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- System
Number interface{} - System number of the BW system where the open hub destination is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- User
Name interface{} - Username to access the SAP BW server where the open hub destination is located. 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 - Client ID of the client on the BW system where the open hub destination is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- connect
Via 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.
- language Object
- Language of the BW system where the open hub destination is located. The default value is EN. Type: string (or Expression with resultType string).
- logon
Group Object - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- message
Server Object - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- message
Server ObjectService - The service name or port number of the Message 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 access the SAP BW server where the open hub destination is located.
- server Object
- Host name of the SAP BW instance where the open hub destination is located. Type: string (or Expression with resultType string).
- system
Id Object - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- system
Number Object - System number of the BW system where the open hub destination is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- user
Name Object - Username to access the SAP BW server where the open hub destination is located. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- client
Id any - Client ID of the client on the BW system where the open hub destination is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- connect
Via 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.
- language any
- Language of the BW system where the open hub destination is located. The default value is EN. Type: string (or Expression with resultType string).
- logon
Group any - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- message
Server any - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- message
Server anyService - The service name or port number of the Message 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 access the SAP BW server where the open hub destination is located.
- server any
- Host name of the SAP BW instance where the open hub destination is located. Type: string (or Expression with resultType string).
- system
Id any - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- system
Number any - System number of the BW system where the open hub destination is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- user
Name any - Username to access the SAP BW server where the open hub destination is located. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- client_
id Any - Client ID of the client on the BW system where the open hub destination is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- connect_
via 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.
- language Any
- Language of the BW system where the open hub destination is located. The default value is EN. Type: string (or Expression with resultType string).
- logon_
group Any - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- message_
server Any - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- message_
server_ Anyservice - The service name or port number of the Message 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 access the SAP BW server where the open hub destination is located.
- server Any
- Host name of the SAP BW instance where the open hub destination is located. Type: string (or Expression with resultType string).
- system_
id Any - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- system_
number Any - System number of the BW system where the open hub destination is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- user_
name Any - Username to access the SAP BW server where the open hub destination is located. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- client
Id Any - Client ID of the client on the BW system where the open hub destination is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- connect
Via 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.
- language Any
- Language of the BW system where the open hub destination is located. The default value is EN. Type: string (or Expression with resultType string).
- logon
Group Any - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- message
Server Any - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- message
Server AnyService - The service name or port number of the Message Server. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- Password to access the SAP BW server where the open hub destination is located.
- server Any
- Host name of the SAP BW instance where the open hub destination is located. Type: string (or Expression with resultType string).
- system
Id Any - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- system
Number Any - System number of the BW system where the open hub destination is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- user
Name Any - Username to access the SAP BW server where the open hub destination is located. Type: string (or Expression with resultType string).
SapOpenHubLinkedServiceResponse, SapOpenHubLinkedServiceResponseArgs
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Client
Id object - Client ID of the client on the BW system where the open hub destination is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- 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.
- Language object
- Language of the BW system where the open hub destination is located. The default value is EN. Type: string (or Expression with resultType string).
- Logon
Group object - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- Message
Server object - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- Message
Server objectService - The service name or port number of the Message 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 access the SAP BW server where the open hub destination is located.
- Server object
- Host name of the SAP BW instance where the open hub destination is located. Type: string (or Expression with resultType string).
- System
Id object - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- System
Number object - System number of the BW system where the open hub destination is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- User
Name object - Username to access the SAP BW server where the open hub destination is located. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Client
Id interface{} - Client ID of the client on the BW system where the open hub destination is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- 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.
- Language interface{}
- Language of the BW system where the open hub destination is located. The default value is EN. Type: string (or Expression with resultType string).
- Logon
Group interface{} - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- Message
Server interface{} - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- Message
Server interface{}Service - The service name or port number of the Message 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 access the SAP BW server where the open hub destination is located.
- Server interface{}
- Host name of the SAP BW instance where the open hub destination is located. Type: string (or Expression with resultType string).
- System
Id interface{} - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- System
Number interface{} - System number of the BW system where the open hub destination is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- User
Name interface{} - Username to access the SAP BW server where the open hub destination is located. 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 - Client ID of the client on the BW system where the open hub destination is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- connect
Via 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.
- language Object
- Language of the BW system where the open hub destination is located. The default value is EN. Type: string (or Expression with resultType string).
- logon
Group Object - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- message
Server Object - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- message
Server ObjectService - The service name or port number of the Message 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 access the SAP BW server where the open hub destination is located.
- server Object
- Host name of the SAP BW instance where the open hub destination is located. Type: string (or Expression with resultType string).
- system
Id Object - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- system
Number Object - System number of the BW system where the open hub destination is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- user
Name Object - Username to access the SAP BW server where the open hub destination is located. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- client
Id any - Client ID of the client on the BW system where the open hub destination is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- connect
Via 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.
- language any
- Language of the BW system where the open hub destination is located. The default value is EN. Type: string (or Expression with resultType string).
- logon
Group any - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- message
Server any - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- message
Server anyService - The service name or port number of the Message 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 access the SAP BW server where the open hub destination is located.
- server any
- Host name of the SAP BW instance where the open hub destination is located. Type: string (or Expression with resultType string).
- system
Id any - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- system
Number any - System number of the BW system where the open hub destination is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- user
Name any - Username to access the SAP BW server where the open hub destination is located. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- client_
id Any - Client ID of the client on the BW system where the open hub destination is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- connect_
via 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.
- language Any
- Language of the BW system where the open hub destination is located. The default value is EN. Type: string (or Expression with resultType string).
- logon_
group Any - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- message_
server Any - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- message_
server_ Anyservice - The service name or port number of the Message 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 access the SAP BW server where the open hub destination is located.
- server Any
- Host name of the SAP BW instance where the open hub destination is located. Type: string (or Expression with resultType string).
- system_
id Any - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- system_
number Any - System number of the BW system where the open hub destination is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- user_
name Any - Username to access the SAP BW server where the open hub destination is located. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- client
Id Any - Client ID of the client on the BW system where the open hub destination is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- connect
Via 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.
- language Any
- Language of the BW system where the open hub destination is located. The default value is EN. Type: string (or Expression with resultType string).
- logon
Group Any - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- message
Server Any - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- message
Server AnyService - The service name or port number of the Message Server. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- Password to access the SAP BW server where the open hub destination is located.
- server Any
- Host name of the SAP BW instance where the open hub destination is located. Type: string (or Expression with resultType string).
- system
Id Any - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- system
Number Any - System number of the BW system where the open hub destination is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- user
Name Any - Username to access the SAP BW server where the open hub destination is located. Type: string (or Expression with resultType string).
SapTableLinkedService, SapTableLinkedServiceArgs
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Client
Id object - Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- 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.
- Language object
- Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
- Logon
Group object - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- Message
Server object - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- Message
Server objectService - The service name or port number of the Message 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 access the SAP server where the table is located.
- Server object
- Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
- Snc
Library objectPath - External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- Snc
Mode object - SNC activation indicator to access the SAP server where the table is located. Must be either 0 (off) or 1 (on). Type: string (or Expression with resultType string).
- Snc
My objectName - Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- Snc
Partner objectName - Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- Snc
Qop object - SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
- System
Id object - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- System
Number object - System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- User
Name object - Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Client
Id interface{} - Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- 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.
- Language interface{}
- Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
- Logon
Group interface{} - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- Message
Server interface{} - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- Message
Server interface{}Service - The service name or port number of the Message 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 access the SAP server where the table is located.
- Server interface{}
- Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
- Snc
Library interface{}Path - External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- Snc
Mode interface{} - SNC activation indicator to access the SAP server where the table is located. Must be either 0 (off) or 1 (on). Type: string (or Expression with resultType string).
- Snc
My interface{}Name - Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- Snc
Partner interface{}Name - Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- Snc
Qop interface{} - SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
- System
Id interface{} - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- System
Number interface{} - System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- User
Name interface{} - Username to access the SAP server where the table is located. 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 - Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- connect
Via 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.
- language Object
- Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
- logon
Group Object - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- message
Server Object - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- message
Server ObjectService - The service name or port number of the Message 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 access the SAP server where the table is located.
- server Object
- Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
- snc
Library ObjectPath - External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Mode Object - SNC activation indicator to access the SAP server where the table is located. Must be either 0 (off) or 1 (on). Type: string (or Expression with resultType string).
- snc
My ObjectName - Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Partner ObjectName - Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Qop Object - SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
- system
Id Object - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- system
Number Object - System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- user
Name Object - Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- client
Id any - Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- connect
Via 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.
- language any
- Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
- logon
Group any - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- message
Server any - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- message
Server anyService - The service name or port number of the Message 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 access the SAP server where the table is located.
- server any
- Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
- snc
Library anyPath - External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Mode any - SNC activation indicator to access the SAP server where the table is located. Must be either 0 (off) or 1 (on). Type: string (or Expression with resultType string).
- snc
My anyName - Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Partner anyName - Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Qop any - SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
- system
Id any - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- system
Number any - System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- user
Name any - Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- client_
id Any - Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- connect_
via 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.
- language Any
- Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
- logon_
group Any - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- message_
server Any - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- message_
server_ Anyservice - The service name or port number of the Message 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 access the SAP server where the table is located.
- server Any
- Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
- snc_
library_ Anypath - External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc_
mode Any - SNC activation indicator to access the SAP server where the table is located. Must be either 0 (off) or 1 (on). Type: string (or Expression with resultType string).
- snc_
my_ Anyname - Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc_
partner_ Anyname - Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc_
qop Any - SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
- system_
id Any - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- system_
number Any - System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- user_
name Any - Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- client
Id Any - Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- connect
Via 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.
- language Any
- Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
- logon
Group Any - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- message
Server Any - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- message
Server AnyService - The service name or port number of the Message Server. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- Password to access the SAP server where the table is located.
- server Any
- Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
- snc
Library AnyPath - External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Mode Any - SNC activation indicator to access the SAP server where the table is located. Must be either 0 (off) or 1 (on). Type: string (or Expression with resultType string).
- snc
My AnyName - Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Partner AnyName - Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Qop Any - SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
- system
Id Any - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- system
Number Any - System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- user
Name Any - Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
SapTableLinkedServiceResponse, SapTableLinkedServiceResponseArgs
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Client
Id object - Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- 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.
- Language object
- Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
- Logon
Group object - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- Message
Server object - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- Message
Server objectService - The service name or port number of the Message 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 access the SAP server where the table is located.
- Server object
- Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
- Snc
Library objectPath - External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- Snc
Mode object - SNC activation indicator to access the SAP server where the table is located. Must be either 0 (off) or 1 (on). Type: string (or Expression with resultType string).
- Snc
My objectName - Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- Snc
Partner objectName - Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- Snc
Qop object - SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
- System
Id object - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- System
Number object - System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- User
Name object - Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Client
Id interface{} - Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- 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.
- Language interface{}
- Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
- Logon
Group interface{} - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- Message
Server interface{} - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- Message
Server interface{}Service - The service name or port number of the Message 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 access the SAP server where the table is located.
- Server interface{}
- Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
- Snc
Library interface{}Path - External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- Snc
Mode interface{} - SNC activation indicator to access the SAP server where the table is located. Must be either 0 (off) or 1 (on). Type: string (or Expression with resultType string).
- Snc
My interface{}Name - Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- Snc
Partner interface{}Name - Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- Snc
Qop interface{} - SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
- System
Id interface{} - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- System
Number interface{} - System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- User
Name interface{} - Username to access the SAP server where the table is located. 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 - Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- connect
Via 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.
- language Object
- Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
- logon
Group Object - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- message
Server Object - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- message
Server ObjectService - The service name or port number of the Message 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 access the SAP server where the table is located.
- server Object
- Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
- snc
Library ObjectPath - External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Mode Object - SNC activation indicator to access the SAP server where the table is located. Must be either 0 (off) or 1 (on). Type: string (or Expression with resultType string).
- snc
My ObjectName - Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Partner ObjectName - Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Qop Object - SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
- system
Id Object - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- system
Number Object - System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- user
Name Object - Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- client
Id any - Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- connect
Via 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.
- language any
- Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
- logon
Group any - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- message
Server any - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- message
Server anyService - The service name or port number of the Message 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 access the SAP server where the table is located.
- server any
- Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
- snc
Library anyPath - External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Mode any - SNC activation indicator to access the SAP server where the table is located. Must be either 0 (off) or 1 (on). Type: string (or Expression with resultType string).
- snc
My anyName - Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Partner anyName - Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Qop any - SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
- system
Id any - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- system
Number any - System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- user
Name any - Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- client_
id Any - Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- connect_
via 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.
- language Any
- Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
- logon_
group Any - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- message_
server Any - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- message_
server_ Anyservice - The service name or port number of the Message 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 access the SAP server where the table is located.
- server Any
- Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
- snc_
library_ Anypath - External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc_
mode Any - SNC activation indicator to access the SAP server where the table is located. Must be either 0 (off) or 1 (on). Type: string (or Expression with resultType string).
- snc_
my_ Anyname - Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc_
partner_ Anyname - Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc_
qop Any - SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
- system_
id Any - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- system_
number Any - System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- user_
name Any - Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- client
Id Any - Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
- connect
Via 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.
- language Any
- Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string).
- logon
Group Any - The Logon Group for the SAP System. Type: string (or Expression with resultType string).
- message
Server Any - The hostname of the SAP Message Server. Type: string (or Expression with resultType string).
- message
Server AnyService - The service name or port number of the Message Server. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- Password to access the SAP server where the table is located.
- server Any
- Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).
- snc
Library AnyPath - External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Mode Any - SNC activation indicator to access the SAP server where the table is located. Must be either 0 (off) or 1 (on). Type: string (or Expression with resultType string).
- snc
My AnyName - Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Partner AnyName - Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string).
- snc
Qop Any - SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string).
- system
Id Any - SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
- system
Number Any - System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
- user
Name Any - Username to access the SAP server where the table is located. Type: string (or Expression with resultType string).
ScriptAction, ScriptActionArgs
- Name string
- The user provided name of the script action.
- Roles object
- The node types on which the script action should be executed.
- Uri string
- The URI for the script action.
- Parameters string
- The parameters for the script action.
- Name string
- The user provided name of the script action.
- Roles interface{}
- The node types on which the script action should be executed.
- Uri string
- The URI for the script action.
- Parameters string
- The parameters for the script action.
- name String
- The user provided name of the script action.
- roles Object
- The node types on which the script action should be executed.
- uri String
- The URI for the script action.
- parameters String
- The parameters for the script action.
- name string
- The user provided name of the script action.
- roles any
- The node types on which the script action should be executed.
- uri string
- The URI for the script action.
- parameters string
- The parameters for the script action.
- name str
- The user provided name of the script action.
- roles Any
- The node types on which the script action should be executed.
- uri str
- The URI for the script action.
- parameters str
- The parameters for the script action.
- name String
- The user provided name of the script action.
- roles Any
- The node types on which the script action should be executed.
- uri String
- The URI for the script action.
- parameters String
- The parameters for the script action.
ScriptActionResponse, ScriptActionResponseArgs
- Name string
- The user provided name of the script action.
- Roles object
- The node types on which the script action should be executed.
- Uri string
- The URI for the script action.
- Parameters string
- The parameters for the script action.
- Name string
- The user provided name of the script action.
- Roles interface{}
- The node types on which the script action should be executed.
- Uri string
- The URI for the script action.
- Parameters string
- The parameters for the script action.
- name String
- The user provided name of the script action.
- roles Object
- The node types on which the script action should be executed.
- uri String
- The URI for the script action.
- parameters String
- The parameters for the script action.
- name string
- The user provided name of the script action.
- roles any
- The node types on which the script action should be executed.
- uri string
- The URI for the script action.
- parameters string
- The parameters for the script action.
- name str
- The user provided name of the script action.
- roles Any
- The node types on which the script action should be executed.
- uri str
- The URI for the script action.
- parameters str
- The parameters for the script action.
- name String
- The user provided name of the script action.
- roles Any
- The node types on which the script action should be executed.
- uri String
- The URI for the script action.
- parameters String
- The parameters for the script action.
SecureString, SecureStringArgs
- Value string
- Value of secure string.
- Value string
- Value of secure string.
- value String
- Value of secure string.
- value string
- Value of secure string.
- value str
- Value of secure string.
- value String
- Value of secure string.
SecureStringResponse, SecureStringResponseArgs
- Value string
- Value of secure string.
- Value string
- Value of secure string.
- value String
- Value of secure string.
- value string
- Value of secure string.
- value str
- Value of secure string.
- value String
- Value of secure string.
ServiceNowAuthenticationType, ServiceNowAuthenticationTypeArgs
- Basic
- Basic
- OAuth2
- OAuth2
- Service
Now Authentication Type Basic - Basic
- Service
Now Authentication Type OAuth2 - OAuth2
- Basic
- Basic
- OAuth2
- OAuth2
- Basic
- Basic
- OAuth2
- OAuth2
- BASIC
- Basic
- O_AUTH2
- OAuth2
- "Basic"
- Basic
- "OAuth2"
- OAuth2
ServiceNowLinkedService, ServiceNowLinkedServiceArgs
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Service Now Authentication Type - The authentication type to use.
- Endpoint object
- The endpoint of the ServiceNow server. (i.e. .service-now.com)
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Client
Id object - The client id for OAuth2 authentication.
- Client
Secret Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The client secret for OAuth2 authentication.
- 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 for Basic and OAuth2 authentication.
- 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.
- Username object
- The user name used to connect to the ServiceNow server for Basic and OAuth2 authentication.
- Authentication
Type string | ServiceNow Authentication Type - The authentication type to use.
- Endpoint interface{}
- The endpoint of the ServiceNow server. (i.e. .service-now.com)
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Client
Id interface{} - The client id for OAuth2 authentication.
- Client
Secret AzureKey | SecureVault Secret Reference String - The client secret for OAuth2 authentication.
- 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 for Basic and OAuth2 authentication.
- 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.
- Username interface{}
- The user name used to connect to the ServiceNow server for Basic and OAuth2 authentication.
- authentication
Type String | ServiceNow Authentication Type - The authentication type to use.
- endpoint Object
- The endpoint of the ServiceNow server. (i.e. .service-now.com)
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- client
Id Object - The client id for OAuth2 authentication.
- client
Secret AzureKey | SecureVault Secret Reference String - The client secret for OAuth2 authentication.
- 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 for Basic and OAuth2 authentication.
- 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.
- username Object
- The user name used to connect to the ServiceNow server for Basic and OAuth2 authentication.
- authentication
Type string | ServiceNow Authentication Type - The authentication type to use.
- endpoint any
- The endpoint of the ServiceNow server. (i.e. .service-now.com)
- annotations any[]
- List of tags that can be used for describing the linked service.
- client
Id any - The client id for OAuth2 authentication.
- client
Secret AzureKey | SecureVault Secret Reference String - The client secret for OAuth2 authentication.
- 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 for Basic and OAuth2 authentication.
- 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.
- username any
- The user name used to connect to the ServiceNow server for Basic and OAuth2 authentication.
- authentication_
type str | ServiceNow Authentication Type - The authentication type to use.
- endpoint Any
- The endpoint of the ServiceNow server. (i.e. .service-now.com)
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- client_
id Any - The client id for OAuth2 authentication.
- client_
secret AzureKey | SecureVault Secret Reference String - The client secret for OAuth2 authentication.
- 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 for Basic and OAuth2 authentication.
- 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.
- username Any
- The user name used to connect to the ServiceNow server for Basic and OAuth2 authentication.
- authentication
Type String | "Basic" | "OAuth2" - The authentication type to use.
- endpoint Any
- The endpoint of the ServiceNow server. (i.e. .service-now.com)
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- client
Id Any - The client id for OAuth2 authentication.
- client
Secret Property Map | Property Map - The client secret for OAuth2 authentication.
- 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 for Basic and OAuth2 authentication.
- 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.
- username Any
- The user name used to connect to the ServiceNow server for Basic and OAuth2 authentication.
ServiceNowLinkedServiceResponse, ServiceNowLinkedServiceResponseArgs
- Authentication
Type string - The authentication type to use.
- Endpoint object
- The endpoint of the ServiceNow server. (i.e. .service-now.com)
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Client
Id object - The client id for OAuth2 authentication.
- 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 for OAuth2 authentication.
- 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 for Basic and OAuth2 authentication.
- 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.
- Username object
- The user name used to connect to the ServiceNow server for Basic and OAuth2 authentication.
- Authentication
Type string - The authentication type to use.
- Endpoint interface{}
- The endpoint of the ServiceNow server. (i.e. .service-now.com)
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Client
Id interface{} - The client id for OAuth2 authentication.
- Client
Secret AzureKey | SecureVault Secret Reference Response String Response - The client secret for OAuth2 authentication.
- 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 for Basic and OAuth2 authentication.
- 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.
- Username interface{}
- The user name used to connect to the ServiceNow server for Basic and OAuth2 authentication.
- authentication
Type String - The authentication type to use.
- endpoint Object
- The endpoint of the ServiceNow server. (i.e. .service-now.com)
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- client
Id Object - The client id for OAuth2 authentication.
- client
Secret AzureKey | SecureVault Secret Reference Response String Response - The client secret for OAuth2 authentication.
- 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 for Basic and OAuth2 authentication.
- 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.
- username Object
- The user name used to connect to the ServiceNow server for Basic and OAuth2 authentication.
- authentication
Type string - The authentication type to use.
- endpoint any
- The endpoint of the ServiceNow server. (i.e. .service-now.com)
- annotations any[]
- List of tags that can be used for describing the linked service.
- client
Id any - The client id for OAuth2 authentication.
- client
Secret AzureKey | SecureVault Secret Reference Response String Response - The client secret for OAuth2 authentication.
- 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 for Basic and OAuth2 authentication.
- 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.
- username any
- The user name used to connect to the ServiceNow server for Basic and OAuth2 authentication.
- authentication_
type str - The authentication type to use.
- endpoint Any
- The endpoint of the ServiceNow server. (i.e. .service-now.com)
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- client_
id Any - The client id for OAuth2 authentication.
- client_
secret AzureKey | SecureVault Secret Reference Response String Response - The client secret for OAuth2 authentication.
- 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 for Basic and OAuth2 authentication.
- 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.
- username Any
- The user name used to connect to the ServiceNow server for Basic and OAuth2 authentication.
- authentication
Type String - The authentication type to use.
- endpoint Any
- The endpoint of the ServiceNow server. (i.e. .service-now.com)
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- client
Id Any - The client id for OAuth2 authentication.
- client
Secret Property Map | Property Map - The client secret for OAuth2 authentication.
- 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 for Basic and OAuth2 authentication.
- 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.
- username Any
- The user name used to connect to the ServiceNow server for Basic and OAuth2 authentication.
SftpAuthenticationType, SftpAuthenticationTypeArgs
- Basic
- Basic
- Ssh
Public Key - SshPublicKey
- Multi
Factor - MultiFactor
- Sftp
Authentication Type Basic - Basic
- Sftp
Authentication Type Ssh Public Key - SshPublicKey
- Sftp
Authentication Type Multi Factor - MultiFactor
- Basic
- Basic
- Ssh
Public Key - SshPublicKey
- Multi
Factor - MultiFactor
- Basic
- Basic
- Ssh
Public Key - SshPublicKey
- Multi
Factor - MultiFactor
- BASIC
- Basic
- SSH_PUBLIC_KEY
- SshPublicKey
- MULTI_FACTOR
- MultiFactor
- "Basic"
- Basic
- "Ssh
Public Key" - SshPublicKey
- "Multi
Factor" - MultiFactor
SftpServerLinkedService, SftpServerLinkedServiceArgs
- Host object
- The SFTP server host name. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Sftp 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.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Host
Key objectFingerprint - The host key finger-print of the SFTP server. When SkipHostKeyValidation is false, HostKeyFingerprint should be specified. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Pass
Phrase Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The password to decrypt the SSH private key if the SSH private key is encrypted.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - Password to logon the SFTP server for Basic authentication.
- Port object
- The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.
- Private
Key Pulumi.Content Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.
- Private
Key objectPath - The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).
- Skip
Host objectKey Validation - If true, skip the SSH host key validation. Default value is false. Type: boolean (or Expression with resultType boolean).
- User
Name object - The username used to log on to the SFTP server. Type: string (or Expression with resultType string).
- Host interface{}
- The SFTP server host name. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Authentication
Type string | SftpAuthentication 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.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Host
Key interface{}Fingerprint - The host key finger-print of the SFTP server. When SkipHostKeyValidation is false, HostKeyFingerprint should be specified. Type: string (or Expression with resultType string).
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Pass
Phrase AzureKey | SecureVault Secret Reference String - The password to decrypt the SSH private key if the SSH private key is encrypted.
- Password
Azure
Key | SecureVault Secret Reference String - Password to logon the SFTP server for Basic authentication.
- Port interface{}
- The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.
- Private
Key AzureContent Key | SecureVault Secret Reference String - Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.
- Private
Key interface{}Path - The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).
- Skip
Host interface{}Key Validation - If true, skip the SSH host key validation. Default value is false. Type: boolean (or Expression with resultType boolean).
- User
Name interface{} - The username used to log on to the SFTP server. Type: string (or Expression with resultType string).
- host Object
- The SFTP server host name. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- authentication
Type String | SftpAuthentication 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.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- host
Key ObjectFingerprint - The host key finger-print of the SFTP server. When SkipHostKeyValidation is false, HostKeyFingerprint should be specified. Type: string (or Expression with resultType string).
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- pass
Phrase AzureKey | SecureVault Secret Reference String - The password to decrypt the SSH private key if the SSH private key is encrypted.
- password
Azure
Key | SecureVault Secret Reference String - Password to logon the SFTP server for Basic authentication.
- port Object
- The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.
- private
Key AzureContent Key | SecureVault Secret Reference String - Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.
- private
Key ObjectPath - The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).
- skip
Host ObjectKey Validation - If true, skip the SSH host key validation. Default value is false. Type: boolean (or Expression with resultType boolean).
- user
Name Object - The username used to log on to the SFTP server. Type: string (or Expression with resultType string).
- host any
- The SFTP server host name. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- authentication
Type string | SftpAuthentication 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.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- host
Key anyFingerprint - The host key finger-print of the SFTP server. When SkipHostKeyValidation is false, HostKeyFingerprint should be specified. Type: string (or Expression with resultType string).
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- pass
Phrase AzureKey | SecureVault Secret Reference String - The password to decrypt the SSH private key if the SSH private key is encrypted.
- password
Azure
Key | SecureVault Secret Reference String - Password to logon the SFTP server for Basic authentication.
- port any
- The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.
- private
Key AzureContent Key | SecureVault Secret Reference String - Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.
- private
Key anyPath - The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).
- skip
Host anyKey Validation - If true, skip the SSH host key validation. Default value is false. Type: boolean (or Expression with resultType boolean).
- user
Name any - The username used to log on to the SFTP server. Type: string (or Expression with resultType string).
- host Any
- The SFTP server host name. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication_
type str | SftpAuthentication 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.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- host_
key_ Anyfingerprint - The host key finger-print of the SFTP server. When SkipHostKeyValidation is false, HostKeyFingerprint should be specified. Type: string (or Expression with resultType string).
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- pass_
phrase AzureKey | SecureVault Secret Reference String - The password to decrypt the SSH private key if the SSH private key is encrypted.
- password
Azure
Key | SecureVault Secret Reference String - Password to logon the SFTP server for Basic authentication.
- port Any
- The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.
- private_
key_ Azurecontent Key | SecureVault Secret Reference String - Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.
- private_
key_ Anypath - The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).
- skip_
host_ Anykey_ validation - If true, skip the SSH host key validation. Default value is false. Type: boolean (or Expression with resultType boolean).
- user_
name Any - The username used to log on to the SFTP server. Type: string (or Expression with resultType string).
- host Any
- The SFTP server host name. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- authentication
Type String | "Basic" | "SshPublic Key" | "Multi Factor" - 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.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- host
Key AnyFingerprint - The host key finger-print of the SFTP server. When SkipHostKeyValidation is false, HostKeyFingerprint should be specified. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for linked service.
- pass
Phrase Property Map | Property Map - The password to decrypt the SSH private key if the SSH private key is encrypted.
- password Property Map | Property Map
- Password to logon the SFTP server for Basic authentication.
- port Any
- The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.
- private
Key Property Map | Property MapContent - Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.
- private
Key AnyPath - The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).
- skip
Host AnyKey Validation - If true, skip the SSH host key validation. Default value is false. Type: boolean (or Expression with resultType boolean).
- user
Name Any - The username used to log on to the SFTP server. Type: string (or Expression with resultType string).
SftpServerLinkedServiceResponse, SftpServerLinkedServiceResponseArgs
- Host object
- The SFTP server host name. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Host
Key objectFingerprint - The host key finger-print of the SFTP server. When SkipHostKeyValidation is false, HostKeyFingerprint should be specified. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Pass
Phrase Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The password to decrypt the SSH private key if the SSH private key is encrypted.
- 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 SFTP server for Basic authentication.
- Port object
- The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.
- Private
Key Pulumi.Content Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.
- Private
Key objectPath - The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).
- Skip
Host objectKey Validation - If true, skip the SSH host key validation. Default value is false. Type: boolean (or Expression with resultType boolean).
- User
Name object - The username used to log on to the SFTP server. Type: string (or Expression with resultType string).
- Host interface{}
- The SFTP server host name. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- 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.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Host
Key interface{}Fingerprint - The host key finger-print of the SFTP server. When SkipHostKeyValidation is false, HostKeyFingerprint should be specified. Type: string (or Expression with resultType string).
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Pass
Phrase AzureKey | SecureVault Secret Reference Response String Response - The password to decrypt the SSH private key if the SSH private key is encrypted.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - Password to logon the SFTP server for Basic authentication.
- Port interface{}
- The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.
- Private
Key AzureContent Key | SecureVault Secret Reference Response String Response - Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.
- Private
Key interface{}Path - The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).
- Skip
Host interface{}Key Validation - If true, skip the SSH host key validation. Default value is false. Type: boolean (or Expression with resultType boolean).
- User
Name interface{} - The username used to log on to the SFTP server. Type: string (or Expression with resultType string).
- host Object
- The SFTP server host name. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- 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.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- host
Key ObjectFingerprint - The host key finger-print of the SFTP server. When SkipHostKeyValidation is false, HostKeyFingerprint should be specified. Type: string (or Expression with resultType string).
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- pass
Phrase AzureKey | SecureVault Secret Reference Response String Response - The password to decrypt the SSH private key if the SSH private key is encrypted.
- password
Azure
Key | SecureVault Secret Reference Response String Response - Password to logon the SFTP server for Basic authentication.
- port Object
- The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.
- private
Key AzureContent Key | SecureVault Secret Reference Response String Response - Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.
- private
Key ObjectPath - The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).
- skip
Host ObjectKey Validation - If true, skip the SSH host key validation. Default value is false. Type: boolean (or Expression with resultType boolean).
- user
Name Object - The username used to log on to the SFTP server. Type: string (or Expression with resultType string).
- host any
- The SFTP server host name. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- 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.
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- host
Key anyFingerprint - The host key finger-print of the SFTP server. When SkipHostKeyValidation is false, HostKeyFingerprint should be specified. Type: string (or Expression with resultType string).
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- pass
Phrase AzureKey | SecureVault Secret Reference Response String Response - The password to decrypt the SSH private key if the SSH private key is encrypted.
- password
Azure
Key | SecureVault Secret Reference Response String Response - Password to logon the SFTP server for Basic authentication.
- port any
- The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.
- private
Key AzureContent Key | SecureVault Secret Reference Response String Response - Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.
- private
Key anyPath - The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).
- skip
Host anyKey Validation - If true, skip the SSH host key validation. Default value is false. Type: boolean (or Expression with resultType boolean).
- user
Name any - The username used to log on to the SFTP server. Type: string (or Expression with resultType string).
- host Any
- The SFTP server host name. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication_
type str - The authentication type to be used to connect to the FTP server.
- connect_
via 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.
- host_
key_ Anyfingerprint - The host key finger-print of the SFTP server. When SkipHostKeyValidation is false, HostKeyFingerprint should be specified. Type: string (or Expression with resultType string).
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- pass_
phrase AzureKey | SecureVault Secret Reference Response String Response - The password to decrypt the SSH private key if the SSH private key is encrypted.
- password
Azure
Key | SecureVault Secret Reference Response String Response - Password to logon the SFTP server for Basic authentication.
- port Any
- The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.
- private_
key_ Azurecontent Key | SecureVault Secret Reference Response String Response - Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.
- private_
key_ Anypath - The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).
- skip_
host_ Anykey_ validation - If true, skip the SSH host key validation. Default value is false. Type: boolean (or Expression with resultType boolean).
- user_
name Any - The username used to log on to the SFTP server. Type: string (or Expression with resultType string).
- host Any
- The SFTP server host name. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- 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.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- host
Key AnyFingerprint - The host key finger-print of the SFTP server. When SkipHostKeyValidation is false, HostKeyFingerprint should be specified. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for linked service.
- pass
Phrase Property Map | Property Map - The password to decrypt the SSH private key if the SSH private key is encrypted.
- password Property Map | Property Map
- Password to logon the SFTP server for Basic authentication.
- port Any
- The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.
- private
Key Property Map | Property MapContent - Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.
- private
Key AnyPath - The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).
- skip
Host AnyKey Validation - If true, skip the SSH host key validation. Default value is false. Type: boolean (or Expression with resultType boolean).
- user
Name Any - The username used to log on to the SFTP server. Type: string (or Expression with resultType string).
SharePointOnlineListLinkedService, SharePointOnlineListLinkedServiceArgs
- Service
Principal objectId - The application (client) ID of your application registered in Azure Active Directory. Make sure to grant SharePoint site permission to this application. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The client secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- Site
Url object - The URL of the SharePoint Online site. For example, https://contoso.sharepoint.com/sites/siteName. Type: string (or Expression with resultType string).
- Tenant
Id object - The tenant ID under which your application resides. You can find it from Azure portal Active Directory overview page. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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 interface{}Id - The application (client) ID of your application registered in Azure Active Directory. Make sure to grant SharePoint site permission to this application. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference String - The client secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- Site
Url interface{} - The URL of the SharePoint Online site. For example, https://contoso.sharepoint.com/sites/siteName. Type: string (or Expression with resultType string).
- Tenant
Id interface{} - The tenant ID under which your application resides. You can find it from Azure portal Active Directory overview page. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- 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 application (client) ID of your application registered in Azure Active Directory. Make sure to grant SharePoint site permission to this application. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - The client secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- site
Url Object - The URL of the SharePoint Online site. For example, https://contoso.sharepoint.com/sites/siteName. Type: string (or Expression with resultType string).
- tenant
Id Object - The tenant ID under which your application resides. You can find it from Azure portal Active Directory overview page. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- 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 anyId - The application (client) ID of your application registered in Azure Active Directory. Make sure to grant SharePoint site permission to this application. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - The client secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- site
Url any - The URL of the SharePoint Online site. For example, https://contoso.sharepoint.com/sites/siteName. Type: string (or Expression with resultType string).
- tenant
Id any - The tenant ID under which your application resides. You can find it from Azure portal Active Directory overview page. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- 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 application (client) ID of your application registered in Azure Active Directory. Make sure to grant SharePoint site permission to this application. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference String - The client secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- site_
url Any - The URL of the SharePoint Online site. For example, https://contoso.sharepoint.com/sites/siteName. Type: string (or Expression with resultType string).
- tenant_
id Any - The tenant ID under which your application resides. You can find it from Azure portal Active Directory overview page. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via 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 application (client) ID of your application registered in Azure Active Directory. Make sure to grant SharePoint site permission to this application. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - The client secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- site
Url Any - The URL of the SharePoint Online site. For example, https://contoso.sharepoint.com/sites/siteName. Type: string (or Expression with resultType string).
- tenant
Id Any - The tenant ID under which your application resides. You can find it from Azure portal Active Directory overview page. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- 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.
SharePointOnlineListLinkedServiceResponse, SharePointOnlineListLinkedServiceResponseArgs
- Service
Principal objectId - The application (client) ID of your application registered in Azure Active Directory. Make sure to grant SharePoint site permission to this application. Type: string (or Expression with resultType string).
- 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 client secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- Site
Url object - The URL of the SharePoint Online site. For example, https://contoso.sharepoint.com/sites/siteName. Type: string (or Expression with resultType string).
- Tenant
Id object - The tenant ID under which your application resides. You can find it from Azure portal Active Directory overview page. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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 interface{}Id - The application (client) ID of your application registered in Azure Active Directory. Make sure to grant SharePoint site permission to this application. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The client secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- Site
Url interface{} - The URL of the SharePoint Online site. For example, https://contoso.sharepoint.com/sites/siteName. Type: string (or Expression with resultType string).
- Tenant
Id interface{} - The tenant ID under which your application resides. You can find it from Azure portal Active Directory overview page. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- 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 application (client) ID of your application registered in Azure Active Directory. Make sure to grant SharePoint site permission to this application. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The client secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- site
Url Object - The URL of the SharePoint Online site. For example, https://contoso.sharepoint.com/sites/siteName. Type: string (or Expression with resultType string).
- tenant
Id Object - The tenant ID under which your application resides. You can find it from Azure portal Active Directory overview page. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- 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 anyId - The application (client) ID of your application registered in Azure Active Directory. Make sure to grant SharePoint site permission to this application. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The client secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- site
Url any - The URL of the SharePoint Online site. For example, https://contoso.sharepoint.com/sites/siteName. Type: string (or Expression with resultType string).
- tenant
Id any - The tenant ID under which your application resides. You can find it from Azure portal Active Directory overview page. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- 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 application (client) ID of your application registered in Azure Active Directory. Make sure to grant SharePoint site permission to this application. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference Response String Response - The client secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- site_
url Any - The URL of the SharePoint Online site. For example, https://contoso.sharepoint.com/sites/siteName. Type: string (or Expression with resultType string).
- tenant_
id Any - The tenant ID under which your application resides. You can find it from Azure portal Active Directory overview page. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via 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 application (client) ID of your application registered in Azure Active Directory. Make sure to grant SharePoint site permission to this application. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - The client secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
- site
Url Any - The URL of the SharePoint Online site. For example, https://contoso.sharepoint.com/sites/siteName. Type: string (or Expression with resultType string).
- tenant
Id Any - The tenant ID under which your application resides. You can find it from Azure portal Active Directory overview page. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- 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.
ShopifyLinkedService, ShopifyLinkedServiceArgs
- Host object
- The endpoint of the Shopify server. (i.e. mystore.myshopify.com)
- Access
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The API access token that can be used to access Shopify’s data. The token won't expire if it is offline mode.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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.
- 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.
- Host interface{}
- The endpoint of the Shopify server. (i.e. mystore.myshopify.com)
- Access
Token AzureKey | SecureVault Secret Reference String - The API access token that can be used to access Shopify’s data. The token won't expire if it is offline mode.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- 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.
- 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.
- host Object
- The endpoint of the Shopify server. (i.e. mystore.myshopify.com)
- access
Token AzureKey | SecureVault Secret Reference String - The API access token that can be used to access Shopify’s data. The token won't expire if it is offline mode.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- 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.
- 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.
- host any
- The endpoint of the Shopify server. (i.e. mystore.myshopify.com)
- access
Token AzureKey | SecureVault Secret Reference String - The API access token that can be used to access Shopify’s data. The token won't expire if it is offline mode.
- annotations any[]
- List of tags that can be used for describing the linked service.
- 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.
- 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.
- host Any
- The endpoint of the Shopify server. (i.e. mystore.myshopify.com)
- access_
token AzureKey | SecureVault Secret Reference String - The API access token that can be used to access Shopify’s data. The token won't expire if it is offline mode.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via 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.
- 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.
- host Any
- The endpoint of the Shopify server. (i.e. mystore.myshopify.com)
- access
Token Property Map | Property Map - The API access token that can be used to access Shopify’s data. The token won't expire if it is offline mode.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- 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.
- 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.
ShopifyLinkedServiceResponse, ShopifyLinkedServiceResponseArgs
- Host object
- The endpoint of the Shopify server. (i.e. mystore.myshopify.com)
- Access
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The API access token that can be used to access Shopify’s data. The token won't expire if it is offline mode.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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.
- 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.
- Host interface{}
- The endpoint of the Shopify server. (i.e. mystore.myshopify.com)
- Access
Token AzureKey | SecureVault Secret Reference Response String Response - The API access token that can be used to access Shopify’s data. The token won't expire if it is offline mode.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- 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.
- 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.
- host Object
- The endpoint of the Shopify server. (i.e. mystore.myshopify.com)
- access
Token AzureKey | SecureVault Secret Reference Response String Response - The API access token that can be used to access Shopify’s data. The token won't expire if it is offline mode.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- 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.
- 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.
- host any
- The endpoint of the Shopify server. (i.e. mystore.myshopify.com)
- access
Token AzureKey | SecureVault Secret Reference Response String Response - The API access token that can be used to access Shopify’s data. The token won't expire if it is offline mode.
- annotations any[]
- List of tags that can be used for describing the linked service.
- 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.
- 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.
- host Any
- The endpoint of the Shopify server. (i.e. mystore.myshopify.com)
- access_
token AzureKey | SecureVault Secret Reference Response String Response - The API access token that can be used to access Shopify’s data. The token won't expire if it is offline mode.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via 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.
- 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.
- host Any
- The endpoint of the Shopify server. (i.e. mystore.myshopify.com)
- access
Token Property Map | Property Map - The API access token that can be used to access Shopify’s data. The token won't expire if it is offline mode.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- 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.
- 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.
SmartsheetLinkedService, SmartsheetLinkedServiceArgs
- 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 Smartsheet 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.
- Api
Token AzureKey | SecureVault Secret Reference String - The api token for the Smartsheet 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.
- api
Token AzureKey | SecureVault Secret Reference String - The api token for the Smartsheet 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.
- api
Token AzureKey | SecureVault Secret Reference String - The api token for the Smartsheet 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.
- api_
token AzureKey | SecureVault Secret Reference String - The api token for the Smartsheet 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.
- api
Token Property Map | Property Map - The api token for the Smartsheet source.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- 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.
SmartsheetLinkedServiceResponse, SmartsheetLinkedServiceResponseArgs
- 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 Smartsheet 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.
- Api
Token AzureKey | SecureVault Secret Reference Response String Response - The api token for the Smartsheet 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.
- api
Token AzureKey | SecureVault Secret Reference Response String Response - The api token for the Smartsheet 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.
- api
Token AzureKey | SecureVault Secret Reference Response String Response - The api token for the Smartsheet 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.
- api_
token AzureKey | SecureVault Secret Reference Response String Response - The api token for the Smartsheet 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.
- api
Token Property Map | Property Map - The api token for the Smartsheet source.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- 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.
SnowflakeLinkedService, SnowflakeLinkedServiceArgs
- Connection
String object - The connection string of snowflake. Type: string, SecureString.
- 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.
- Connection
String interface{} - The connection string of snowflake. Type: string, SecureString.
- 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.
- connection
String Object - The connection string of snowflake. Type: string, SecureString.
- 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.
- connection
String any - The connection string of snowflake. Type: string, SecureString.
- 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.
- connection_
string Any - The connection string of snowflake. Type: string, SecureString.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via 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.
- connection
String Any - The connection string of snowflake. Type: string, SecureString.
- 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.
SnowflakeLinkedServiceResponse, SnowflakeLinkedServiceResponseArgs
- Connection
String object - The connection string of snowflake. Type: string, SecureString.
- 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.
- Connection
String interface{} - The connection string of snowflake. Type: string, SecureString.
- 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.
- connection
String Object - The connection string of snowflake. Type: string, SecureString.
- 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.
- connection
String any - The connection string of snowflake. Type: string, SecureString.
- 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.
- connection_
string Any - The connection string of snowflake. Type: string, SecureString.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via 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.
- connection
String Any - The connection string of snowflake. Type: string, SecureString.
- 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.
SparkAuthenticationType, SparkAuthenticationTypeArgs
- Anonymous
- Anonymous
- Username
- Username
- Username
And Password - UsernameAndPassword
- Windows
Azure HDInsight Service - WindowsAzureHDInsightService
- Spark
Authentication Type Anonymous - Anonymous
- Spark
Authentication Type Username - Username
- Spark
Authentication Type Username And Password - UsernameAndPassword
- Spark
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
SparkLinkedService, SparkLinkedServiceArgs
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Spark Authentication Type - The authentication method used to access the Spark server.
- Host object
- IP address or host name of the Spark server
- Port object
- The TCP port that the Spark server uses to listen for client connections.
- 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 Spark 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
- Server
Type string | Pulumi.Azure Native. Data Factory. Spark Server Type - The type of Spark server.
- Thrift
Transport string | Pulumi.Protocol Azure Native. Data Factory. Spark 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
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 Spark Server.
- Authentication
Type string | SparkAuthentication Type - The authentication method used to access the Spark server.
- Host interface{}
- IP address or host name of the Spark server
- Port interface{}
- The TCP port that the Spark server uses to listen for client connections.
- 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 Spark 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
- Server
Type string | SparkServer Type - The type of Spark server.
- Thrift
Transport string | SparkProtocol 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
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 Spark Server.
- authentication
Type String | SparkAuthentication Type - The authentication method used to access the Spark server.
- host Object
- IP address or host name of the Spark server
- port Object
- The TCP port that the Spark server uses to listen for client connections.
- 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 Spark 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
- server
Type String | SparkServer Type - The type of Spark server.
- thrift
Transport String | SparkProtocol 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
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 Spark Server.
- authentication
Type string | SparkAuthentication Type - The authentication method used to access the Spark server.
- host any
- IP address or host name of the Spark server
- port any
- The TCP port that the Spark server uses to listen for client connections.
- 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 Spark 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
- server
Type string | SparkServer Type - The type of Spark server.
- thrift
Transport string | SparkProtocol 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
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 Spark Server.
- authentication_
type str | SparkAuthentication Type - The authentication method used to access the Spark server.
- host Any
- IP address or host name of the Spark server
- port Any
- The TCP port that the Spark server uses to listen for client connections.
- 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 Spark 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
- server_
type str | SparkServer Type - The type of Spark server.
- thrift_
transport_ str | Sparkprotocol 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_
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 Spark Server.
- authentication
Type String | "Anonymous" | "Username" | "UsernameAnd Password" | "Windows Azure HDInsight Service" - The authentication method used to access the Spark server.
- host Any
- IP address or host name of the Spark server
- port Any
- The TCP port that the Spark server uses to listen for client connections.
- 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 Spark server.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The password corresponding to the user name that you provided in the Username field
- server
Type String | "SharkServer" | "Shark Server2" | "Spark Thrift Server" - The type of Spark server.
- 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
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 Spark Server.
SparkLinkedServiceResponse, SparkLinkedServiceResponseArgs
- Authentication
Type string - The authentication method used to access the Spark server.
- Host object
- IP address or host name of the Spark server
- Port object
- The TCP port that the Spark server uses to listen for client connections.
- 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 Spark 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
- Server
Type string - The type of Spark server.
- 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
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 Spark Server.
- Authentication
Type string - The authentication method used to access the Spark server.
- Host interface{}
- IP address or host name of the Spark server
- Port interface{}
- The TCP port that the Spark server uses to listen for client connections.
- 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 Spark 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
- Server
Type string - The type of Spark server.
- 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
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 Spark Server.
- authentication
Type String - The authentication method used to access the Spark server.
- host Object
- IP address or host name of the Spark server
- port Object
- The TCP port that the Spark server uses to listen for client connections.
- 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 Spark 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
- server
Type String - The type of Spark server.
- 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
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 Spark Server.
- authentication
Type string - The authentication method used to access the Spark server.
- host any
- IP address or host name of the Spark server
- port any
- The TCP port that the Spark server uses to listen for client connections.
- 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 Spark 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
- server
Type string - The type of Spark server.
- 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
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 Spark Server.
- authentication_
type str - The authentication method used to access the Spark server.
- host Any
- IP address or host name of the Spark server
- port Any
- The TCP port that the Spark server uses to listen for client connections.
- 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 Spark 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
- server_
type str - The type of Spark server.
- 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_
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 Spark Server.
- authentication
Type String - The authentication method used to access the Spark server.
- host Any
- IP address or host name of the Spark server
- port Any
- The TCP port that the Spark server uses to listen for client connections.
- 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 Spark server.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The password corresponding to the user name that you provided in the Username field
- server
Type String - The type of Spark server.
- 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
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 Spark Server.
SparkServerType, SparkServerTypeArgs
- Shark
Server - SharkServer
- Shark
Server2 - SharkServer2
- Spark
Thrift Server - SparkThriftServer
- Spark
Server Type Shark Server - SharkServer
- Spark
Server Type Shark Server2 - SharkServer2
- Spark
Server Type Spark Thrift Server - SparkThriftServer
- Shark
Server - SharkServer
- Shark
Server2 - SharkServer2
- Spark
Thrift Server - SparkThriftServer
- Shark
Server - SharkServer
- Shark
Server2 - SharkServer2
- Spark
Thrift Server - SparkThriftServer
- SHARK_SERVER
- SharkServer
- SHARK_SERVER2
- SharkServer2
- SPARK_THRIFT_SERVER
- SparkThriftServer
- "Shark
Server" - SharkServer
- "Shark
Server2" - SharkServer2
- "Spark
Thrift Server" - SparkThriftServer
SparkThriftTransportProtocol, SparkThriftTransportProtocolArgs
- Binary
- Binary
- SASL
- SASL
- HTTP_
- HTTP
- Spark
Thrift Transport Protocol Binary - Binary
- Spark
Thrift Transport Protocol SASL - SASL
- Spark
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
SqlAlwaysEncryptedAkvAuthType, SqlAlwaysEncryptedAkvAuthTypeArgs
- Service
Principal - ServicePrincipal
- Managed
Identity - ManagedIdentity
- User
Assigned Managed Identity - UserAssignedManagedIdentity
- Sql
Always Encrypted Akv Auth Type Service Principal - ServicePrincipal
- Sql
Always Encrypted Akv Auth Type Managed Identity - ManagedIdentity
- Sql
Always Encrypted Akv Auth Type User Assigned Managed Identity - UserAssignedManagedIdentity
- Service
Principal - ServicePrincipal
- Managed
Identity - ManagedIdentity
- User
Assigned Managed Identity - UserAssignedManagedIdentity
- Service
Principal - ServicePrincipal
- Managed
Identity - ManagedIdentity
- User
Assigned Managed Identity - UserAssignedManagedIdentity
- SERVICE_PRINCIPAL
- ServicePrincipal
- MANAGED_IDENTITY
- ManagedIdentity
- USER_ASSIGNED_MANAGED_IDENTITY
- UserAssignedManagedIdentity
- "Service
Principal" - ServicePrincipal
- "Managed
Identity" - ManagedIdentity
- "User
Assigned Managed Identity" - UserAssignedManagedIdentity
SqlAlwaysEncryptedProperties, SqlAlwaysEncryptedPropertiesArgs
- Always
Encrypted string | Pulumi.Akv Auth Type Azure Native. Data Factory. Sql Always Encrypted Akv Auth Type - Sql always encrypted AKV authentication type. Type: string.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference - The credential reference containing authentication information.
- Service
Principal objectId - The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string).
- Service
Principal 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 Key Vault.
- Always
Encrypted string | SqlAkv Auth Type Always Encrypted Akv Auth Type - Sql always encrypted AKV authentication type. Type: string.
- Credential
Credential
Reference - The credential reference containing authentication information.
- Service
Principal interface{}Id - The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Azure Key Vault.
- always
Encrypted String | SqlAkv Auth Type Always Encrypted Akv Auth Type - Sql always encrypted AKV authentication type. Type: string.
- credential
Credential
Reference - The credential reference containing authentication information.
- service
Principal ObjectId - The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Azure Key Vault.
- always
Encrypted string | SqlAkv Auth Type Always Encrypted Akv Auth Type - Sql always encrypted AKV authentication type. Type: string.
- credential
Credential
Reference - The credential reference containing authentication information.
- service
Principal anyId - The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Azure Key Vault.
- always_
encrypted_ str | Sqlakv_ auth_ type Always Encrypted Akv Auth Type - Sql always encrypted AKV authentication type. Type: string.
- credential
Credential
Reference - The credential reference containing authentication information.
- service_
principal_ Anyid - The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference String - The key of the service principal used to authenticate against Azure Key Vault.
- always
Encrypted String | "ServiceAkv Auth Type Principal" | "Managed Identity" | "User Assigned Managed Identity" - Sql always encrypted AKV authentication type. Type: string.
- credential Property Map
- The credential reference containing authentication information.
- service
Principal AnyId - The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - The key of the service principal used to authenticate against Azure Key Vault.
SqlAlwaysEncryptedPropertiesResponse, SqlAlwaysEncryptedPropertiesResponseArgs
- Always
Encrypted stringAkv Auth Type - Sql always encrypted AKV authentication type. Type: string.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference Response - The credential reference containing authentication information.
- Service
Principal objectId - The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string).
- Service
Principal 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 Key Vault.
- Always
Encrypted stringAkv Auth Type - Sql always encrypted AKV authentication type. Type: string.
- Credential
Credential
Reference Response - The credential reference containing authentication information.
- Service
Principal interface{}Id - The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Azure Key Vault.
- always
Encrypted StringAkv Auth Type - Sql always encrypted AKV authentication type. Type: string.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- service
Principal ObjectId - The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Azure Key Vault.
- always
Encrypted stringAkv Auth Type - Sql always encrypted AKV authentication type. Type: string.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- service
Principal anyId - The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Azure Key Vault.
- always_
encrypted_ strakv_ auth_ type - Sql always encrypted AKV authentication type. Type: string.
- credential
Credential
Reference Response - The credential reference containing authentication information.
- service_
principal_ Anyid - The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference Response String Response - The key of the service principal used to authenticate against Azure Key Vault.
- always
Encrypted StringAkv Auth Type - Sql always encrypted AKV authentication type. Type: string.
- credential Property Map
- The credential reference containing authentication information.
- service
Principal AnyId - The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey - The key of the service principal used to authenticate against Azure Key Vault.
SqlServerLinkedService, SqlServerLinkedServiceArgs
- Connection
String object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Always
Encrypted Pulumi.Settings Azure Native. Data Factory. Inputs. Sql Always Encrypted Properties - Sql always encrypted properties.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential 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 on-premises Windows authentication password.
- User
Name object - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- Connection
String interface{} - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Always
Encrypted SqlSettings Always Encrypted Properties - Sql always encrypted properties.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential 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 on-premises Windows authentication password.
- User
Name interface{} - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- connection
String Object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always
Encrypted SqlSettings Always Encrypted Properties - Sql always encrypted properties.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential 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 on-premises Windows authentication password.
- user
Name Object - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- connection
String any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always
Encrypted SqlSettings Always Encrypted Properties - Sql always encrypted properties.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential 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 on-premises Windows authentication password.
- user
Name any - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always_
encrypted_ Sqlsettings Always Encrypted Properties - Sql always encrypted properties.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential 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 on-premises Windows authentication password.
- user_
name Any - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- connection
String Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always
Encrypted Property MapSettings - Sql always encrypted properties.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential 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 on-premises Windows authentication password.
- user
Name Any - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
SqlServerLinkedServiceResponse, SqlServerLinkedServiceResponseArgs
- Connection
String object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Always
Encrypted Pulumi.Settings Azure Native. Data Factory. Inputs. Sql Always Encrypted Properties Response - Sql always encrypted properties.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential 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 on-premises Windows authentication password.
- User
Name object - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- Connection
String interface{} - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Always
Encrypted SqlSettings Always Encrypted Properties Response - Sql always encrypted properties.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Encrypted
Credential 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 on-premises Windows authentication password.
- User
Name interface{} - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- connection
String Object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always
Encrypted SqlSettings Always Encrypted Properties Response - Sql always encrypted properties.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential 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 on-premises Windows authentication password.
- user
Name Object - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- connection
String any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always
Encrypted SqlSettings Always Encrypted Properties Response - Sql always encrypted properties.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- encrypted
Credential 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 on-premises Windows authentication password.
- user
Name any - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always_
encrypted_ Sqlsettings Always Encrypted Properties Response - Sql always encrypted properties.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential 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 on-premises Windows authentication password.
- user_
name Any - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- connection
String Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always
Encrypted Property MapSettings - Sql always encrypted properties.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- encrypted
Credential 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 on-premises Windows authentication password.
- user
Name Any - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
SquareLinkedService, SquareLinkedServiceArgs
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Client
Id object - The client ID associated with your Square application.
- 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 Square application.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Connection
Properties object - Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Host object
- The URL of the Square instance. (i.e. mystore.mysquare.com)
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Redirect
Uri object - The redirect URL assigned in the Square application dashboard. (i.e. http://localhost:2500)
- 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.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Client
Id interface{} - The client ID associated with your Square application.
- Client
Secret AzureKey | SecureVault Secret Reference String - The client secret associated with your Square application.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Connection
Properties interface{} - Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Host interface{}
- The URL of the Square instance. (i.e. mystore.mysquare.com)
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Redirect
Uri interface{} - The redirect URL assigned in the Square application dashboard. (i.e. http://localhost:2500)
- 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.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- client
Id Object - The client ID associated with your Square application.
- client
Secret AzureKey | SecureVault Secret Reference String - The client secret associated with your Square application.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
Properties Object - Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- host Object
- The URL of the Square instance. (i.e. mystore.mysquare.com)
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- redirect
Uri Object - The redirect URL assigned in the Square application dashboard. (i.e. http://localhost:2500)
- 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.
- annotations any[]
- List of tags that can be used for describing the linked service.
- client
Id any - The client ID associated with your Square application.
- client
Secret AzureKey | SecureVault Secret Reference String - The client secret associated with your Square application.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
Properties any - Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object.
- description 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
- The URL of the Square instance. (i.e. mystore.mysquare.com)
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- redirect
Uri any - The redirect URL assigned in the Square application dashboard. (i.e. http://localhost:2500)
- 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.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- client_
id Any - The client ID associated with your Square application.
- client_
secret AzureKey | SecureVault Secret Reference String - The client secret associated with your Square application.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- connection_
properties Any - Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- host Any
- The URL of the Square instance. (i.e. mystore.mysquare.com)
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- redirect_
uri Any - The redirect URL assigned in the Square application dashboard. (i.e. http://localhost:2500)
- 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.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- client
Id Any - The client ID associated with your Square application.
- client
Secret Property Map | Property Map - The client secret associated with your Square application.
- connect
Via Property Map - The integration runtime reference.
- connection
Properties Any - Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object.
- description 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
- The URL of the Square instance. (i.e. mystore.mysquare.com)
- parameters Map<Property Map>
- Parameters for linked service.
- redirect
Uri Any - The redirect URL assigned in the Square application dashboard. (i.e. http://localhost:2500)
- 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.
SquareLinkedServiceResponse, SquareLinkedServiceResponseArgs
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Client
Id object - The client ID associated with your Square application.
- 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 Square application.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Connection
Properties object - Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Host object
- The URL of the Square instance. (i.e. mystore.mysquare.com)
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Redirect
Uri object - The redirect URL assigned in the Square application dashboard. (i.e. http://localhost:2500)
- 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.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Client
Id interface{} - The client ID associated with your Square application.
- Client
Secret AzureKey | SecureVault Secret Reference Response String Response - The client secret associated with your Square application.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Connection
Properties interface{} - Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object.
- Description string
- Linked service description.
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Host interface{}
- The URL of the Square instance. (i.e. mystore.mysquare.com)
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Redirect
Uri interface{} - The redirect URL assigned in the Square application dashboard. (i.e. http://localhost:2500)
- 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.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- client
Id Object - The client ID associated with your Square application.
- client
Secret AzureKey | SecureVault Secret Reference Response String Response - The client secret associated with your Square application.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
Properties Object - Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- host Object
- The URL of the Square instance. (i.e. mystore.mysquare.com)
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- redirect
Uri Object - The redirect URL assigned in the Square application dashboard. (i.e. http://localhost:2500)
- 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.
- annotations any[]
- List of tags that can be used for describing the linked service.
- client
Id any - The client ID associated with your Square application.
- client
Secret AzureKey | SecureVault Secret Reference Response String Response - The client secret associated with your Square application.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
Properties any - Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object.
- description 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
- The URL of the Square instance. (i.e. mystore.mysquare.com)
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- redirect
Uri any - The redirect URL assigned in the Square application dashboard. (i.e. http://localhost:2500)
- 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.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- client_
id Any - The client ID associated with your Square application.
- client_
secret AzureKey | SecureVault Secret Reference Response String Response - The client secret associated with your Square application.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- connection_
properties Any - Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- host Any
- The URL of the Square instance. (i.e. mystore.mysquare.com)
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- redirect_
uri Any - The redirect URL assigned in the Square application dashboard. (i.e. http://localhost:2500)
- 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.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- client
Id Any - The client ID associated with your Square application.
- client
Secret Property Map | Property Map - The client secret associated with your Square application.
- connect
Via Property Map - The integration runtime reference.
- connection
Properties Any - Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object.
- description 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
- The URL of the Square instance. (i.e. mystore.mysquare.com)
- parameters Map<Property Map>
- Parameters for linked service.
- redirect
Uri Any - The redirect URL assigned in the Square application dashboard. (i.e. http://localhost:2500)
- 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.
SybaseAuthenticationType, SybaseAuthenticationTypeArgs
- Basic
- Basic
- Windows
- Windows
- Sybase
Authentication Type Basic - Basic
- Sybase
Authentication Type Windows - Windows
- Basic
- Basic
- Windows
- Windows
- Basic
- Basic
- Windows
- Windows
- BASIC
- Basic
- WINDOWS
- Windows
- "Basic"
- Basic
- "Windows"
- Windows
SybaseLinkedService, SybaseLinkedServiceArgs
- Database object
- Database name for connection. Type: string (or Expression with resultType string).
- Server object
- Server name for connection. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Sybase Authentication Type - AuthenticationType to be used for connection.
- 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.
- Schema object
- Schema name for connection. Type: string (or Expression with resultType string).
- Username object
- Username for authentication. Type: string (or Expression with resultType string).
- Database interface{}
- Database name for connection. Type: string (or Expression with resultType string).
- Server interface{}
- Server name for connection. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Authentication
Type string | SybaseAuthentication Type - AuthenticationType to be used for connection.
- 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.
- Schema interface{}
- Schema name for connection. Type: string (or Expression with resultType string).
- Username interface{}
- Username for authentication. Type: string (or Expression with resultType string).
- database Object
- Database name for connection. Type: string (or Expression with resultType string).
- server Object
- Server name for connection. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- authentication
Type String | SybaseAuthentication Type - AuthenticationType to be used for connection.
- 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.
- schema Object
- Schema name for connection. Type: string (or Expression with resultType string).
- username Object
- Username for authentication. Type: string (or Expression with resultType string).
- database any
- Database name for connection. Type: string (or Expression with resultType string).
- server any
- Server name for connection. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- authentication
Type string | SybaseAuthentication Type - AuthenticationType to be used for connection.
- 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.
- schema any
- Schema name for connection. Type: string (or Expression with resultType string).
- username any
- Username for authentication. Type: string (or Expression with resultType string).
- database Any
- Database name for connection. Type: string (or Expression with resultType string).
- server Any
- Server name for connection. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication_
type str | SybaseAuthentication Type - AuthenticationType to be used for connection.
- 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.
- schema Any
- Schema name for connection. Type: string (or Expression with resultType string).
- username Any
- Username for authentication. Type: string (or Expression with resultType string).
- database Any
- Database name for connection. Type: string (or Expression with resultType string).
- server Any
- Server name for connection. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- authentication
Type String | "Basic" | "Windows" - AuthenticationType to be used for connection.
- 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.
- schema Any
- Schema name for connection. Type: string (or Expression with resultType string).
- username Any
- Username for authentication. Type: string (or Expression with resultType string).
SybaseLinkedServiceResponse, SybaseLinkedServiceResponseArgs
- Database object
- Database name for connection. Type: string (or Expression with resultType string).
- Server object
- Server name for connection. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Authentication
Type string - AuthenticationType to be used for connection.
- 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.
- Schema object
- Schema name for connection. Type: string (or Expression with resultType string).
- Username object
- Username for authentication. Type: string (or Expression with resultType string).
- Database interface{}
- Database name for connection. Type: string (or Expression with resultType string).
- Server interface{}
- Server name for connection. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Authentication
Type string - AuthenticationType to be used for connection.
- 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.
- Schema interface{}
- Schema name for connection. Type: string (or Expression with resultType string).
- Username interface{}
- Username for authentication. Type: string (or Expression with resultType string).
- database Object
- Database name for connection. Type: string (or Expression with resultType string).
- server Object
- Server name for connection. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- authentication
Type String - AuthenticationType to be used for connection.
- 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.
- schema Object
- Schema name for connection. Type: string (or Expression with resultType string).
- username Object
- Username for authentication. Type: string (or Expression with resultType string).
- database any
- Database name for connection. Type: string (or Expression with resultType string).
- server any
- Server name for connection. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- authentication
Type string - AuthenticationType to be used for connection.
- 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.
- schema any
- Schema name for connection. Type: string (or Expression with resultType string).
- username any
- Username for authentication. Type: string (or Expression with resultType string).
- database Any
- Database name for connection. Type: string (or Expression with resultType string).
- server Any
- Server name for connection. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication_
type str - AuthenticationType to be used for connection.
- connect_
via 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.
- schema Any
- Schema name for connection. Type: string (or Expression with resultType string).
- username Any
- Username for authentication. Type: string (or Expression with resultType string).
- database Any
- Database name for connection. Type: string (or Expression with resultType string).
- server Any
- Server name for connection. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- authentication
Type String - AuthenticationType to be used for connection.
- 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.
- schema Any
- Schema name for connection. Type: string (or Expression with resultType string).
- username Any
- Username for authentication. Type: string (or Expression with resultType string).
TeamDeskAuthenticationType, TeamDeskAuthenticationTypeArgs
- Basic
- Basic
- Token
- Token
- Team
Desk Authentication Type Basic - Basic
- Team
Desk Authentication Type Token - Token
- Basic
- Basic
- Token
- Token
- Basic
- Basic
- Token
- Token
- BASIC
- Basic
- TOKEN
- Token
- "Basic"
- Basic
- "Token"
- Token
TeamDeskLinkedService, TeamDeskLinkedServiceArgs
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Team Desk Authentication Type - The authentication type to use.
- Url object
- The url to connect TeamDesk source. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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 TeamDesk source.
- 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 TeamDesk source.
- User
Name object - The username of the TeamDesk source. Type: string (or Expression with resultType string).
- Authentication
Type string | TeamDesk Authentication Type - The authentication type to use.
- Url interface{}
- The url to connect TeamDesk source. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Api
Token AzureKey | SecureVault Secret Reference String - The api token for the TeamDesk source.
- 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 TeamDesk source.
- User
Name interface{} - The username of the TeamDesk source. Type: string (or Expression with resultType string).
- authentication
Type String | TeamDesk Authentication Type - The authentication type to use.
- url Object
- The url to connect TeamDesk source. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- api
Token AzureKey | SecureVault Secret Reference String - The api token for the TeamDesk source.
- 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 TeamDesk source.
- user
Name Object - The username of the TeamDesk source. Type: string (or Expression with resultType string).
- authentication
Type string | TeamDesk Authentication Type - The authentication type to use.
- url any
- The url to connect TeamDesk source. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- api
Token AzureKey | SecureVault Secret Reference String - The api token for the TeamDesk source.
- 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 TeamDesk source.
- user
Name any - The username of the TeamDesk source. Type: string (or Expression with resultType string).
- authentication_
type str | TeamDesk Authentication Type - The authentication type to use.
- url Any
- The url to connect TeamDesk source. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- api_
token AzureKey | SecureVault Secret Reference String - The api token for the TeamDesk source.
- 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 TeamDesk source.
- user_
name Any - The username of the TeamDesk source. Type: string (or Expression with resultType string).
- authentication
Type String | "Basic" | "Token" - The authentication type to use.
- url Any
- The url to connect TeamDesk source. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- api
Token Property Map | Property Map - The api token for the TeamDesk source.
- 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 TeamDesk source.
- user
Name Any - The username of the TeamDesk source. Type: string (or Expression with resultType string).
TeamDeskLinkedServiceResponse, TeamDeskLinkedServiceResponseArgs
- Authentication
Type string - The authentication type to use.
- Url object
- The url to connect TeamDesk source. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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 TeamDesk source.
- 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 TeamDesk source.
- User
Name object - The username of the TeamDesk source. Type: string (or Expression with resultType string).
- Authentication
Type string - The authentication type to use.
- Url interface{}
- The url to connect TeamDesk source. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Api
Token AzureKey | SecureVault Secret Reference Response String Response - The api token for the TeamDesk source.
- 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 TeamDesk source.
- User
Name interface{} - The username of the TeamDesk source. Type: string (or Expression with resultType string).
- authentication
Type String - The authentication type to use.
- url Object
- The url to connect TeamDesk source. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- api
Token AzureKey | SecureVault Secret Reference Response String Response - The api token for the TeamDesk source.
- 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 TeamDesk source.
- user
Name Object - The username of the TeamDesk source. Type: string (or Expression with resultType string).
- authentication
Type string - The authentication type to use.
- url any
- The url to connect TeamDesk source. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- api
Token AzureKey | SecureVault Secret Reference Response String Response - The api token for the TeamDesk source.
- 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 TeamDesk source.
- user
Name any - The username of the TeamDesk source. Type: string (or Expression with resultType string).
- authentication_
type str - The authentication type to use.
- url Any
- The url to connect TeamDesk source. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- api_
token AzureKey | SecureVault Secret Reference Response String Response - The api token for the TeamDesk source.
- 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 TeamDesk source.
- user_
name Any - The username of the TeamDesk source. Type: string (or Expression with resultType string).
- authentication
Type String - The authentication type to use.
- url Any
- The url to connect TeamDesk source. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- api
Token Property Map | Property Map - The api token for the TeamDesk source.
- 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 TeamDesk source.
- user
Name Any - The username of the TeamDesk source. Type: string (or Expression with resultType string).
TeradataAuthenticationType, TeradataAuthenticationTypeArgs
- Basic
- Basic
- Windows
- Windows
- Teradata
Authentication Type Basic - Basic
- Teradata
Authentication Type Windows - Windows
- Basic
- Basic
- Windows
- Windows
- Basic
- Basic
- Windows
- Windows
- BASIC
- Basic
- WINDOWS
- Windows
- "Basic"
- Basic
- "Windows"
- Windows
TeradataLinkedService, TeradataLinkedServiceArgs
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Teradata Authentication Type - AuthenticationType to be used for connection.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Connection
String object - Teradata 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.
- 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. Type: string (or Expression with resultType string).
- Username object
- Username for authentication. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Authentication
Type string | TeradataAuthentication Type - AuthenticationType to be used for connection.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Connection
String interface{} - Teradata 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.
- Password
Azure
Key | SecureVault Secret Reference String - Password for authentication.
- Server interface{}
- Server name for connection. Type: string (or Expression with resultType string).
- Username interface{}
- Username for authentication. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- authentication
Type String | TeradataAuthentication Type - AuthenticationType to be used for connection.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String Object - Teradata 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.
- password
Azure
Key | SecureVault Secret Reference String - Password for authentication.
- server Object
- Server name for connection. Type: string (or Expression with resultType string).
- username Object
- Username for authentication. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- authentication
Type string | TeradataAuthentication Type - AuthenticationType to be used for connection.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String any - Teradata 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.
- password
Azure
Key | SecureVault Secret Reference String - Password for authentication.
- server any
- Server name for connection. Type: string (or Expression with resultType string).
- username any
- Username for authentication. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication_
type str | TeradataAuthentication Type - AuthenticationType to be used for connection.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- connection_
string Any - Teradata ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - Password for authentication.
- server Any
- Server name for connection. Type: string (or Expression with resultType string).
- username Any
- Username for authentication. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- authentication
Type String | "Basic" | "Windows" - AuthenticationType to be used for connection.
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - Teradata 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.
- password Property Map | Property Map
- Password for authentication.
- server Any
- Server name for connection. Type: string (or Expression with resultType string).
- username Any
- Username for authentication. Type: string (or Expression with resultType string).
TeradataLinkedServiceResponse, TeradataLinkedServiceResponseArgs
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Authentication
Type string - AuthenticationType to be used for connection.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Connection
String object - Teradata 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.
- 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. Type: string (or Expression with resultType string).
- Username object
- Username for authentication. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Authentication
Type string - AuthenticationType to be used for connection.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Connection
String interface{} - Teradata 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.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - Password for authentication.
- Server interface{}
- Server name for connection. Type: string (or Expression with resultType string).
- Username interface{}
- Username for authentication. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- authentication
Type String - AuthenticationType to be used for connection.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String Object - Teradata 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.
- password
Azure
Key | SecureVault Secret Reference Response String Response - Password for authentication.
- server Object
- Server name for connection. Type: string (or Expression with resultType string).
- username Object
- Username for authentication. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- authentication
Type string - AuthenticationType to be used for connection.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String any - Teradata 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.
- password
Azure
Key | SecureVault Secret Reference Response String Response - Password for authentication.
- server any
- Server name for connection. Type: string (or Expression with resultType string).
- username any
- Username for authentication. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication_
type str - AuthenticationType to be used for connection.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- connection_
string Any - Teradata ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, 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. Type: string (or Expression with resultType string).
- username Any
- Username for authentication. 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 - AuthenticationType to be used for connection.
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - Teradata 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.
- password Property Map | Property Map
- Password for authentication.
- server Any
- Server name for connection. Type: string (or Expression with resultType string).
- username Any
- Username for authentication. Type: string (or Expression with resultType string).
TwilioLinkedService, TwilioLinkedServiceArgs
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The auth token of Twilio service.
- User
Name object - The Account SID of Twilio service. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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.
- Password
Azure
Key | SecureVault Secret Reference String - The auth token of Twilio service.
- User
Name interface{} - The Account SID of Twilio service. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The auth token of Twilio service.
- user
Name Object - The Account SID of Twilio service. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The auth token of Twilio service.
- user
Name any - The Account SID of Twilio service. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The auth token of Twilio service.
- user_
name Any - The Account SID of Twilio service. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- password Property Map | Property Map
- The auth token of Twilio service.
- user
Name Any - The Account SID of Twilio service. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- parameters Map<Property Map>
- Parameters for linked service.
TwilioLinkedServiceResponse, TwilioLinkedServiceResponseArgs
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The auth token of Twilio service.
- User
Name object - The Account SID of Twilio service. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - The auth token of Twilio service.
- User
Name interface{} - The Account SID of Twilio service. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The auth token of Twilio service.
- user
Name Object - The Account SID of Twilio service. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The auth token of Twilio service.
- user
Name any - The Account SID of Twilio service. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The auth token of Twilio service.
- user_
name Any - The Account SID of Twilio service. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- password Property Map | Property Map
- The auth token of Twilio service.
- user
Name Any - The Account SID of Twilio service. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- parameters Map<Property Map>
- Parameters for linked service.
Type, TypeArgs
- Linked
Service Reference - LinkedServiceReference
- Type
Linked Service Reference - LinkedServiceReference
- Linked
Service Reference - LinkedServiceReference
- Linked
Service Reference - LinkedServiceReference
- LINKED_SERVICE_REFERENCE
- LinkedServiceReference
- "Linked
Service Reference" - LinkedServiceReference
VerticaLinkedService, VerticaLinkedServiceArgs
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
VerticaLinkedServiceResponse, VerticaLinkedServiceResponseArgs
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
WebAnonymousAuthentication, WebAnonymousAuthenticationArgs
- Url object
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- Url interface{}
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- url Object
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- url any
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- url Any
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- url Any
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
WebAnonymousAuthenticationResponse, WebAnonymousAuthenticationResponseArgs
- Url object
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- Url interface{}
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- url Object
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- url any
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- url Any
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- url Any
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
WebBasicAuthentication, WebBasicAuthenticationArgs
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The password for Basic authentication.
- Url object
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- Username object
- User name for Basic authentication. Type: string (or Expression with resultType string).
- Password
Azure
Key | SecureVault Secret Reference String - The password for Basic authentication.
- Url interface{}
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- Username interface{}
- User name for Basic authentication. Type: string (or Expression with resultType string).
- password
Azure
Key | SecureVault Secret Reference String - The password for Basic authentication.
- url Object
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- username Object
- User name for Basic authentication. Type: string (or Expression with resultType string).
- password
Azure
Key | SecureVault Secret Reference String - The password for Basic authentication.
- url any
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- username any
- User name for Basic authentication. Type: string (or Expression with resultType string).
- password
Azure
Key | SecureVault Secret Reference String - The password for Basic authentication.
- url Any
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- username Any
- User name for Basic authentication. Type: string (or Expression with resultType string).
- password Property Map | Property Map
- The password for Basic authentication.
- url Any
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- username Any
- User name for Basic authentication. Type: string (or Expression with resultType string).
WebBasicAuthenticationResponse, WebBasicAuthenticationResponseArgs
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The password for Basic authentication.
- Url object
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- Username object
- User name for Basic authentication. Type: string (or Expression with resultType string).
- Password
Azure
Key | SecureVault Secret Reference Response String Response - The password for Basic authentication.
- Url interface{}
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- Username interface{}
- User name for Basic authentication. Type: string (or Expression with resultType string).
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password for Basic authentication.
- url Object
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- username Object
- User name for Basic authentication. Type: string (or Expression with resultType string).
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password for Basic authentication.
- url any
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- username any
- User name for Basic authentication. Type: string (or Expression with resultType string).
- password
Azure
Key | SecureVault Secret Reference Response String Response - The password for Basic authentication.
- url Any
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- username Any
- User name for Basic authentication. Type: string (or Expression with resultType string).
- password Property Map | Property Map
- The password for Basic authentication.
- url Any
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- username Any
- User name for Basic authentication. Type: string (or Expression with resultType string).
WebClientCertificateAuthentication, WebClientCertificateAuthenticationArgs
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - Password for the PFX file.
- Pfx
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - Base64-encoded contents of a PFX file.
- Url object
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- Password
Azure
Key | SecureVault Secret Reference String - Password for the PFX file.
- Pfx
Azure
Key | SecureVault Secret Reference String - Base64-encoded contents of a PFX file.
- Url interface{}
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- password
Azure
Key | SecureVault Secret Reference String - Password for the PFX file.
- pfx
Azure
Key | SecureVault Secret Reference String - Base64-encoded contents of a PFX file.
- url Object
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- password
Azure
Key | SecureVault Secret Reference String - Password for the PFX file.
- pfx
Azure
Key | SecureVault Secret Reference String - Base64-encoded contents of a PFX file.
- url any
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- password
Azure
Key | SecureVault Secret Reference String - Password for the PFX file.
- pfx
Azure
Key | SecureVault Secret Reference String - Base64-encoded contents of a PFX file.
- url Any
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- password Property Map | Property Map
- Password for the PFX file.
- pfx Property Map | Property Map
- Base64-encoded contents of a PFX file.
- url Any
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
WebClientCertificateAuthenticationResponse, WebClientCertificateAuthenticationResponseArgs
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - Password for the PFX file.
- Pfx
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - Base64-encoded contents of a PFX file.
- Url object
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- Password
Azure
Key | SecureVault Secret Reference Response String Response - Password for the PFX file.
- Pfx
Azure
Key | SecureVault Secret Reference Response String Response - Base64-encoded contents of a PFX file.
- Url interface{}
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- password
Azure
Key | SecureVault Secret Reference Response String Response - Password for the PFX file.
- pfx
Azure
Key | SecureVault Secret Reference Response String Response - Base64-encoded contents of a PFX file.
- url Object
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- password
Azure
Key | SecureVault Secret Reference Response String Response - Password for the PFX file.
- pfx
Azure
Key | SecureVault Secret Reference Response String Response - Base64-encoded contents of a PFX file.
- url any
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- password
Azure
Key | SecureVault Secret Reference Response String Response - Password for the PFX file.
- pfx
Azure
Key | SecureVault Secret Reference Response String Response - Base64-encoded contents of a PFX file.
- url Any
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
- password Property Map | Property Map
- Password for the PFX file.
- pfx Property Map | Property Map
- Base64-encoded contents of a PFX file.
- url Any
- The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
WebLinkedService, WebLinkedServiceArgs
- Type
Properties Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Web Anonymous Authentication Azure | Pulumi.Native. Data Factory. Inputs. Web Basic Authentication Azure Native. Data Factory. Inputs. Web Client Certificate Authentication - Web linked service properties.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Type
Properties WebAnonymous | WebAuthentication Basic | WebAuthentication Client Certificate Authentication - Web linked service properties.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Description string
- Linked service description.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- type
Properties WebAnonymous | WebAuthentication Basic | WebAuthentication Client Certificate Authentication - Web linked service properties.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description String
- Linked service description.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- type
Properties WebAnonymous | WebAuthentication Basic | WebAuthentication Client Certificate Authentication - Web linked service properties.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- description string
- Linked service description.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- type_
properties WebAnonymous | WebAuthentication Basic | WebAuthentication Client Certificate Authentication - Web linked service properties.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- type
Properties Property Map | Property Map | Property Map - Web linked service properties.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- parameters Map<Property Map>
- Parameters for linked service.
WebLinkedServiceResponse, WebLinkedServiceResponseArgs
- Type
Properties Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Web Anonymous Authentication Response Azure | Pulumi.Native. Data Factory. Inputs. Web Basic Authentication Response Azure Native. Data Factory. Inputs. Web Client Certificate Authentication Response - Web linked service properties.
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Type
Properties WebAnonymous | WebAuthentication Response Basic | WebAuthentication Response Client Certificate Authentication Response - Web linked service properties.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Description string
- Linked service description.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- type
Properties WebAnonymous | WebAuthentication Response Basic | WebAuthentication Response Client Certificate Authentication Response - Web linked service properties.
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description String
- Linked service description.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- type
Properties WebAnonymous | WebAuthentication Response Basic | WebAuthentication Response Client Certificate Authentication Response - Web linked service properties.
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- description string
- Linked service description.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- type_
properties WebAnonymous | WebAuthentication Response Basic | WebAuthentication Response Client Certificate Authentication Response - Web linked service properties.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- type
Properties Property Map | Property Map | Property Map - Web linked service properties.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- description String
- Linked service description.
- parameters Map<Property Map>
- Parameters for linked service.
XeroLinkedService, XeroLinkedServiceArgs
- 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 Xero. It is mutually exclusive with any other properties in the linked service. Type: object.
- Consumer
Key Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The consumer key associated with the Xero application.
- Description 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
- The endpoint of the Xero server. (i.e. api.xero.com)
- 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 from the .pem file that was generated for your Xero private application. You must include all the text from the .pem file, including the Unix line endings( ).
- Use
Encrypted 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.
- 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 Xero. It is mutually exclusive with any other properties in the linked service. Type: object.
- Consumer
Key AzureKey | SecureVault Secret Reference String - The consumer key associated with the Xero application.
- Description 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{}
- The endpoint of the Xero server. (i.e. api.xero.com)
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Private
Key AzureKey | SecureVault Secret Reference String - The private key from the .pem file that was generated for your Xero private application. You must include all the text from the .pem file, including the Unix line endings( ).
- Use
Encrypted 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.
- 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 Xero. It is mutually exclusive with any other properties in the linked service. Type: object.
- consumer
Key AzureKey | SecureVault Secret Reference String - The consumer key associated with the Xero application.
- description 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
- The endpoint of the Xero server. (i.e. api.xero.com)
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- private
Key AzureKey | SecureVault Secret Reference String - The private key from the .pem file that was generated for your Xero private application. You must include all the text from the .pem file, including the Unix line endings( ).
- use
Encrypted 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.
- 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 Xero. It is mutually exclusive with any other properties in the linked service. Type: object.
- consumer
Key AzureKey | SecureVault Secret Reference String - The consumer key associated with the Xero application.
- description 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
- The endpoint of the Xero server. (i.e. api.xero.com)
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- private
Key AzureKey | SecureVault Secret Reference String - The private key from the .pem file that was generated for your Xero private application. You must include all the text from the .pem file, including the Unix line endings( ).
- use
Encrypted 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.
- 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 Xero. It is mutually exclusive with any other properties in the linked service. Type: object.
- consumer_
key AzureKey | SecureVault Secret Reference String - The consumer key associated with the Xero application.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- host Any
- The endpoint of the Xero server. (i.e. api.xero.com)
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- private_
key AzureKey | SecureVault Secret Reference String - The private key from the .pem file that was generated for your Xero private application. You must include all the text from the .pem file, including the Unix line endings( ).
- use_
encrypted_ 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.
- 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 Xero. It is mutually exclusive with any other properties in the linked service. Type: object.
- consumer
Key Property Map | Property Map - The consumer key associated with the Xero application.
- description 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
- The endpoint of the Xero server. (i.e. api.xero.com)
- parameters Map<Property Map>
- Parameters for linked service.
- private
Key Property Map | Property Map - The private key from the .pem file that was generated for your Xero private application. You must include all the text from the .pem file, including the Unix line endings( ).
- 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.
XeroLinkedServiceResponse, XeroLinkedServiceResponseArgs
- 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 Xero. It is mutually exclusive with any other properties in the linked service. Type: object.
- Consumer
Key Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response - The consumer key associated with the Xero application.
- Description 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
- The endpoint of the Xero server. (i.e. api.xero.com)
- 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 from the .pem file that was generated for your Xero private application. You must include all the text from the .pem file, including the Unix line endings( ).
- Use
Encrypted 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.
- 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 Xero. It is mutually exclusive with any other properties in the linked service. Type: object.
- Consumer
Key AzureKey | SecureVault Secret Reference Response String Response - The consumer key associated with the Xero application.
- Description 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{}
- The endpoint of the Xero server. (i.e. api.xero.com)
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Private
Key AzureKey | SecureVault Secret Reference Response String Response - The private key from the .pem file that was generated for your Xero private application. You must include all the text from the .pem file, including the Unix line endings( ).
- Use
Encrypted 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.
- 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 Xero. It is mutually exclusive with any other properties in the linked service. Type: object.
- consumer
Key AzureKey | SecureVault Secret Reference Response String Response - The consumer key associated with the Xero application.
- description 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
- The endpoint of the Xero server. (i.e. api.xero.com)
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- private
Key AzureKey | SecureVault Secret Reference Response String Response - The private key from the .pem file that was generated for your Xero private application. You must include all the text from the .pem file, including the Unix line endings( ).
- use
Encrypted 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.
- 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 Xero. It is mutually exclusive with any other properties in the linked service. Type: object.
- consumer
Key AzureKey | SecureVault Secret Reference Response String Response - The consumer key associated with the Xero application.
- description 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
- The endpoint of the Xero server. (i.e. api.xero.com)
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- private
Key AzureKey | SecureVault Secret Reference Response String Response - The private key from the .pem file that was generated for your Xero private application. You must include all the text from the .pem file, including the Unix line endings( ).
- use
Encrypted 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.
- 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 Xero. It is mutually exclusive with any other properties in the linked service. Type: object.
- consumer_
key AzureKey | SecureVault Secret Reference Response String Response - The consumer key associated with the Xero application.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- host Any
- The endpoint of the Xero server. (i.e. api.xero.com)
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- private_
key AzureKey | SecureVault Secret Reference Response String Response - The private key from the .pem file that was generated for your Xero private application. You must include all the text from the .pem file, including the Unix line endings( ).
- use_
encrypted_ 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.
- 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 Xero. It is mutually exclusive with any other properties in the linked service. Type: object.
- consumer
Key Property Map | Property Map - The consumer key associated with the Xero application.
- description 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
- The endpoint of the Xero server. (i.e. api.xero.com)
- parameters Map<Property Map>
- Parameters for linked service.
- private
Key Property Map | Property Map - The private key from the .pem file that was generated for your Xero private application. You must include all the text from the .pem file, including the Unix line endings( ).
- 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.
ZendeskAuthenticationType, ZendeskAuthenticationTypeArgs
- Basic
- Basic
- Token
- Token
- Zendesk
Authentication Type Basic - Basic
- Zendesk
Authentication Type Token - Token
- Basic
- Basic
- Token
- Token
- Basic
- Basic
- Token
- Token
- BASIC
- Basic
- TOKEN
- Token
- "Basic"
- Basic
- "Token"
- Token
ZendeskLinkedService, ZendeskLinkedServiceArgs
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Zendesk Authentication Type - The authentication type to use.
- Url object
- The url to connect Zendesk source. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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 Zendesk source.
- 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 Zendesk source.
- User
Name object - The username of the Zendesk source. Type: string (or Expression with resultType string).
- Authentication
Type string | ZendeskAuthentication Type - The authentication type to use.
- Url interface{}
- The url to connect Zendesk source. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Api
Token AzureKey | SecureVault Secret Reference String - The api token for the Zendesk source.
- 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 Zendesk source.
- User
Name interface{} - The username of the Zendesk source. Type: string (or Expression with resultType string).
- authentication
Type String | ZendeskAuthentication Type - The authentication type to use.
- url Object
- The url to connect Zendesk source. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- api
Token AzureKey | SecureVault Secret Reference String - The api token for the Zendesk source.
- 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 Zendesk source.
- user
Name Object - The username of the Zendesk source. Type: string (or Expression with resultType string).
- authentication
Type string | ZendeskAuthentication Type - The authentication type to use.
- url any
- The url to connect Zendesk source. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- api
Token AzureKey | SecureVault Secret Reference String - The api token for the Zendesk source.
- 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 Zendesk source.
- user
Name any - The username of the Zendesk source. Type: string (or Expression with resultType string).
- authentication_
type str | ZendeskAuthentication Type - The authentication type to use.
- url Any
- The url to connect Zendesk source. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- api_
token AzureKey | SecureVault Secret Reference String - The api token for the Zendesk source.
- 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 Zendesk source.
- user_
name Any - The username of the Zendesk source. Type: string (or Expression with resultType string).
- authentication
Type String | "Basic" | "Token" - The authentication type to use.
- url Any
- The url to connect Zendesk source. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- api
Token Property Map | Property Map - The api token for the Zendesk source.
- 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 Zendesk source.
- user
Name Any - The username of the Zendesk source. Type: string (or Expression with resultType string).
ZendeskLinkedServiceResponse, ZendeskLinkedServiceResponseArgs
- Authentication
Type string - The authentication type to use.
- Url object
- The url to connect Zendesk source. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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 Zendesk source.
- 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 Zendesk source.
- User
Name object - The username of the Zendesk source. Type: string (or Expression with resultType string).
- Authentication
Type string - The authentication type to use.
- Url interface{}
- The url to connect Zendesk source. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Api
Token AzureKey | SecureVault Secret Reference Response String Response - The api token for the Zendesk source.
- 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 Zendesk source.
- User
Name interface{} - The username of the Zendesk source. Type: string (or Expression with resultType string).
- authentication
Type String - The authentication type to use.
- url Object
- The url to connect Zendesk source. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- api
Token AzureKey | SecureVault Secret Reference Response String Response - The api token for the Zendesk source.
- 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 Zendesk source.
- user
Name Object - The username of the Zendesk source. Type: string (or Expression with resultType string).
- authentication
Type string - The authentication type to use.
- url any
- The url to connect Zendesk source. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- api
Token AzureKey | SecureVault Secret Reference Response String Response - The api token for the Zendesk source.
- 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 Zendesk source.
- user
Name any - The username of the Zendesk source. Type: string (or Expression with resultType string).
- authentication_
type str - The authentication type to use.
- url Any
- The url to connect Zendesk source. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- api_
token AzureKey | SecureVault Secret Reference Response String Response - The api token for the Zendesk source.
- 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 Zendesk source.
- user_
name Any - The username of the Zendesk source. Type: string (or Expression with resultType string).
- authentication
Type String - The authentication type to use.
- url Any
- The url to connect Zendesk source. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- api
Token Property Map | Property Map - The api token for the Zendesk source.
- 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 Zendesk source.
- user
Name Any - The username of the Zendesk source. Type: string (or Expression with resultType string).
ZohoLinkedService, ZohoLinkedServiceArgs
- Access
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String - The access token for Zoho authentication.
- 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 Zoho. 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.
- Endpoint object
- The endpoint of the Zoho server. (i.e. crm.zoho.com/crm/private)
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Use
Encrypted objectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- Use
Host objectVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- Use
Peer objectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- Access
Token AzureKey | SecureVault Secret Reference String - The access token for Zoho authentication.
- 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 Zoho. 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.
- Endpoint interface{}
- The endpoint of the Zoho server. (i.e. crm.zoho.com/crm/private)
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Use
Encrypted interface{}Endpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- Use
Host interface{}Verification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- Use
Peer interface{}Verification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- access
Token AzureKey | SecureVault Secret Reference String - The access token for Zoho authentication.
- 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 Zoho. 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.
- endpoint Object
- The endpoint of the Zoho server. (i.e. crm.zoho.com/crm/private)
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- use
Encrypted ObjectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host ObjectVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use
Peer ObjectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- access
Token AzureKey | SecureVault Secret Reference String - The access token for Zoho authentication.
- 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 Zoho. 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.
- endpoint any
- The endpoint of the Zoho server. (i.e. crm.zoho.com/crm/private)
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- use
Encrypted anyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host anyVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use
Peer anyVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- access_
token AzureKey | SecureVault Secret Reference String - The access token for Zoho authentication.
- 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 Zoho. It is mutually exclusive with any other properties in the linked service. Type: object.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- endpoint Any
- The endpoint of the Zoho server. (i.e. crm.zoho.com/crm/private)
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- use_
encrypted_ Anyendpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use_
host_ Anyverification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use_
peer_ Anyverification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- access
Token Property Map | Property Map - The access token for Zoho authentication.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- connection
Properties Any - Properties used to connect to Zoho. It is mutually exclusive with any other properties in the linked service. Type: object.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- endpoint Any
- The endpoint of the Zoho server. (i.e. crm.zoho.com/crm/private)
- parameters Map<Property Map>
- Parameters for linked service.
- 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.
ZohoLinkedServiceResponse, ZohoLinkedServiceResponseArgs
- 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 for Zoho authentication.
- 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 Zoho. 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.
- Endpoint object
- The endpoint of the Zoho server. (i.e. crm.zoho.com/crm/private)
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Use
Encrypted objectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- Use
Host objectVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- Use
Peer objectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- Access
Token AzureKey | SecureVault Secret Reference Response String Response - The access token for Zoho authentication.
- 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 Zoho. 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.
- Endpoint interface{}
- The endpoint of the Zoho server. (i.e. crm.zoho.com/crm/private)
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Use
Encrypted interface{}Endpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- Use
Host interface{}Verification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- Use
Peer interface{}Verification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- access
Token AzureKey | SecureVault Secret Reference Response String Response - The access token for Zoho authentication.
- 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 Zoho. 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.
- endpoint Object
- The endpoint of the Zoho server. (i.e. crm.zoho.com/crm/private)
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- use
Encrypted ObjectEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host ObjectVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use
Peer ObjectVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- access
Token AzureKey | SecureVault Secret Reference Response String Response - The access token for Zoho authentication.
- 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 Zoho. 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.
- endpoint any
- The endpoint of the Zoho server. (i.e. crm.zoho.com/crm/private)
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- use
Encrypted anyEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host anyVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use
Peer anyVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- access_
token AzureKey | SecureVault Secret Reference Response String Response - The access token for Zoho authentication.
- 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 Zoho. It is mutually exclusive with any other properties in the linked service. Type: object.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- endpoint Any
- The endpoint of the Zoho server. (i.e. crm.zoho.com/crm/private)
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- use_
encrypted_ Anyendpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use_
host_ Anyverification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
- use_
peer_ Anyverification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- access
Token Property Map | Property Map - The access token for Zoho authentication.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- connection
Properties Any - Properties used to connect to Zoho. It is mutually exclusive with any other properties in the linked service. Type: object.
- description String
- Linked service description.
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- endpoint Any
- The endpoint of the Zoho server. (i.e. crm.zoho.com/crm/private)
- parameters Map<Property Map>
- Parameters for linked service.
- 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.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:datafactory:LinkedService exampleLinkedService /subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/linkedservices/exampleLinkedService
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0