你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

Microsoft.DataFactory factories/linkedservices

Bicep 资源定义

可以使用目标操作部署工厂/linkedservices 资源类型:

有关每个 API 版本中已更改属性的列表,请参阅 更改日志

资源格式

若要创建 Microsoft.DataFactory/factories/linkedservices 资源,请将以下 Bicep 添加到模板。

resource symbolicname 'Microsoft.DataFactory/factories/linkedservices@2018-06-01' = {
  parent: resourceSymbolicName
  name: 'string'
  properties: {
    annotations: [
      any(Azure.Bicep.Types.Concrete.AnyType)
    ]
    connectVia: {
      parameters: {
        {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
      }
      referenceName: 'string'
      type: 'string'
    }
    description: 'string'
    parameters: {
      {customized property}: {
        defaultValue: any(Azure.Bicep.Types.Concrete.AnyType)
        type: 'string'
      }
    }
    version: 'string'
    type: 'string'
    // For remaining properties, see LinkedService objects
  }
}

WebLinkedServiceTypeProperties 对象

设置 authenticationType 属性以指定对象的类型。

对于 匿名,请使用:

{
  authenticationType: 'Anonymous'
}

对于 基本,请使用:

{
  authenticationType: 'Basic'
  password: {
    type: 'string'
    // For remaining properties, see SecretBase objects
  }
  username: any(Azure.Bicep.Types.Concrete.AnyType)
}

对于 ClientCertificate,请使用:

{
  authenticationType: 'ClientCertificate'
  password: {
    type: 'string'
    // For remaining properties, see SecretBase objects
  }
  pfx: {
    type: 'string'
    // For remaining properties, see SecretBase objects
  }
}

LinkedService 对象

设置 类型 属性以指定对象的类型。

对于 AmazonMWS,请使用:

{
  type: 'AmazonMWS'
  typeProperties: {
    accessKeyId: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    endpoint: any(Azure.Bicep.Types.Concrete.AnyType)
    marketplaceID: any(Azure.Bicep.Types.Concrete.AnyType)
    mwsAuthToken: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    secretKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    sellerID: any(Azure.Bicep.Types.Concrete.AnyType)
    useEncryptedEndpoints: any(Azure.Bicep.Types.Concrete.AnyType)
    useHostVerification: any(Azure.Bicep.Types.Concrete.AnyType)
    usePeerVerification: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 AmazonRdsForOracle,请使用:

{
  type: 'AmazonRdsForOracle'
  typeProperties: {
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
  }
}

对于 AmazonRdsForSqlServer,请使用:

{
  type: 'AmazonRdsForSqlServer'
  typeProperties: {
    alwaysEncryptedSettings: {
      alwaysEncryptedAkvAuthType: 'string'
      credential: {
        referenceName: 'string'
        type: 'string'
      }
      servicePrincipalId: any(Azure.Bicep.Types.Concrete.AnyType)
      servicePrincipalKey: {
        type: 'string'
        // For remaining properties, see SecretBase objects
      }
    }
    applicationIntent: any(Azure.Bicep.Types.Concrete.AnyType)
    authenticationType: 'string'
    commandTimeout: any(Azure.Bicep.Types.Concrete.AnyType)
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    connectRetryCount: any(Azure.Bicep.Types.Concrete.AnyType)
    connectRetryInterval: any(Azure.Bicep.Types.Concrete.AnyType)
    connectTimeout: any(Azure.Bicep.Types.Concrete.AnyType)
    database: any(Azure.Bicep.Types.Concrete.AnyType)
    encrypt: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    failoverPartner: any(Azure.Bicep.Types.Concrete.AnyType)
    hostNameInCertificate: any(Azure.Bicep.Types.Concrete.AnyType)
    integratedSecurity: any(Azure.Bicep.Types.Concrete.AnyType)
    loadBalanceTimeout: any(Azure.Bicep.Types.Concrete.AnyType)
    maxPoolSize: any(Azure.Bicep.Types.Concrete.AnyType)
    minPoolSize: any(Azure.Bicep.Types.Concrete.AnyType)
    multipleActiveResultSets: any(Azure.Bicep.Types.Concrete.AnyType)
    multiSubnetFailover: any(Azure.Bicep.Types.Concrete.AnyType)
    packetSize: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    pooling: any(Azure.Bicep.Types.Concrete.AnyType)
    server: any(Azure.Bicep.Types.Concrete.AnyType)
    trustServerCertificate: any(Azure.Bicep.Types.Concrete.AnyType)
    userName: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 AmazonRedshift,请使用:

{
  type: 'AmazonRedshift'
  typeProperties: {
    database: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    port: any(Azure.Bicep.Types.Concrete.AnyType)
    server: any(Azure.Bicep.Types.Concrete.AnyType)
    username: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 AmazonS3,请使用:

{
  type: 'AmazonS3'
  typeProperties: {
    accessKeyId: any(Azure.Bicep.Types.Concrete.AnyType)
    authenticationType: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    secretAccessKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    serviceUrl: any(Azure.Bicep.Types.Concrete.AnyType)
    sessionToken: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
  }
}

对于 AmazonS3Compatible,请使用:

{
  type: 'AmazonS3Compatible'
  typeProperties: {
    accessKeyId: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    forcePathStyle: any(Azure.Bicep.Types.Concrete.AnyType)
    secretAccessKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    serviceUrl: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 AppFigures,请使用:

{
  type: 'AppFigures'
  typeProperties: {
    clientKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    userName: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Asana,请使用:

{
  type: 'Asana'
  typeProperties: {
    apiToken: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential: 'string'
  }
}

对于 AzureBatch,请使用:

{
  type: 'AzureBatch'
  typeProperties: {
    accessKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    accountName: any(Azure.Bicep.Types.Concrete.AnyType)
    batchUri: any(Azure.Bicep.Types.Concrete.AnyType)
    credential: {
      referenceName: 'string'
      type: 'string'
    }
    encryptedCredential: 'string'
    linkedServiceName: {
      parameters: {
        {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
      }
      referenceName: 'string'
      type: 'string'
    }
    poolName: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 AzureBlobFS,请使用:

{
  type: 'AzureBlobFS'
  typeProperties: {
    accountKey: any(Azure.Bicep.Types.Concrete.AnyType)
    azureCloudType: any(Azure.Bicep.Types.Concrete.AnyType)
    credential: {
      referenceName: 'string'
      type: 'string'
    }
    encryptedCredential: 'string'
    sasToken: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    sasUri: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalCredential: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalCredentialType: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalId: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    tenant: any(Azure.Bicep.Types.Concrete.AnyType)
    url: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 azureBlobStorage,请使用:

{
  type: 'AzureBlobStorage'
  typeProperties: {
    accountKey: {
      secretName: any(Azure.Bicep.Types.Concrete.AnyType)
      secretVersion: any(Azure.Bicep.Types.Concrete.AnyType)
      store: {
        parameters: {
          {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
        }
        referenceName: 'string'
        type: 'string'
      }
      type: 'string'
    }
    accountKind: any(Azure.Bicep.Types.Concrete.AnyType)
    authenticationType: 'string'
    azureCloudType: any(Azure.Bicep.Types.Concrete.AnyType)
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    containerUri: any(Azure.Bicep.Types.Concrete.AnyType)
    credential: {
      referenceName: 'string'
      type: 'string'
    }
    encryptedCredential: 'string'
    sasToken: {
      secretName: any(Azure.Bicep.Types.Concrete.AnyType)
      secretVersion: any(Azure.Bicep.Types.Concrete.AnyType)
      store: {
        parameters: {
          {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
        }
        referenceName: 'string'
        type: 'string'
      }
      type: 'string'
    }
    sasUri: any(Azure.Bicep.Types.Concrete.AnyType)
    serviceEndpoint: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalId: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    tenant: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 AzureDataExplorer,请使用:

{
  type: 'AzureDataExplorer'
  typeProperties: {
    credential: {
      referenceName: 'string'
      type: 'string'
    }
    database: any(Azure.Bicep.Types.Concrete.AnyType)
    endpoint: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalId: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    tenant: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 AzureDataLakeAnalytics,请使用:

{
  type: 'AzureDataLakeAnalytics'
  typeProperties: {
    accountName: any(Azure.Bicep.Types.Concrete.AnyType)
    dataLakeAnalyticsUri: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    resourceGroupName: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalId: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    subscriptionId: any(Azure.Bicep.Types.Concrete.AnyType)
    tenant: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 azureDataLakeStore,请使用:

{
  type: 'AzureDataLakeStore'
  typeProperties: {
    accountName: any(Azure.Bicep.Types.Concrete.AnyType)
    azureCloudType: any(Azure.Bicep.Types.Concrete.AnyType)
    credential: {
      referenceName: 'string'
      type: 'string'
    }
    dataLakeStoreUri: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    resourceGroupName: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalId: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    subscriptionId: any(Azure.Bicep.Types.Concrete.AnyType)
    tenant: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 AzureDatabricks,请使用:

{
  type: 'AzureDatabricks'
  typeProperties: {
    accessToken: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    authentication: any(Azure.Bicep.Types.Concrete.AnyType)
    credential: {
      referenceName: 'string'
      type: 'string'
    }
    domain: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    existingClusterId: any(Azure.Bicep.Types.Concrete.AnyType)
    instancePoolId: any(Azure.Bicep.Types.Concrete.AnyType)
    newClusterCustomTags: {
      {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
    }
    newClusterDriverNodeType: any(Azure.Bicep.Types.Concrete.AnyType)
    newClusterEnableElasticDisk: any(Azure.Bicep.Types.Concrete.AnyType)
    newClusterInitScripts: any(Azure.Bicep.Types.Concrete.AnyType)
    newClusterLogDestination: any(Azure.Bicep.Types.Concrete.AnyType)
    newClusterNodeType: any(Azure.Bicep.Types.Concrete.AnyType)
    newClusterNumOfWorker: any(Azure.Bicep.Types.Concrete.AnyType)
    newClusterSparkConf: {
      {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
    }
    newClusterSparkEnvVars: {
      {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
    }
    newClusterVersion: any(Azure.Bicep.Types.Concrete.AnyType)
    policyId: any(Azure.Bicep.Types.Concrete.AnyType)
    workspaceResourceId: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 AzureDatabricksDeltaLake,请使用:

{
  type: 'AzureDatabricksDeltaLake'
  typeProperties: {
    accessToken: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    clusterId: any(Azure.Bicep.Types.Concrete.AnyType)
    credential: {
      referenceName: 'string'
      type: 'string'
    }
    domain: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    workspaceResourceId: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 AzureFileStorage,请使用:

{
  type: 'AzureFileStorage'
  typeProperties: {
    accountKey: {
      secretName: any(Azure.Bicep.Types.Concrete.AnyType)
      secretVersion: any(Azure.Bicep.Types.Concrete.AnyType)
      store: {
        parameters: {
          {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
        }
        referenceName: 'string'
        type: 'string'
      }
      type: 'string'
    }
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    credential: {
      referenceName: 'string'
      type: 'string'
    }
    encryptedCredential: 'string'
    fileShare: any(Azure.Bicep.Types.Concrete.AnyType)
    host: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    sasToken: {
      secretName: any(Azure.Bicep.Types.Concrete.AnyType)
      secretVersion: any(Azure.Bicep.Types.Concrete.AnyType)
      store: {
        parameters: {
          {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
        }
        referenceName: 'string'
        type: 'string'
      }
      type: 'string'
    }
    sasUri: any(Azure.Bicep.Types.Concrete.AnyType)
    serviceEndpoint: any(Azure.Bicep.Types.Concrete.AnyType)
    snapshot: any(Azure.Bicep.Types.Concrete.AnyType)
    userId: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 azureFunction,请使用:

{
  type: 'AzureFunction'
  typeProperties: {
    authentication: any(Azure.Bicep.Types.Concrete.AnyType)
    credential: {
      referenceName: 'string'
      type: 'string'
    }
    encryptedCredential: 'string'
    functionAppUrl: any(Azure.Bicep.Types.Concrete.AnyType)
    functionKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    resourceId: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 azureKeyVault,请使用:

{
  type: 'AzureKeyVault'
  typeProperties: {
    baseUrl: any(Azure.Bicep.Types.Concrete.AnyType)
    credential: {
      referenceName: 'string'
      type: 'string'
    }
  }
}

对于 azureML,请使用:

{
  type: 'AzureML'
  typeProperties: {
    apiKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    authentication: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    mlEndpoint: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalId: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    tenant: any(Azure.Bicep.Types.Concrete.AnyType)
    updateResourceEndpoint: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 AzureMLService,请使用:

{
  type: 'AzureMLService'
  typeProperties: {
    authentication: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    mlWorkspaceName: any(Azure.Bicep.Types.Concrete.AnyType)
    resourceGroupName: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalId: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    subscriptionId: any(Azure.Bicep.Types.Concrete.AnyType)
    tenant: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 azureMariaDB,请使用:

{
  type: 'AzureMariaDB'
  typeProperties: {
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    pwd: {
      secretName: any(Azure.Bicep.Types.Concrete.AnyType)
      secretVersion: any(Azure.Bicep.Types.Concrete.AnyType)
      store: {
        parameters: {
          {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
        }
        referenceName: 'string'
        type: 'string'
      }
      type: 'string'
    }
  }
}

对于 azureMySql,请使用:

{
  type: 'AzureMySql'
  typeProperties: {
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    password: {
      secretName: any(Azure.Bicep.Types.Concrete.AnyType)
      secretVersion: any(Azure.Bicep.Types.Concrete.AnyType)
      store: {
        parameters: {
          {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
        }
        referenceName: 'string'
        type: 'string'
      }
      type: 'string'
    }
  }
}

对于 AzurePostgreSql,请使用:

{
  type: 'AzurePostgreSql'
  typeProperties: {
    commandTimeout: any(Azure.Bicep.Types.Concrete.AnyType)
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    database: any(Azure.Bicep.Types.Concrete.AnyType)
    encoding: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    password: {
      secretName: any(Azure.Bicep.Types.Concrete.AnyType)
      secretVersion: any(Azure.Bicep.Types.Concrete.AnyType)
      store: {
        parameters: {
          {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
        }
        referenceName: 'string'
        type: 'string'
      }
      type: 'string'
    }
    port: any(Azure.Bicep.Types.Concrete.AnyType)
    readBufferSize: any(Azure.Bicep.Types.Concrete.AnyType)
    server: any(Azure.Bicep.Types.Concrete.AnyType)
    sslMode: any(Azure.Bicep.Types.Concrete.AnyType)
    timeout: any(Azure.Bicep.Types.Concrete.AnyType)
    timezone: any(Azure.Bicep.Types.Concrete.AnyType)
    trustServerCertificate: any(Azure.Bicep.Types.Concrete.AnyType)
    username: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 azureSearch,请使用:

{
  type: 'AzureSearch'
  typeProperties: {
    encryptedCredential: 'string'
    key: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    url: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 azureSqlDW,请使用:

{
  type: 'AzureSqlDW'
  typeProperties: {
    applicationIntent: any(Azure.Bicep.Types.Concrete.AnyType)
    authenticationType: 'string'
    azureCloudType: any(Azure.Bicep.Types.Concrete.AnyType)
    commandTimeout: any(Azure.Bicep.Types.Concrete.AnyType)
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    connectRetryCount: any(Azure.Bicep.Types.Concrete.AnyType)
    connectRetryInterval: any(Azure.Bicep.Types.Concrete.AnyType)
    connectTimeout: any(Azure.Bicep.Types.Concrete.AnyType)
    credential: {
      referenceName: 'string'
      type: 'string'
    }
    database: any(Azure.Bicep.Types.Concrete.AnyType)
    encrypt: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    failoverPartner: any(Azure.Bicep.Types.Concrete.AnyType)
    hostNameInCertificate: any(Azure.Bicep.Types.Concrete.AnyType)
    integratedSecurity: any(Azure.Bicep.Types.Concrete.AnyType)
    loadBalanceTimeout: any(Azure.Bicep.Types.Concrete.AnyType)
    maxPoolSize: any(Azure.Bicep.Types.Concrete.AnyType)
    minPoolSize: any(Azure.Bicep.Types.Concrete.AnyType)
    multipleActiveResultSets: any(Azure.Bicep.Types.Concrete.AnyType)
    multiSubnetFailover: any(Azure.Bicep.Types.Concrete.AnyType)
    packetSize: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      secretName: any(Azure.Bicep.Types.Concrete.AnyType)
      secretVersion: any(Azure.Bicep.Types.Concrete.AnyType)
      store: {
        parameters: {
          {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
        }
        referenceName: 'string'
        type: 'string'
      }
      type: 'string'
    }
    pooling: any(Azure.Bicep.Types.Concrete.AnyType)
    server: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalCredential: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalCredentialType: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalId: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    tenant: any(Azure.Bicep.Types.Concrete.AnyType)
    trustServerCertificate: any(Azure.Bicep.Types.Concrete.AnyType)
    userName: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 AzureSqlDatabase,请使用:

{
  type: 'AzureSqlDatabase'
  typeProperties: {
    alwaysEncryptedSettings: {
      alwaysEncryptedAkvAuthType: 'string'
      credential: {
        referenceName: 'string'
        type: 'string'
      }
      servicePrincipalId: any(Azure.Bicep.Types.Concrete.AnyType)
      servicePrincipalKey: {
        type: 'string'
        // For remaining properties, see SecretBase objects
      }
    }
    applicationIntent: any(Azure.Bicep.Types.Concrete.AnyType)
    authenticationType: 'string'
    azureCloudType: any(Azure.Bicep.Types.Concrete.AnyType)
    commandTimeout: any(Azure.Bicep.Types.Concrete.AnyType)
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    connectRetryCount: any(Azure.Bicep.Types.Concrete.AnyType)
    connectRetryInterval: any(Azure.Bicep.Types.Concrete.AnyType)
    connectTimeout: any(Azure.Bicep.Types.Concrete.AnyType)
    credential: {
      referenceName: 'string'
      type: 'string'
    }
    database: any(Azure.Bicep.Types.Concrete.AnyType)
    encrypt: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    failoverPartner: any(Azure.Bicep.Types.Concrete.AnyType)
    hostNameInCertificate: any(Azure.Bicep.Types.Concrete.AnyType)
    integratedSecurity: any(Azure.Bicep.Types.Concrete.AnyType)
    loadBalanceTimeout: any(Azure.Bicep.Types.Concrete.AnyType)
    maxPoolSize: any(Azure.Bicep.Types.Concrete.AnyType)
    minPoolSize: any(Azure.Bicep.Types.Concrete.AnyType)
    multipleActiveResultSets: any(Azure.Bicep.Types.Concrete.AnyType)
    multiSubnetFailover: any(Azure.Bicep.Types.Concrete.AnyType)
    packetSize: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      secretName: any(Azure.Bicep.Types.Concrete.AnyType)
      secretVersion: any(Azure.Bicep.Types.Concrete.AnyType)
      store: {
        parameters: {
          {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
        }
        referenceName: 'string'
        type: 'string'
      }
      type: 'string'
    }
    pooling: any(Azure.Bicep.Types.Concrete.AnyType)
    server: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalCredential: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalCredentialType: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalId: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    tenant: any(Azure.Bicep.Types.Concrete.AnyType)
    trustServerCertificate: any(Azure.Bicep.Types.Concrete.AnyType)
    userName: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 AzureSqlMI,请使用:

{
  type: 'AzureSqlMI'
  typeProperties: {
    alwaysEncryptedSettings: {
      alwaysEncryptedAkvAuthType: 'string'
      credential: {
        referenceName: 'string'
        type: 'string'
      }
      servicePrincipalId: any(Azure.Bicep.Types.Concrete.AnyType)
      servicePrincipalKey: {
        type: 'string'
        // For remaining properties, see SecretBase objects
      }
    }
    applicationIntent: any(Azure.Bicep.Types.Concrete.AnyType)
    authenticationType: 'string'
    azureCloudType: any(Azure.Bicep.Types.Concrete.AnyType)
    commandTimeout: any(Azure.Bicep.Types.Concrete.AnyType)
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    connectRetryCount: any(Azure.Bicep.Types.Concrete.AnyType)
    connectRetryInterval: any(Azure.Bicep.Types.Concrete.AnyType)
    connectTimeout: any(Azure.Bicep.Types.Concrete.AnyType)
    credential: {
      referenceName: 'string'
      type: 'string'
    }
    database: any(Azure.Bicep.Types.Concrete.AnyType)
    encrypt: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    failoverPartner: any(Azure.Bicep.Types.Concrete.AnyType)
    hostNameInCertificate: any(Azure.Bicep.Types.Concrete.AnyType)
    integratedSecurity: any(Azure.Bicep.Types.Concrete.AnyType)
    loadBalanceTimeout: any(Azure.Bicep.Types.Concrete.AnyType)
    maxPoolSize: any(Azure.Bicep.Types.Concrete.AnyType)
    minPoolSize: any(Azure.Bicep.Types.Concrete.AnyType)
    multipleActiveResultSets: any(Azure.Bicep.Types.Concrete.AnyType)
    multiSubnetFailover: any(Azure.Bicep.Types.Concrete.AnyType)
    packetSize: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      secretName: any(Azure.Bicep.Types.Concrete.AnyType)
      secretVersion: any(Azure.Bicep.Types.Concrete.AnyType)
      store: {
        parameters: {
          {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
        }
        referenceName: 'string'
        type: 'string'
      }
      type: 'string'
    }
    pooling: any(Azure.Bicep.Types.Concrete.AnyType)
    server: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalCredential: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalCredentialType: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalId: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    tenant: any(Azure.Bicep.Types.Concrete.AnyType)
    trustServerCertificate: any(Azure.Bicep.Types.Concrete.AnyType)
    userName: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 azureStorage,请使用:

{
  type: 'AzureStorage'
  typeProperties: {
    accountKey: {
      secretName: any(Azure.Bicep.Types.Concrete.AnyType)
      secretVersion: any(Azure.Bicep.Types.Concrete.AnyType)
      store: {
        parameters: {
          {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
        }
        referenceName: 'string'
        type: 'string'
      }
      type: 'string'
    }
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    sasToken: {
      secretName: any(Azure.Bicep.Types.Concrete.AnyType)
      secretVersion: any(Azure.Bicep.Types.Concrete.AnyType)
      store: {
        parameters: {
          {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
        }
        referenceName: 'string'
        type: 'string'
      }
      type: 'string'
    }
    sasUri: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 azureSynapseArtifacts,请使用:

{
  type: 'AzureSynapseArtifacts'
  typeProperties: {
    authentication: any(Azure.Bicep.Types.Concrete.AnyType)
    endpoint: any(Azure.Bicep.Types.Concrete.AnyType)
    workspaceResourceId: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 azureTableStorage,请使用:

{
  type: 'AzureTableStorage'
  typeProperties: {
    accountKey: {
      secretName: any(Azure.Bicep.Types.Concrete.AnyType)
      secretVersion: any(Azure.Bicep.Types.Concrete.AnyType)
      store: {
        parameters: {
          {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
        }
        referenceName: 'string'
        type: 'string'
      }
      type: 'string'
    }
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    credential: {
      referenceName: 'string'
      type: 'string'
    }
    encryptedCredential: 'string'
    sasToken: {
      secretName: any(Azure.Bicep.Types.Concrete.AnyType)
      secretVersion: any(Azure.Bicep.Types.Concrete.AnyType)
      store: {
        parameters: {
          {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
        }
        referenceName: 'string'
        type: 'string'
      }
      type: 'string'
    }
    sasUri: any(Azure.Bicep.Types.Concrete.AnyType)
    serviceEndpoint: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Cassandra,请使用:

{
  type: 'Cassandra'
  typeProperties: {
    authenticationType: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    host: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    port: any(Azure.Bicep.Types.Concrete.AnyType)
    username: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 CommonDataServiceForApps,请使用:

{
  type: 'CommonDataServiceForApps'
  typeProperties: {
    authenticationType: any(Azure.Bicep.Types.Concrete.AnyType)
    deploymentType: any(Azure.Bicep.Types.Concrete.AnyType)
    domain: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    hostName: any(Azure.Bicep.Types.Concrete.AnyType)
    organizationName: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    port: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalCredential: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalCredentialType: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalId: any(Azure.Bicep.Types.Concrete.AnyType)
    serviceUri: any(Azure.Bicep.Types.Concrete.AnyType)
    username: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Concur,请使用:

{
  type: 'Concur'
  typeProperties: {
    clientId: any(Azure.Bicep.Types.Concrete.AnyType)
    connectionProperties: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    useEncryptedEndpoints: any(Azure.Bicep.Types.Concrete.AnyType)
    useHostVerification: any(Azure.Bicep.Types.Concrete.AnyType)
    usePeerVerification: any(Azure.Bicep.Types.Concrete.AnyType)
    username: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 CosmosDb,请使用:

{
  type: 'CosmosDb'
  typeProperties: {
    accountEndpoint: any(Azure.Bicep.Types.Concrete.AnyType)
    accountKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    azureCloudType: any(Azure.Bicep.Types.Concrete.AnyType)
    connectionMode: 'string'
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    credential: {
      referenceName: 'string'
      type: 'string'
    }
    database: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    servicePrincipalCredential: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalCredentialType: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalId: any(Azure.Bicep.Types.Concrete.AnyType)
    tenant: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 CosmosDbMongoDbApi,请使用:

{
  type: 'CosmosDbMongoDbApi'
  typeProperties: {
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    database: any(Azure.Bicep.Types.Concrete.AnyType)
    isServerVersionAbove32: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Couchbase,请使用:

{
  type: 'Couchbase'
  typeProperties: {
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    credString: {
      secretName: any(Azure.Bicep.Types.Concrete.AnyType)
      secretVersion: any(Azure.Bicep.Types.Concrete.AnyType)
      store: {
        parameters: {
          {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
        }
        referenceName: 'string'
        type: 'string'
      }
      type: 'string'
    }
    encryptedCredential: 'string'
  }
}

对于 customDataSource ,请使用:

{
  type: 'CustomDataSource'
  typeProperties: any(Azure.Bicep.Types.Concrete.AnyType)
}

对于 Dataworld,请使用:

{
  type: 'Dataworld'
  typeProperties: {
    apiToken: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential: 'string'
  }
}

对于 Db2,请使用:

{
  type: 'Db2'
  typeProperties: {
    authenticationType: 'string'
    certificateCommonName: any(Azure.Bicep.Types.Concrete.AnyType)
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    database: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    packageCollection: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    server: any(Azure.Bicep.Types.Concrete.AnyType)
    username: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 钻取,请使用:

{
  type: 'Drill'
  typeProperties: {
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    pwd: {
      secretName: any(Azure.Bicep.Types.Concrete.AnyType)
      secretVersion: any(Azure.Bicep.Types.Concrete.AnyType)
      store: {
        parameters: {
          {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
        }
        referenceName: 'string'
        type: 'string'
      }
      type: 'string'
    }
  }
}

对于 Dynamics,请使用:

{
  type: 'Dynamics'
  typeProperties: {
    authenticationType: any(Azure.Bicep.Types.Concrete.AnyType)
    credential: {
      referenceName: 'string'
      type: 'string'
    }
    deploymentType: any(Azure.Bicep.Types.Concrete.AnyType)
    domain: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    hostName: any(Azure.Bicep.Types.Concrete.AnyType)
    organizationName: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    port: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalCredential: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalCredentialType: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalId: any(Azure.Bicep.Types.Concrete.AnyType)
    serviceUri: any(Azure.Bicep.Types.Concrete.AnyType)
    username: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 DynamicsAX,请使用:

{
  type: 'DynamicsAX'
  typeProperties: {
    aadResourceId: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    servicePrincipalId: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    tenant: any(Azure.Bicep.Types.Concrete.AnyType)
    url: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 DynamicsCrm,请使用:

{
  type: 'DynamicsCrm'
  typeProperties: {
    authenticationType: any(Azure.Bicep.Types.Concrete.AnyType)
    credential: {
      referenceName: 'string'
      type: 'string'
    }
    deploymentType: any(Azure.Bicep.Types.Concrete.AnyType)
    domain: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    hostName: any(Azure.Bicep.Types.Concrete.AnyType)
    organizationName: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    port: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalCredential: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalCredentialType: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalId: any(Azure.Bicep.Types.Concrete.AnyType)
    serviceUri: any(Azure.Bicep.Types.Concrete.AnyType)
    username: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Eloqua,请使用:

{
  type: 'Eloqua'
  typeProperties: {
    encryptedCredential: 'string'
    endpoint: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    useEncryptedEndpoints: any(Azure.Bicep.Types.Concrete.AnyType)
    useHostVerification: any(Azure.Bicep.Types.Concrete.AnyType)
    usePeerVerification: any(Azure.Bicep.Types.Concrete.AnyType)
    username: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 FileServer,请使用:

{
  type: 'FileServer'
  typeProperties: {
    encryptedCredential: 'string'
    host: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    userId: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 ftpServer,请使用:

{
  type: 'FtpServer'
  typeProperties: {
    authenticationType: 'string'
    enableServerCertificateValidation: any(Azure.Bicep.Types.Concrete.AnyType)
    enableSsl: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    host: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    port: any(Azure.Bicep.Types.Concrete.AnyType)
    userName: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 GoogleAdWords,请使用:

{
  type: 'GoogleAdWords'
  typeProperties: {
    authenticationType: 'string'
    clientCustomerID: any(Azure.Bicep.Types.Concrete.AnyType)
    clientId: any(Azure.Bicep.Types.Concrete.AnyType)
    clientSecret: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    connectionProperties: any(Azure.Bicep.Types.Concrete.AnyType)
    developerToken: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    email: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    googleAdsApiVersion: any(Azure.Bicep.Types.Concrete.AnyType)
    keyFilePath: any(Azure.Bicep.Types.Concrete.AnyType)
    loginCustomerID: any(Azure.Bicep.Types.Concrete.AnyType)
    privateKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    refreshToken: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    supportLegacyDataTypes: any(Azure.Bicep.Types.Concrete.AnyType)
    trustedCertPath: any(Azure.Bicep.Types.Concrete.AnyType)
    useSystemTrustStore: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 GoogleBigQuery,请使用:

{
  type: 'GoogleBigQuery'
  typeProperties: {
    additionalProjects: any(Azure.Bicep.Types.Concrete.AnyType)
    authenticationType: 'string'
    clientId: any(Azure.Bicep.Types.Concrete.AnyType)
    clientSecret: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    email: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    keyFilePath: any(Azure.Bicep.Types.Concrete.AnyType)
    project: any(Azure.Bicep.Types.Concrete.AnyType)
    refreshToken: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    requestGoogleDriveScope: any(Azure.Bicep.Types.Concrete.AnyType)
    trustedCertPath: any(Azure.Bicep.Types.Concrete.AnyType)
    useSystemTrustStore: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 GoogleBigQueryV2,请使用:

{
  type: 'GoogleBigQueryV2'
  typeProperties: {
    authenticationType: 'string'
    clientId: any(Azure.Bicep.Types.Concrete.AnyType)
    clientSecret: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential: 'string'
    keyFileContent: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    projectId: any(Azure.Bicep.Types.Concrete.AnyType)
    refreshToken: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
  }
}

对于 GoogleCloudStorage,请使用:

{
  type: 'GoogleCloudStorage'
  typeProperties: {
    accessKeyId: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    secretAccessKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    serviceUrl: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 GoogleSheets,请使用:

{
  type: 'GoogleSheets'
  typeProperties: {
    apiToken: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential: 'string'
  }
}

对于 Greenplum,请使用:

{
  type: 'Greenplum'
  typeProperties: {
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    pwd: {
      secretName: any(Azure.Bicep.Types.Concrete.AnyType)
      secretVersion: any(Azure.Bicep.Types.Concrete.AnyType)
      store: {
        parameters: {
          {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
        }
        referenceName: 'string'
        type: 'string'
      }
      type: 'string'
    }
  }
}

对于 HBase,请使用:

{
  type: 'HBase'
  typeProperties: {
    allowHostNameCNMismatch: any(Azure.Bicep.Types.Concrete.AnyType)
    allowSelfSignedServerCert: any(Azure.Bicep.Types.Concrete.AnyType)
    authenticationType: 'string'
    enableSsl: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    host: any(Azure.Bicep.Types.Concrete.AnyType)
    httpPath: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    port: any(Azure.Bicep.Types.Concrete.AnyType)
    trustedCertPath: any(Azure.Bicep.Types.Concrete.AnyType)
    username: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 HDInsight,请使用:

{
  type: 'HDInsight'
  typeProperties: {
    clusterUri: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    fileSystem: any(Azure.Bicep.Types.Concrete.AnyType)
    hcatalogLinkedServiceName: {
      parameters: {
        {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
      }
      referenceName: 'string'
      type: 'string'
    }
    isEspEnabled: any(Azure.Bicep.Types.Concrete.AnyType)
    linkedServiceName: {
      parameters: {
        {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
      }
      referenceName: 'string'
      type: 'string'
    }
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    userName: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 HDInsightOnDemand,请使用:

{
  type: 'HDInsightOnDemand'
  typeProperties: {
    additionalLinkedServiceNames: [
      {
        parameters: {
          {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
        }
        referenceName: 'string'
        type: 'string'
      }
    ]
    clusterNamePrefix: any(Azure.Bicep.Types.Concrete.AnyType)
    clusterPassword: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    clusterResourceGroup: any(Azure.Bicep.Types.Concrete.AnyType)
    clusterSize: any(Azure.Bicep.Types.Concrete.AnyType)
    clusterSshPassword: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    clusterSshUserName: any(Azure.Bicep.Types.Concrete.AnyType)
    clusterType: any(Azure.Bicep.Types.Concrete.AnyType)
    clusterUserName: any(Azure.Bicep.Types.Concrete.AnyType)
    coreConfiguration: any(Azure.Bicep.Types.Concrete.AnyType)
    credential: {
      referenceName: 'string'
      type: 'string'
    }
    dataNodeSize: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    hBaseConfiguration: any(Azure.Bicep.Types.Concrete.AnyType)
    hcatalogLinkedServiceName: {
      parameters: {
        {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
      }
      referenceName: 'string'
      type: 'string'
    }
    hdfsConfiguration: any(Azure.Bicep.Types.Concrete.AnyType)
    headNodeSize: any(Azure.Bicep.Types.Concrete.AnyType)
    hiveConfiguration: any(Azure.Bicep.Types.Concrete.AnyType)
    hostSubscriptionId: any(Azure.Bicep.Types.Concrete.AnyType)
    linkedServiceName: {
      parameters: {
        {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
      }
      referenceName: 'string'
      type: 'string'
    }
    mapReduceConfiguration: any(Azure.Bicep.Types.Concrete.AnyType)
    oozieConfiguration: any(Azure.Bicep.Types.Concrete.AnyType)
    scriptActions: [
      {
        name: 'string'
        parameters: 'string'
        roles: any(Azure.Bicep.Types.Concrete.AnyType)
        uri: 'string'
      }
    ]
    servicePrincipalId: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    sparkVersion: any(Azure.Bicep.Types.Concrete.AnyType)
    stormConfiguration: any(Azure.Bicep.Types.Concrete.AnyType)
    subnetName: any(Azure.Bicep.Types.Concrete.AnyType)
    tenant: any(Azure.Bicep.Types.Concrete.AnyType)
    timeToLive: any(Azure.Bicep.Types.Concrete.AnyType)
    version: any(Azure.Bicep.Types.Concrete.AnyType)
    virtualNetworkId: any(Azure.Bicep.Types.Concrete.AnyType)
    yarnConfiguration: any(Azure.Bicep.Types.Concrete.AnyType)
    zookeeperNodeSize: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Hdfs,请使用:

{
  type: 'Hdfs'
  typeProperties: {
    authenticationType: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    url: any(Azure.Bicep.Types.Concrete.AnyType)
    userName: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Hive,请使用:

{
  type: 'Hive'
  typeProperties: {
    allowHostNameCNMismatch: any(Azure.Bicep.Types.Concrete.AnyType)
    allowSelfSignedServerCert: any(Azure.Bicep.Types.Concrete.AnyType)
    authenticationType: 'string'
    enableSsl: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    host: any(Azure.Bicep.Types.Concrete.AnyType)
    httpPath: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    port: any(Azure.Bicep.Types.Concrete.AnyType)
    serverType: 'string'
    serviceDiscoveryMode: any(Azure.Bicep.Types.Concrete.AnyType)
    thriftTransportProtocol: 'string'
    trustedCertPath: any(Azure.Bicep.Types.Concrete.AnyType)
    useNativeQuery: any(Azure.Bicep.Types.Concrete.AnyType)
    username: any(Azure.Bicep.Types.Concrete.AnyType)
    useSystemTrustStore: any(Azure.Bicep.Types.Concrete.AnyType)
    zooKeeperNameSpace: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 HttpServer,请使用:

{
  type: 'HttpServer'
  typeProperties: {
    authenticationType: 'string'
    authHeaders: any(Azure.Bicep.Types.Concrete.AnyType)
    certThumbprint: any(Azure.Bicep.Types.Concrete.AnyType)
    embeddedCertData: any(Azure.Bicep.Types.Concrete.AnyType)
    enableServerCertificateValidation: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    url: any(Azure.Bicep.Types.Concrete.AnyType)
    userName: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Hubspot,请使用:

{
  type: 'Hubspot'
  typeProperties: {
    accessToken: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    clientId: any(Azure.Bicep.Types.Concrete.AnyType)
    clientSecret: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential: 'string'
    refreshToken: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    useEncryptedEndpoints: any(Azure.Bicep.Types.Concrete.AnyType)
    useHostVerification: any(Azure.Bicep.Types.Concrete.AnyType)
    usePeerVerification: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Impala,请使用:

{
  type: 'Impala'
  typeProperties: {
    allowHostNameCNMismatch: any(Azure.Bicep.Types.Concrete.AnyType)
    allowSelfSignedServerCert: any(Azure.Bicep.Types.Concrete.AnyType)
    authenticationType: 'string'
    enableSsl: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    host: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    port: any(Azure.Bicep.Types.Concrete.AnyType)
    trustedCertPath: any(Azure.Bicep.Types.Concrete.AnyType)
    username: any(Azure.Bicep.Types.Concrete.AnyType)
    useSystemTrustStore: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Informix,请使用:

{
  type: 'Informix'
  typeProperties: {
    authenticationType: any(Azure.Bicep.Types.Concrete.AnyType)
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    credential: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential: 'string'
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    userName: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Jira,请使用:

{
  type: 'Jira'
  typeProperties: {
    encryptedCredential: 'string'
    host: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    port: any(Azure.Bicep.Types.Concrete.AnyType)
    useEncryptedEndpoints: any(Azure.Bicep.Types.Concrete.AnyType)
    useHostVerification: any(Azure.Bicep.Types.Concrete.AnyType)
    usePeerVerification: any(Azure.Bicep.Types.Concrete.AnyType)
    username: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 LakeHouse,请使用:

{
  type: 'LakeHouse'
  typeProperties: {
    artifactId: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    servicePrincipalCredential: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalCredentialType: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalId: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    tenant: any(Azure.Bicep.Types.Concrete.AnyType)
    workspaceId: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Magento,请使用:

{
  type: 'Magento'
  typeProperties: {
    accessToken: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential: 'string'
    host: any(Azure.Bicep.Types.Concrete.AnyType)
    useEncryptedEndpoints: any(Azure.Bicep.Types.Concrete.AnyType)
    useHostVerification: any(Azure.Bicep.Types.Concrete.AnyType)
    usePeerVerification: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 MariaDB,请使用:

{
  type: 'MariaDB'
  typeProperties: {
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    database: any(Azure.Bicep.Types.Concrete.AnyType)
    driverVersion: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    password: {
      secretName: any(Azure.Bicep.Types.Concrete.AnyType)
      secretVersion: any(Azure.Bicep.Types.Concrete.AnyType)
      store: {
        parameters: {
          {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
        }
        referenceName: 'string'
        type: 'string'
      }
      type: 'string'
    }
    port: any(Azure.Bicep.Types.Concrete.AnyType)
    server: any(Azure.Bicep.Types.Concrete.AnyType)
    sslMode: any(Azure.Bicep.Types.Concrete.AnyType)
    username: any(Azure.Bicep.Types.Concrete.AnyType)
    useSystemTrustStore: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Marketo,请使用:

{
  type: 'Marketo'
  typeProperties: {
    clientId: any(Azure.Bicep.Types.Concrete.AnyType)
    clientSecret: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential: 'string'
    endpoint: any(Azure.Bicep.Types.Concrete.AnyType)
    useEncryptedEndpoints: any(Azure.Bicep.Types.Concrete.AnyType)
    useHostVerification: any(Azure.Bicep.Types.Concrete.AnyType)
    usePeerVerification: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 MicrosoftAccess,请使用:

{
  type: 'MicrosoftAccess'
  typeProperties: {
    authenticationType: any(Azure.Bicep.Types.Concrete.AnyType)
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    credential: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential: 'string'
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    userName: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 MongoDb,请使用:

{
  type: 'MongoDb'
  typeProperties: {
    allowSelfSignedServerCert: any(Azure.Bicep.Types.Concrete.AnyType)
    authenticationType: 'string'
    authSource: any(Azure.Bicep.Types.Concrete.AnyType)
    databaseName: any(Azure.Bicep.Types.Concrete.AnyType)
    enableSsl: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    port: any(Azure.Bicep.Types.Concrete.AnyType)
    server: any(Azure.Bicep.Types.Concrete.AnyType)
    username: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 MongoDbAtlas,请使用:

{
  type: 'MongoDbAtlas'
  typeProperties: {
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    database: any(Azure.Bicep.Types.Concrete.AnyType)
    driverVersion: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 MongoDbV2,请使用:

{
  type: 'MongoDbV2'
  typeProperties: {
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    database: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 MySql,请使用:

{
  type: 'MySql'
  typeProperties: {
    allowZeroDateTime: any(Azure.Bicep.Types.Concrete.AnyType)
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    connectionTimeout: any(Azure.Bicep.Types.Concrete.AnyType)
    convertZeroDateTime: any(Azure.Bicep.Types.Concrete.AnyType)
    database: any(Azure.Bicep.Types.Concrete.AnyType)
    driverVersion: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    guidFormat: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      secretName: any(Azure.Bicep.Types.Concrete.AnyType)
      secretVersion: any(Azure.Bicep.Types.Concrete.AnyType)
      store: {
        parameters: {
          {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
        }
        referenceName: 'string'
        type: 'string'
      }
      type: 'string'
    }
    port: any(Azure.Bicep.Types.Concrete.AnyType)
    server: any(Azure.Bicep.Types.Concrete.AnyType)
    sslCert: any(Azure.Bicep.Types.Concrete.AnyType)
    sslKey: any(Azure.Bicep.Types.Concrete.AnyType)
    sslMode: any(Azure.Bicep.Types.Concrete.AnyType)
    treatTinyAsBoolean: any(Azure.Bicep.Types.Concrete.AnyType)
    username: any(Azure.Bicep.Types.Concrete.AnyType)
    useSystemTrustStore: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Netezza,请使用:

{
  type: 'Netezza'
  typeProperties: {
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    pwd: {
      secretName: any(Azure.Bicep.Types.Concrete.AnyType)
      secretVersion: any(Azure.Bicep.Types.Concrete.AnyType)
      store: {
        parameters: {
          {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
        }
        referenceName: 'string'
        type: 'string'
      }
      type: 'string'
    }
  }
}

对于 OData,请使用:

{
  type: 'OData'
  typeProperties: {
    aadResourceId: any(Azure.Bicep.Types.Concrete.AnyType)
    aadServicePrincipalCredentialType: 'string'
    authenticationType: 'string'
    authHeaders: any(Azure.Bicep.Types.Concrete.AnyType)
    azureCloudType: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalEmbeddedCert: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalEmbeddedCertPassword: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalId: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    tenant: any(Azure.Bicep.Types.Concrete.AnyType)
    url: any(Azure.Bicep.Types.Concrete.AnyType)
    userName: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Odbc,请使用:

{
  type: 'Odbc'
  typeProperties: {
    authenticationType: any(Azure.Bicep.Types.Concrete.AnyType)
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    credential: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential: 'string'
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    userName: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Office365,请使用:

{
  type: 'Office365'
  typeProperties: {
    encryptedCredential: 'string'
    office365TenantId: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalId: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalTenantId: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Oracle,请使用:

{
  type: 'Oracle'
  typeProperties: {
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    password: {
      secretName: any(Azure.Bicep.Types.Concrete.AnyType)
      secretVersion: any(Azure.Bicep.Types.Concrete.AnyType)
      store: {
        parameters: {
          {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
        }
        referenceName: 'string'
        type: 'string'
      }
      type: 'string'
    }
  }
}

对于 OracleCloudStorage,请使用:

{
  type: 'OracleCloudStorage'
  typeProperties: {
    accessKeyId: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    secretAccessKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    serviceUrl: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 OracleServiceCloud,请使用:

{
  type: 'OracleServiceCloud'
  typeProperties: {
    encryptedCredential: 'string'
    host: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    useEncryptedEndpoints: any(Azure.Bicep.Types.Concrete.AnyType)
    useHostVerification: any(Azure.Bicep.Types.Concrete.AnyType)
    usePeerVerification: any(Azure.Bicep.Types.Concrete.AnyType)
    username: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 PayPal,请使用:

{
  type: 'Paypal'
  typeProperties: {
    clientId: any(Azure.Bicep.Types.Concrete.AnyType)
    clientSecret: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential: 'string'
    host: any(Azure.Bicep.Types.Concrete.AnyType)
    useEncryptedEndpoints: any(Azure.Bicep.Types.Concrete.AnyType)
    useHostVerification: any(Azure.Bicep.Types.Concrete.AnyType)
    usePeerVerification: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Phoenix,请使用:

{
  type: 'Phoenix'
  typeProperties: {
    allowHostNameCNMismatch: any(Azure.Bicep.Types.Concrete.AnyType)
    allowSelfSignedServerCert: any(Azure.Bicep.Types.Concrete.AnyType)
    authenticationType: 'string'
    enableSsl: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    host: any(Azure.Bicep.Types.Concrete.AnyType)
    httpPath: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    port: any(Azure.Bicep.Types.Concrete.AnyType)
    trustedCertPath: any(Azure.Bicep.Types.Concrete.AnyType)
    username: any(Azure.Bicep.Types.Concrete.AnyType)
    useSystemTrustStore: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 PostgreSql,请使用:

{
  type: 'PostgreSql'
  typeProperties: {
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    password: {
      secretName: any(Azure.Bicep.Types.Concrete.AnyType)
      secretVersion: any(Azure.Bicep.Types.Concrete.AnyType)
      store: {
        parameters: {
          {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
        }
        referenceName: 'string'
        type: 'string'
      }
      type: 'string'
    }
  }
}

对于 PostgreSqlV2,请使用:

{
  type: 'PostgreSqlV2'
  typeProperties: {
    authenticationType: any(Azure.Bicep.Types.Concrete.AnyType)
    commandTimeout: any(Azure.Bicep.Types.Concrete.AnyType)
    connectionTimeout: any(Azure.Bicep.Types.Concrete.AnyType)
    database: any(Azure.Bicep.Types.Concrete.AnyType)
    encoding: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    logParameters: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      secretName: any(Azure.Bicep.Types.Concrete.AnyType)
      secretVersion: any(Azure.Bicep.Types.Concrete.AnyType)
      store: {
        parameters: {
          {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
        }
        referenceName: 'string'
        type: 'string'
      }
      type: 'string'
    }
    pooling: any(Azure.Bicep.Types.Concrete.AnyType)
    port: any(Azure.Bicep.Types.Concrete.AnyType)
    readBufferSize: any(Azure.Bicep.Types.Concrete.AnyType)
    schema: any(Azure.Bicep.Types.Concrete.AnyType)
    server: any(Azure.Bicep.Types.Concrete.AnyType)
    sslCertificate: any(Azure.Bicep.Types.Concrete.AnyType)
    sslKey: any(Azure.Bicep.Types.Concrete.AnyType)
    sslMode: any(Azure.Bicep.Types.Concrete.AnyType)
    sslPassword: any(Azure.Bicep.Types.Concrete.AnyType)
    timezone: any(Azure.Bicep.Types.Concrete.AnyType)
    trustServerCertificate: any(Azure.Bicep.Types.Concrete.AnyType)
    username: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Presto,请使用:

{
  type: 'Presto'
  typeProperties: {
    allowHostNameCNMismatch: any(Azure.Bicep.Types.Concrete.AnyType)
    allowSelfSignedServerCert: any(Azure.Bicep.Types.Concrete.AnyType)
    authenticationType: 'string'
    catalog: any(Azure.Bicep.Types.Concrete.AnyType)
    enableSsl: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    host: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    port: any(Azure.Bicep.Types.Concrete.AnyType)
    serverVersion: any(Azure.Bicep.Types.Concrete.AnyType)
    timeZoneID: any(Azure.Bicep.Types.Concrete.AnyType)
    trustedCertPath: any(Azure.Bicep.Types.Concrete.AnyType)
    username: any(Azure.Bicep.Types.Concrete.AnyType)
    useSystemTrustStore: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 QuickBooks,请使用:

{
  type: 'QuickBooks'
  typeProperties: {
    accessToken: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    accessTokenSecret: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    companyId: any(Azure.Bicep.Types.Concrete.AnyType)
    connectionProperties: any(Azure.Bicep.Types.Concrete.AnyType)
    consumerKey: any(Azure.Bicep.Types.Concrete.AnyType)
    consumerSecret: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential: 'string'
    endpoint: any(Azure.Bicep.Types.Concrete.AnyType)
    useEncryptedEndpoints: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Quickbase,请使用:

{
  type: 'Quickbase'
  typeProperties: {
    encryptedCredential: 'string'
    url: any(Azure.Bicep.Types.Concrete.AnyType)
    userToken: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
  }
}

对于 Responsys,请使用:

{
  type: 'Responsys'
  typeProperties: {
    clientId: any(Azure.Bicep.Types.Concrete.AnyType)
    clientSecret: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential: 'string'
    endpoint: any(Azure.Bicep.Types.Concrete.AnyType)
    useEncryptedEndpoints: any(Azure.Bicep.Types.Concrete.AnyType)
    useHostVerification: any(Azure.Bicep.Types.Concrete.AnyType)
    usePeerVerification: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 RestService,请使用:

{
  type: 'RestService'
  typeProperties: {
    aadResourceId: any(Azure.Bicep.Types.Concrete.AnyType)
    authenticationType: 'string'
    authHeaders: any(Azure.Bicep.Types.Concrete.AnyType)
    azureCloudType: any(Azure.Bicep.Types.Concrete.AnyType)
    clientId: any(Azure.Bicep.Types.Concrete.AnyType)
    clientSecret: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    credential: {
      referenceName: 'string'
      type: 'string'
    }
    enableServerCertificateValidation: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    resource: any(Azure.Bicep.Types.Concrete.AnyType)
    scope: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalCredentialType: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalEmbeddedCert: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalEmbeddedCertPassword: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalId: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    tenant: any(Azure.Bicep.Types.Concrete.AnyType)
    tokenEndpoint: any(Azure.Bicep.Types.Concrete.AnyType)
    url: any(Azure.Bicep.Types.Concrete.AnyType)
    userName: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Salesforce,请使用:

{
  type: 'Salesforce'
  typeProperties: {
    apiVersion: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    environmentUrl: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    securityToken: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    username: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 SalesforceMarketingCloud,请使用:

{
  type: 'SalesforceMarketingCloud'
  typeProperties: {
    clientId: any(Azure.Bicep.Types.Concrete.AnyType)
    clientSecret: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    connectionProperties: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    useEncryptedEndpoints: any(Azure.Bicep.Types.Concrete.AnyType)
    useHostVerification: any(Azure.Bicep.Types.Concrete.AnyType)
    usePeerVerification: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 SalesforceServiceCloud,请使用:

{
  type: 'SalesforceServiceCloud'
  typeProperties: {
    apiVersion: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    environmentUrl: any(Azure.Bicep.Types.Concrete.AnyType)
    extendedProperties: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    securityToken: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    username: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 SalesforceServiceCloudV2,请使用:

{
  type: 'SalesforceServiceCloudV2'
  typeProperties: {
    apiVersion: any(Azure.Bicep.Types.Concrete.AnyType)
    authenticationType: any(Azure.Bicep.Types.Concrete.AnyType)
    clientId: any(Azure.Bicep.Types.Concrete.AnyType)
    clientSecret: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential: 'string'
    environmentUrl: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 SalesforceV2,请使用:

{
  type: 'SalesforceV2'
  typeProperties: {
    apiVersion: any(Azure.Bicep.Types.Concrete.AnyType)
    authenticationType: any(Azure.Bicep.Types.Concrete.AnyType)
    clientId: any(Azure.Bicep.Types.Concrete.AnyType)
    clientSecret: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential: 'string'
    environmentUrl: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 SapBW,请使用:

{
  type: 'SapBW'
  typeProperties: {
    clientId: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    server: any(Azure.Bicep.Types.Concrete.AnyType)
    systemNumber: any(Azure.Bicep.Types.Concrete.AnyType)
    userName: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 sapCloudForCustomer,请使用:

{
  type: 'SapCloudForCustomer'
  typeProperties: {
    encryptedCredential: 'string'
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    url: any(Azure.Bicep.Types.Concrete.AnyType)
    username: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 SapEcc,请使用:

{
  type: 'SapEcc'
  typeProperties: {
    encryptedCredential: 'string'
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    url: any(Azure.Bicep.Types.Concrete.AnyType)
    username: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 SapHana,请使用:

{
  type: 'SapHana'
  typeProperties: {
    authenticationType: 'string'
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    server: any(Azure.Bicep.Types.Concrete.AnyType)
    userName: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 sapOdp,请使用:

{
  type: 'SapOdp'
  typeProperties: {
    clientId: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    language: any(Azure.Bicep.Types.Concrete.AnyType)
    logonGroup: any(Azure.Bicep.Types.Concrete.AnyType)
    messageServer: any(Azure.Bicep.Types.Concrete.AnyType)
    messageServerService: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    server: any(Azure.Bicep.Types.Concrete.AnyType)
    sncLibraryPath: any(Azure.Bicep.Types.Concrete.AnyType)
    sncMode: any(Azure.Bicep.Types.Concrete.AnyType)
    sncMyName: any(Azure.Bicep.Types.Concrete.AnyType)
    sncPartnerName: any(Azure.Bicep.Types.Concrete.AnyType)
    sncQop: any(Azure.Bicep.Types.Concrete.AnyType)
    subscriberName: any(Azure.Bicep.Types.Concrete.AnyType)
    systemId: any(Azure.Bicep.Types.Concrete.AnyType)
    systemNumber: any(Azure.Bicep.Types.Concrete.AnyType)
    userName: any(Azure.Bicep.Types.Concrete.AnyType)
    x509CertificatePath: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 SapOpenHub,请使用:

{
  type: 'SapOpenHub'
  typeProperties: {
    clientId: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    language: any(Azure.Bicep.Types.Concrete.AnyType)
    logonGroup: any(Azure.Bicep.Types.Concrete.AnyType)
    messageServer: any(Azure.Bicep.Types.Concrete.AnyType)
    messageServerService: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    server: any(Azure.Bicep.Types.Concrete.AnyType)
    systemId: any(Azure.Bicep.Types.Concrete.AnyType)
    systemNumber: any(Azure.Bicep.Types.Concrete.AnyType)
    userName: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 SapTable,请使用:

{
  type: 'SapTable'
  typeProperties: {
    clientId: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    language: any(Azure.Bicep.Types.Concrete.AnyType)
    logonGroup: any(Azure.Bicep.Types.Concrete.AnyType)
    messageServer: any(Azure.Bicep.Types.Concrete.AnyType)
    messageServerService: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    server: any(Azure.Bicep.Types.Concrete.AnyType)
    sncLibraryPath: any(Azure.Bicep.Types.Concrete.AnyType)
    sncMode: any(Azure.Bicep.Types.Concrete.AnyType)
    sncMyName: any(Azure.Bicep.Types.Concrete.AnyType)
    sncPartnerName: any(Azure.Bicep.Types.Concrete.AnyType)
    sncQop: any(Azure.Bicep.Types.Concrete.AnyType)
    systemId: any(Azure.Bicep.Types.Concrete.AnyType)
    systemNumber: any(Azure.Bicep.Types.Concrete.AnyType)
    userName: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 ServiceNow,请使用:

{
  type: 'ServiceNow'
  typeProperties: {
    authenticationType: 'string'
    clientId: any(Azure.Bicep.Types.Concrete.AnyType)
    clientSecret: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential: 'string'
    endpoint: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    useEncryptedEndpoints: any(Azure.Bicep.Types.Concrete.AnyType)
    useHostVerification: any(Azure.Bicep.Types.Concrete.AnyType)
    usePeerVerification: any(Azure.Bicep.Types.Concrete.AnyType)
    username: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 ServiceNowV2,请使用:

{
  type: 'ServiceNowV2'
  typeProperties: {
    authenticationType: 'string'
    clientId: any(Azure.Bicep.Types.Concrete.AnyType)
    clientSecret: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential: 'string'
    endpoint: any(Azure.Bicep.Types.Concrete.AnyType)
    grantType: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    username: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Sftp,请使用:

{
  type: 'Sftp'
  typeProperties: {
    authenticationType: 'string'
    encryptedCredential: 'string'
    host: any(Azure.Bicep.Types.Concrete.AnyType)
    hostKeyFingerprint: any(Azure.Bicep.Types.Concrete.AnyType)
    passPhrase: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    port: any(Azure.Bicep.Types.Concrete.AnyType)
    privateKeyContent: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    privateKeyPath: any(Azure.Bicep.Types.Concrete.AnyType)
    skipHostKeyValidation: any(Azure.Bicep.Types.Concrete.AnyType)
    userName: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 SharePointOnlineList,请使用:

{
  type: 'SharePointOnlineList'
  typeProperties: {
    encryptedCredential: 'string'
    servicePrincipalCredentialType: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalEmbeddedCert: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalEmbeddedCertPassword: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalId: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    siteUrl: any(Azure.Bicep.Types.Concrete.AnyType)
    tenantId: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Shopify,请使用:

{
  type: 'Shopify'
  typeProperties: {
    accessToken: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential: 'string'
    host: any(Azure.Bicep.Types.Concrete.AnyType)
    useEncryptedEndpoints: any(Azure.Bicep.Types.Concrete.AnyType)
    useHostVerification: any(Azure.Bicep.Types.Concrete.AnyType)
    usePeerVerification: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Smartsheet,请使用:

{
  type: 'Smartsheet'
  typeProperties: {
    apiToken: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential: 'string'
  }
}

对于 Snowflake,请使用:

{
  type: 'Snowflake'
  typeProperties: {
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    password: {
      secretName: any(Azure.Bicep.Types.Concrete.AnyType)
      secretVersion: any(Azure.Bicep.Types.Concrete.AnyType)
      store: {
        parameters: {
          {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
        }
        referenceName: 'string'
        type: 'string'
      }
      type: 'string'
    }
  }
}

对于 SnowflakeV2,请使用:

{
  type: 'SnowflakeV2'
  typeProperties: {
    accountIdentifier: any(Azure.Bicep.Types.Concrete.AnyType)
    authenticationType: 'string'
    clientId: any(Azure.Bicep.Types.Concrete.AnyType)
    clientSecret: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    database: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    host: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    privateKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    privateKeyPassphrase: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    scope: any(Azure.Bicep.Types.Concrete.AnyType)
    tenantId: any(Azure.Bicep.Types.Concrete.AnyType)
    user: any(Azure.Bicep.Types.Concrete.AnyType)
    warehouse: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Spark,请使用:

{
  type: 'Spark'
  typeProperties: {
    allowHostNameCNMismatch: any(Azure.Bicep.Types.Concrete.AnyType)
    allowSelfSignedServerCert: any(Azure.Bicep.Types.Concrete.AnyType)
    authenticationType: 'string'
    enableSsl: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    host: any(Azure.Bicep.Types.Concrete.AnyType)
    httpPath: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    port: any(Azure.Bicep.Types.Concrete.AnyType)
    serverType: 'string'
    thriftTransportProtocol: 'string'
    trustedCertPath: any(Azure.Bicep.Types.Concrete.AnyType)
    username: any(Azure.Bicep.Types.Concrete.AnyType)
    useSystemTrustStore: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 sqlServer,请使用:

{
  type: 'SqlServer'
  typeProperties: {
    alwaysEncryptedSettings: {
      alwaysEncryptedAkvAuthType: 'string'
      credential: {
        referenceName: 'string'
        type: 'string'
      }
      servicePrincipalId: any(Azure.Bicep.Types.Concrete.AnyType)
      servicePrincipalKey: {
        type: 'string'
        // For remaining properties, see SecretBase objects
      }
    }
    applicationIntent: any(Azure.Bicep.Types.Concrete.AnyType)
    authenticationType: 'string'
    commandTimeout: any(Azure.Bicep.Types.Concrete.AnyType)
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    connectRetryCount: any(Azure.Bicep.Types.Concrete.AnyType)
    connectRetryInterval: any(Azure.Bicep.Types.Concrete.AnyType)
    connectTimeout: any(Azure.Bicep.Types.Concrete.AnyType)
    credential: {
      referenceName: 'string'
      type: 'string'
    }
    database: any(Azure.Bicep.Types.Concrete.AnyType)
    encrypt: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    failoverPartner: any(Azure.Bicep.Types.Concrete.AnyType)
    hostNameInCertificate: any(Azure.Bicep.Types.Concrete.AnyType)
    integratedSecurity: any(Azure.Bicep.Types.Concrete.AnyType)
    loadBalanceTimeout: any(Azure.Bicep.Types.Concrete.AnyType)
    maxPoolSize: any(Azure.Bicep.Types.Concrete.AnyType)
    minPoolSize: any(Azure.Bicep.Types.Concrete.AnyType)
    multipleActiveResultSets: any(Azure.Bicep.Types.Concrete.AnyType)
    multiSubnetFailover: any(Azure.Bicep.Types.Concrete.AnyType)
    packetSize: any(Azure.Bicep.Types.Concrete.AnyType)
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    pooling: any(Azure.Bicep.Types.Concrete.AnyType)
    server: any(Azure.Bicep.Types.Concrete.AnyType)
    trustServerCertificate: any(Azure.Bicep.Types.Concrete.AnyType)
    userName: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 平方,请使用:

{
  type: 'Square'
  typeProperties: {
    clientId: any(Azure.Bicep.Types.Concrete.AnyType)
    clientSecret: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    connectionProperties: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    host: any(Azure.Bicep.Types.Concrete.AnyType)
    redirectUri: any(Azure.Bicep.Types.Concrete.AnyType)
    useEncryptedEndpoints: any(Azure.Bicep.Types.Concrete.AnyType)
    useHostVerification: any(Azure.Bicep.Types.Concrete.AnyType)
    usePeerVerification: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Sybase,请使用:

{
  type: 'Sybase'
  typeProperties: {
    authenticationType: 'string'
    database: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    schema: any(Azure.Bicep.Types.Concrete.AnyType)
    server: any(Azure.Bicep.Types.Concrete.AnyType)
    username: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 TeamDesk,请使用:

{
  type: 'TeamDesk'
  typeProperties: {
    apiToken: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    authenticationType: 'string'
    encryptedCredential: 'string'
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    url: any(Azure.Bicep.Types.Concrete.AnyType)
    userName: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Teradata,请使用:

{
  type: 'Teradata'
  typeProperties: {
    authenticationType: 'string'
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    server: any(Azure.Bicep.Types.Concrete.AnyType)
    username: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Twilio,请使用:

{
  type: 'Twilio'
  typeProperties: {
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    userName: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Vertica,请使用:

{
  type: 'Vertica'
  typeProperties: {
    connectionString: any(Azure.Bicep.Types.Concrete.AnyType)
    database: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    port: any(Azure.Bicep.Types.Concrete.AnyType)
    pwd: {
      secretName: any(Azure.Bicep.Types.Concrete.AnyType)
      secretVersion: any(Azure.Bicep.Types.Concrete.AnyType)
      store: {
        parameters: {
          {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
        }
        referenceName: 'string'
        type: 'string'
      }
      type: 'string'
    }
    server: any(Azure.Bicep.Types.Concrete.AnyType)
    uid: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 仓库,请使用:

{
  type: 'Warehouse'
  typeProperties: {
    artifactId: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    endpoint: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalCredential: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalCredentialType: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalId: any(Azure.Bicep.Types.Concrete.AnyType)
    servicePrincipalKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    tenant: any(Azure.Bicep.Types.Concrete.AnyType)
    workspaceId: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Web,请使用:

{
  type: 'Web'
  typeProperties: {
    url: any(Azure.Bicep.Types.Concrete.AnyType)
    authenticationType: 'string'
    // For remaining properties, see WebLinkedServiceTypeProperties objects
  }
}

对于 Xero,请使用:

{
  type: 'Xero'
  typeProperties: {
    connectionProperties: any(Azure.Bicep.Types.Concrete.AnyType)
    consumerKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential: 'string'
    host: any(Azure.Bicep.Types.Concrete.AnyType)
    privateKey: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    useEncryptedEndpoints: any(Azure.Bicep.Types.Concrete.AnyType)
    useHostVerification: any(Azure.Bicep.Types.Concrete.AnyType)
    usePeerVerification: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Zendesk,请使用:

{
  type: 'Zendesk'
  typeProperties: {
    apiToken: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    authenticationType: 'string'
    encryptedCredential: 'string'
    password: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    url: any(Azure.Bicep.Types.Concrete.AnyType)
    userName: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

对于 Zoho,请使用:

{
  type: 'Zoho'
  typeProperties: {
    accessToken: {
      type: 'string'
      // For remaining properties, see SecretBase objects
    }
    connectionProperties: any(Azure.Bicep.Types.Concrete.AnyType)
    encryptedCredential: 'string'
    endpoint: any(Azure.Bicep.Types.Concrete.AnyType)
    useEncryptedEndpoints: any(Azure.Bicep.Types.Concrete.AnyType)
    useHostVerification: any(Azure.Bicep.Types.Concrete.AnyType)
    usePeerVerification: any(Azure.Bicep.Types.Concrete.AnyType)
  }
}

SecretBase 对象

设置 类型 属性以指定对象的类型。

对于 AzureKeyVaultSecret,请使用:

{
  secretName: any(Azure.Bicep.Types.Concrete.AnyType)
  secretVersion: any(Azure.Bicep.Types.Concrete.AnyType)
  store: {
    parameters: {
      {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
    }
    referenceName: 'string'
    type: 'string'
  }
  type: 'AzureKeyVaultSecret'
}

对于 SecureString,请使用:

{
  type: 'SecureString'
  value: 'string'
}

属性值

AmazonMWSLinkedService

名字 描述 价值
类型 链接服务的类型。 “AmazonMWS”(必需)
typeProperties Amazon Marketplace Web Service 链接服务属性。 AmazonMWSLinkedServiceTypeProperties(必需)

AmazonMWSLinkedServiceTypeProperties

名字 描述 价值
accessKeyId 用于访问数据的访问密钥 ID。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
端点 AmazonMWS 服务器的终结点(即 mws.amazonservices.com) 任何(必需)
marketplaceID 要从中检索数据的 Amazon 市场 ID。 若要从多个市场 ID 检索数据,请用逗号(,)将它们分隔开来。 (即A2EUQ1WTGCTBG2) 任何(必需)
mwsAuthToken AmazonMWS 身份验证令牌。 SecretBase
secretKey 用于访问数据的密钥。 SecretBase
sellerID 亚马逊卖家 ID。 任何(必需)
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何

AmazonRdsForLinkedServiceTypeProperties

名字 描述 价值
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 连接字符串中密码的 Azure Key Vault 机密引用。 SecretBase

AmazonRdsForOracleLinkedService

名字 描述 价值
类型 链接服务的类型。 “AmazonRdsForOracle”(必需)
typeProperties AmazonRdsForOracle 数据库链接服务属性。 AmazonRdsForLinkedServiceTypeProperties (必需)

AmazonRdsForSqlServerLinkedService

名字 描述 价值
类型 链接服务的类型。 “AmazonRdsForSqlServer”(必需)
typeProperties Amazon RDS for SQL Server 链接服务属性。 AmazonRdsForSqlServerLinkedServiceTypeProperties (必需)

AmazonRdsForSqlServerLinkedServiceTypeProperties

名字 描述 价值
alwaysEncryptedSettings Sql 始终加密属性。 SqlAlwaysEncryptedProperties
applicationIntent 连接到服务器时的应用程序工作负荷类型,由建议的版本使用。 可能的值为 ReadOnly 和 ReadWrite。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于身份验证的类型。 类型:字符串。 “SQL”
“Windows”
commandTimeout 在终止尝试执行命令并生成错误之前(以秒为单位)的默认等待时间(以秒为单位),由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
connectRetryCount 确定有空闲连接失败(由建议的版本使用)后尝试的重新连接数。 这必须是介于 0 和 255 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectRetryInterval 确定建议的版本使用空闲连接失败后,每个重新连接尝试之间的时间(以秒为单位)。 这必须是介于 1 和 60 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectTimeout 在终止尝试并生成由建议版本使用的错误之前,等待与服务器的连接的时间长度(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
数据库 建议的版本使用的数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
加密 指示客户端和服务器之间发送的所有数据是否需要 TLS 加密(由建议的版本使用)。 可能的值为 true/yes/mandatory、false/no/optional 和 strict。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
failoverPartner 如果主服务器关闭(由建议的版本使用)连接到的伙伴服务器的名称或地址。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
hostNameInCertificate 验证连接的服务器证书时要使用的主机名。 如果未指定,则数据源中的服务器名称用于证书验证,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
integratedSecurity 指示是否在连接(如果为 false)中指定用户 ID 和密码,或者当前 Windows 帐户凭据是否用于身份验证(如果为 true),由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
loadBalanceTimeout 在被建议的版本使用之前,连接在连接池中生存的最短时间(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
maxPoolSize 此特定连接字符串的连接池中允许的最大连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
minPoolSize 此特定连接字符串的连接池中允许的最小连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
multipleActiveResultSets 如果为 true,应用程序可以维护多个活动结果集(MARS)。 如果为 false,应用程序必须处理或取消一个批处理中的所有结果集,然后才能在该连接上执行任何其他批处理(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
multiSubnetFailover 如果应用程序连接到不同子网上的 AlwaysOn 可用性组(AG),则设置 MultiSubnetFailover=true 可以更快地检测和连接到(当前)活动服务器(当前)活动服务器(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
packetSize 用于与服务器实例通信的网络数据包的大小(以字节为单位,由建议的版本使用)。 类型:整数(或包含 resultType 整数的表达式)。 任何
密码 本地 Windows 身份验证密码。 SecretBase
指示每次请求连接时,连接是共用的还是显式打开的,由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
服务器 要连接到的 SQL Server 实例的名称或网络地址,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
trustServerCertificate 指示通道是否在绕过证书链来验证推荐版本使用的信任时是否加密通道。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
userName 本地 Windows 身份验证用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AmazonRedshiftLinkedService

名字 描述 价值
类型 链接服务的类型。 “AmazonRedshift”(必需)
typeProperties Amazon Redshift 链接服务属性。 AmazonRedshiftLinkedServiceTypeProperties(必需)

AmazonRedshiftLinkedServiceTypeProperties

名字 描述 价值
数据库 Amazon Redshift 源的数据库名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 Amazon Redshift 源的密码。 SecretBase
港口 Amazon Redshift 服务器用来侦听客户端连接的 TCP 端口号。 默认值为 5439。 类型:整数(或包含 resultType 整数的表达式)。 任何
服务器 Amazon Redshift 服务器的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
username Amazon Redshift 源的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AmazonS3CompatibleLinkedService

名字 描述 价值
类型 链接服务的类型。 “AmazonS3Compatible”(必需)
typeProperties Amazon S3 兼容链接服务属性。 AmazonS3CompatibleLinkedServiceTypeProperties (必需)

AmazonS3CompatibleLinkedServiceTypeProperties

名字 描述 价值
accessKeyId Amazon S3 兼容标识和访问管理(IAM)用户的访问密钥标识符。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
forcePathStyle 如果为 true,请使用 S3 路径样式访问,而不是虚拟托管样式的访问。 默认值为 false。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
secretAccessKey Amazon S3 兼容标识和访问管理 (IAM) 用户的机密访问密钥。 SecretBase
serviceUrl 此值指定要使用 Amazon S3 兼容连接器访问的终结点。 这是一个可选属性;仅当想要尝试其他服务终结点或想要在 https 和 http 之间切换时更改它。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AmazonS3LinkedService

名字 描述 价值
类型 链接服务的类型。 “AmazonS3”(必需)
typeProperties Amazon S3 链接服务属性。 AmazonS3LinkedServiceTypeProperties(必需)

AmazonS3LinkedServiceTypeProperties

名字 描述 价值
accessKeyId Amazon S3 标识和访问管理(IAM)用户的访问密钥标识符。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType S3 的身份验证类型。 允许的值:AccessKey(默认值)或 TemporarySecurityCredentials。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
secretAccessKey Amazon S3 标识和访问管理(IAM)用户的机密访问密钥。 SecretBase
serviceUrl 此值指定要使用 S3 连接器访问的终结点。 这是一个可选属性;仅当想要尝试其他服务终结点或想要在 https 和 http 之间切换时更改它。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sessionToken S3 临时安全凭据的会话令牌。 SecretBase

AppFiguresLinkedService

名字 描述 价值
类型 链接服务的类型。 “AppFigures”(必需)
typeProperties AppFigures 链接服务属性。 AppFiguresLinkedServiceTypeProperties(必需)

AppFiguresLinkedServiceTypeProperties

名字 描述 价值
clientKey AppFigures 源的客户端密钥。 SecretBase(必需)
密码 AppFigures 源的密码。 SecretBase(必需)
userName Appfigures 源的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

AsanaLinkedService

名字 描述 价值
类型 链接服务的类型。 “Asana”(必需)
typeProperties Asana 链接服务属性。 AsanaLinkedServiceTypeProperties (必需)

AsanaLinkedServiceTypeProperties

名字 描述 价值
apiToken Asana 源的 API 令牌。 SecretBase(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串

AzureBatchLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureBatch”(必需)
typeProperties Azure Batch 链接服务属性。 AzureBatchLinkedServiceTypeProperties (必需)

AzureBatchLinkedServiceTypeProperties

名字 描述 价值
accessKey Azure Batch 帐户访问密钥。 SecretBase
accountName Azure Batch 帐户名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
batchUri Azure Batch URI。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
凭据 包含身份验证信息的凭据引用。 CredentialReference
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
linkedServiceName Azure 存储链接服务参考。 LinkedServiceReference(必需)
poolName Azure Batch 池名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

AzureBlobFSLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureBlobFS”(必需)
typeProperties Azure Data Lake Storage Gen2 链接服务属性。 AzureBlobFSLinkedServiceTypeProperties(必需)

AzureBlobFSLinkedServiceTypeProperties

名字 描述 价值
accountKey Azure Data Lake Storage Gen2 服务的帐户密钥。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
azureCloudType 指示服务主体身份验证的 Azure 云类型。允许的值为 AzurePublic、AzureChina、AzureUsGovernment、AzureGermany。 默认值为数据工厂区域的云类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
sasToken sasToken 的 Azure 密钥保管库机密引用在 sas uri 中。 SecretBase
sasUri Azure Data Lake Storage Gen2 服务的 SAS URI。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId 用于对 Azure Data Lake Storage Gen2 帐户进行身份验证的应用程序的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Azure Data Lake Storage Gen2 帐户进行身份验证的应用程序密钥。 SecretBase
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
url Azure Data Lake Storage Gen2 服务的终结点。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureBlobStorageLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureBlobStorage”(必需)
typeProperties Azure Blob 存储链接服务属性。 AzureBlobStorageLinkedServiceTypeProperties(必需)

AzureBlobStorageLinkedServiceTypeProperties

名字 描述 价值
accountKey 连接字符串中 accountKey 的 Azure 密钥保管库机密引用。 AzureKeyVaultSecretReference
accountKind 指定存储帐户的类型。 允许的值为:存储(常规用途 v1)、StorageV2(常规用途 v2)、BlobStorage 或 BlockBlobStorage。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于身份验证的类型。 类型:字符串。 “AccountKey”
“Anonymous”
“Msi”
“SasUri”
“ServicePrincipal”
azureCloudType 指示服务主体身份验证的 Azure 云类型。允许的值为 AzurePublic、AzureChina、AzureUsGovernment、AzureGermany。 默认值为数据工厂区域的云类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
connectionString 连接字符串。 它与 sasUri、serviceEndpoint 属性互斥。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
containerUri Azure Blob 存储资源的容器 URI 仅支持匿名访问。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
sasToken sasToken 的 Azure 密钥保管库机密引用在 sas uri 中。 AzureKeyVaultSecretReference
sasUri Azure Blob 存储资源的 SAS URI。 它与 connectionString、serviceEndpoint 属性互斥。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
serviceEndpoint Azure Blob 存储资源的 Blob 服务终结点。 它与 connectionString、sasUri 属性互斥。 任何
servicePrincipalId 用于对 Azure SQL 数据仓库进行身份验证的服务主体的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Azure SQL 数据仓库进行身份验证的服务主体的密钥。 SecretBase
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureDatabricksDeltaLakeLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureDatabricksDeltaLake”(必需)
typeProperties Azure Databricks Delta Lake 链接服务属性。 AzureDatabricksDetltaLakeLinkedServiceTypeProperties (必需)

AzureDatabricksDetltaLakeLinkedServiceTypeProperties

名字 描述 价值
accessToken databricks REST API 的访问令牌。 请参阅 https://docs.azuredatabricks.net/api/latest/authentication.html。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 SecretBase
clusterId 将用于此作业的所有运行的现有交互式群集的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
<区域>.azuredatabricks.net,即 Databricks 部署的域名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
workspaceResourceId databricks REST API 的工作区资源 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureDatabricksLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureDatabricks”(必需)
typeProperties Azure Databricks 链接服务属性。 AzureDatabricksLinkedServiceTypeProperties(必需)

AzureDatabricksLinkedServiceTypeProperties

名字 描述 价值
accessToken databricks REST API 的访问令牌。 请参阅 https://docs.azuredatabricks.net/api/latest/authentication.html。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
认证 如果对 databricks REST API 使用工作区资源 ID,则需要指定 MSI。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
<区域>.azuredatabricks.net,即 Databricks 部署的域名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
existingClusterId 将用于此活动的所有运行的现有交互式群集的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
instancePoolId 将用于此活动的所有运行的现有实例池的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
newClusterCustomTags 群集资源的其他标记。 实例池配置中忽略此属性。 AzureDatabricksLinkedServiceTypePropertiesNewClusterCustomTags
newClusterDriverNodeType 新作业群集的驱动程序节点类型。 实例池配置中忽略此属性。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
newClusterEnableElasticDisk 在新群集上启用弹性磁盘。 此属性现已被忽略,并采用 Databricks 中的默认弹性磁盘行为(始终启用弹性磁盘)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
newClusterInitScripts 新群集的用户定义的初始化脚本。 类型:字符串数组(或包含字符串 resultType 数组的表达式)。 任何
newClusterLogDestination 指定用于传送 Spark 驱动程序、辅助角色和事件日志的位置。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
newClusterNodeType 新作业群集的节点类型。 如果指定 newClusterVersion 且未指定 instancePoolId,则此属性是必需的。 如果指定了 instancePoolId,则忽略此属性。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
newClusterNumOfWorker 如果未使用现有的交互式群集,则指定用于新作业群集或实例池的工作器节点数。 对于新的作业群集,此字符串格式的 Int32(如“1”表示 numOfWorker 为 1 或“1:10”表示从 1(最小值)自动缩放到 10(最大值)。 例如,池是字符串格式的 Int32,只能指定固定数量的工作节点,例如“2”。 如果指定 newClusterVersion,则为必需。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
newClusterSparkConf 一组可选的用户指定的 Spark 配置键值对。 AzureDatabricksLinkedServiceTypePropertiesNewClusterSparkConf
newClusterSparkEnvVars 一组可选的用户指定的 Spark 环境变量键值对。 AzureDatabricksLinkedServiceTypePropertiesNewClusterSparkEnvVars
newClusterVersion 如果未使用现有的交互式群集,则指定为此活动的每个运行创建的新作业群集或实例池节点的 Spark 版本。 如果指定了 instancePoolId,则为必需。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
policyId 用于限制基于用户定义的规则集配置群集的功能的策略 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
workspaceResourceId databricks REST API 的工作区资源 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureDatabricksLinkedServiceTypePropertiesNewClusterCustomTags

名字 描述 价值

AzureDatabricksLinkedServiceTypePropertiesNewClusterSparkConf

名字 描述 价值

AzureDatabricksLinkedServiceTypePropertiesNewClusterSparkEnvVars

名字 描述 价值

AzureDataExplorerLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureDataExplorer”(必需)
typeProperties Azure 数据资源管理器(Kusto)链接服务属性。 AzureDataExplorerLinkedServiceTypeProperties(必需)

AzureDataExplorerLinkedServiceTypeProperties

名字 描述 价值
凭据 包含身份验证信息的凭据引用。 CredentialReference
数据库 连接的数据库名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
端点 Azure 数据资源管理器的终结点(引擎的终结点)。 URL 的格式为 clusterName>https://<。<regionName>.kusto.windows.net。 类型:字符串(或带有 resultType 字符串的表达式) 任何(必需)
servicePrincipalId 用于对 Azure 数据资源管理器进行身份验证的服务主体的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Kusto 进行身份验证的服务主体的密钥。 SecretBase
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureDataLakeAnalyticsLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureDataLakeAnalytics”(必需)
typeProperties Azure Data Lake Analytics 链接服务属性。 AzureDataLakeAnalyticsLinkedServiceTypeProperties (必需)

AzureDataLakeAnalyticsLinkedServiceTypeProperties

名字 描述 价值
accountName Azure Data Lake Analytics 帐户名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
dataLakeAnalyticsUri Azure Data Lake Analytics URI 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
resourceGroupName Data Lake Analytics 帐户资源组名称(如果不同于数据工厂帐户)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId 用于对 Azure Data Lake Analytics 帐户进行身份验证的应用程序 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Azure Data Lake Analytics 帐户进行身份验证的应用程序密钥。 SecretBase
subscriptionId Data Lake Analytics 帐户订阅 ID(如果不同于数据工厂帐户)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

AzureDataLakeStoreLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureDataLakeStore”(必需)
typeProperties Azure Data Lake Store 链接服务属性。 AzureDataLakeStoreLinkedServiceTypeProperties(必需)

AzureDataLakeStoreLinkedServiceTypeProperties

名字 描述 价值
accountName Data Lake Store 帐户名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
azureCloudType 指示服务主体身份验证的 Azure 云类型。允许的值为 AzurePublic、AzureChina、AzureUsGovernment、AzureGermany。 默认值为数据工厂区域的云类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
dataLakeStoreUri Data Lake Store 服务 URI。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
resourceGroupName Data Lake Store 帐户资源组名称(如果不同于数据工厂帐户)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId 用于对 Azure Data Lake Store 帐户进行身份验证的应用程序的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Azure Data Lake Store 帐户进行身份验证的应用程序密钥。 SecretBase
subscriptionId Data Lake Store 帐户订阅 ID(如果不同于数据工厂帐户)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureFileStorageLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureFileStorage”(必需)
typeProperties Azure 文件存储链接服务属性。 AzureFileStorageLinkedServiceTypeProperties(必需)

AzureFileStorageLinkedServiceTypeProperties

名字 描述 价值
accountKey 连接字符串中 accountKey 的 Azure 密钥保管库机密引用。 AzureKeyVaultSecretReference
connectionString 连接字符串。 它与 sasUri 属性互斥。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
fileShare Azure 文件共享名称。 使用 accountKey/sasToken 进行身份验证时需要它。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
主机 服务器的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 用于登录服务器的密码。 SecretBase
sasToken sasToken 的 Azure 密钥保管库机密引用在 sas uri 中。 AzureKeyVaultSecretReference
sasUri Azure 文件资源的 SAS URI。 它与 connectionString 属性互斥。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
serviceEndpoint Azure 文件存储资源的文件服务终结点。 它与 connectionString、sasUri 属性互斥。 任何
快照 Azure 文件共享快照版本。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
userId 用于登录服务器的用户 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureFunctionLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureFunction”(必需)
typeProperties Azure Function 链接服务属性。 AzureFunctionLinkedServiceTypeProperties (必需)

AzureFunctionLinkedServiceTypeProperties

名字 描述 价值
认证 用于连接到 AzureFunction 的身份验证类型(需要指定 MSI)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
functionAppUrl Azure Function App 的终结点。 URL 的格式为 https://<accountName>.azurewebsites.net。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
functionKey Azure Function App 的函数或主机密钥。 SecretBase
resourceId Azure 函数的允许令牌访问群体。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureKeyVaultLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureKeyVault”(必需)
typeProperties Azure Key Vault 链接服务属性。 AzureKeyVaultLinkedServiceTypeProperties(必需)

AzureKeyVaultLinkedServiceTypeProperties

名字 描述 价值
baseUrl Azure Key Vault 的基 URL。 例如 https://myakv.vault.azure.net 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
凭据 包含身份验证信息的凭据引用。 CredentialReference

AzureKeyVaultSecretReference

名字 描述 价值
secretName Azure Key Vault 中机密的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
secretVersion Azure Key Vault 中的机密版本。 默认值为最新版本的机密。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
商店 Azure Key Vault 链接服务参考。 LinkedServiceReference(必需)
类型 机密的类型。 string (必需)

AzureKeyVaultSecretReference

名字 描述 价值
secretName Azure Key Vault 中机密的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
secretVersion Azure Key Vault 中的机密版本。 默认值为最新版本的机密。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
商店 Azure Key Vault 链接服务参考。 LinkedServiceReference(必需)
类型 机密的类型。 “AzureKeyVaultSecret”(必需)

AzureMariaDBLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureMariaDB”(必需)
typeProperties Azure Database for MariaDB 链接服务属性。 AzureMariaDBLinkedServiceTypeProperties(必需)

AzureMariaDBLinkedServiceTypeProperties

名字 描述 价值
connectionString ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
pwd 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference

AzureMLLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureML”(必需)
typeProperties Azure ML Studio Web 服务链接服务属性。 AzureMLLinkedServiceTypeProperties (必需)

AzureMLLinkedServiceTypeProperties

名字 描述 价值
apiKey 用于访问 Azure ML 模型终结点的 API 密钥。 SecretBase(必需)
认证 用于连接到 AzureML 的身份验证类型(需要指定 MSI)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
mlEndpoint Azure ML Studio Web 服务终结点的批处理执行 REST URL。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
servicePrincipalId 用于针对 Azure ML Studio Web 服务的基于 ARM 的 updateResourceEndpoint 进行身份验证的服务主体的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于针对 Azure ML Studio Web 服务的基于 ARM 的 updateResourceEndpoint 进行身份验证的服务主体的密钥。 SecretBase
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
updateResourceEndpoint Azure ML Studio Web 服务终结点的更新资源 REST URL。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureMLServiceLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureMLService”(必需)
typeProperties Azure ML 服务链接服务属性。 AzureMLServiceLinkedServiceTypeProperties (必需)

AzureMLServiceLinkedServiceTypeProperties

名字 描述 价值
认证 用于连接到 AzureML 的身份验证类型(需要指定 MSI)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
mlWorkspaceName Azure ML 服务工作区名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
resourceGroupName Azure ML 服务工作区资源组名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
servicePrincipalId 用于针对已发布 Azure ML 服务管道的终结点进行身份验证的服务主体的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于针对已发布 Azure ML 服务管道的终结点进行身份验证的服务主体的密钥。 SecretBase
subscriptionId Azure ML 服务工作区订阅 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureMySqlLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureMySql”(必需)
typeProperties Azure MySQL 数据库链接服务属性。 AzureMySqlLinkedServiceTypeProperties(必需)

AzureMySqlLinkedServiceTypeProperties

名字 描述 价值
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference

AzurePostgreSqlLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzurePostgreSql”(必需)
typeProperties Azure PostgreSQL 链接服务属性。 AzurePostgreSqlLinkedServiceTypeProperties (必需)

AzurePostgreSqlLinkedServiceTypeProperties

名字 描述 价值
commandTimeout 在尝试执行命令之前,等待时间(以秒为单位),然后再终止尝试并生成错误。 对于无穷大,设置为零。 类型:整数。 任何
connectionString ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
数据库 连接的数据库名称。 类型:字符串。 任何
编码 获取或设置用于对 PostgreSQL 字符串数据进行编码/解码的 .NET 编码。 类型:字符串 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference
港口 连接的端口。 类型:整数。 任何
readBufferSize 确定读取时内部缓冲区使用的大小。 如果从数据库传输大型值,则提高性能可能会提高。 类型:整数。 任何
服务器 连接的服务器名称。 类型:字符串。 任何
sslMode 用于连接的 SSL 模式。 类型:整数。 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. 类型:整数。 任何
超时 在终止尝试并生成错误之前,尝试建立连接的时间(以秒为单位)。 类型:整数。 任何
时区 获取或设置会话时区。 类型:字符串。 任何
trustServerCertificate 是否信任服务器证书而不验证它。 类型:布尔值。 任何
username 身份验证的用户名。 类型:字符串。 任何

AzureSearchLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureSearch”(必需)
typeProperties Windows Azure 搜索服务链接服务属性。 AzureSearchLinkedServiceTypeProperties(必需)

AzureSearchLinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
钥匙 Azure 搜索服务的管理密钥 SecretBase
url Azure 搜索服务的 URL。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

AzureSqlDatabaseLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureSqlDatabase”(必需)
typeProperties Azure SQL 数据库链接服务属性。 AzureSqlDatabaseLinkedServiceTypeProperties(必需)

AzureSqlDatabaseLinkedServiceTypeProperties

名字 描述 价值
alwaysEncryptedSettings Sql 始终加密属性。 SqlAlwaysEncryptedProperties
applicationIntent 连接到服务器时的应用程序工作负荷类型,由建议的版本使用。 可能的值为 ReadOnly 和 ReadWrite。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于身份验证的类型。 类型:字符串。 “ServicePrincipal”
“SQL”
“SystemAssignedManagedIdentity”
“UserAssignedManagedIdentity”
azureCloudType 指示服务主体身份验证的 Azure 云类型。允许的值为 AzurePublic、AzureChina、AzureUsGovernment、AzureGermany。 默认值为数据工厂区域的云类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
commandTimeout 在终止尝试执行命令并生成错误之前(以秒为单位)的默认等待时间(以秒为单位),由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
connectRetryCount 确定有空闲连接失败(由建议的版本使用)后尝试的重新连接数。 这必须是介于 0 和 255 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectRetryInterval 确定建议的版本使用空闲连接失败后,每个重新连接尝试之间的时间(以秒为单位)。 这必须是介于 1 和 60 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectTimeout 在终止尝试并生成由建议版本使用的错误之前,等待与服务器的连接的时间长度(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
数据库 建议的版本使用的数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
加密 指示客户端和服务器之间发送的所有数据是否需要 TLS 加密(由建议的版本使用)。 可能的值为 true/yes/mandatory、false/no/optional 和 strict。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
failoverPartner 如果主服务器关闭(由建议的版本使用)连接到的伙伴服务器的名称或地址。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
hostNameInCertificate 验证连接的服务器证书时要使用的主机名。 如果未指定,则数据源中的服务器名称用于证书验证,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
integratedSecurity 指示是否在连接(如果为 false)中指定用户 ID 和密码,或者当前 Windows 帐户凭据是否用于身份验证(如果为 true),由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
loadBalanceTimeout 在被建议的版本使用之前,连接在连接池中生存的最短时间(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
maxPoolSize 此特定连接字符串的连接池中允许的最大连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
minPoolSize 此特定连接字符串的连接池中允许的最小连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
multipleActiveResultSets 如果为 true,应用程序可以维护多个活动结果集(MARS)。 如果为 false,应用程序必须处理或取消一个批处理中的所有结果集,然后才能在该连接上执行任何其他批处理(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
multiSubnetFailover 如果应用程序连接到不同子网上的 AlwaysOn 可用性组(AG),则设置 MultiSubnetFailover=true 可以更快地检测和连接到(当前)活动服务器(当前)活动服务器(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
packetSize 用于与服务器实例通信的网络数据包的大小(以字节为单位,由建议的版本使用)。 类型:整数(或包含 resultType 整数的表达式)。 任何
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference
指示每次请求连接时,连接是共用的还是显式打开的,由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
服务器 要连接到的 SQL Server 实例的名称或网络地址,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId 用于对 Azure SQL 数据库进行身份验证的服务主体的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Azure SQL 数据库进行身份验证的服务主体的密钥。 SecretBase
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
trustServerCertificate 指示通道是否在绕过证书链来验证推荐版本使用的信任时是否加密通道。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
userName 连接到服务器时要使用的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureSqlDWLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureSqlDW”(必需)
typeProperties Azure SQL 数据仓库链接服务属性。 AzureSqlDWLinkedServiceTypeProperties (必需)

AzureSqlDWLinkedServiceTypeProperties

名字 描述 价值
applicationIntent 连接到服务器时的应用程序工作负荷类型,由建议的版本使用。 可能的值为 ReadOnly 和 ReadWrite。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于身份验证的类型。 类型:字符串。 “ServicePrincipal”
“SQL”
“SystemAssignedManagedIdentity”
“UserAssignedManagedIdentity”
azureCloudType 指示服务主体身份验证的 Azure 云类型。允许的值为 AzurePublic、AzureChina、AzureUsGovernment、AzureGermany。 默认值为数据工厂区域的云类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
commandTimeout 在终止尝试执行命令并生成错误之前(以秒为单位)的默认等待时间(以秒为单位),由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
connectRetryCount 确定有空闲连接失败(由建议的版本使用)后尝试的重新连接数。 这必须是介于 0 和 255 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectRetryInterval 确定建议的版本使用空闲连接失败后,每个重新连接尝试之间的时间(以秒为单位)。 这必须是介于 1 和 60 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectTimeout 在终止尝试并生成由建议版本使用的错误之前,等待与服务器的连接的时间长度(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
数据库 建议的版本使用的数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
加密 指示客户端和服务器之间发送的所有数据是否需要 TLS 加密(由建议的版本使用)。 可能的值为 true/yes/mandatory、false/no/optional 和 strict。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
failoverPartner 如果主服务器关闭(由建议的版本使用)连接到的伙伴服务器的名称或地址。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
hostNameInCertificate 验证连接的服务器证书时要使用的主机名。 如果未指定,则数据源中的服务器名称用于证书验证,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
integratedSecurity 指示是否在连接(如果为 false)中指定用户 ID 和密码,或者当前 Windows 帐户凭据是否用于身份验证(如果为 true),由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
loadBalanceTimeout 在被建议的版本使用之前,连接在连接池中生存的最短时间(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
maxPoolSize 此特定连接字符串的连接池中允许的最大连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
minPoolSize 此特定连接字符串的连接池中允许的最小连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
multipleActiveResultSets 如果为 true,应用程序可以维护多个活动结果集(MARS)。 如果为 false,应用程序必须处理或取消一个批处理中的所有结果集,然后才能在该连接上执行任何其他批处理(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
multiSubnetFailover 如果应用程序连接到不同子网上的 AlwaysOn 可用性组(AG),则设置 MultiSubnetFailover=true 可以更快地检测和连接到(当前)活动服务器(当前)活动服务器(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
packetSize 用于与服务器实例通信的网络数据包的大小(以字节为单位,由建议的版本使用)。 类型:整数(或包含 resultType 整数的表达式)。 任何
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference
指示每次请求连接时,连接是共用的还是显式打开的,由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
服务器 要连接到的 SQL Server 实例的名称或网络地址,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId 用于对 Azure SQL 数据仓库进行身份验证的服务主体的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Azure SQL 数据仓库进行身份验证的服务主体的密钥。 SecretBase
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
trustServerCertificate 指示通道是否在绕过证书链来验证推荐版本使用的信任时是否加密通道。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
userName 连接到服务器时要使用的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureSqlMILinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureSqlMI”(必需)
typeProperties Azure SQL 托管实例链接服务属性。 AzureSqlMILinkedServiceTypeProperties(必需)

AzureSqlMILinkedServiceTypeProperties

名字 描述 价值
alwaysEncryptedSettings Sql 始终加密属性。 SqlAlwaysEncryptedProperties
applicationIntent 连接到服务器时的应用程序工作负荷类型,由建议的版本使用。 可能的值为 ReadOnly 和 ReadWrite。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于身份验证的类型。 类型:字符串。 “ServicePrincipal”
“SQL”
“SystemAssignedManagedIdentity”
“UserAssignedManagedIdentity”
azureCloudType 指示服务主体身份验证的 Azure 云类型。允许的值为 AzurePublic、AzureChina、AzureUsGovernment、AzureGermany。 默认值为数据工厂区域的云类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
commandTimeout 在终止尝试执行命令并生成错误之前(以秒为单位)的默认等待时间(以秒为单位),由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
connectRetryCount 确定有空闲连接失败(由建议的版本使用)后尝试的重新连接数。 这必须是介于 0 和 255 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectRetryInterval 确定建议的版本使用空闲连接失败后,每个重新连接尝试之间的时间(以秒为单位)。 这必须是介于 1 和 60 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectTimeout 在终止尝试并生成由建议版本使用的错误之前,等待与服务器的连接的时间长度(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
数据库 建议的版本使用的数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
加密 指示客户端和服务器之间发送的所有数据是否需要 TLS 加密(由建议的版本使用)。 可能的值为 true/yes/mandatory、false/no/optional 和 strict。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
failoverPartner 如果主服务器关闭(由建议的版本使用)连接到的伙伴服务器的名称或地址。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
hostNameInCertificate 验证连接的服务器证书时要使用的主机名。 如果未指定,则数据源中的服务器名称用于证书验证,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
integratedSecurity 指示是否在连接(如果为 false)中指定用户 ID 和密码,或者当前 Windows 帐户凭据是否用于身份验证(如果为 true),由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
loadBalanceTimeout 在被建议的版本使用之前,连接在连接池中生存的最短时间(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
maxPoolSize 此特定连接字符串的连接池中允许的最大连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
minPoolSize 此特定连接字符串的连接池中允许的最小连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
multipleActiveResultSets 如果为 true,应用程序可以维护多个活动结果集(MARS)。 如果为 false,应用程序必须处理或取消一个批处理中的所有结果集,然后才能在该连接上执行任何其他批处理(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
multiSubnetFailover 如果应用程序连接到不同子网上的 AlwaysOn 可用性组(AG),则设置 MultiSubnetFailover=true 可以更快地检测和连接到(当前)活动服务器(当前)活动服务器(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
packetSize 用于与服务器实例通信的网络数据包的大小(以字节为单位,由建议的版本使用)。 类型:整数(或包含 resultType 整数的表达式)。 任何
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference
指示每次请求连接时,连接是共用的还是显式打开的,由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
服务器 要连接到的 SQL Server 实例的名称或网络地址,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId 用于对 Azure SQL 托管实例进行身份验证的服务主体的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Azure SQL 托管实例进行身份验证的服务主体的密钥。 SecretBase
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
trustServerCertificate 指示通道是否在绕过证书链来验证推荐版本使用的信任时是否加密通道。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
userName 连接到服务器时要使用的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureStorageLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureStorage”(必需)
typeProperties Azure 存储链接服务属性。 AzureStorageLinkedServiceTypeProperties(必需)

AzureStorageLinkedServiceTypeProperties

名字 描述 价值
accountKey 连接字符串中 accountKey 的 Azure 密钥保管库机密引用。 AzureKeyVaultSecretReference
connectionString 连接字符串。 它与 sasUri 属性互斥。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
sasToken sasToken 的 Azure 密钥保管库机密引用在 sas uri 中。 AzureKeyVaultSecretReference
sasUri Azure 存储资源的 SAS URI。 它与 connectionString 属性互斥。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何

AzureSynapseArtifactsLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureSynapseArtifacts”(必需)
typeProperties Azure Synapse Analytics (Artifacts) 链接服务属性。 AzureSynapseArtifactsLinkedServiceTypeProperties(必需)

AzureSynapseArtifactsLinkedServiceTypeProperties

名字 描述 价值
认证 如果使用系统分配的托管标识作为身份验证方法,则需要指定 MSI。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
端点 https://<工作区名称>.dev.azuresynapse.net、Azure Synapse Analytics 工作区 URL。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
workspaceResourceId Synapse 工作区的资源 ID。 格式应为:/subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureTableStorageLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureTableStorage”(必需)
typeProperties Azure 表存储链接服务属性。 AzureTableStorageLinkedServiceTypeProperties(必需)

AzureTableStorageLinkedServiceTypeProperties

名字 描述 价值
accountKey 连接字符串中 accountKey 的 Azure 密钥保管库机密引用。 AzureKeyVaultSecretReference
connectionString 连接字符串。 它与 sasUri 属性互斥。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
sasToken sasToken 的 Azure 密钥保管库机密引用在 sas uri 中。 AzureKeyVaultSecretReference
sasUri Azure 存储资源的 SAS URI。 它与 connectionString 属性互斥。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
serviceEndpoint Azure 表存储资源的表服务终结点。 它与 connectionString、sasUri 属性互斥。 任何

CassandraLinkedService

名字 描述 价值
类型 链接服务的类型。 “Cassandra”(必需)
typeProperties Cassandra 链接服务属性。 CassandraLinkedServiceTypeProperties (必需)

CassandraLinkedServiceTypeProperties

名字 描述 价值
authenticationType 要用于连接的 AuthenticationType。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 连接的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
密码 身份验证密码。 SecretBase
港口 连接的端口。 类型:整数(或包含 resultType 整数的表达式)。 任何
username 身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

CommonDataServiceForAppsLinkedService

名字 描述 价值
类型 链接服务的类型。 “CommonDataServiceForApps”(必需)
typeProperties Common Data Service for Apps 链接服务属性。 CommonDataServiceForAppsLinkedServiceTypeProperties(必需)

CommonDataServiceForAppsLinkedServiceTypeProperties

名字 描述 价值
authenticationType 要连接到 Common Data Service for Apps 服务器的身份验证类型。 联机方案的“Office365”,对于本地使用 Ifd 方案,则为“Ifd”。 联机方案中用于 Server-To-Server 身份验证的“AADServicePrincipal”,适用于具有 IFD 的本地 Dynamics 的“Active Directory”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
deploymentType Common Data Service for Apps 实例的部署类型。 Common Data Service for Apps Online 的“Online”和“OnPremisesWithIfd”,适用于本地具有 Ifd 的 Common Data Service for Apps。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
将验证用户凭据的 Active Directory 域。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
hostName 本地 Common Data Service for Apps 服务器的主机名。 属性是本地所必需的,不允许联机。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
organizationName Common Data Service for Apps 实例的组织名称。 当有多个与用户关联的 Common Data Service for Apps 实例时,本地需要此属性,并且需要联机属性。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 用于访问 Common Data Service for Apps 实例的密码。 SecretBase
港口 本地 Common Data Service for Apps 服务器的端口。 属性是本地所必需的,不允许联机。 默认值为 443。 类型:整数(或包含 resultType 整数的表达式),最小值:0。 任何
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId Azure Active Directory 中用于服务器To-Server 身份验证的应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
serviceUri Microsoft Common Data Service for Apps 服务器的 URL。 该属性对于在线是必需的,不允许本地使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
username 用于访问 Common Data Service for Apps 实例的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

ConcurLinkedService

名字 描述 价值
类型 链接服务的类型。 “Concur”(必需)
typeProperties Concur Service 链接服务属性。 ConcurLinkedServiceTypeProperties(必需)

ConcurLinkedServiceTypeProperties

名字 描述 价值
clientId Concur 应用管理提供的应用程序client_id。 任何(必需)
connectionProperties 用于连接到 Concur 的属性。 它与链接服务中的其他任何属性互斥。 类型:对象。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 与用户名字段中提供的用户名对应的密码。 SecretBase
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何
username 用于访问 Concur 服务的用户名。 任何(必需)

CosmosDbLinkedService

名字 描述 价值
类型 链接服务的类型。 “CosmosDb”(必需)
typeProperties CosmosDB 链接服务属性。 CosmosDbLinkedServiceTypeProperties (必需)

CosmosDbLinkedServiceTypeProperties

名字 描述 价值
accountEndpoint Azure CosmosDB 帐户的终结点。 类型:字符串(或带有 resultType 字符串的表达式) 任何
accountKey Azure CosmosDB 帐户的帐户密钥。 类型:SecureString 或 AzureKeyVaultSecretReference。 SecretBase
azureCloudType 指示服务主体身份验证的 Azure 云类型。允许的值为 AzurePublic、AzureChina、AzureUsGovernment、AzureGermany。 默认值为数据工厂区域的云类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
connectionMode 用于访问 CosmosDB 帐户的连接模式。 类型:字符串。 “Direct”
“Gateway”
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
数据库 数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式) 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串。 任何
servicePrincipalId Azure Active Directory 中用于服务器To-Server 身份验证的应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

CosmosDbMongoDbApiLinkedService

名字 描述 价值
类型 链接服务的类型。 “CosmosDbMongoDbApi”(必需)
typeProperties CosmosDB (MongoDB API) 链接服务属性。 CosmosDbMongoDbApiLinkedServiceTypeProperties (必需)

CosmosDbMongoDbApiLinkedServiceTypeProperties

名字 描述 价值
connectionString CosmosDB (MongoDB API) 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何(必需)
数据库 要访问的 CosmosDB (MongoDB API) 数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
isServerVersionAbove32 CosmosDB (MongoDB API) 服务器版本是否高于 3.2。 默认值为 false。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何

CouchbaseLinkedService

名字 描述 价值
类型 链接服务的类型。 “Couchbase”(必需)
typeProperties Couchbase 服务器链接服务属性。 CouchbaseLinkedServiceTypeProperties(必需)

CouchbaseLinkedServiceTypeProperties

名字 描述 价值
connectionString ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
credString 连接字符串中 credString 的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串

CredentialReference

名字 描述 价值
referenceName 引用凭据名称。 string (必需)
类型 凭据引用类型。 “CredentialReference”(必需)

CustomDataSourceLinkedService

名字 描述 价值
类型 链接服务的类型。 “CustomDataSource”(必需)
typeProperties 自定义链接服务属性。 任何(必需)

DataworldLinkedService

名字 描述 价值
类型 链接服务的类型。 “Dataworld”(必需)
typeProperties Dataworld 链接服务属性。 DataworldLinkedServiceTypeProperties (必需)

DataworldLinkedServiceTypeProperties

名字 描述 价值
apiToken Dataworld 源的 API 令牌。 SecretBase(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串

Db2LinkedService

名字 描述 价值
类型 链接服务的类型。 “Db2”(必需)
typeProperties DB2 链接服务属性。 Db2LinkedServiceTypeProperties(必需)

Db2LinkedServiceTypeProperties

名字 描述 价值
authenticationType 要用于连接的 AuthenticationType。 它与 connectionString 属性互斥。 “Basic”
certificateCommonName 启用 TLS 时证书公用名。 它与 connectionString 属性互斥。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
connectionString 连接字符串。 它与服务器、数据库、authenticationType、userName、packageCollection 和 certificateCommonName 属性互斥。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
数据库 连接的数据库名称。 它与 connectionString 属性互斥。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 它与 connectionString 属性互斥。 类型:字符串。 字符串
packageCollection 在查询数据库时创建包的位置下。 它与 connectionString 属性互斥。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 身份验证密码。 SecretBase
服务器 连接的服务器名称。 它与 connectionString 属性互斥。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
username 身份验证的用户名。 它与 connectionString 属性互斥。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

DrillLinkedService

名字 描述 价值
类型 链接服务的类型。 “钻取”(必需)
typeProperties 钻取服务器链接服务属性。 DrillLinkedServiceTypeProperties (必需)

DrillLinkedServiceTypeProperties

名字 描述 价值
connectionString ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
pwd 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference

DynamicsAXLinkedService

名字 描述 价值
类型 链接服务的类型。 “DynamicsAX”(必需)
typeProperties Dynamics AX 链接服务属性。 DynamicsAXLinkedServiceTypeProperties(必需)

DynamicsAXLinkedServiceTypeProperties

名字 描述 价值
aadResourceId 指定要请求授权的资源。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
servicePrincipalId 指定应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
servicePrincipalKey 指定应用程序的密钥。 将此字段标记为 SecureString 以安全地将其存储在数据工厂中,或引用存储在 Azure Key Vault 中的机密。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase(必需)
房客 指定应用程序所在的租户信息(域名或租户 ID)。 通过将鼠标悬停在 Azure 门户右上角来检索它。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
url Dynamics AX(或 Dynamics 365 Finance and Operations)实例 OData 终结点。 任何(必需)

DynamicsCrmLinkedService

名字 描述 价值
类型 链接服务的类型。 “DynamicsCrm”(必需)
typeProperties Dynamics CRM 链接服务属性。 DynamicsCrmLinkedServiceTypeProperties (必需)

DynamicsCrmLinkedServiceTypeProperties

名字 描述 价值
authenticationType 要连接到 Dynamics CRM 服务器的身份验证类型。 联机方案的“Office365”、“Ifd”(适用于本地 Ifd 方案)的“AADServicePrincipal”,用于联机方案中的服务器To-Server 身份验证的“Active Directory”,适用于具有 IFD 的 Dynamics 本地的“Active Directory”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
凭据 包含身份验证信息的凭据引用。 CredentialReference
deploymentType Dynamics CRM 实例的部署类型。 Dynamics CRM Online 的“Online”和“OnPremisesWithIfd”(适用于具有 Ifd 的本地 Dynamics CRM)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
将验证用户凭据的 Active Directory 域。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
hostName 本地 Dynamics CRM 服务器的主机名。 属性是本地所必需的,不允许联机。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
organizationName Dynamics CRM 实例的组织名称。 当有多个与用户关联的 Dynamics CRM 实例时,本地属性是必需的,并且需要联机属性。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 用于访问 Dynamics CRM 实例的密码。 SecretBase
港口 本地 Dynamics CRM 服务器的端口。 属性是本地所必需的,不允许联机。 默认值为 443。 类型:整数(或包含 resultType 整数的表达式),最小值:0。 任何
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId Azure Active Directory 中用于服务器To-Server 身份验证的应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
serviceUri Microsoft Dynamics CRM 服务器的 URL。 该属性对于在线是必需的,不允许本地使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
username 用于访问 Dynamics CRM 实例的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

DynamicsLinkedService

名字 描述 价值
类型 链接服务的类型。 “Dynamics”(必需)
typeProperties Dynamics 链接服务属性。 DynamicsLinkedServiceTypeProperties(必需)

DynamicsLinkedServiceTypeProperties

名字 描述 价值
authenticationType 要连接到 Dynamics 服务器的身份验证类型。 联机方案的“Office365”、“Ifd”(适用于本地 Ifd 方案)的“AADServicePrincipal”,用于联机方案中的服务器To-Server 身份验证的“Active Directory”,适用于具有 IFD 的 Dynamics 本地的“Active Directory”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
凭据 包含身份验证信息的凭据引用。 CredentialReference
deploymentType Dynamics 实例的部署类型。 Dynamics Online 的“Online”和“OnPremisesWithIfd”(适用于具有 Ifd 的本地 Dynamics)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
将验证用户凭据的 Active Directory 域。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
hostName 本地 Dynamics 服务器的主机名。 属性是本地所必需的,不允许联机。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
organizationName Dynamics 实例的组织名称。 当有多个与用户关联的 Dynamics 实例时,本地需要此属性,并且对于联机是必需的。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 用于访问 Dynamics 实例的密码。 SecretBase
港口 本地 Dynamics 服务器的端口。 属性是本地所必需的,不允许联机。 默认值为 443。 类型:整数(或包含 resultType 整数的表达式),最小值:0。 任何
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId Azure Active Directory 中用于服务器To-Server 身份验证的应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
serviceUri Microsoft Dynamics 服务器的 URL。 该属性对于在线是必需的,不允许本地使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
username 用于访问 Dynamics 实例的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

EloquaLinkedService

名字 描述 价值
类型 链接服务的类型。 “Eloqua”(必需)
typeProperties Eloqua 服务器链接服务属性。 EloquaLinkedServiceTypeProperties(必需)

EloquaLinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
端点 Eloqua 服务器的终结点。 (即 eloqua.example.com) 任何(必需)
密码 与用户名对应的密码。 SecretBase
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何
username Eloqua 帐户的网站名称和用户名,格式为:sitename/username。 (即埃洛夸/爱丽丝) 任何(必需)

FileServerLinkedService

名字 描述 价值
类型 链接服务的类型。 “FileServer”(必需)
typeProperties 文件系统链接服务属性。 FileServerLinkedServiceTypeProperties (必需)

FileServerLinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 服务器的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
密码 用于登录服务器的密码。 SecretBase
userId 用于登录服务器的用户 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

FtpServerLinkedService

名字 描述 价值
类型 链接服务的类型。 “FtpServer”(必需)
typeProperties 特定于此链接服务类型的属性。 FtpServerLinkedServiceTypeProperties (必需)

FtpServerLinkedServiceTypeProperties

名字 描述 价值
authenticationType 用于连接到 FTP 服务器的身份验证类型。 “Anonymous”
“Basic”
enableServerCertificateValidation 如果为 true,则通过 SSL/TLS 通道连接时验证 FTP 服务器 SSL 证书。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
enableSsl 如果为 true,请通过 SSL/TLS 通道连接到 FTP 服务器。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 FTP 服务器的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
密码 用于登录 FTP 服务器的密码。 SecretBase
港口 FTP 服务器用于侦听客户端连接的 TCP 端口号。 默认值为 21。 类型:整数(或包含 resultType 整数的表达式),最小值:0。 任何
userName 用于登录 FTP 服务器的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

GoogleAdWordsLinkedService

名字 描述 价值
类型 链接服务的类型。 “GoogleAdWords”(必需)
typeProperties Google AdWords 服务链接服务属性。 GoogleAdWordsLinkedServiceTypeProperties (必需)

GoogleAdWordsLinkedServiceTypeProperties

名字 描述 价值
authenticationType 用于身份验证的 OAuth 2.0 身份验证机制。 ServiceAuthentication 只能在自承载 IR 上使用。 “ServiceAuthentication”
“UserAuthentication”
clientCustomerID 要为其提取报表数据的 AdWords 帐户的客户端客户 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clientId 用于获取刷新令牌的 google 应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clientSecret 用于获取刷新令牌的 google 应用程序的客户端密码。 SecretBase
connectionProperties (已弃用)用于连接到 GoogleAds 的属性。 它与链接服务中的其他任何属性互斥。 类型:对象。 任何
developerToken 与用于授予 AdWords API 访问权限的经理帐户关联的开发人员令牌。 SecretBase
电子邮件 用于 ServiceAuthentication 的服务帐户电子邮件 ID,只能在自承载 IR 上使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
googleAdsApiVersion Google Ads API 主版本(如 v14)。 可在 https://developers.google.com/google-ads/api/docs/release-notes中找到支持的主要版本。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
keyFilePath (已弃用)用于对服务帐户电子邮件地址进行身份验证的 .p12 密钥文件的完整路径,只能在自承载 IR 上使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
loginCustomerID 要通过该帐户提取特定客户的报表数据的 Google Ads Manager 帐户的客户 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
privateKey 用于对服务帐户电子邮件地址进行身份验证的私钥,只能在自承载 IR 上使用。 SecretBase
refreshToken 从 Google 获取的刷新令牌,用于授权访问 AdWords for UserAuthentication。 SecretBase
supportLegacyDataTypes 指定是否使用旧数据类型映射,这些映射将 float、int32 和 int64 从 Google 映射到字符串。 除非要保持与旧驱动程序数据类型映射的向后兼容性,否则不要将其设置为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
trustedCertPath (已弃用)包含受信任的 CA 证书的 .pem 文件的完整路径,用于通过 SSL 连接时验证服务器。 只能在自承载 IR 上使用 SSL 时设置此属性。 默认值为随 IR 一起安装的 cacerts.pem 文件。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
useSystemTrustStore (已弃用)指定是使用系统信任存储中的 CA 证书还是从指定的 PEM 文件使用 CA 证书。 默认值为 false。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何

GoogleBigQueryLinkedService

名字 描述 价值
类型 链接服务的类型。 “GoogleBigQuery”(必需)
typeProperties Google BigQuery 服务链接服务属性。 GoogleBigQueryLinkedServiceTypeProperties (必需)

GoogleBigQueryLinkedServiceTypeProperties

名字 描述 价值
additionalProjects 要访问的公共 BigQuery 项目的逗号分隔列表。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于身份验证的 OAuth 2.0 身份验证机制。 ServiceAuthentication 只能在自承载 IR 上使用。 “ServiceAuthentication”
“UserAuthentication”(必需)
clientId 用于获取刷新令牌的 google 应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clientSecret 用于获取刷新令牌的 google 应用程序的客户端密码。 SecretBase
电子邮件 用于 ServiceAuthentication 的服务帐户电子邮件 ID,只能在自承载 IR 上使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
keyFilePath 用于对服务帐户电子邮件地址进行身份验证的 .p12 密钥文件的完整路径,只能在自承载 IR 上使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
项目 要查询的默认 BigQuery 项目。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
refreshToken 从 Google 获取的刷新令牌,用于授权访问 BigQuery for UserAuthentication。 SecretBase
requestGoogleDriveScope 是否请求访问 Google Drive。 允许 Google Drive 访问支持将 BigQuery 数据与 Google Drive 中的数据相结合的联合表。 默认值为 false。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
trustedCertPath 包含受信任的 CA 证书的 .pem 文件的完整路径,用于通过 SSL 连接时验证服务器。 只能在自承载 IR 上使用 SSL 时设置此属性。 默认值为随 IR 一起安装的 cacerts.pem 文件。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
useSystemTrustStore 指定是使用系统信任存储中的 CA 证书还是从指定的 PEM 文件使用 CA 证书。 默认值为 false。类型:布尔值(或带有 resultType 布尔值的表达式)。 任何

GoogleBigQueryV2LinkedService

名字 描述 价值
类型 链接服务的类型。 “GoogleBigQueryV2”(必需)
typeProperties Google BigQuery 服务链接服务属性。 GoogleBigQueryV2LinkedServiceTypeProperties (必需)

GoogleBigQueryV2LinkedServiceTypeProperties

名字 描述 价值
authenticationType 用于身份验证的 OAuth 2.0 身份验证机制。 “ServiceAuthentication”
“UserAuthentication”(必需)
clientId 用于获取刷新令牌的 google 应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clientSecret 用于获取刷新令牌的 google 应用程序的客户端密码。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
keyFileContent 用于对服务帐户进行身份验证的 .json 密钥文件的内容。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
projectId 要查询的默认 BigQuery 项目 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
refreshToken 从 Google 获取的刷新令牌,用于授权访问 BigQuery for UserAuthentication。 SecretBase

GoogleCloudStorageLinkedService

名字 描述 价值
类型 链接服务的类型。 “GoogleCloudStorage”(必需)
typeProperties Google Cloud Storage 链接服务属性。 GoogleCloudStorageLinkedServiceTypeProperties(必需)

GoogleCloudStorageLinkedServiceTypeProperties

名字 描述 价值
accessKeyId Google Cloud Storage Identity and Access Management (IAM) 用户的访问密钥标识符。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
secretAccessKey Google Cloud Storage Identity and Access Management (IAM) 用户的机密访问密钥。 SecretBase
serviceUrl 此值指定要使用 Google Cloud Storage Connector 访问的终结点。 这是一个可选属性;仅当想要尝试其他服务终结点或想要在 https 和 http 之间切换时更改它。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

GoogleSheetsLinkedService

名字 描述 价值
类型 链接服务的类型。 “GoogleSheets”(必需)
typeProperties GoogleSheets 链接服务属性。 GoogleSheetsLinkedServiceTypeProperties (必需)

GoogleSheetsLinkedServiceTypeProperties

名字 描述 价值
apiToken GoogleSheets 源的 API 令牌。 SecretBase(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串

GreenplumLinkedService

名字 描述 价值
类型 链接服务的类型。 “Greenplum”(必需)
typeProperties Greenplum 数据库链接服务属性。 GreenplumLinkedServiceTypeProperties(必需)

GreenplumLinkedServiceTypeProperties

名字 描述 价值
connectionString ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
pwd 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference

HBaseLinkedService

名字 描述 价值
类型 链接服务的类型。 “HBase”(必需)
typeProperties HBase 服务器链接服务属性。 HBaseLinkedServiceTypeProperties(必需)

HBaseLinkedServiceTypeProperties

名字 描述 价值
allowHostNameCNMismatch 指定是否要求 CA 颁发的 SSL 证书名称与通过 SSL 连接时服务器的主机名匹配。 默认值为 false。 任何
allowSelfSignedServerCert 指定是否允许来自服务器的自签名证书。 默认值为 false。 任何
authenticationType 用于连接到 HBase 服务器的身份验证机制。 “Anonymous”
“Basic”(必需)
enableSsl 指定是否使用 SSL 加密与服务器的连接。 默认值为 false。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 HBase 服务器的 IP 地址或主机名。 (即 192.168.222.160) 任何(必需)
httpPath 对应于 HBase 服务器的部分 URL。 (即 /gateway/sandbox/hbase/version) 任何
密码 与用户名对应的密码。 SecretBase
港口 HBase 实例用于侦听客户端连接的 TCP 端口。 默认值为 9090。 任何
trustedCertPath 包含受信任的 CA 证书的 .pem 文件的完整路径,用于通过 SSL 连接时验证服务器。 只能在自承载 IR 上使用 SSL 时设置此属性。 默认值为随 IR 一起安装的 cacerts.pem 文件。 任何
username 用于连接到 HBase 实例的用户名。 任何

HdfsLinkedService

名字 描述 价值
类型 链接服务的类型。 “Hdfs”(必需)
typeProperties HDFS 链接服务属性。 HdfsLinkedServiceTypeProperties(必需)

HdfsLinkedServiceTypeProperties

名字 描述 价值
authenticationType 用于连接到 HDFS 的身份验证类型。 可能的值为:Anonymous 和 Windows。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 Windows 身份验证的密码。 SecretBase
url HDFS 服务终结点的 URL,例如 http://myhostname:50070/webhdfs/v1。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
userName Windows 身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

HDInsightLinkedService

名字 描述 价值
类型 链接服务的类型。 “HDInsight”(必需)
typeProperties HDInsight 链接服务属性。 HDInsightLinkedServiceTypeProperties(必需)

HDInsightLinkedServiceTypeProperties

名字 描述 价值
clusterUri HDInsight 群集 URI。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
fileSystem 如果 HDInsight 的主存储为 ADLS Gen2,请指定 FileSystem。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
hcatalogLinkedServiceName 指向 HCatalog 数据库的 Azure SQL 链接服务的引用。 LinkedServiceReference
isEspEnabled 指定是否使用 ESP 创建 HDInsight(企业安全包)。 类型:布尔值。 任何
linkedServiceName Azure 存储链接服务参考。 LinkedServiceReference
密码 HDInsight 群集密码。 SecretBase
userName HDInsight 群集用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

HDInsightOnDemandLinkedService

名字 描述 价值
类型 链接服务的类型。 “HDInsightOnDemand”(必需)
typeProperties HDInsight ondemand 链接服务属性。 HDInsightOnDemandLinkedServiceTypeProperties(必需)

HDInsightOnDemandLinkedServiceTypeProperties

名字 描述 价值
additionalLinkedServiceNames 为 HDInsight 链接服务指定其他存储帐户,以便数据工厂服务可以代表你注册它们。 LinkedServiceReference[]
clusterNamePrefix 群集名称的前缀,后缀将不同于时间戳。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clusterPassword 用于访问群集的密码。 SecretBase
clusterResourceGroup 群集所属的资源组。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
clusterSize 群集中的辅助角色/数据节点数。 建议值:4。 类型:int(或包含 resultType int 的表达式)。 任何(必需)
clusterSshPassword SSH 远程连接群集节点(适用于 Linux)的密码。 SecretBase
clusterSshUserName SSH 的用户名远程连接到群集的节点(适用于 Linux)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clusterType 群集类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clusterUserName 用于访问群集的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
coreConfiguration 指定要创建的 HDInsight 群集的核心配置参数(如 core-site.xml)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
dataNodeSize 指定 HDInsight 群集的数据节点的大小。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
hBaseConfiguration 指定 HDInsight 群集的 HBase 配置参数(hbase-site.xml)。 任何
hcatalogLinkedServiceName 指向 HCatalog 数据库的 Azure SQL 链接服务的名称。 按需 HDInsight 群集是使用 Azure SQL 数据库作为元存储创建的。 LinkedServiceReference
hdfsConfiguration 指定 HDInsight 群集的 HDFS 配置参数(hdfs-site.xml)。 任何
headNodeSize 指定 HDInsight 群集的头节点的大小。 任何
hiveConfiguration 指定 HDInsight 群集的 hive 配置参数(hive-site.xml)。 任何
hostSubscriptionId 用于托管群集的客户订阅。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
linkedServiceName 供按需群集用于存储和处理数据的 Azure 存储链接服务。 LinkedServiceReference(必需)
mapReduceConfiguration 指定 HDInsight 群集的 MapReduce 配置参数(mapred-site.xml)。 任何
oozieConfiguration 指定 HDInsight 群集的 Oozie 配置参数(oozie-site.xml)。 任何
scriptActions 自定义脚本操作,在 HDI ondemand 群集上运行一旦启动。 请参阅 /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。 ScriptAction[]
servicePrincipalId hostSubscriptionId 的服务主体 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 服务主体 ID 的密钥。 SecretBase
sparkVersion 如果群集类型为“spark”,则为 spark 的版本。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
stormConfiguration 指定 HDInsight 群集的 Storm 配置参数(storm-site.xml)。 任何
subnetName vNet 中子网的 ARM 资源 ID。 如果指定了 virtualNetworkId,则需要此属性。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
房客 服务主体所属的租户 ID/名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
timeToLive 按需 HDInsight 群集的允许空闲时间。 指定当群集中没有其他活动作业时,按需 HDInsight 群集在活动运行完成后保持活动运行的时间。 最小值为 5 分钟。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
版本 HDInsight 群集的版本。  类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
virtualNetworkId 创建群集后应加入的 vNet 的 ARM 资源 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
yarnConfiguration 指定 HDInsight 群集的 Yarn 配置参数(yarn-site.xml)。 任何
zookeeperNodeSize 指定 HDInsight 群集的 Zoo Keeper 节点的大小。 任何

HiveLinkedService

名字 描述 价值
类型 链接服务的类型。 “Hive”(必需)
typeProperties Hive Server 链接服务属性。 HiveLinkedServiceTypeProperties(必需)

HiveLinkedServiceTypeProperties

名字 描述 价值
allowHostNameCNMismatch 指定是否要求 CA 颁发的 SSL 证书名称与通过 SSL 连接时服务器的主机名匹配。 默认值为 false。 任何
allowSelfSignedServerCert 指定是否允许来自服务器的自签名证书。 默认值为 false。 任何
authenticationType 用于访问 Hive 服务器的身份验证方法。 “Anonymous”
“Username”
“UsernameAndPassword”
“WindowsAzureHDInsightService”(必需)
enableSsl 指定是否使用 SSL 加密与服务器的连接。 默认值为 false。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Hive 服务器的 IP 地址或主机名,由多个主机的“;”分隔(仅当 serviceDiscoveryMode 启用时)。 任何(必需)
httpPath 与 Hive 服务器对应的部分 URL。 任何
密码 与你在“用户名”字段中提供的用户名对应的密码 SecretBase
港口 Hive 服务器用来侦听客户端连接的 TCP 端口。 任何
serverType Hive 服务器的类型。 “HiveServer1”
“HiveServer2”
“HiveThriftServer”
serviceDiscoveryMode 如果指示使用 ZooKeeper 服务,则为 true,则为 false。 任何
thriftTransportProtocol 在 Thrift 层中使用的传输协议。 “Binary”
“HTTP”
“SASL”
trustedCertPath 包含受信任的 CA 证书的 .pem 文件的完整路径,用于通过 SSL 连接时验证服务器。 只能在自承载 IR 上使用 SSL 时设置此属性。 默认值为随 IR 一起安装的 cacerts.pem 文件。 任何
useNativeQuery 指定驱动程序是使用本机 HiveQL 查询,还是将它们转换为 HiveQL 中的等效形式。 任何
username 用于访问 Hive Server 的用户名。 任何
useSystemTrustStore 指定是使用系统信任存储中的 CA 证书还是从指定的 PEM 文件使用 CA 证书。 默认值为 false。 任何
zooKeeperNameSpace 添加 Hive Server 2 节点的 ZooKeeper 上的命名空间。 任何

HttpLinkedService

名字 描述 价值
类型 链接服务的类型。 “HttpServer”(必需)
typeProperties 特定于此链接服务类型的属性。 HttpLinkedServiceTypeProperties (必需)

HttpLinkedServiceTypeProperties

名字 描述 价值
authenticationType 用于连接到 HTTP 服务器的身份验证类型。 “Anonymous”
“Basic”
“ClientCertificate”
“Digest”
“Windows”
authHeaders 请求中用于授权的 RESTful API 中的其他 HTTP 标头。 类型:键值对(值应为字符串类型)。 任何
certThumbprint ClientCertificate 身份验证的证书指纹。 仅适用于本地复制。 对于使用 ClientCertificate 身份验证的本地复制,应指定 CertThumbprint 或 EmbeddedCertData/Password。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
embeddedCertData 用于 ClientCertificate 身份验证的 Base64 编码证书数据。 对于使用 ClientCertificate 身份验证的本地复制,应指定 CertThumbprint 或 EmbeddedCertData/Password。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
enableServerCertificateValidation 如果为 true,请验证 HTTPS 服务器 SSL 证书。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 使用 EmbeddedCertData 身份验证进行基本、摘要、Windows 或 ClientCertificate 的密码。 SecretBase
url HTTP 终结点的基 URL,例如 https://www.microsoft.com。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
userName 基本、摘要或 Windows 身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

HubspotLinkedService

名字 描述 价值
类型 链接服务的类型。 “Hubspot”(必需)
typeProperties Hubspot Service 链接服务属性。 HubspotLinkedServiceTypeProperties(必需)

HubspotLinkedServiceTypeProperties

名字 描述 价值
accessToken 最初对 OAuth 集成进行身份验证时获取的访问令牌。 SecretBase
clientId 与 Hubspot 应用程序关联的客户端 ID。 任何(必需)
clientSecret 与 Hubspot 应用程序关联的客户端密码。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
refreshToken 最初对 OAuth 集成进行身份验证时获取的刷新令牌。 SecretBase
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何

ImpalaLinkedService

名字 描述 价值
类型 链接服务的类型。 “Impala”(必需)
typeProperties Impala 服务器链接服务属性。 ImpalaLinkedServiceTypeProperties (必需)

ImpalaLinkedServiceTypeProperties

名字 描述 价值
allowHostNameCNMismatch 指定是否要求 CA 颁发的 SSL 证书名称与通过 SSL 连接时服务器的主机名匹配。 默认值为 false。 任何
allowSelfSignedServerCert 指定是否允许来自服务器的自签名证书。 默认值为 false。 任何
authenticationType 要使用的身份验证类型。 “Anonymous”
“SASLUsername”
“UsernameAndPassword”(必需)
enableSsl 指定是否使用 SSL 加密与服务器的连接。 默认值为 false。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Impala 服务器的 IP 地址或主机名。 (即 192.168.222.160) 任何(必需)
密码 使用 UsernameAndPassword 时,与用户名对应的密码。 SecretBase
港口 Impala 服务器用来侦听客户端连接的 TCP 端口。 默认值为 21050。 任何
trustedCertPath 包含受信任的 CA 证书的 .pem 文件的完整路径,用于通过 SSL 连接时验证服务器。 只能在自承载 IR 上使用 SSL 时设置此属性。 默认值为随 IR 一起安装的 cacerts.pem 文件。 任何
username 用于访问 Impala 服务器的用户名。 使用 SASLUsername 时,默认值为匿名。 任何
useSystemTrustStore 指定是使用系统信任存储中的 CA 证书还是从指定的 PEM 文件使用 CA 证书。 默认值为 false。 任何

InformixLinkedService

名字 描述 价值
类型 链接服务的类型。 “Informix”(必需)
typeProperties Informix 链接服务属性。 InformixLinkedServiceTypeProperties(必需)

InformixLinkedServiceTypeProperties

名字 描述 价值
authenticationType 用于作为 ODBC 数据存储连接到 Informix 的身份验证类型。 可能的值为:Anonymous 和 Basic。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
connectionString 连接字符串的非访问凭据部分以及可选的加密凭据。 类型:string、SecureString、AzureKeyVaultSecretReference 或 Expression 和 resultType 字符串。 任何(必需)
凭据 以特定于驱动程序的属性值格式指定的连接字符串的访问凭据部分。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 基本身份验证的密码。 SecretBase
userName 基本身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

IntegrationRuntimeReference

名字 描述 价值
参数 集成运行时的参数。 ParameterValueSpecification
referenceName 引用集成运行时名称。 string (必需)
类型 集成运行时的类型。 “IntegrationRuntimeReference”(必需)

JiraLinkedService

名字 描述 价值
类型 链接服务的类型。 “Jira”(必需)
typeProperties Jira 服务链接服务属性。 JiraLinkedServiceTypeProperties (必需)

JiraLinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Jira 服务的 IP 地址或主机名。 (例如 jira.example.com) 任何(必需)
密码 与用户名字段中提供的用户名对应的密码。 SecretBase
港口 Jira 服务器用于侦听客户端连接的 TCP 端口。 如果通过 HTTPS 进行连接,则默认值为 443;如果通过 HTTP 进行连接,则为 8080。 任何
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何
username 用于访问 Jira 服务的用户名。 任何(必需)

LakeHouseLinkedService

名字 描述 价值
类型 链接服务的类型。 “LakeHouse”(必需)
typeProperties Microsoft Fabric LakeHouse 链接服务属性。 LakeHouseLinkedServiceTypeProperties (必需)

LakeHouseLinkedServiceTypeProperties

名字 描述 价值
artifactId Microsoft Fabric LakeHouse 项目的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId 用于对 Microsoft Fabric LakeHouse 进行身份验证的应用程序 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Microsoft Fabric LakeHouse 进行身份验证的应用程序密钥。 SecretBase
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
workspaceId Microsoft Fabric 工作区的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

LinkedService

名字 描述 价值
附注 可用于描述链接服务的标记列表。 any[]
connectVia 集成运行时参考。 IntegrationRuntimeReference
描述 链接服务说明。 字符串
参数 链接服务的参数。 ParameterDefinitionSpecification
类型 对于 AmazonMWSLinkedService类型,设置为“AmazonMWS”。 对于 AmazonRdsForOracleLinkedService类型,设置为“AmazonRdsForOracle”。 对于 AmazonRdsForSqlServerLinkedService,请设置为“AmazonRdsForSqlServer”。 对于 AmazonRedshiftLinkedService,请设置为“AmazonRedshift”类型。 对于 AmazonS3LinkedService,请设置为“AmazonS3”。 对于 AmazonS3CompatibleLinkedService类型,设置为“AmazonS3Compatible”。 对于 AppFiguresLinkedService,请设置为“AppFigures”。 对于 AsanaLinkedService类型,设置为“Asana”。 对于 AzureBatchLinkedService,请设置为“AzureBatch”。 对于 AzureBlobFSLinkedService,请设置为“AzureBlobFS”。 对于 AzureBlobStorageLinkedService,请设置为“AzureBlobStorage”。 对于 AzureDataExplorerLinkedService,请设置为“AzureDataExplorer”。 对于 AzureDataLakeAnalyticsLinkedService,请设置为“AzureDataLakeAnalytics”。 对于 AzureDataLakeStoreLinkedService,请设置为“AzureDataLakeStore”。 对于 AzureDatabricksLinkedService,请设置为“AzureDatabricks”。 对于 AzureDatabricksDeltaLakeLinkedService,请设置为“AzureDatabricksDeltaLake”。 对于 AzureFileStorageLinkedService,请设置为“AzureFileStorage”类型。 对于 AzureFunctionLinkedService,请设置为“AzureFunction”。 对于 AzureKeyVaultLinkedService,请设置为“AzureKeyVault”类型。 对于 AzureMLLinkedService,请设置为“AzureML”。 对于 AzureMLServiceLinkedService,请设置为“AzureMLService”。 对于 AzureMariaDBLinkedService,请设置为“AzureMariaDB”。 对于 AzureMySqlLinkedService类型,设置为“AzureMySqlSql”。 对于 AzurePostgreSqlLinkedService,请设置为“AzurePostgreSql”。 对于 AzureSearchLinkedService,请设置为“AzureSearch”。 对于 AzureSqlDWLinkedService,请设置为“AzureSqlDWW”。 对于 AzureSqlDatabaseLinkedService,请设置为“AzureSqlDatabase”。 对于 AzureSqlMILinkedService,请设置为“AzureSqlMI”。 对于 AzureStorageLinkedService,请设置为“AzureStorage”。 对于 azureSynapseArtifacts 类型,设置为“AzureSynapseArtifactsLinkedService”。 对于 AzureTableStorageLinkedService类型,设置为“AzureTableStorage”。 对于 CassandraLinkedService类型,设置为“Cassandraandra”。 对于 CommonDataServiceForAppsLinkedService,请设置为“CommonDataServiceForApps”。 对于 ConcurLinkedService类型,设置为“Concur”。 对于 CosmosDbLinkedService,请设置为“CosmosDb”。 对于类型为 CosmosDbMongoDbApiLinkedService,请设置为“CosmosDbMongoDbApi”。 对于 CouchbaseLinkedService类型,设置为“Couchbase”。 对于 customDataSourceLinkedService类型,请设置为“CustomDataSource”。 对于 dataworldLinkedService类型,设置为“Dataworld”。 对于 Db2LinkedService,请设置为“Db2”。 设置为“DrillLinkedService类型 ”钻取”。 对于 dynamicsLinkedService类型,请设置为“Dynamics”。 对于 dynamicsAXLinkedService类型,设置为“DynamicsAXAX”。 对于 dynamicsCrmLinkedService,请设置为 “DynamicsCrm”类型。 对于 EloquaLinkedService,请设置为类型 “Eloqua”。 对于 fileServerLinkedService类型,请设置为“FileServer”。 对于 FtpServerLinkedService,请设置为“FtpServer”。 对于 GoogleAdWordsLinkedService,请设置为“GoogleAdWords”。 对于 GoogleBigQueryLinkedService,请设置为“GoogleBigQuery”。 对于 GoogleBigQueryV2LinkedService,请设置为“GoogleBigQueryV2”。 对于 GoogleCloudStorageLinkedService,请设置为“GoogleCloudStorage”。 对于 GoogleSheetsLinkedService,请设置为“GoogleSheets”。 对于 greenplumLinkedService类型,设置为“Greenplum”类型。 对于 HBaseLinkedService类型,设置为“HBase”。 对于 HDInsightLinkedService,请设置为“HDInsight”。 对于 HDInsightOnDemandLinkedService,请设置为“HDInsightOnDemand”。 对于 HdfsLinkedService类型,设置为“Hdfs”。 对于 hiveLinkedService类型,设置为“Hive” 。 对于 HttpLinkedService类型,设置为“HttpServer”。 对于 HubspotLinkedService类型,设置为“Hubspot”。 对于 impalaLinkedService,请设置为类型 “Impala”。 对于 InformixLinkedService类型,设置为“Informix”。 对于 JiraLinkedService,设置为“Jira”。 对于 LakeHouseLinkedService,请设置为“LakeHouse”。 对于 MagentoLinkedService类型,设置为“Magento”。 对于 mariaDBLinkedService类型,请设置为“MariaDB”。 对于 MarketoLinkedService,请设置为“Marketo”。 对于 microsoftAccessLinkedService,请设置为“MicrosoftAccesss”类型。 对于 MongoDbLinkedService,请设置为“MongoDb”。 对于 MongoDbAtlasLinkedService类型,设置为“MongoDbAtlas”。 对于 MongoDbV2LinkedService,请设置为“MongoDbV2”。 对于 MySqlLinkedService类型,设置为“MySql”。 对于 NetezzaLinkedService,请设置为“Netezza”。 对于 ODataLinkedService类型,设置为“OData”。 对于 OdbcLinkedService,请设置为“Odbc”。 对于 Office365LinkedService,请设置为“Office365”。 对于 OracleLinkedService,请设置为“Oracle”。 对于 OracleCloudStorageLinkedService类型,设置为“OracleCloudStorage”。 对于 OracleServiceCloudLinkedService类型,设置为“OracleServiceCloudCloud”。 对于 paypalLinkedService类型,设置为“PayPal”。 对于 phoenixLinkedService类型,请设置为“Phoenix”。 对于 PostgreSqlLinkedService,请设置为“PostgreSql”。 对于 PostgreSqlV2LinkedService类型,设置为“PostgreSqlV2”。 对于 prestoLinkedService类型,设置为“Presto”。 对于 QuickBooksLinkedService,请设置为“QuickBooks”。 对于 QuickbaseLinkedService,请设置为“Quickbase”。 对于 ResponsysLinkedService类型,设置为“Responsys”。 对于 RestServiceLinkedService,请设置为“RestService”。 对于 SalesforceLinkedService类型,设置为“Salesforce”。 设置为 SalesforceMarketingCloudLinkedService类型的“SalesforceMarketingCloud”。 设置为 SalesforceServiceCloudLinkedService类型的“SalesforceServiceCloud”。 对于 SalesforceServiceCloudV2LinkedService,请设置为“SalesforceServiceCloudV2”。 对于 SalesforceV2LinkedService,请设置为“SalesforceV2”。 对于 SapBWLinkedService,请设置为“SapBWW”。 对于 SapCloudForCustomerLinkedService,请设置为“SapCloudForCustomer”。 对于 SapEccLinkedService类型,请设置为“SapEcc”。 对于 SapHanaLinkedService,请设置为“SapHana”。 对于 SapOdpLinkedService类型,设置为“SapOdpdp”。 对于 SapOpenHubLinkedService类型,设置为“SapOpenHubHub”。 对于 SapTableLinkedService类型,设置为“SapTableTable”。 对于 ServiceNowLinkedService类型,设置为“ServiceNow”。 对于 ServiceNowV2LinkedService,请设置为“ServiceNowV2”。 对于 SftpServerLinkedService类型,设置为“Sftp”。 对于 SharePointOnlineListLinkedService,请设置为“SharePointOnlineList”。 对于 ShopifyLinkedService,请设置为“Shopify”。 对于 SmartsheetLinkedService类型,设置为“Smartsheet”。 对于 SnowflakeLinkedService,请设置为“Snowflake”。 对于 SnowflakeV2LinkedService,请设置为“SnowflakeV2”。 对于 SparkLinkedService类型,设置为“Spark Spark”。 对于 SqlServerLinkedService,请设置为“SqlServer”。 对于 SquareLinkedService类型,设置为“Square”。 对于类型 SybaseLinkedService,设置为“Sybase”。 对于 TeamDeskLinkedService,请设置为“TeamDesk”。 对于类型 TeradataLinkedService,设置为“Teradata”。 对于类型 TwilioLinkedService,设置为“Twilio”。 对于类型 VerticaLinkedService,设置为“Vertica”。 对于 WarehouseLinkedService类型,设置为“Warehouse”。 对于 WebLinkedService类型,设置为“Web”。 对于 XeroLinkedService,请设置为“Xero”。 对于 ZendeskLinkedService,请设置为“Zendesk”。 对于类型 ZohoLinkedService,设置为“Zoho”。 “AmazonMWS”
“AmazonRdsForOracle”
“AmazonRdsForSqlServer”
“AmazonRedshift”
“AmazonS3”
“AmazonS3Compatible”
“AppFigures”
“Asana”
“AzureBatch”
“AzureBlobFS”
“AzureBlobStorage”
“AzureDatabricks”
“AzureDatabricksDeltaLake”
“AzureDataExplorer”
“AzureDataLakeAnalytics”
“AzureDataLakeStore”
“AzureFileStorage”
“AzureFunction”
“AzureKeyVault”
“AzureMariaDB”
“AzureML”
“AzureMLService”
“AzureMySql”
“AzurePostgreSql”
“AzureSearch”
“AzureSqlDatabase”
“AzureSqlDW”
“AzureSqlMI”
“AzureStorage”
“AzureSynapseArtifacts”
“AzureTableStorage”
“Cassandra”
“CommonDataServiceForApps”
“Concur”
“CosmosDb”
“CosmosDbMongoDbApi”
“Couchbase”
“CustomDataSource”
“Dataworld”
“Db2”
“钻取”
“Dynamics”
“DynamicsAX”
“DynamicsCrm”
“Eloqua”
“FileServer”
“FtpServer”
“GoogleAdWords”
“GoogleBigQuery”
“GoogleBigQueryV2”
“GoogleCloudStorage”
“GoogleSheets”
“Greenplum”
“HBase”
“Hdfs”
“HDInsight”
'HDInsightOnDemand'
“Hive”
“HttpServer”
“Hubspot”
“Impala”
“Informix”
“Jira”
“LakeHouse”
“Magento”
“MariaDB”
“Marketo”
“MicrosoftAccess”
“MongoDb”
“MongoDbAtlas”
“MongoDbV2”
“MySql”
“Netezza”
“OData”
“Odbc”
“Office365”
“Oracle”
“OracleCloudStorage”
“OracleServiceCloud”
“PayPal”
“Phoenix”
“PostgreSql”
“PostgreSqlV2”
“Presto”
“Quickbase”
“QuickBooks”
“Responsys”
“RestService”
“Salesforce”
“SalesforceMarketingCloud”
“SalesforceServiceCloud”
'SalesforceServiceCloudV2'
“SalesforceV2”
“SapBW”
“SapCloudForCustomer”
“SapEcc”
“SapHana”
“SapOdp”
“SapOpenHub”
“SapTable”
“ServiceNow”
“ServiceNowV2”
'Sftp'
“SharePointOnlineList”
“Shopify”
“Smartsheet”
“Snowflake”
“SnowflakeV2”
“Spark”
“SqlServer”
“Square”
“Sybase”
“TeamDesk”
'Teradata'
“Twilio”
“Vertica”
“Warehouse”
“Web”
“Xero”
“Zendesk”
“Zoho”(必需)
版本 链接服务的版本。 字符串

LinkedServiceReference

名字 描述 价值
参数 LinkedService 的参数。 ParameterValueSpecification
referenceName 引用 LinkedService 名称。 string (必需)
类型 链接服务引用类型。 “LinkedServiceReference”(必需)

MagentoLinkedService

名字 描述 价值
类型 链接服务的类型。 “Magento”(必需)
typeProperties Magento 服务器链接服务属性。 MagentoLinkedServiceTypeProperties (必需)

MagentoLinkedServiceTypeProperties

名字 描述 价值
accessToken Magento 的访问令牌。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Magento 实例的 URL。 (即 192.168.222.110/magento3) 任何(必需)
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何

MariaDBLinkedService

名字 描述 价值
类型 链接服务的类型。 “MariaDB”(必需)
typeProperties MariaDB 服务器链接服务属性。 MariaDBLinkedServiceTypeProperties (必需)

MariaDBLinkedServiceTypeProperties

名字 描述 价值
connectionString ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
数据库 连接的数据库名称。 类型:字符串。 任何
driverVersion MariaDB 驱动程序的版本。 类型:字符串。 对于旧驱动程序,V1 或为空,V2 用于新驱动程序。 V1 可以支持连接字符串和属性包,V2 只能支持连接字符串。 旧驱动程序计划于 2024 年 10 月弃用。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference
港口 连接的端口。 类型:整数。 任何
服务器 连接的服务器名称。 类型:字符串。 任何
sslMode 此选项指定驱动程序在连接到 MariaDB 时是否使用 TLS 加密和验证。 例如,SSLMode=<0/1/2/3/4>。 选项:DISABLED (0) / PREFERRED (1) /REQUIRED (2) / VERIFY_CA (3) / VERIFY_IDENTITY (4), REQUIRED (2) 建议仅允许使用 SSL/TLS 加密的连接。 任何
username 身份验证的用户名。 类型:字符串。 任何
useSystemTrustStore 此选项指定是使用系统信任存储中的 CA 证书,还是从指定的 PEM 文件使用 CA 证书。 例如 UseSystemTrustStore=<0/1>;选项:已启用 (1) / 禁用 (0) (默认) 任何

MarketoLinkedService

名字 描述 价值
类型 链接服务的类型。 “Marketo”(必需)
typeProperties Marketo 服务器链接服务属性。 MarketoLinkedServiceTypeProperties(必需)

MarketoLinkedServiceTypeProperties

名字 描述 价值
clientId Marketo 服务的客户端 ID。 任何(必需)
clientSecret Marketo 服务的客户端密码。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
端点 Marketo 服务器的终结点。 (即 123-ABC-321.mktorest.com) 任何(必需)
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何

Microsoft.DataFactory/factories/linkedservices

名字 描述 价值
名字 资源名称 字符串

约束:
最小长度 = 1
最大长度 = 1
模式 = ^[A-Za-z0-9_][^<>*#.%&:\\+?/]*$ (必需)
父母 在 Bicep 中,可以为子资源指定父资源。 仅当子资源在父资源外部声明时,才需要添加此属性。

有关详细信息,请参阅 父资源外部的子资源
类型资源的符号名称:工厂
性能 链接服务的属性。 LinkedService(必需)

MicrosoftAccessLinkedService

名字 描述 价值
类型 链接服务的类型。 “MicrosoftAccess”(必需)
typeProperties Microsoft Access 链接服务属性。 MicrosoftAccessLinkedServiceTypeProperties (必需)

MicrosoftAccessLinkedServiceTypeProperties

名字 描述 价值
authenticationType 用于作为 ODBC 数据存储连接到 Microsoft Access 的身份验证类型。 可能的值为:Anonymous 和 Basic。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
connectionString 连接字符串的非访问凭据部分以及可选的加密凭据。 类型:string、SecureString、AzureKeyVaultSecretReference 或 Expression 和 resultType 字符串。 任何(必需)
凭据 以特定于驱动程序的属性值格式指定的连接字符串的访问凭据部分。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 基本身份验证的密码。 SecretBase
userName 基本身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

MongoDbAtlasLinkedService

名字 描述 价值
类型 链接服务的类型。 “MongoDbAtlas”(必需)
typeProperties MongoDB Atlas 链接服务属性。 MongoDbAtlasLinkedServiceTypeProperties (必需)

MongoDbAtlasLinkedServiceTypeProperties

名字 描述 价值
connectionString MongoDB Atlas 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何(必需)
数据库 要访问的 MongoDB Atlas 数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
driverVersion 要选择的驱动程序版本。 允许的值为 v1 和 v2。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

MongoDbLinkedService

名字 描述 价值
类型 链接服务的类型。 “MongoDb”(必需)
typeProperties MongoDB 链接服务属性。 MongoDbLinkedServiceTypeProperties(必需)

MongoDbLinkedServiceTypeProperties

名字 描述 价值
allowSelfSignedServerCert 指定是否允许来自服务器的自签名证书。 默认值为 false。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
authenticationType 用于连接到 MongoDB 数据库的身份验证类型。 “Anonymous”
“Basic”
authSource 用于验证用户名和密码的数据库。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
databaseName 要访问的 MongoDB 数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
enableSsl 指定是否使用 SSL 加密与服务器的连接。 默认值为 false。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 身份验证密码。 SecretBase
港口 MongoDB 服务器用于侦听客户端连接的 TCP 端口号。 默认值为 27017。 类型:整数(或包含 resultType 整数的表达式),最小值:0。 任何
服务器 MongoDB 服务器的 IP 地址或服务器名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
username 身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

MongoDbV2LinkedService

名字 描述 价值
类型 链接服务的类型。 “MongoDbV2”(必需)
typeProperties MongoDB 链接服务属性。 MongoDbV2LinkedServiceTypeProperties(必需)

MongoDbV2LinkedServiceTypeProperties

名字 描述 价值
connectionString MongoDB 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何(必需)
数据库 要访问的 MongoDB 数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

MySqlLinkedService

名字 描述 价值
类型 链接服务的类型。 “MySql”(必需)
typeProperties MySQL 链接服务属性。 MySqlLinkedServiceTypeProperties(必需)

MySqlLinkedServiceTypeProperties

名字 描述 价值
allowZeroDateTime 这允许从数据库检索特殊的“零”日期值 0000-00-00。 类型:布尔值。 任何
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
connectionTimeout 在终止尝试并生成错误之前,等待与服务器的连接的时间长度(以秒为单位)。 类型:整数。 任何
convertZeroDateTime 如果返回日期或日期/时间列的 DateTime.MinValue,则返回不允许的值。 类型:布尔值。 任何
数据库 连接的数据库名称。 类型:字符串。 任何
driverVersion MySQL 驱动程序的版本。 类型:字符串。 对于旧驱动程序,V1 或为空,V2 用于新驱动程序。 V1 可以支持连接字符串和属性包,V2 只能支持连接字符串。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
guidFormat 确定应将哪个列类型(如果有)读取为 GUID。 类型:字符串。 无:不会将列类型作为 Guid 自动读取;Char36:所有 CHAR(36)列都以小写十六进制和连字符(与 UUID 匹配)作为 Guid 读取/写入。 任何
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference
港口 连接的端口。 类型:整数。 任何
服务器 连接的服务器名称。 类型:字符串。 任何
sslCert 客户端 SSL 证书文件的路径(采用 PEM 格式)。 还必须指定 SslKey。 类型:字符串。 任何
sslKey 客户端 SSL 私钥的路径(采用 PEM 格式)。 还必须指定 SslCert。 类型:字符串。 任何
sslMode 用于连接的 SSL 模式。 类型:整数。 0:禁用,1:首选,2:需要,3:verify-ca,4:验证完整。 任何
treatTinyAsBoolean 设置为 true 时,TINYINT(1) 值将作为布尔值返回。 类型:bool。 任何
username 身份验证的用户名。 类型:字符串。 任何
useSystemTrustStore 使用系统信任存储进行连接。 类型:整数。 0:启用,1:禁用。 任何

NetezzaLinkedService

名字 描述 价值
类型 链接服务的类型。 “Netezza”(必需)
typeProperties Netezza 链接服务属性。 NetezzaLinkedServiceTypeProperties (必需)

NetezzaLinkedServiceTypeProperties

名字 描述 价值
connectionString ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
pwd 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference

ODataLinkedService

名字 描述 价值
类型 链接服务的类型。 “OData”(必需)
typeProperties OData 链接服务属性。 ODataLinkedServiceTypeProperties(必需)

ODataLinkedServiceTypeProperties

名字 描述 价值
aadResourceId 指定要请求授权以使用 Directory 的资源。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
aadServicePrincipalCredentialType 指定用于服务主体的凭据类型(密钥或证书)。 “ServicePrincipalCert”
“ServicePrincipalKey”
authenticationType 用于连接到 OData 服务的身份验证类型。 “AadServicePrincipal”
“Anonymous”
“Basic”
“ManagedServiceIdentity”
“Windows”
authHeaders 请求中用于授权的 RESTful API 中的其他 HTTP 标头。 类型:键值对(值应为字符串类型)。 任何
azureCloudType 指示服务主体身份验证的 Azure 云类型。允许的值为 AzurePublic、AzureChina、AzureUsGovernment、AzureGermany。 默认值为数据工厂区域的云类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 OData 服务的密码。 SecretBase
servicePrincipalEmbeddedCert 指定在 Azure Active Directory 中注册的应用程序的 base64 编码证书。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
servicePrincipalEmbeddedCertPassword 如果证书具有密码,并且使用的是 AadServicePrincipal 身份验证,请指定证书的密码。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
servicePrincipalId 指定在 Azure Active Directory 中注册的应用程序的应用程序 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 指定在 Azure Active Directory 中注册的应用程序的机密。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
房客 指定应用程序所在的租户信息(域名或租户 ID)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
url OData 服务终结点的 URL。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
userName OData 服务的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

OdbcLinkedService

名字 描述 价值
类型 链接服务的类型。 “Odbc”(必需)
typeProperties ODBC 链接服务属性。 OdbcLinkedServiceTypeProperties (必需)

OdbcLinkedServiceTypeProperties

名字 描述 价值
authenticationType 用于连接到 ODBC 数据存储的身份验证类型。 可能的值为:Anonymous 和 Basic。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
connectionString 连接字符串的非访问凭据部分以及可选的加密凭据。 类型:string、SecureString、AzureKeyVaultSecretReference 或 Expression 和 resultType 字符串。 任何(必需)
凭据 以特定于驱动程序的属性值格式指定的连接字符串的访问凭据部分。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 基本身份验证的密码。 SecretBase
userName 基本身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

Office365LinkedService

名字 描述 价值
类型 链接服务的类型。 “Office365”(必需)
typeProperties Office365 链接服务属性。 Office365LinkedServiceTypeProperties(必需)

Office365LinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
office365TenantId Office 365 帐户所属的 Azure 租户 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
servicePrincipalId 指定应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
servicePrincipalKey 指定应用程序的密钥。 SecretBase(必需)
servicePrincipalTenantId 指定 Azure AD Web 应用程序所在的租户信息。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

OracleCloudStorageLinkedService

名字 描述 价值
类型 链接服务的类型。 “OracleCloudStorage”(必需)
typeProperties Oracle 云存储链接服务属性。 OracleCloudStorageLinkedServiceTypeProperties (必需)

OracleCloudStorageLinkedServiceTypeProperties

名字 描述 价值
accessKeyId Oracle 云存储标识和访问管理(IAM)用户的访问密钥标识符。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
secretAccessKey Oracle 云存储标识和访问管理 (IAM) 用户的机密访问密钥。 SecretBase
serviceUrl 此值指定要使用 Oracle 云存储连接器访问的终结点。 这是一个可选属性;仅当想要尝试其他服务终结点或想要在 https 和 http 之间切换时更改它。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

OracleLinkedService

名字 描述 价值
类型 链接服务的类型。 “Oracle”(必需)
typeProperties Oracle 数据库链接服务属性。 OracleLinkedServiceTypeProperties(必需)

OracleLinkedServiceTypeProperties

名字 描述 价值
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference

OracleServiceCloudLinkedService

名字 描述 价值
类型 链接服务的类型。 “OracleServiceCloud”(必需)
typeProperties Oracle 服务云链接服务属性。 OracleServiceCloudLinkedServiceTypeProperties(必需)

OracleServiceCloudLinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Oracle 服务云实例的 URL。 任何(必需)
密码 与用户名密钥中提供的用户名对应的密码。 SecretBase(必需)
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
username 用于访问 Oracle 服务云服务器的用户名。 任何(必需)

ParameterDefinitionSpecification

名字 描述 价值

ParameterSpecification

名字 描述 价值
defaultValue 参数的默认值。 任何
类型 参数类型。 “Array”
“Bool”
“Float”
“Int”
“Object”
“SecureString”
“String”(必需)

ParameterValueSpecification

名字 描述 价值

ParameterValueSpecification

名字 描述 价值

PaypalLinkedService

名字 描述 价值
类型 链接服务的类型。 “PayPal”(必需)
typeProperties PayPal服务链接服务属性。 PaypalLinkedServiceTypeProperties (必需)

PaypalLinkedServiceTypeProperties

名字 描述 价值
clientId 与PayPal应用程序关联的客户端 ID。 任何(必需)
clientSecret 与PayPal应用程序关联的客户端密码。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 PayPal实例的 URL。 (即 api.sandbox.paypal.com) 任何(必需)
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何

PhoenixLinkedService

名字 描述 价值
类型 链接服务的类型。 “Phoenix”(必需)
typeProperties Phoenix 服务器链接服务属性。 PhoenixLinkedServiceTypeProperties (必需)

PhoenixLinkedServiceTypeProperties

名字 描述 价值
allowHostNameCNMismatch 指定是否要求 CA 颁发的 SSL 证书名称与通过 SSL 连接时服务器的主机名匹配。 默认值为 false。 任何
allowSelfSignedServerCert 指定是否允许来自服务器的自签名证书。 默认值为 false。 任何
authenticationType 用于连接到 Phoenix 服务器的身份验证机制。 “Anonymous”
“UsernameAndPassword”
“WindowsAzureHDInsightService”(必需)
enableSsl 指定是否使用 SSL 加密与服务器的连接。 默认值为 false。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Phoenix 服务器的 IP 地址或主机名。 (即 192.168.222.160) 任何(必需)
httpPath 对应于 Phoenix 服务器的部分 URL。 (即 /gateway/sandbox/phoenix/version)。 如果使用 WindowsAzureHDInsightService,则默认值为 hbasephoenix。 任何
密码 与用户名对应的密码。 SecretBase
港口 Phoenix 服务器用来侦听客户端连接的 TCP 端口。 默认值为 8765。 任何
trustedCertPath 包含受信任的 CA 证书的 .pem 文件的完整路径,用于通过 SSL 连接时验证服务器。 只能在自承载 IR 上使用 SSL 时设置此属性。 默认值为随 IR 一起安装的 cacerts.pem 文件。 任何
username 用于连接到 Phoenix 服务器的用户名。 任何
useSystemTrustStore 指定是使用系统信任存储中的 CA 证书还是从指定的 PEM 文件使用 CA 证书。 默认值为 false。 任何

PostgreSqlLinkedService

名字 描述 价值
类型 链接服务的类型。 “PostgreSql”(必需)
typeProperties PostgreSQL 链接服务属性。 PostgreSqlLinkedServiceTypeProperties(必需)

PostgreSqlLinkedServiceTypeProperties

名字 描述 价值
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference

PostgreSqlV2LinkedService

名字 描述 价值
类型 链接服务的类型。 “PostgreSqlV2”(必需)
typeProperties PostgreSQLV2 链接服务属性。 PostgreSqlV2LinkedServiceTypeProperties (必需)

PostgreSqlV2LinkedServiceTypeProperties

名字 描述 价值
authenticationType 要使用的身份验证类型。 类型:字符串。 任何(必需)
commandTimeout 在尝试执行命令之前,等待时间(以秒为单位),然后再终止尝试并生成错误。 对于无穷大,设置为零。 类型:整数。 任何
connectionTimeout 在终止尝试并生成错误之前,尝试建立连接的时间(以秒为单位)。 类型:整数。 任何
数据库 连接的数据库名称。 类型:字符串。 任何(必需)
编码 获取或设置用于对 PostgreSQL 字符串数据进行编码/解码的 .NET 编码。 类型:字符串 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
logParameters 启用后,在执行命令时,将记录参数值。 类型:布尔值。 任何
密码 连接字符串中密码的 Azure Key Vault 机密引用。 类型:字符串。 AzureKeyVaultSecretReference
是否应使用连接池。 类型:布尔值。 任何
港口 连接的端口。 类型:整数。 任何
readBufferSize 确定读取时内部缓冲区使用的大小。 如果从数据库传输大型值,则提高性能可能会提高。 类型:整数。 任何
图式 设置架构搜索路径。 类型:字符串。 任何
服务器 连接的服务器名称。 类型:字符串。 任何(必需)
sslCertificate 要发送到服务器的客户端证书的位置。 类型:字符串。 任何
sslKey 要发送到服务器的客户端证书的客户端密钥的位置。 类型:字符串。 任何
sslMode 用于连接的 SSL 模式。 类型:整数。 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. 类型:整数。 任何(必需)
sslPassword 客户端证书密钥的密码。 类型:字符串。 任何
时区 获取或设置会话时区。 类型:字符串。 任何
trustServerCertificate 是否信任服务器证书而不验证它。 类型:布尔值。 任何
username 身份验证的用户名。 类型:字符串。 任何(必需)

PrestoLinkedService

名字 描述 价值
类型 链接服务的类型。 “Presto”(必需)
typeProperties Presto 服务器链接服务属性。 PrestoLinkedServiceTypeProperties(必需)

PrestoLinkedServiceTypeProperties

名字 描述 价值
allowHostNameCNMismatch 指定是否要求 CA 颁发的 SSL 证书名称与通过 SSL 连接时服务器的主机名匹配。 默认值为 false。 任何
allowSelfSignedServerCert 指定是否允许来自服务器的自签名证书。 默认值为 false。 任何
authenticationType 用于连接到 Presto 服务器的身份验证机制。 “Anonymous”
“LDAP”(必需)
目录 针对服务器的所有请求的目录上下文。 任何(必需)
enableSsl 指定是否使用 SSL 加密与服务器的连接。 默认值为 false。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Presto 服务器的 IP 地址或主机名。 (即 192.168.222.160) 任何(必需)
密码 与用户名对应的密码。 SecretBase
港口 Presto 服务器用来侦听客户端连接的 TCP 端口。 默认值为 8080。 任何
serverVersion Presto 服务器的版本。 (即 0.148-t) 任何(必需)
timeZoneID 连接使用的本地时区。 此选项的有效值在 IANA 时区数据库中指定。 默认值为系统时区。 任何
trustedCertPath 包含受信任的 CA 证书的 .pem 文件的完整路径,用于通过 SSL 连接时验证服务器。 只能在自承载 IR 上使用 SSL 时设置此属性。 默认值为随 IR 一起安装的 cacerts.pem 文件。 任何
username 用于连接到 Presto 服务器的用户名。 任何
useSystemTrustStore 指定是使用系统信任存储中的 CA 证书还是从指定的 PEM 文件使用 CA 证书。 默认值为 false。 任何

QuickbaseLinkedService

名字 描述 价值
类型 链接服务的类型。 “Quickbase”(必需)
typeProperties 快速数据库链接服务属性。 QuickbaseLinkedServiceTypeProperties(必需)

QuickbaseLinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
url 用于连接 Quickbase 源的 URL。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
userToken Quickbase 源的用户令牌。 SecretBase(必需)

QuickBooksLinkedService

名字 描述 价值
类型 链接服务的类型。 “QuickBooks”(必需)
typeProperties QuickBooks 服务器链接服务属性。 QuickBooksLinkedServiceTypeProperties(必需)

QuickBooksLinkedServiceTypeProperties

名字 描述 价值
accessToken OAuth 1.0 身份验证的访问令牌。 SecretBase
accessTokenSecret OAuth 1.0 身份验证的访问令牌机密。 SecretBase
companyId 要授权的 QuickBooks 公司的公司 ID。 任何
connectionProperties 用于连接到 QuickBooks 的属性。 它与链接服务中的其他任何属性互斥。 类型:对象。 任何
consumerKey OAuth 1.0 身份验证的使用者密钥。 任何
consumerSecret OAuth 1.0 身份验证的使用者密码。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
端点 QuickBooks 服务器的终结点。 (即 quickbooks.api.intuit.com) 任何
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何

ResponsysLinkedService

名字 描述 价值
类型 链接服务的类型。 “Responsys”(必需)
typeProperties Responsys 链接服务属性。 ResponsysLinkedServiceTypeProperties (必需)

ResponsysLinkedServiceTypeProperties

名字 描述 价值
clientId 与 Responsys 应用程序关联的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
clientSecret 与 Responsys 应用程序关联的客户端密码。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
端点 Responsys 服务器的终结点。 任何(必需)
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何

RestServiceLinkedService

名字 描述 价值
类型 链接服务的类型。 “RestService”(必需)
typeProperties Rest Service 链接服务属性。 RestServiceLinkedServiceTypeProperties(必需)

RestServiceLinkedServiceTypeProperties

名字 描述 价值
aadResourceId 请求使用授权的资源。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于连接到 REST 服务的身份验证类型。 “AadServicePrincipal”
“Anonymous”
“Basic”
“ManagedServiceIdentity”
“OAuth2ClientCredential”(必需)
authHeaders 请求中用于授权的 RESTful API 中的其他 HTTP 标头。 类型:对象(或带有 resultType 对象的表达式)。 任何
azureCloudType 指示服务主体身份验证的 Azure 云类型。允许的值为 AzurePublic、AzureChina、AzureUsGovernment、AzureGermany。 默认值为数据工厂区域的云类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clientId 与应用程序关联的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clientSecret 与应用程序关联的客户端密码。 SecretBase
凭据 包含身份验证信息的凭据引用。 CredentialReference
enableServerCertificateValidation 是否在连接到终结点时验证服务器端 SSL 证书。默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 基本身份验证类型中使用的密码。 SecretBase
资源 将向其请求访问权限的目标服务或资源。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
范围 所需的访问范围。 它描述将请求哪种类型的访问。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalEmbeddedCert 指定在 Azure Active Directory 中注册的应用程序的 base64 编码证书。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
servicePrincipalEmbeddedCertPassword 如果证书具有密码,并且使用的是 AadServicePrincipal 身份验证,请指定证书的密码。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
servicePrincipalId AadServicePrincipal 身份验证类型中使用的应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey AadServicePrincipal 身份验证类型中使用的应用程序的密钥。 SecretBase
房客 应用程序所在的 AadServicePrincipal 身份验证类型中使用的租户信息(域名或租户 ID)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
tokenEndpoint 要获取访问令牌的授权服务器的令牌终结点。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
url REST 服务的基 URL。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
userName 基本身份验证类型中使用的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SalesforceLinkedService

名字 描述 价值
类型 链接服务的类型。 “Salesforce”(必需)
typeProperties Salesforce 链接服务属性。 SalesforceLinkedServiceTypeProperties (必需)

SalesforceLinkedServiceTypeProperties

名字 描述 价值
apiVersion ADF 中使用的 Salesforce API 版本。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
environmentUrl Salesforce 实例的 URL。 默认值为“https://login.salesforce.com”。 若要从沙盒复制数据,请指定“https://test.salesforce.com”。 若要从自定义域复制数据,请指定“https://[domain].my.salesforce.com”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 Salesforce 实例的基本身份验证的密码。 SecretBase
securityToken 安全令牌是可选的,用于远程访问 Salesforce 实例。 SecretBase
username Salesforce 实例的基本身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SalesforceMarketingCloudLinkedService

名字 描述 价值
类型 链接服务的类型。 “SalesforceMarketingCloud”(必需)
typeProperties Salesforce Marketing Cloud 链接服务属性。 SalesforceMarketingCloudLinkedServiceTypeProperties(必需)

SalesforceMarketingCloudLinkedServiceTypeProperties

名字 描述 价值
clientId 与 Salesforce Marketing Cloud 应用程序关联的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clientSecret 与 Salesforce Marketing Cloud 应用程序关联的客户端密码。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
connectionProperties 用于连接到 Salesforce Marketing Cloud 的属性。 它与链接服务中的其他任何属性互斥。 类型:对象。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何

SalesforceServiceCloudLinkedService

名字 描述 价值
类型 链接服务的类型。 “SalesforceServiceCloud”(必需)
typeProperties Salesforce Service Cloud 链接服务属性。 SalesforceServiceCloudLinkedServiceTypeProperties(必需)

SalesforceServiceCloudLinkedServiceTypeProperties

名字 描述 价值
apiVersion ADF 中使用的 Salesforce API 版本。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
environmentUrl Salesforce Service Cloud 实例的 URL。 默认值为“https://login.salesforce.com”。 若要从沙盒复制数据,请指定“https://test.salesforce.com”。 若要从自定义域复制数据,请指定“https://[domain].my.salesforce.com”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
extendedProperties 追加到连接字符串的扩展属性。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 Salesforce 实例的基本身份验证的密码。 SecretBase
securityToken 安全令牌是可选的,用于远程访问 Salesforce 实例。 SecretBase
username Salesforce 实例的基本身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SalesforceServiceCloudV2LinkedService

名字 描述 价值
类型 链接服务的类型。 “SalesforceServiceCloudV2”(必需)
typeProperties Salesforce Service Cloud V2 链接服务属性。 SalesforceServiceCloudV2LinkedServiceTypeProperties(必需)

SalesforceServiceCloudV2LinkedServiceTypeProperties

名字 描述 价值
apiVersion ADF 中使用的 Salesforce API 版本。 版本必须大于或等于 Salesforce BULK API 2.0 所需的 47.0。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于连接到 Salesforce 的身份验证类型。 目前,我们仅支持 OAuth2ClientCredentials,这也是默认值 任何
clientId Salesforce 实例的 OAuth 2.0 客户端凭据流身份验证的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clientSecret Salesforce 实例的 OAuth 2.0 客户端凭据流身份验证的客户端密码。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
environmentUrl Salesforce Service Cloud 实例的 URL。 例如,“https://[domain].my.salesforce.com”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SalesforceV2LinkedService

名字 描述 价值
类型 链接服务的类型。 “SalesforceV2”(必需)
typeProperties Salesforce V2 链接服务属性。 SalesforceV2LinkedServiceTypeProperties (必需)

SalesforceV2LinkedServiceTypeProperties

名字 描述 价值
apiVersion ADF 中使用的 Salesforce API 版本。 版本必须大于或等于 Salesforce BULK API 2.0 所需的 47.0。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于连接到 Salesforce 的身份验证类型。 目前,我们仅支持 OAuth2ClientCredentials,这也是默认值 任何
clientId Salesforce 实例的 OAuth 2.0 客户端凭据流身份验证的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clientSecret Salesforce 实例的 OAuth 2.0 客户端凭据流身份验证的客户端密码。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
environmentUrl Salesforce 实例的 URL。 例如,“https://[domain].my.salesforce.com”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SapBWLinkedService

名字 描述 价值
类型 链接服务的类型。 “SapBW”(必需)
typeProperties 特定于此链接服务类型的属性。 SapBWLinkedServiceTypeProperties(必需)

SapBWLinkedServiceTypeProperties

名字 描述 价值
clientId BW 系统上客户端的客户端 ID。 (通常为表示为字符串的三位数十进制数)类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 用于访问 SAP BW 服务器的密码。 SecretBase
服务器 SAP BW 实例的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
systemNumber BW 系统的系统编号。 (通常为表示为字符串的两位数十进制数字。类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
userName 用于访问 SAP BW 服务器的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SapCloudForCustomerLinkedService

名字 描述 价值
类型 链接服务的类型。 “SapCloudForCustomer”(必需)
typeProperties SAP Cloud for Customer 链接服务属性。 SapCloudForCustomerLinkedServiceTypeProperties(必需)

SapCloudForCustomerLinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 必须提供 encryptedCredential 或用户名/密码。 类型:字符串。 字符串
密码 基本身份验证的密码。 SecretBase
url SAP Cloud for Customer OData API 的 URL。 例如,“[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
username 基本身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SapEccLinkedService

名字 描述 价值
类型 链接服务的类型。 “SapEcc”(必需)
typeProperties SAP ECC 链接服务属性。 SapEccLinkedServiceTypeProperties(必需)

SapEccLinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 必须提供 encryptedCredential 或用户名/密码。 类型:字符串。 字符串
密码 基本身份验证的密码。 SecretBase
url SAP ECC OData API 的 URL。 例如,“[https://hostname:port/sap/opu/odata/sap/servicename/]”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
username 基本身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SapHanaLinkedService

名字 描述 价值
类型 链接服务的类型。 “SapHana”(必需)
typeProperties 特定于此链接服务类型的属性。 SapHanaLinkedServiceProperties (必需)

SapHanaLinkedServiceProperties

名字 描述 价值
authenticationType 用于连接到 SAP HANA 服务器的身份验证类型。 “Basic”
“Windows”
connectionString SAP HANA ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 用于访问 SAP HANA 服务器的密码。 SecretBase
服务器 SAP HANA 服务器的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
userName 用于访问 SAP HANA 服务器的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SapOdpLinkedService

名字 描述 价值
类型 链接服务的类型。 “SapOdp”(必需)
typeProperties 特定于 SAP ODP 链接服务类型的属性。 SapOdpLinkedServiceTypeProperties(必需)

SapOdpLinkedServiceTypeProperties

名字 描述 价值
clientId 表所在的 SAP 系统上客户端的客户端 ID。 (通常为表示为字符串的三位数十进制数)类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
语言 表所在的 SAP 系统的语言。 默认值为 EN。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
logonGroup SAP 系统的登录组。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
messageServer SAP 消息服务器的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
messageServerService 消息服务器的服务名称或端口号。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 用于访问表所在的 SAP 服务器的密码。 SecretBase
服务器 表所在的 SAP 实例的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncLibraryPath 外部安全产品的库,用于访问表所在的 SAP 服务器。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncMode 用于访问表所在的 SAP 服务器的 SNC 激活指示器。 必须是 0(关)或 1(开)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncMyName 发起程序的 SNC 名称,用于访问表所在的 SAP 服务器。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncPartnerName 通信合作伙伴的 SNC 名称,用于访问表所在的 SAP 服务器。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncQop SNC 保护质量。 允许的值包括:1、2、3、8、9。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
subscriberName 订阅者名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
systemId 表所在的 SAP 系统的 SystemID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
systemNumber 表所在的 SAP 系统的系统编号。 (通常为表示为字符串的两位数十进制数字。类型:字符串(或带有 resultType 字符串的表达式)。 任何
userName 用于访问表所在的 SAP 服务器的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
x509CertificatePath SNC X509 证书文件路径。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SapOpenHubLinkedService

名字 描述 价值
类型 链接服务的类型。 “SapOpenHub”(必需)
typeProperties 特定于 SAP Business Warehouse Open Hub 目标链接服务类型的属性。 SapOpenHubLinkedServiceTypeProperties(必需)

SapOpenHubLinkedServiceTypeProperties

名字 描述 价值
clientId 开放中心目标的 BW 系统上的客户端的客户端 ID。 (通常为表示为字符串的三位数十进制数)类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
语言 开放中心目标所在的 BW 系统的语言。 默认值为 EN。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
logonGroup SAP 系统的登录组。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
messageServer SAP 消息服务器的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
messageServerService 消息服务器的服务名称或端口号。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 用于访问开放中心目标所在的 SAP BW 服务器的密码。 SecretBase
服务器 打开中心目标的 SAP BW 实例的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
systemId 表所在的 SAP 系统的 SystemID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
systemNumber 开放中心目标所在的 BW 系统的系统编号。 (通常为表示为字符串的两位数十进制数字。类型:字符串(或带有 resultType 字符串的表达式)。 任何
userName 用于访问打开中心目标的 SAP BW 服务器的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SapTableLinkedService

名字 描述 价值
类型 链接服务的类型。 “SapTable”(必需)
typeProperties 特定于此链接服务类型的属性。 SapTableLinkedServiceTypeProperties(必需)

SapTableLinkedServiceTypeProperties

名字 描述 价值
clientId 表所在的 SAP 系统上客户端的客户端 ID。 (通常为表示为字符串的三位数十进制数)类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
语言 表所在的 SAP 系统的语言。 默认值为 EN。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
logonGroup SAP 系统的登录组。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
messageServer SAP 消息服务器的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
messageServerService 消息服务器的服务名称或端口号。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 用于访问表所在的 SAP 服务器的密码。 SecretBase
服务器 表所在的 SAP 实例的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncLibraryPath 外部安全产品的库,用于访问表所在的 SAP 服务器。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncMode 用于访问表所在的 SAP 服务器的 SNC 激活指示器。 必须是 0(关)或 1(开)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncMyName 发起程序的 SNC 名称,用于访问表所在的 SAP 服务器。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncPartnerName 通信合作伙伴的 SNC 名称,用于访问表所在的 SAP 服务器。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncQop SNC 保护质量。 允许的值包括:1、2、3、8、9。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
systemId 表所在的 SAP 系统的 SystemID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
systemNumber 表所在的 SAP 系统的系统编号。 (通常为表示为字符串的两位数十进制数字。类型:字符串(或带有 resultType 字符串的表达式)。 任何
userName 用于访问表所在的 SAP 服务器的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

ScriptAction

名字 描述 价值
名字 脚本操作的用户提供的名称。 string (必需)
参数 脚本操作的参数。 字符串
角色 应对其执行脚本操作的节点类型。 任何(必需)
uri 脚本操作的 URI。 string (必需)

SecretBase

名字 描述 价值
类型 对于 AzureKeyVaultSecretReference,请设置为“AzureKeyVaultSecret”。 对于 type SecureString,设置为“SecureString”。 “AzureKeyVaultSecret”
“SecureString”(必需)

SecureString

名字 描述 价值
类型 机密的类型。 “SecureString”(必需)
价值 安全字符串的值。 string (必需)

ServiceNowLinkedService

名字 描述 价值
类型 链接服务的类型。 “ServiceNow”(必需)
typeProperties ServiceNow 服务器链接服务属性。 ServiceNowLinkedServiceTypeProperties (必需)

ServiceNowLinkedServiceTypeProperties

名字 描述 价值
authenticationType 要使用的身份验证类型。 “Basic”
“OAuth2”(必需)
clientId OAuth2 身份验证的客户端 ID。 任何
clientSecret OAuth2 身份验证的客户端密码。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
端点 ServiceNow 服务器的终结点。 (即 <实例>.service-now.com) 任何(必需)
密码 与基本身份验证和 OAuth2 身份验证的用户名对应的密码。 SecretBase
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何
username 用于连接到 ServiceNow 服务器以进行基本身份验证和 OAuth2 身份验证的用户名。 任何

ServiceNowV2LinkedService

名字 描述 价值
类型 链接服务的类型。 “ServiceNowV2”(必需)
typeProperties ServiceNowV2 服务器链接服务属性。 ServiceNowV2LinkedServiceTypeProperties (必需)

ServiceNowV2LinkedServiceTypeProperties

名字 描述 价值
authenticationType 要使用的身份验证类型。 “Basic”
“OAuth2”(必需)
clientId OAuth2 身份验证的客户端 ID。 任何
clientSecret OAuth2 身份验证的客户端密码。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
端点 ServiceNowV2 服务器的终结点。 (即 <实例>.service-now.com) 任何(必需)
grantType 用于 OAuth2 身份验证的 GrantType。 默认值为密码。 任何
密码 与基本身份验证和 OAuth2 身份验证的用户名对应的密码。 SecretBase
username 用于连接到 ServiceNowV2 服务器以进行基本身份验证和 OAuth2 身份验证的用户名。 任何

SftpServerLinkedService

名字 描述 价值
类型 链接服务的类型。 “Sftp”(必需)
typeProperties 特定于此链接服务类型的属性。 SftpServerLinkedServiceTypeProperties (必需)

SftpServerLinkedServiceTypeProperties

名字 描述 价值
authenticationType 用于连接到 FTP 服务器的身份验证类型。 “Basic”
“MultiFactor”
“SshPublicKey”
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 SFTP 服务器主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
hostKeyFingerprint SFTP 服务器的主机键指打印。 当 SkipHostKeyValidation 为 false 时,应指定 HostKeyFingerprint。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
passPhrase 如果 SSH 私钥已加密,则解密 SSH 私钥的密码。 SecretBase
密码 用于登录 SFTP 服务器进行基本身份验证的密码。 SecretBase
港口 SFTP 服务器用于侦听客户端连接的 TCP 端口号。 默认值为 22。 类型:整数(或包含 resultType 整数的表达式),最小值:0。 任何
privateKeyContent 用于 SshPublicKey 身份验证的 Base64 编码 SSH 私钥内容。 对于使用 SshPublicKey 身份验证的本地复制,应指定 PrivateKeyPath 或 PrivateKeyContent。 SSH 私钥应为 OpenSSH 格式。 SecretBase
privateKeyPath SshPublicKey 身份验证的 SSH 私钥文件路径。 仅适用于本地复制。 对于使用 SshPublicKey 身份验证的本地复制,应指定 PrivateKeyPath 或 PrivateKeyContent。 SSH 私钥应为 OpenSSH 格式。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
skipHostKeyValidation 如果为 true,请跳过 SSH 主机密钥验证。 默认值为 false。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
userName 用于登录到 SFTP 服务器的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SharePointOnlineListLinkedService

名字 描述 价值
类型 链接服务的类型。 “SharePointOnlineList”(必需)
typeProperties SharePoint Online 列表链接服务属性。 SharePointOnlineListLinkedServiceTypeProperties (必需)

SharePointOnlineListLinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalEmbeddedCert 指定在 Azure Active Directory 中注册的应用程序的 base64 编码证书。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
servicePrincipalEmbeddedCertPassword 如果证书具有密码,并且使用的是 AadServicePrincipal 身份验证,请指定证书的密码。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
servicePrincipalId 在 Azure Active Directory 中注册的应用程序(客户端)ID。 请确保向此应用程序授予 SharePoint 网站权限。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
servicePrincipalKey 在 Azure Active Directory 中注册的应用程序的客户端密码。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
siteUrl SharePoint Online 网站的 URL。 例如,https://contoso.sharepoint.com/sites/siteName。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
tenantId 应用程序所在的租户 ID。 可以从 Azure 门户 Active Directory 概述页找到它。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

ShopifyLinkedService

名字 描述 价值
类型 链接服务的类型。 “Shopify”(必需)
typeProperties Shopify Service 链接服务属性。 ShopifyLinkedServiceTypeProperties(必需)

ShopifyLinkedServiceTypeProperties

名字 描述 价值
accessToken 可用于访问 Shopify 数据的 API 访问令牌。 如果令牌处于脱机模式,则令牌不会过期。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Shopify 服务器的终结点。 (即 mystore.myshopify.com) 任何(必需)
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何

SmartsheetLinkedService

名字 描述 价值
类型 链接服务的类型。 “Smartsheet”(必需)
typeProperties Smartsheet 链接服务属性。 SmartsheetLinkedServiceTypeProperties (必需)

SmartsheetLinkedServiceTypeProperties

名字 描述 价值
apiToken Smartsheet 源的 API 令牌。 SecretBase(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串

SnowflakeLinkedService

名字 描述 价值
类型 链接服务的类型。 “Snowflake”(必需)
typeProperties Snowflake 链接服务属性。 SnowflakeLinkedServiceTypeProperties(必需)

SnowflakeLinkedServiceTypeProperties

名字 描述 价值
connectionString 雪花的连接字符串。 类型:string、SecureString。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference

SnowflakeLinkedV2ServiceTypeProperties

名字 描述 价值
accountIdentifier Snowflake 帐户的帐户标识符,例如 xy12345.east-us-2.azure 任何(必需)
authenticationType 用于身份验证的类型。 类型:字符串。 “AADServicePrincipal”
“Basic”
“KeyPair”
clientId 在 Azure Active Directory 中注册用于 AADServicePrincipal 身份验证的应用程序的客户端 ID。 任何
clientSecret 用于 AADServicePrincipal 身份验证的客户端机密的 Azure 密钥保管库机密参考。 SecretBase
数据库 Snowflake 数据库的名称。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Snowflake 帐户的主机名。 任何
密码 连接字符串中密码的 Azure Key Vault 机密引用。 SecretBase
privateKey 用于 KeyPair 身份验证的 privateKey 的 Azure Key Vault 机密参考。 SecretBase
privateKeyPassphrase 使用加密私钥进行 KeyPair 身份验证的私钥密码的 Azure 密钥保管库机密参考。 SecretBase
范围 在 Azure Active Directory 中注册用于 AADServicePrincipal 身份验证的应用程序的范围。 任何
tenantId 在 Azure Active Directory 中注册用于 AADServicePrincipal 身份验证的应用程序的租户 ID。 任何
用户 Snowflake 用户的名称。 任何
仓库 Snowflake 仓库的名称。 任何(必需)

SnowflakeV2LinkedService

名字 描述 价值
类型 链接服务的类型。 “SnowflakeV2”(必需)
typeProperties Snowflake 链接服务属性。 SnowflakeLinkedV2ServiceTypeProperties (必需)

SparkLinkedService

名字 描述 价值
类型 链接服务的类型。 “Spark”(必需)
typeProperties Spark Server 链接服务属性。 SparkLinkedServiceTypeProperties (必需)

SparkLinkedServiceTypeProperties

名字 描述 价值
allowHostNameCNMismatch 指定是否要求 CA 颁发的 SSL 证书名称与通过 SSL 连接时服务器的主机名匹配。 默认值为 false。 任何
allowSelfSignedServerCert 指定是否允许来自服务器的自签名证书。 默认值为 false。 任何
authenticationType 用于访问 Spark 服务器的身份验证方法。 “Anonymous”
“Username”
“UsernameAndPassword”
“WindowsAzureHDInsightService”(必需)
enableSsl 指定是否使用 SSL 加密与服务器的连接。 默认值为 false。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Spark 服务器的 IP 地址或主机名 任何(必需)
httpPath 与 Spark 服务器对应的部分 URL。 任何
密码 与你在“用户名”字段中提供的用户名对应的密码 SecretBase
港口 Spark 服务器用于侦听客户端连接的 TCP 端口。 任何(必需)
serverType Spark 服务器的类型。 “SharkServer”
“SharkServer2”
“SparkThriftServer”
thriftTransportProtocol 在 Thrift 层中使用的传输协议。 “Binary”
“HTTP”
“SASL”
trustedCertPath 包含受信任的 CA 证书的 .pem 文件的完整路径,用于通过 SSL 连接时验证服务器。 只能在自承载 IR 上使用 SSL 时设置此属性。 默认值为随 IR 一起安装的 cacerts.pem 文件。 任何
username 用于访问 Spark Server 的用户名。 任何
useSystemTrustStore 指定是使用系统信任存储中的 CA 证书还是从指定的 PEM 文件使用 CA 证书。 默认值为 false。 任何

SqlAlwaysEncryptedProperties

名字 描述 价值
alwaysEncryptedAkvAuthType Sql 始终加密 AKV 身份验证类型。 类型:字符串。 “ManagedIdentity”
“ServicePrincipal”
“UserAssignedManagedIdentity”(必需)
凭据 包含身份验证信息的凭据引用。 CredentialReference
servicePrincipalId Azure Active Directory 中用于 Azure Key Vault 身份验证的应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Azure Key Vault 进行身份验证的服务主体的密钥。 SecretBase

SqlServerLinkedService

名字 描述 价值
类型 链接服务的类型。 “SqlServer”(必需)
typeProperties SQL Server 链接服务属性。 SqlServerLinkedServiceTypeProperties(必需)

SqlServerLinkedServiceTypeProperties

名字 描述 价值
alwaysEncryptedSettings Sql 始终加密属性。 SqlAlwaysEncryptedProperties
applicationIntent 连接到服务器时的应用程序工作负荷类型,由建议的版本使用。 可能的值为 ReadOnly 和 ReadWrite。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于身份验证的类型。 类型:字符串。 “SQL”
“UserAssignedManagedIdentity”
“Windows”
commandTimeout 在终止尝试执行命令并生成错误之前(以秒为单位)的默认等待时间(以秒为单位),由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
connectRetryCount 确定有空闲连接失败(由建议的版本使用)后尝试的重新连接数。 这必须是介于 0 和 255 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectRetryInterval 确定建议的版本使用空闲连接失败后,每个重新连接尝试之间的时间(以秒为单位)。 这必须是介于 1 和 60 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectTimeout 在终止尝试并生成由建议版本使用的错误之前,等待与服务器的连接的时间长度(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
数据库 建议的版本使用的数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
加密 指示客户端和服务器之间发送的所有数据是否需要 TLS 加密(由建议的版本使用)。 可能的值为 true/yes/mandatory、false/no/optional 和 strict。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
failoverPartner 如果主服务器关闭(由建议的版本使用)连接到的伙伴服务器的名称或地址。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
hostNameInCertificate 验证连接的服务器证书时要使用的主机名。 如果未指定,则数据源中的服务器名称用于证书验证,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
integratedSecurity 指示是否在连接(如果为 false)中指定用户 ID 和密码,或者当前 Windows 帐户凭据是否用于身份验证(如果为 true),由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
loadBalanceTimeout 在被建议的版本使用之前,连接在连接池中生存的最短时间(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
maxPoolSize 此特定连接字符串的连接池中允许的最大连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
minPoolSize 此特定连接字符串的连接池中允许的最小连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
multipleActiveResultSets 如果为 true,应用程序可以维护多个活动结果集(MARS)。 如果为 false,应用程序必须处理或取消一个批处理中的所有结果集,然后才能在该连接上执行任何其他批处理(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
multiSubnetFailover 如果应用程序连接到不同子网上的 AlwaysOn 可用性组(AG),则设置 MultiSubnetFailover=true 可以更快地检测和连接到(当前)活动服务器(当前)活动服务器(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
packetSize 用于与服务器实例通信的网络数据包的大小(以字节为单位,由建议的版本使用)。 类型:整数(或包含 resultType 整数的表达式)。 任何
密码 本地 Windows 身份验证密码。 SecretBase
指示每次请求连接时,连接是共用的还是显式打开的,由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
服务器 要连接到的 SQL Server 实例的名称或网络地址,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
trustServerCertificate 指示通道是否在绕过证书链来验证推荐版本使用的信任时是否加密通道。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
userName 本地 Windows 身份验证用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SquareLinkedService

名字 描述 价值
类型 链接服务的类型。 “Square”(必需)
typeProperties 方块服务链接服务属性。 SquareLinkedServiceTypeProperties(必需)

SquareLinkedServiceTypeProperties

名字 描述 价值
clientId 与 Square 应用程序关联的客户端 ID。 任何
clientSecret 与 Square 应用程序关联的客户端密码。 SecretBase
connectionProperties 用于连接到 Square 的属性。 它与链接服务中的其他任何属性互斥。 类型:对象。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Square 实例的 URL。 (即 mystore.mysquare.com) 任何
redirectUri 在 Square 应用程序仪表板中分配的重定向 URL。 (即 http://localhost:2500) 任何
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何

SybaseLinkedService

名字 描述 价值
类型 链接服务的类型。 “Sybase”(必需)
typeProperties Sybase 链接服务属性。 SybaseLinkedServiceTypeProperties (必需)

SybaseLinkedServiceTypeProperties

名字 描述 价值
authenticationType 要用于连接的 AuthenticationType。 “Basic”
“Windows”
数据库 连接的数据库名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 身份验证密码。 SecretBase
图式 连接的架构名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
服务器 连接的服务器名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
username 身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

TeamDeskLinkedService

名字 描述 价值
类型 链接服务的类型。 “TeamDesk”(必需)
typeProperties TeamDesk 链接服务属性。 TeamDeskLinkedServiceTypeProperties(必需)

TeamDeskLinkedServiceTypeProperties

名字 描述 价值
apiToken TeamDesk 源的 API 令牌。 SecretBase
authenticationType 要使用的身份验证类型。 “Basic”
“Token”(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 TeamDesk 源的密码。 SecretBase
url 用于连接 TeamDesk 源的 URL。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
userName TeamDesk 源的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

TeradataLinkedService

名字 描述 价值
类型 链接服务的类型。 “Teradata”(必需)
typeProperties Teradata 链接服务属性。 TeradataLinkedServiceTypeProperties(必需)

TeradataLinkedServiceTypeProperties

名字 描述 价值
authenticationType 要用于连接的 AuthenticationType。 “Basic”
“Windows”
connectionString Teradata ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 身份验证密码。 SecretBase
服务器 连接的服务器名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
username 身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

TwilioLinkedService

名字 描述 价值
类型 链接服务的类型。 “Twilio”(必需)
typeProperties Twilio 链接服务属性。 TwilioLinkedServiceTypeProperties(必需)

TwilioLinkedServiceTypeProperties

名字 描述 价值
密码 Twilio 服务的身份验证令牌。 SecretBase(必需)
userName Twilio 服务的帐户 SID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

VerticaLinkedService

名字 描述 价值
类型 链接服务的类型。 “Vertica”(必需)
typeProperties Vertica 链接服务属性。 VerticaLinkedServiceTypeProperties (必需)

VerticaLinkedServiceTypeProperties

名字 描述 价值
connectionString ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
数据库 连接的数据库名称。 类型:字符串。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
港口 连接的端口。 类型:整数。 任何
pwd 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference
服务器 连接的服务器名称。 类型:字符串。 任何
uid 身份验证的用户名。 类型:字符串。 任何

WarehouseLinkedService

名字 描述 价值
类型 链接服务的类型。 “仓库”(必需)
typeProperties Microsoft Fabric Warehouse 链接服务属性。 WarehouseLinkedServiceTypeProperties(必需)

WarehouseLinkedServiceTypeProperties

名字 描述 价值
artifactId Microsoft Fabric Warehouse 项目的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
端点 Microsoft Fabric Warehouse 服务器的终结点。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId 用于对 Microsoft Fabric Warehouse 进行身份验证的应用程序的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Microsoft Fabric Warehouse 进行身份验证的应用程序密钥。 SecretBase
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
workspaceId Microsoft Fabric 工作区的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

WebAnonymousAuthentication

名字 描述 价值
authenticationType 用于连接到 Web 表源的身份验证类型。 “Anonymous”(必需)

WebBasicAuthentication

名字 描述 价值
authenticationType 用于连接到 Web 表源的身份验证类型。 “Basic”(必需)
密码 基本身份验证的密码。 SecretBase(必需)
username 基本身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

WebClientCertificateAuthentication

名字 描述 价值
authenticationType 用于连接到 Web 表源的身份验证类型。 “ClientCertificate”(必需)
密码 PFX 文件的密码。 SecretBase(必需)
pfx PFX 文件的 Base64 编码内容。 SecretBase(必需)

WebLinkedService

名字 描述 价值
类型 链接服务的类型。 “Web”(必需)
typeProperties Web 链接服务属性。 WebLinkedServiceTypeProperties(必需)

WebLinkedServiceTypeProperties

名字 描述 价值
authenticationType 对于 WebAnonymousAuthentication类型,设置为“Anonymous”。 对于 WebBasicAuthentication,请设置为“基本”。 对于 WebClientCertificateAuthentication,请设置为“ClientCertificate”。 “Anonymous”
“Basic”
“ClientCertificate”(必需)
url Web 服务终结点的 URL,例如 https://www.microsoft.com。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

XeroLinkedService

名字 描述 价值
类型 链接服务的类型。 “Xero”(必需)
typeProperties Xero 服务链接服务属性。 XeroLinkedServiceTypeProperties(必需)

XeroLinkedServiceTypeProperties

名字 描述 价值
connectionProperties 用于连接到 Xero 的属性。 它与链接服务中的其他任何属性互斥。 类型:对象。 任何
consumerKey 与 Xero 应用程序关联的使用者密钥。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Xero 服务器的终结点。 (即 api.xero.com) 任何
privateKey 为 Xero 专用应用程序生成的 .pem 文件中的私钥。 必须包括 .pem 文件中的所有文本,包括 Unix 行结尾(
).
SecretBase
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何

ZendeskLinkedService

名字 描述 价值
类型 链接服务的类型。 “Zendesk”(必需)
typeProperties Zendesk 链接服务属性。 ZendeskLinkedServiceTypeProperties (必需)

ZendeskLinkedServiceTypeProperties

名字 描述 价值
apiToken Zendesk 源的 API 令牌。 SecretBase
authenticationType 要使用的身份验证类型。 “Basic”
“Token”(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 Zendesk 源的密码。 SecretBase
url 用于连接 Zendesk 源的 URL。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
userName Zendesk 源的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

ZohoLinkedService

名字 描述 价值
类型 链接服务的类型。 “Zoho”(必需)
typeProperties Zoho 服务器链接服务属性。 ZohoLinkedServiceTypeProperties(必需)

ZohoLinkedServiceTypeProperties

名字 描述 价值
accessToken Zoho 身份验证的访问令牌。 SecretBase
connectionProperties 用于连接到 Zoho 的属性。 它与链接服务中的其他任何属性互斥。 类型:对象。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
端点 Zoho 服务器的终结点。 (即 crm.zoho.com/crm/private) 任何
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何

快速入门示例

以下快速入门示例部署此资源类型。

Bicep 文件 描述
创建 V2 数据工厂 此模板创建一个 V2 数据工厂,用于将数据从 Azure Blob 存储中的文件夹复制到存储中的另一个文件夹。
在 Azure 体系结构 上部署体育分析 创建启用了 ADLS Gen 2 的 Azure 存储帐户、存储帐户的链接服务的 Azure 数据工厂实例(如果已部署的 Azure SQL 数据库)和 Azure Databricks 实例。 将为部署模板的用户的 AAD 标识以及 ADF 实例的托管标识授予存储帐户上的存储 Blob 数据参与者角色。 还有一些选项可用于部署 Azure Key Vault 实例、Azure SQL 数据库和 Azure 事件中心(用于流式处理用例)。 部署 Azure Key Vault 后,将为部署模板的用户提供数据工厂托管标识和 AAD 标识,并被授予 Key Vault 机密用户角色。
可以使用 Azure 数据工厂 更多 - 单击一次尝试 Azure 数据工厂 此模板为从 Azure Blob 复制到另一个 Azure Blob 中的复制活动创建数据工厂管道

ARM 模板资源定义

可以使用目标操作部署工厂/linkedservices 资源类型:

有关每个 API 版本中已更改属性的列表,请参阅 更改日志

资源格式

若要创建 Microsoft.DataFactory/factories/linkedservices 资源,请将以下 JSON 添加到模板。

{
  "type": "Microsoft.DataFactory/factories/linkedservices",
  "apiVersion": "2018-06-01",
  "name": "string",
  "properties": {
    "annotations": [ {} ],
    "connectVia": {
      "parameters": {
        "{customized property}": {}
      },
      "referenceName": "string",
      "type": "string"
    },
    "description": "string",
    "parameters": {
      "{customized property}": {
        "defaultValue": {},
        "type": "string"
      }
    },
    "version": "string",
    "type": "string"
    // For remaining properties, see LinkedService objects
  }
}

WebLinkedServiceTypeProperties 对象

设置 authenticationType 属性以指定对象的类型。

对于 匿名,请使用:

{
  "authenticationType": "Anonymous"
}

对于 基本,请使用:

{
  "authenticationType": "Basic",
  "password": {
    "type": "string"
    // For remaining properties, see SecretBase objects
  },
  "username": {}
}

对于 ClientCertificate,请使用:

{
  "authenticationType": "ClientCertificate",
  "password": {
    "type": "string"
    // For remaining properties, see SecretBase objects
  },
  "pfx": {
    "type": "string"
    // For remaining properties, see SecretBase objects
  }
}

LinkedService 对象

设置 类型 属性以指定对象的类型。

对于 AmazonMWS,请使用:

{
  "type": "AmazonMWS",
  "typeProperties": {
    "accessKeyId": {},
    "encryptedCredential": "string",
    "endpoint": {},
    "marketplaceID": {},
    "mwsAuthToken": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "secretKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "sellerID": {},
    "useEncryptedEndpoints": {},
    "useHostVerification": {},
    "usePeerVerification": {}
  }
}

对于 AmazonRdsForOracle,请使用:

{
  "type": "AmazonRdsForOracle",
  "typeProperties": {
    "connectionString": {},
    "encryptedCredential": "string",
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    }
  }
}

对于 AmazonRdsForSqlServer,请使用:

{
  "type": "AmazonRdsForSqlServer",
  "typeProperties": {
    "alwaysEncryptedSettings": {
      "alwaysEncryptedAkvAuthType": "string",
      "credential": {
        "referenceName": "string",
        "type": "string"
      },
      "servicePrincipalId": {},
      "servicePrincipalKey": {
        "type": "string"
        // For remaining properties, see SecretBase objects
      }
    },
    "applicationIntent": {},
    "authenticationType": "string",
    "commandTimeout": {},
    "connectionString": {},
    "connectRetryCount": {},
    "connectRetryInterval": {},
    "connectTimeout": {},
    "database": {},
    "encrypt": {},
    "encryptedCredential": "string",
    "failoverPartner": {},
    "hostNameInCertificate": {},
    "integratedSecurity": {},
    "loadBalanceTimeout": {},
    "maxPoolSize": {},
    "minPoolSize": {},
    "multipleActiveResultSets": {},
    "multiSubnetFailover": {},
    "packetSize": {},
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "pooling": {},
    "server": {},
    "trustServerCertificate": {},
    "userName": {}
  }
}

对于 AmazonRedshift,请使用:

{
  "type": "AmazonRedshift",
  "typeProperties": {
    "database": {},
    "encryptedCredential": "string",
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "port": {},
    "server": {},
    "username": {}
  }
}

对于 AmazonS3,请使用:

{
  "type": "AmazonS3",
  "typeProperties": {
    "accessKeyId": {},
    "authenticationType": {},
    "encryptedCredential": "string",
    "secretAccessKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "serviceUrl": {},
    "sessionToken": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    }
  }
}

对于 AmazonS3Compatible,请使用:

{
  "type": "AmazonS3Compatible",
  "typeProperties": {
    "accessKeyId": {},
    "encryptedCredential": "string",
    "forcePathStyle": {},
    "secretAccessKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "serviceUrl": {}
  }
}

对于 AppFigures,请使用:

{
  "type": "AppFigures",
  "typeProperties": {
    "clientKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "userName": {}
  }
}

对于 Asana,请使用:

{
  "type": "Asana",
  "typeProperties": {
    "apiToken": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "encryptedCredential": "string"
  }
}

对于 AzureBatch,请使用:

{
  "type": "AzureBatch",
  "typeProperties": {
    "accessKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "accountName": {},
    "batchUri": {},
    "credential": {
      "referenceName": "string",
      "type": "string"
    },
    "encryptedCredential": "string",
    "linkedServiceName": {
      "parameters": {
        "{customized property}": {}
      },
      "referenceName": "string",
      "type": "string"
    },
    "poolName": {}
  }
}

对于 AzureBlobFS,请使用:

{
  "type": "AzureBlobFS",
  "typeProperties": {
    "accountKey": {},
    "azureCloudType": {},
    "credential": {
      "referenceName": "string",
      "type": "string"
    },
    "encryptedCredential": "string",
    "sasToken": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "sasUri": {},
    "servicePrincipalCredential": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "servicePrincipalCredentialType": {},
    "servicePrincipalId": {},
    "servicePrincipalKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "tenant": {},
    "url": {}
  }
}

对于 azureBlobStorage,请使用:

{
  "type": "AzureBlobStorage",
  "typeProperties": {
    "accountKey": {
      "secretName": {},
      "secretVersion": {},
      "store": {
        "parameters": {
          "{customized property}": {}
        },
        "referenceName": "string",
        "type": "string"
      },
      "type": "string"
    },
    "accountKind": {},
    "authenticationType": "string",
    "azureCloudType": {},
    "connectionString": {},
    "containerUri": {},
    "credential": {
      "referenceName": "string",
      "type": "string"
    },
    "encryptedCredential": "string",
    "sasToken": {
      "secretName": {},
      "secretVersion": {},
      "store": {
        "parameters": {
          "{customized property}": {}
        },
        "referenceName": "string",
        "type": "string"
      },
      "type": "string"
    },
    "sasUri": {},
    "serviceEndpoint": {},
    "servicePrincipalId": {},
    "servicePrincipalKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "tenant": {}
  }
}

对于 AzureDataExplorer,请使用:

{
  "type": "AzureDataExplorer",
  "typeProperties": {
    "credential": {
      "referenceName": "string",
      "type": "string"
    },
    "database": {},
    "endpoint": {},
    "servicePrincipalId": {},
    "servicePrincipalKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "tenant": {}
  }
}

对于 AzureDataLakeAnalytics,请使用:

{
  "type": "AzureDataLakeAnalytics",
  "typeProperties": {
    "accountName": {},
    "dataLakeAnalyticsUri": {},
    "encryptedCredential": "string",
    "resourceGroupName": {},
    "servicePrincipalId": {},
    "servicePrincipalKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "subscriptionId": {},
    "tenant": {}
  }
}

对于 azureDataLakeStore,请使用:

{
  "type": "AzureDataLakeStore",
  "typeProperties": {
    "accountName": {},
    "azureCloudType": {},
    "credential": {
      "referenceName": "string",
      "type": "string"
    },
    "dataLakeStoreUri": {},
    "encryptedCredential": "string",
    "resourceGroupName": {},
    "servicePrincipalId": {},
    "servicePrincipalKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "subscriptionId": {},
    "tenant": {}
  }
}

对于 AzureDatabricks,请使用:

{
  "type": "AzureDatabricks",
  "typeProperties": {
    "accessToken": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "authentication": {},
    "credential": {
      "referenceName": "string",
      "type": "string"
    },
    "domain": {},
    "encryptedCredential": "string",
    "existingClusterId": {},
    "instancePoolId": {},
    "newClusterCustomTags": {
      "{customized property}": {}
    },
    "newClusterDriverNodeType": {},
    "newClusterEnableElasticDisk": {},
    "newClusterInitScripts": {},
    "newClusterLogDestination": {},
    "newClusterNodeType": {},
    "newClusterNumOfWorker": {},
    "newClusterSparkConf": {
      "{customized property}": {}
    },
    "newClusterSparkEnvVars": {
      "{customized property}": {}
    },
    "newClusterVersion": {},
    "policyId": {},
    "workspaceResourceId": {}
  }
}

对于 AzureDatabricksDeltaLake,请使用:

{
  "type": "AzureDatabricksDeltaLake",
  "typeProperties": {
    "accessToken": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "clusterId": {},
    "credential": {
      "referenceName": "string",
      "type": "string"
    },
    "domain": {},
    "encryptedCredential": "string",
    "workspaceResourceId": {}
  }
}

对于 AzureFileStorage,请使用:

{
  "type": "AzureFileStorage",
  "typeProperties": {
    "accountKey": {
      "secretName": {},
      "secretVersion": {},
      "store": {
        "parameters": {
          "{customized property}": {}
        },
        "referenceName": "string",
        "type": "string"
      },
      "type": "string"
    },
    "connectionString": {},
    "credential": {
      "referenceName": "string",
      "type": "string"
    },
    "encryptedCredential": "string",
    "fileShare": {},
    "host": {},
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "sasToken": {
      "secretName": {},
      "secretVersion": {},
      "store": {
        "parameters": {
          "{customized property}": {}
        },
        "referenceName": "string",
        "type": "string"
      },
      "type": "string"
    },
    "sasUri": {},
    "serviceEndpoint": {},
    "snapshot": {},
    "userId": {}
  }
}

对于 azureFunction,请使用:

{
  "type": "AzureFunction",
  "typeProperties": {
    "authentication": {},
    "credential": {
      "referenceName": "string",
      "type": "string"
    },
    "encryptedCredential": "string",
    "functionAppUrl": {},
    "functionKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "resourceId": {}
  }
}

对于 azureKeyVault,请使用:

{
  "type": "AzureKeyVault",
  "typeProperties": {
    "baseUrl": {},
    "credential": {
      "referenceName": "string",
      "type": "string"
    }
  }
}

对于 azureML,请使用:

{
  "type": "AzureML",
  "typeProperties": {
    "apiKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "authentication": {},
    "encryptedCredential": "string",
    "mlEndpoint": {},
    "servicePrincipalId": {},
    "servicePrincipalKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "tenant": {},
    "updateResourceEndpoint": {}
  }
}

对于 AzureMLService,请使用:

{
  "type": "AzureMLService",
  "typeProperties": {
    "authentication": {},
    "encryptedCredential": "string",
    "mlWorkspaceName": {},
    "resourceGroupName": {},
    "servicePrincipalId": {},
    "servicePrincipalKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "subscriptionId": {},
    "tenant": {}
  }
}

对于 azureMariaDB,请使用:

{
  "type": "AzureMariaDB",
  "typeProperties": {
    "connectionString": {},
    "encryptedCredential": "string",
    "pwd": {
      "secretName": {},
      "secretVersion": {},
      "store": {
        "parameters": {
          "{customized property}": {}
        },
        "referenceName": "string",
        "type": "string"
      },
      "type": "string"
    }
  }
}

对于 azureMySql,请使用:

{
  "type": "AzureMySql",
  "typeProperties": {
    "connectionString": {},
    "encryptedCredential": "string",
    "password": {
      "secretName": {},
      "secretVersion": {},
      "store": {
        "parameters": {
          "{customized property}": {}
        },
        "referenceName": "string",
        "type": "string"
      },
      "type": "string"
    }
  }
}

对于 AzurePostgreSql,请使用:

{
  "type": "AzurePostgreSql",
  "typeProperties": {
    "commandTimeout": {},
    "connectionString": {},
    "database": {},
    "encoding": {},
    "encryptedCredential": "string",
    "password": {
      "secretName": {},
      "secretVersion": {},
      "store": {
        "parameters": {
          "{customized property}": {}
        },
        "referenceName": "string",
        "type": "string"
      },
      "type": "string"
    },
    "port": {},
    "readBufferSize": {},
    "server": {},
    "sslMode": {},
    "timeout": {},
    "timezone": {},
    "trustServerCertificate": {},
    "username": {}
  }
}

对于 azureSearch,请使用:

{
  "type": "AzureSearch",
  "typeProperties": {
    "encryptedCredential": "string",
    "key": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "url": {}
  }
}

对于 azureSqlDW,请使用:

{
  "type": "AzureSqlDW",
  "typeProperties": {
    "applicationIntent": {},
    "authenticationType": "string",
    "azureCloudType": {},
    "commandTimeout": {},
    "connectionString": {},
    "connectRetryCount": {},
    "connectRetryInterval": {},
    "connectTimeout": {},
    "credential": {
      "referenceName": "string",
      "type": "string"
    },
    "database": {},
    "encrypt": {},
    "encryptedCredential": "string",
    "failoverPartner": {},
    "hostNameInCertificate": {},
    "integratedSecurity": {},
    "loadBalanceTimeout": {},
    "maxPoolSize": {},
    "minPoolSize": {},
    "multipleActiveResultSets": {},
    "multiSubnetFailover": {},
    "packetSize": {},
    "password": {
      "secretName": {},
      "secretVersion": {},
      "store": {
        "parameters": {
          "{customized property}": {}
        },
        "referenceName": "string",
        "type": "string"
      },
      "type": "string"
    },
    "pooling": {},
    "server": {},
    "servicePrincipalCredential": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "servicePrincipalCredentialType": {},
    "servicePrincipalId": {},
    "servicePrincipalKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "tenant": {},
    "trustServerCertificate": {},
    "userName": {}
  }
}

对于 AzureSqlDatabase,请使用:

{
  "type": "AzureSqlDatabase",
  "typeProperties": {
    "alwaysEncryptedSettings": {
      "alwaysEncryptedAkvAuthType": "string",
      "credential": {
        "referenceName": "string",
        "type": "string"
      },
      "servicePrincipalId": {},
      "servicePrincipalKey": {
        "type": "string"
        // For remaining properties, see SecretBase objects
      }
    },
    "applicationIntent": {},
    "authenticationType": "string",
    "azureCloudType": {},
    "commandTimeout": {},
    "connectionString": {},
    "connectRetryCount": {},
    "connectRetryInterval": {},
    "connectTimeout": {},
    "credential": {
      "referenceName": "string",
      "type": "string"
    },
    "database": {},
    "encrypt": {},
    "encryptedCredential": "string",
    "failoverPartner": {},
    "hostNameInCertificate": {},
    "integratedSecurity": {},
    "loadBalanceTimeout": {},
    "maxPoolSize": {},
    "minPoolSize": {},
    "multipleActiveResultSets": {},
    "multiSubnetFailover": {},
    "packetSize": {},
    "password": {
      "secretName": {},
      "secretVersion": {},
      "store": {
        "parameters": {
          "{customized property}": {}
        },
        "referenceName": "string",
        "type": "string"
      },
      "type": "string"
    },
    "pooling": {},
    "server": {},
    "servicePrincipalCredential": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "servicePrincipalCredentialType": {},
    "servicePrincipalId": {},
    "servicePrincipalKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "tenant": {},
    "trustServerCertificate": {},
    "userName": {}
  }
}

对于 AzureSqlMI,请使用:

{
  "type": "AzureSqlMI",
  "typeProperties": {
    "alwaysEncryptedSettings": {
      "alwaysEncryptedAkvAuthType": "string",
      "credential": {
        "referenceName": "string",
        "type": "string"
      },
      "servicePrincipalId": {},
      "servicePrincipalKey": {
        "type": "string"
        // For remaining properties, see SecretBase objects
      }
    },
    "applicationIntent": {},
    "authenticationType": "string",
    "azureCloudType": {},
    "commandTimeout": {},
    "connectionString": {},
    "connectRetryCount": {},
    "connectRetryInterval": {},
    "connectTimeout": {},
    "credential": {
      "referenceName": "string",
      "type": "string"
    },
    "database": {},
    "encrypt": {},
    "encryptedCredential": "string",
    "failoverPartner": {},
    "hostNameInCertificate": {},
    "integratedSecurity": {},
    "loadBalanceTimeout": {},
    "maxPoolSize": {},
    "minPoolSize": {},
    "multipleActiveResultSets": {},
    "multiSubnetFailover": {},
    "packetSize": {},
    "password": {
      "secretName": {},
      "secretVersion": {},
      "store": {
        "parameters": {
          "{customized property}": {}
        },
        "referenceName": "string",
        "type": "string"
      },
      "type": "string"
    },
    "pooling": {},
    "server": {},
    "servicePrincipalCredential": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "servicePrincipalCredentialType": {},
    "servicePrincipalId": {},
    "servicePrincipalKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "tenant": {},
    "trustServerCertificate": {},
    "userName": {}
  }
}

对于 azureStorage,请使用:

{
  "type": "AzureStorage",
  "typeProperties": {
    "accountKey": {
      "secretName": {},
      "secretVersion": {},
      "store": {
        "parameters": {
          "{customized property}": {}
        },
        "referenceName": "string",
        "type": "string"
      },
      "type": "string"
    },
    "connectionString": {},
    "encryptedCredential": "string",
    "sasToken": {
      "secretName": {},
      "secretVersion": {},
      "store": {
        "parameters": {
          "{customized property}": {}
        },
        "referenceName": "string",
        "type": "string"
      },
      "type": "string"
    },
    "sasUri": {}
  }
}

对于 azureSynapseArtifacts,请使用:

{
  "type": "AzureSynapseArtifacts",
  "typeProperties": {
    "authentication": {},
    "endpoint": {},
    "workspaceResourceId": {}
  }
}

对于 azureTableStorage,请使用:

{
  "type": "AzureTableStorage",
  "typeProperties": {
    "accountKey": {
      "secretName": {},
      "secretVersion": {},
      "store": {
        "parameters": {
          "{customized property}": {}
        },
        "referenceName": "string",
        "type": "string"
      },
      "type": "string"
    },
    "connectionString": {},
    "credential": {
      "referenceName": "string",
      "type": "string"
    },
    "encryptedCredential": "string",
    "sasToken": {
      "secretName": {},
      "secretVersion": {},
      "store": {
        "parameters": {
          "{customized property}": {}
        },
        "referenceName": "string",
        "type": "string"
      },
      "type": "string"
    },
    "sasUri": {},
    "serviceEndpoint": {}
  }
}

对于 Cassandra,请使用:

{
  "type": "Cassandra",
  "typeProperties": {
    "authenticationType": {},
    "encryptedCredential": "string",
    "host": {},
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "port": {},
    "username": {}
  }
}

对于 CommonDataServiceForApps,请使用:

{
  "type": "CommonDataServiceForApps",
  "typeProperties": {
    "authenticationType": {},
    "deploymentType": {},
    "domain": {},
    "encryptedCredential": "string",
    "hostName": {},
    "organizationName": {},
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "port": {},
    "servicePrincipalCredential": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "servicePrincipalCredentialType": {},
    "servicePrincipalId": {},
    "serviceUri": {},
    "username": {}
  }
}

对于 Concur,请使用:

{
  "type": "Concur",
  "typeProperties": {
    "clientId": {},
    "connectionProperties": {},
    "encryptedCredential": "string",
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "useEncryptedEndpoints": {},
    "useHostVerification": {},
    "usePeerVerification": {},
    "username": {}
  }
}

对于 CosmosDb,请使用:

{
  "type": "CosmosDb",
  "typeProperties": {
    "accountEndpoint": {},
    "accountKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "azureCloudType": {},
    "connectionMode": "string",
    "connectionString": {},
    "credential": {
      "referenceName": "string",
      "type": "string"
    },
    "database": {},
    "encryptedCredential": "string",
    "servicePrincipalCredential": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "servicePrincipalCredentialType": {},
    "servicePrincipalId": {},
    "tenant": {}
  }
}

对于 CosmosDbMongoDbApi,请使用:

{
  "type": "CosmosDbMongoDbApi",
  "typeProperties": {
    "connectionString": {},
    "database": {},
    "isServerVersionAbove32": {}
  }
}

对于 Couchbase,请使用:

{
  "type": "Couchbase",
  "typeProperties": {
    "connectionString": {},
    "credString": {
      "secretName": {},
      "secretVersion": {},
      "store": {
        "parameters": {
          "{customized property}": {}
        },
        "referenceName": "string",
        "type": "string"
      },
      "type": "string"
    },
    "encryptedCredential": "string"
  }
}

对于 customDataSource ,请使用:

{
  "type": "CustomDataSource",
  "typeProperties": {}
}

对于 Dataworld,请使用:

{
  "type": "Dataworld",
  "typeProperties": {
    "apiToken": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "encryptedCredential": "string"
  }
}

对于 Db2,请使用:

{
  "type": "Db2",
  "typeProperties": {
    "authenticationType": "string",
    "certificateCommonName": {},
    "connectionString": {},
    "database": {},
    "encryptedCredential": "string",
    "packageCollection": {},
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "server": {},
    "username": {}
  }
}

对于 钻取,请使用:

{
  "type": "Drill",
  "typeProperties": {
    "connectionString": {},
    "encryptedCredential": "string",
    "pwd": {
      "secretName": {},
      "secretVersion": {},
      "store": {
        "parameters": {
          "{customized property}": {}
        },
        "referenceName": "string",
        "type": "string"
      },
      "type": "string"
    }
  }
}

对于 Dynamics,请使用:

{
  "type": "Dynamics",
  "typeProperties": {
    "authenticationType": {},
    "credential": {
      "referenceName": "string",
      "type": "string"
    },
    "deploymentType": {},
    "domain": {},
    "encryptedCredential": "string",
    "hostName": {},
    "organizationName": {},
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "port": {},
    "servicePrincipalCredential": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "servicePrincipalCredentialType": {},
    "servicePrincipalId": {},
    "serviceUri": {},
    "username": {}
  }
}

对于 DynamicsAX,请使用:

{
  "type": "DynamicsAX",
  "typeProperties": {
    "aadResourceId": {},
    "encryptedCredential": "string",
    "servicePrincipalId": {},
    "servicePrincipalKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "tenant": {},
    "url": {}
  }
}

对于 DynamicsCrm,请使用:

{
  "type": "DynamicsCrm",
  "typeProperties": {
    "authenticationType": {},
    "credential": {
      "referenceName": "string",
      "type": "string"
    },
    "deploymentType": {},
    "domain": {},
    "encryptedCredential": "string",
    "hostName": {},
    "organizationName": {},
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "port": {},
    "servicePrincipalCredential": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "servicePrincipalCredentialType": {},
    "servicePrincipalId": {},
    "serviceUri": {},
    "username": {}
  }
}

对于 Eloqua,请使用:

{
  "type": "Eloqua",
  "typeProperties": {
    "encryptedCredential": "string",
    "endpoint": {},
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "useEncryptedEndpoints": {},
    "useHostVerification": {},
    "usePeerVerification": {},
    "username": {}
  }
}

对于 FileServer,请使用:

{
  "type": "FileServer",
  "typeProperties": {
    "encryptedCredential": "string",
    "host": {},
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "userId": {}
  }
}

对于 ftpServer,请使用:

{
  "type": "FtpServer",
  "typeProperties": {
    "authenticationType": "string",
    "enableServerCertificateValidation": {},
    "enableSsl": {},
    "encryptedCredential": "string",
    "host": {},
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "port": {},
    "userName": {}
  }
}

对于 GoogleAdWords,请使用:

{
  "type": "GoogleAdWords",
  "typeProperties": {
    "authenticationType": "string",
    "clientCustomerID": {},
    "clientId": {},
    "clientSecret": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "connectionProperties": {},
    "developerToken": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "email": {},
    "encryptedCredential": "string",
    "googleAdsApiVersion": {},
    "keyFilePath": {},
    "loginCustomerID": {},
    "privateKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "refreshToken": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "supportLegacyDataTypes": {},
    "trustedCertPath": {},
    "useSystemTrustStore": {}
  }
}

对于 GoogleBigQuery,请使用:

{
  "type": "GoogleBigQuery",
  "typeProperties": {
    "additionalProjects": {},
    "authenticationType": "string",
    "clientId": {},
    "clientSecret": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "email": {},
    "encryptedCredential": "string",
    "keyFilePath": {},
    "project": {},
    "refreshToken": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "requestGoogleDriveScope": {},
    "trustedCertPath": {},
    "useSystemTrustStore": {}
  }
}

对于 GoogleBigQueryV2,请使用:

{
  "type": "GoogleBigQueryV2",
  "typeProperties": {
    "authenticationType": "string",
    "clientId": {},
    "clientSecret": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "encryptedCredential": "string",
    "keyFileContent": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "projectId": {},
    "refreshToken": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    }
  }
}

对于 GoogleCloudStorage,请使用:

{
  "type": "GoogleCloudStorage",
  "typeProperties": {
    "accessKeyId": {},
    "encryptedCredential": "string",
    "secretAccessKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "serviceUrl": {}
  }
}

对于 GoogleSheets,请使用:

{
  "type": "GoogleSheets",
  "typeProperties": {
    "apiToken": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "encryptedCredential": "string"
  }
}

对于 Greenplum,请使用:

{
  "type": "Greenplum",
  "typeProperties": {
    "connectionString": {},
    "encryptedCredential": "string",
    "pwd": {
      "secretName": {},
      "secretVersion": {},
      "store": {
        "parameters": {
          "{customized property}": {}
        },
        "referenceName": "string",
        "type": "string"
      },
      "type": "string"
    }
  }
}

对于 HBase,请使用:

{
  "type": "HBase",
  "typeProperties": {
    "allowHostNameCNMismatch": {},
    "allowSelfSignedServerCert": {},
    "authenticationType": "string",
    "enableSsl": {},
    "encryptedCredential": "string",
    "host": {},
    "httpPath": {},
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "port": {},
    "trustedCertPath": {},
    "username": {}
  }
}

对于 HDInsight,请使用:

{
  "type": "HDInsight",
  "typeProperties": {
    "clusterUri": {},
    "encryptedCredential": "string",
    "fileSystem": {},
    "hcatalogLinkedServiceName": {
      "parameters": {
        "{customized property}": {}
      },
      "referenceName": "string",
      "type": "string"
    },
    "isEspEnabled": {},
    "linkedServiceName": {
      "parameters": {
        "{customized property}": {}
      },
      "referenceName": "string",
      "type": "string"
    },
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "userName": {}
  }
}

对于 HDInsightOnDemand,请使用:

{
  "type": "HDInsightOnDemand",
  "typeProperties": {
    "additionalLinkedServiceNames": [
      {
        "parameters": {
          "{customized property}": {}
        },
        "referenceName": "string",
        "type": "string"
      }
    ],
    "clusterNamePrefix": {},
    "clusterPassword": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "clusterResourceGroup": {},
    "clusterSize": {},
    "clusterSshPassword": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "clusterSshUserName": {},
    "clusterType": {},
    "clusterUserName": {},
    "coreConfiguration": {},
    "credential": {
      "referenceName": "string",
      "type": "string"
    },
    "dataNodeSize": {},
    "encryptedCredential": "string",
    "hBaseConfiguration": {},
    "hcatalogLinkedServiceName": {
      "parameters": {
        "{customized property}": {}
      },
      "referenceName": "string",
      "type": "string"
    },
    "hdfsConfiguration": {},
    "headNodeSize": {},
    "hiveConfiguration": {},
    "hostSubscriptionId": {},
    "linkedServiceName": {
      "parameters": {
        "{customized property}": {}
      },
      "referenceName": "string",
      "type": "string"
    },
    "mapReduceConfiguration": {},
    "oozieConfiguration": {},
    "scriptActions": [
      {
        "name": "string",
        "parameters": "string",
        "roles": {},
        "uri": "string"
      }
    ],
    "servicePrincipalId": {},
    "servicePrincipalKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "sparkVersion": {},
    "stormConfiguration": {},
    "subnetName": {},
    "tenant": {},
    "timeToLive": {},
    "version": {},
    "virtualNetworkId": {},
    "yarnConfiguration": {},
    "zookeeperNodeSize": {}
  }
}

对于 Hdfs,请使用:

{
  "type": "Hdfs",
  "typeProperties": {
    "authenticationType": {},
    "encryptedCredential": "string",
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "url": {},
    "userName": {}
  }
}

对于 Hive,请使用:

{
  "type": "Hive",
  "typeProperties": {
    "allowHostNameCNMismatch": {},
    "allowSelfSignedServerCert": {},
    "authenticationType": "string",
    "enableSsl": {},
    "encryptedCredential": "string",
    "host": {},
    "httpPath": {},
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "port": {},
    "serverType": "string",
    "serviceDiscoveryMode": {},
    "thriftTransportProtocol": "string",
    "trustedCertPath": {},
    "useNativeQuery": {},
    "username": {},
    "useSystemTrustStore": {},
    "zooKeeperNameSpace": {}
  }
}

对于 HttpServer,请使用:

{
  "type": "HttpServer",
  "typeProperties": {
    "authenticationType": "string",
    "authHeaders": {},
    "certThumbprint": {},
    "embeddedCertData": {},
    "enableServerCertificateValidation": {},
    "encryptedCredential": "string",
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "url": {},
    "userName": {}
  }
}

对于 Hubspot,请使用:

{
  "type": "Hubspot",
  "typeProperties": {
    "accessToken": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "clientId": {},
    "clientSecret": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "encryptedCredential": "string",
    "refreshToken": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "useEncryptedEndpoints": {},
    "useHostVerification": {},
    "usePeerVerification": {}
  }
}

对于 Impala,请使用:

{
  "type": "Impala",
  "typeProperties": {
    "allowHostNameCNMismatch": {},
    "allowSelfSignedServerCert": {},
    "authenticationType": "string",
    "enableSsl": {},
    "encryptedCredential": "string",
    "host": {},
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "port": {},
    "trustedCertPath": {},
    "username": {},
    "useSystemTrustStore": {}
  }
}

对于 Informix,请使用:

{
  "type": "Informix",
  "typeProperties": {
    "authenticationType": {},
    "connectionString": {},
    "credential": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "encryptedCredential": "string",
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "userName": {}
  }
}

对于 Jira,请使用:

{
  "type": "Jira",
  "typeProperties": {
    "encryptedCredential": "string",
    "host": {},
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "port": {},
    "useEncryptedEndpoints": {},
    "useHostVerification": {},
    "usePeerVerification": {},
    "username": {}
  }
}

对于 LakeHouse,请使用:

{
  "type": "LakeHouse",
  "typeProperties": {
    "artifactId": {},
    "encryptedCredential": "string",
    "servicePrincipalCredential": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "servicePrincipalCredentialType": {},
    "servicePrincipalId": {},
    "servicePrincipalKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "tenant": {},
    "workspaceId": {}
  }
}

对于 Magento,请使用:

{
  "type": "Magento",
  "typeProperties": {
    "accessToken": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "encryptedCredential": "string",
    "host": {},
    "useEncryptedEndpoints": {},
    "useHostVerification": {},
    "usePeerVerification": {}
  }
}

对于 MariaDB,请使用:

{
  "type": "MariaDB",
  "typeProperties": {
    "connectionString": {},
    "database": {},
    "driverVersion": {},
    "encryptedCredential": "string",
    "password": {
      "secretName": {},
      "secretVersion": {},
      "store": {
        "parameters": {
          "{customized property}": {}
        },
        "referenceName": "string",
        "type": "string"
      },
      "type": "string"
    },
    "port": {},
    "server": {},
    "sslMode": {},
    "username": {},
    "useSystemTrustStore": {}
  }
}

对于 Marketo,请使用:

{
  "type": "Marketo",
  "typeProperties": {
    "clientId": {},
    "clientSecret": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "encryptedCredential": "string",
    "endpoint": {},
    "useEncryptedEndpoints": {},
    "useHostVerification": {},
    "usePeerVerification": {}
  }
}

对于 MicrosoftAccess,请使用:

{
  "type": "MicrosoftAccess",
  "typeProperties": {
    "authenticationType": {},
    "connectionString": {},
    "credential": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "encryptedCredential": "string",
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "userName": {}
  }
}

对于 MongoDb,请使用:

{
  "type": "MongoDb",
  "typeProperties": {
    "allowSelfSignedServerCert": {},
    "authenticationType": "string",
    "authSource": {},
    "databaseName": {},
    "enableSsl": {},
    "encryptedCredential": "string",
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "port": {},
    "server": {},
    "username": {}
  }
}

对于 MongoDbAtlas,请使用:

{
  "type": "MongoDbAtlas",
  "typeProperties": {
    "connectionString": {},
    "database": {},
    "driverVersion": {}
  }
}

对于 MongoDbV2,请使用:

{
  "type": "MongoDbV2",
  "typeProperties": {
    "connectionString": {},
    "database": {}
  }
}

对于 MySql,请使用:

{
  "type": "MySql",
  "typeProperties": {
    "allowZeroDateTime": {},
    "connectionString": {},
    "connectionTimeout": {},
    "convertZeroDateTime": {},
    "database": {},
    "driverVersion": {},
    "encryptedCredential": "string",
    "guidFormat": {},
    "password": {
      "secretName": {},
      "secretVersion": {},
      "store": {
        "parameters": {
          "{customized property}": {}
        },
        "referenceName": "string",
        "type": "string"
      },
      "type": "string"
    },
    "port": {},
    "server": {},
    "sslCert": {},
    "sslKey": {},
    "sslMode": {},
    "treatTinyAsBoolean": {},
    "username": {},
    "useSystemTrustStore": {}
  }
}

对于 Netezza,请使用:

{
  "type": "Netezza",
  "typeProperties": {
    "connectionString": {},
    "encryptedCredential": "string",
    "pwd": {
      "secretName": {},
      "secretVersion": {},
      "store": {
        "parameters": {
          "{customized property}": {}
        },
        "referenceName": "string",
        "type": "string"
      },
      "type": "string"
    }
  }
}

对于 OData,请使用:

{
  "type": "OData",
  "typeProperties": {
    "aadResourceId": {},
    "aadServicePrincipalCredentialType": "string",
    "authenticationType": "string",
    "authHeaders": {},
    "azureCloudType": {},
    "encryptedCredential": "string",
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "servicePrincipalEmbeddedCert": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "servicePrincipalEmbeddedCertPassword": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "servicePrincipalId": {},
    "servicePrincipalKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "tenant": {},
    "url": {},
    "userName": {}
  }
}

对于 Odbc,请使用:

{
  "type": "Odbc",
  "typeProperties": {
    "authenticationType": {},
    "connectionString": {},
    "credential": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "encryptedCredential": "string",
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "userName": {}
  }
}

对于 Office365,请使用:

{
  "type": "Office365",
  "typeProperties": {
    "encryptedCredential": "string",
    "office365TenantId": {},
    "servicePrincipalId": {},
    "servicePrincipalKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "servicePrincipalTenantId": {}
  }
}

对于 Oracle,请使用:

{
  "type": "Oracle",
  "typeProperties": {
    "connectionString": {},
    "encryptedCredential": "string",
    "password": {
      "secretName": {},
      "secretVersion": {},
      "store": {
        "parameters": {
          "{customized property}": {}
        },
        "referenceName": "string",
        "type": "string"
      },
      "type": "string"
    }
  }
}

对于 OracleCloudStorage,请使用:

{
  "type": "OracleCloudStorage",
  "typeProperties": {
    "accessKeyId": {},
    "encryptedCredential": "string",
    "secretAccessKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "serviceUrl": {}
  }
}

对于 OracleServiceCloud,请使用:

{
  "type": "OracleServiceCloud",
  "typeProperties": {
    "encryptedCredential": "string",
    "host": {},
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "useEncryptedEndpoints": {},
    "useHostVerification": {},
    "usePeerVerification": {},
    "username": {}
  }
}

对于 PayPal,请使用:

{
  "type": "Paypal",
  "typeProperties": {
    "clientId": {},
    "clientSecret": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "encryptedCredential": "string",
    "host": {},
    "useEncryptedEndpoints": {},
    "useHostVerification": {},
    "usePeerVerification": {}
  }
}

对于 Phoenix,请使用:

{
  "type": "Phoenix",
  "typeProperties": {
    "allowHostNameCNMismatch": {},
    "allowSelfSignedServerCert": {},
    "authenticationType": "string",
    "enableSsl": {},
    "encryptedCredential": "string",
    "host": {},
    "httpPath": {},
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "port": {},
    "trustedCertPath": {},
    "username": {},
    "useSystemTrustStore": {}
  }
}

对于 PostgreSql,请使用:

{
  "type": "PostgreSql",
  "typeProperties": {
    "connectionString": {},
    "encryptedCredential": "string",
    "password": {
      "secretName": {},
      "secretVersion": {},
      "store": {
        "parameters": {
          "{customized property}": {}
        },
        "referenceName": "string",
        "type": "string"
      },
      "type": "string"
    }
  }
}

对于 PostgreSqlV2,请使用:

{
  "type": "PostgreSqlV2",
  "typeProperties": {
    "authenticationType": {},
    "commandTimeout": {},
    "connectionTimeout": {},
    "database": {},
    "encoding": {},
    "encryptedCredential": "string",
    "logParameters": {},
    "password": {
      "secretName": {},
      "secretVersion": {},
      "store": {
        "parameters": {
          "{customized property}": {}
        },
        "referenceName": "string",
        "type": "string"
      },
      "type": "string"
    },
    "pooling": {},
    "port": {},
    "readBufferSize": {},
    "schema": {},
    "server": {},
    "sslCertificate": {},
    "sslKey": {},
    "sslMode": {},
    "sslPassword": {},
    "timezone": {},
    "trustServerCertificate": {},
    "username": {}
  }
}

对于 Presto,请使用:

{
  "type": "Presto",
  "typeProperties": {
    "allowHostNameCNMismatch": {},
    "allowSelfSignedServerCert": {},
    "authenticationType": "string",
    "catalog": {},
    "enableSsl": {},
    "encryptedCredential": "string",
    "host": {},
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "port": {},
    "serverVersion": {},
    "timeZoneID": {},
    "trustedCertPath": {},
    "username": {},
    "useSystemTrustStore": {}
  }
}

对于 QuickBooks,请使用:

{
  "type": "QuickBooks",
  "typeProperties": {
    "accessToken": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "accessTokenSecret": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "companyId": {},
    "connectionProperties": {},
    "consumerKey": {},
    "consumerSecret": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "encryptedCredential": "string",
    "endpoint": {},
    "useEncryptedEndpoints": {}
  }
}

对于 Quickbase,请使用:

{
  "type": "Quickbase",
  "typeProperties": {
    "encryptedCredential": "string",
    "url": {},
    "userToken": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    }
  }
}

对于 Responsys,请使用:

{
  "type": "Responsys",
  "typeProperties": {
    "clientId": {},
    "clientSecret": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "encryptedCredential": "string",
    "endpoint": {},
    "useEncryptedEndpoints": {},
    "useHostVerification": {},
    "usePeerVerification": {}
  }
}

对于 RestService,请使用:

{
  "type": "RestService",
  "typeProperties": {
    "aadResourceId": {},
    "authenticationType": "string",
    "authHeaders": {},
    "azureCloudType": {},
    "clientId": {},
    "clientSecret": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "credential": {
      "referenceName": "string",
      "type": "string"
    },
    "enableServerCertificateValidation": {},
    "encryptedCredential": "string",
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "resource": {},
    "scope": {},
    "servicePrincipalCredentialType": {},
    "servicePrincipalEmbeddedCert": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "servicePrincipalEmbeddedCertPassword": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "servicePrincipalId": {},
    "servicePrincipalKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "tenant": {},
    "tokenEndpoint": {},
    "url": {},
    "userName": {}
  }
}

对于 Salesforce,请使用:

{
  "type": "Salesforce",
  "typeProperties": {
    "apiVersion": {},
    "encryptedCredential": "string",
    "environmentUrl": {},
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "securityToken": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "username": {}
  }
}

对于 SalesforceMarketingCloud,请使用:

{
  "type": "SalesforceMarketingCloud",
  "typeProperties": {
    "clientId": {},
    "clientSecret": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "connectionProperties": {},
    "encryptedCredential": "string",
    "useEncryptedEndpoints": {},
    "useHostVerification": {},
    "usePeerVerification": {}
  }
}

对于 SalesforceServiceCloud,请使用:

{
  "type": "SalesforceServiceCloud",
  "typeProperties": {
    "apiVersion": {},
    "encryptedCredential": "string",
    "environmentUrl": {},
    "extendedProperties": {},
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "securityToken": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "username": {}
  }
}

对于 SalesforceServiceCloudV2,请使用:

{
  "type": "SalesforceServiceCloudV2",
  "typeProperties": {
    "apiVersion": {},
    "authenticationType": {},
    "clientId": {},
    "clientSecret": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "encryptedCredential": "string",
    "environmentUrl": {}
  }
}

对于 SalesforceV2,请使用:

{
  "type": "SalesforceV2",
  "typeProperties": {
    "apiVersion": {},
    "authenticationType": {},
    "clientId": {},
    "clientSecret": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "encryptedCredential": "string",
    "environmentUrl": {}
  }
}

对于 SapBW,请使用:

{
  "type": "SapBW",
  "typeProperties": {
    "clientId": {},
    "encryptedCredential": "string",
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "server": {},
    "systemNumber": {},
    "userName": {}
  }
}

对于 sapCloudForCustomer,请使用:

{
  "type": "SapCloudForCustomer",
  "typeProperties": {
    "encryptedCredential": "string",
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "url": {},
    "username": {}
  }
}

对于 SapEcc,请使用:

{
  "type": "SapEcc",
  "typeProperties": {
    "encryptedCredential": "string",
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "url": {},
    "username": {}
  }
}

对于 SapHana,请使用:

{
  "type": "SapHana",
  "typeProperties": {
    "authenticationType": "string",
    "connectionString": {},
    "encryptedCredential": "string",
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "server": {},
    "userName": {}
  }
}

对于 sapOdp,请使用:

{
  "type": "SapOdp",
  "typeProperties": {
    "clientId": {},
    "encryptedCredential": "string",
    "language": {},
    "logonGroup": {},
    "messageServer": {},
    "messageServerService": {},
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "server": {},
    "sncLibraryPath": {},
    "sncMode": {},
    "sncMyName": {},
    "sncPartnerName": {},
    "sncQop": {},
    "subscriberName": {},
    "systemId": {},
    "systemNumber": {},
    "userName": {},
    "x509CertificatePath": {}
  }
}

对于 SapOpenHub,请使用:

{
  "type": "SapOpenHub",
  "typeProperties": {
    "clientId": {},
    "encryptedCredential": "string",
    "language": {},
    "logonGroup": {},
    "messageServer": {},
    "messageServerService": {},
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "server": {},
    "systemId": {},
    "systemNumber": {},
    "userName": {}
  }
}

对于 SapTable,请使用:

{
  "type": "SapTable",
  "typeProperties": {
    "clientId": {},
    "encryptedCredential": "string",
    "language": {},
    "logonGroup": {},
    "messageServer": {},
    "messageServerService": {},
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "server": {},
    "sncLibraryPath": {},
    "sncMode": {},
    "sncMyName": {},
    "sncPartnerName": {},
    "sncQop": {},
    "systemId": {},
    "systemNumber": {},
    "userName": {}
  }
}

对于 ServiceNow,请使用:

{
  "type": "ServiceNow",
  "typeProperties": {
    "authenticationType": "string",
    "clientId": {},
    "clientSecret": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "encryptedCredential": "string",
    "endpoint": {},
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "useEncryptedEndpoints": {},
    "useHostVerification": {},
    "usePeerVerification": {},
    "username": {}
  }
}

对于 ServiceNowV2,请使用:

{
  "type": "ServiceNowV2",
  "typeProperties": {
    "authenticationType": "string",
    "clientId": {},
    "clientSecret": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "encryptedCredential": "string",
    "endpoint": {},
    "grantType": {},
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "username": {}
  }
}

对于 Sftp,请使用:

{
  "type": "Sftp",
  "typeProperties": {
    "authenticationType": "string",
    "encryptedCredential": "string",
    "host": {},
    "hostKeyFingerprint": {},
    "passPhrase": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "port": {},
    "privateKeyContent": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "privateKeyPath": {},
    "skipHostKeyValidation": {},
    "userName": {}
  }
}

对于 SharePointOnlineList,请使用:

{
  "type": "SharePointOnlineList",
  "typeProperties": {
    "encryptedCredential": "string",
    "servicePrincipalCredentialType": {},
    "servicePrincipalEmbeddedCert": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "servicePrincipalEmbeddedCertPassword": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "servicePrincipalId": {},
    "servicePrincipalKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "siteUrl": {},
    "tenantId": {}
  }
}

对于 Shopify,请使用:

{
  "type": "Shopify",
  "typeProperties": {
    "accessToken": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "encryptedCredential": "string",
    "host": {},
    "useEncryptedEndpoints": {},
    "useHostVerification": {},
    "usePeerVerification": {}
  }
}

对于 Smartsheet,请使用:

{
  "type": "Smartsheet",
  "typeProperties": {
    "apiToken": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "encryptedCredential": "string"
  }
}

对于 Snowflake,请使用:

{
  "type": "Snowflake",
  "typeProperties": {
    "connectionString": {},
    "encryptedCredential": "string",
    "password": {
      "secretName": {},
      "secretVersion": {},
      "store": {
        "parameters": {
          "{customized property}": {}
        },
        "referenceName": "string",
        "type": "string"
      },
      "type": "string"
    }
  }
}

对于 SnowflakeV2,请使用:

{
  "type": "SnowflakeV2",
  "typeProperties": {
    "accountIdentifier": {},
    "authenticationType": "string",
    "clientId": {},
    "clientSecret": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "database": {},
    "encryptedCredential": "string",
    "host": {},
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "privateKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "privateKeyPassphrase": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "scope": {},
    "tenantId": {},
    "user": {},
    "warehouse": {}
  }
}

对于 Spark,请使用:

{
  "type": "Spark",
  "typeProperties": {
    "allowHostNameCNMismatch": {},
    "allowSelfSignedServerCert": {},
    "authenticationType": "string",
    "enableSsl": {},
    "encryptedCredential": "string",
    "host": {},
    "httpPath": {},
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "port": {},
    "serverType": "string",
    "thriftTransportProtocol": "string",
    "trustedCertPath": {},
    "username": {},
    "useSystemTrustStore": {}
  }
}

对于 sqlServer,请使用:

{
  "type": "SqlServer",
  "typeProperties": {
    "alwaysEncryptedSettings": {
      "alwaysEncryptedAkvAuthType": "string",
      "credential": {
        "referenceName": "string",
        "type": "string"
      },
      "servicePrincipalId": {},
      "servicePrincipalKey": {
        "type": "string"
        // For remaining properties, see SecretBase objects
      }
    },
    "applicationIntent": {},
    "authenticationType": "string",
    "commandTimeout": {},
    "connectionString": {},
    "connectRetryCount": {},
    "connectRetryInterval": {},
    "connectTimeout": {},
    "credential": {
      "referenceName": "string",
      "type": "string"
    },
    "database": {},
    "encrypt": {},
    "encryptedCredential": "string",
    "failoverPartner": {},
    "hostNameInCertificate": {},
    "integratedSecurity": {},
    "loadBalanceTimeout": {},
    "maxPoolSize": {},
    "minPoolSize": {},
    "multipleActiveResultSets": {},
    "multiSubnetFailover": {},
    "packetSize": {},
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "pooling": {},
    "server": {},
    "trustServerCertificate": {},
    "userName": {}
  }
}

对于 平方,请使用:

{
  "type": "Square",
  "typeProperties": {
    "clientId": {},
    "clientSecret": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "connectionProperties": {},
    "encryptedCredential": "string",
    "host": {},
    "redirectUri": {},
    "useEncryptedEndpoints": {},
    "useHostVerification": {},
    "usePeerVerification": {}
  }
}

对于 Sybase,请使用:

{
  "type": "Sybase",
  "typeProperties": {
    "authenticationType": "string",
    "database": {},
    "encryptedCredential": "string",
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "schema": {},
    "server": {},
    "username": {}
  }
}

对于 TeamDesk,请使用:

{
  "type": "TeamDesk",
  "typeProperties": {
    "apiToken": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "authenticationType": "string",
    "encryptedCredential": "string",
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "url": {},
    "userName": {}
  }
}

对于 Teradata,请使用:

{
  "type": "Teradata",
  "typeProperties": {
    "authenticationType": "string",
    "connectionString": {},
    "encryptedCredential": "string",
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "server": {},
    "username": {}
  }
}

对于 Twilio,请使用:

{
  "type": "Twilio",
  "typeProperties": {
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "userName": {}
  }
}

对于 Vertica,请使用:

{
  "type": "Vertica",
  "typeProperties": {
    "connectionString": {},
    "database": {},
    "encryptedCredential": "string",
    "port": {},
    "pwd": {
      "secretName": {},
      "secretVersion": {},
      "store": {
        "parameters": {
          "{customized property}": {}
        },
        "referenceName": "string",
        "type": "string"
      },
      "type": "string"
    },
    "server": {},
    "uid": {}
  }
}

对于 仓库,请使用:

{
  "type": "Warehouse",
  "typeProperties": {
    "artifactId": {},
    "encryptedCredential": "string",
    "endpoint": {},
    "servicePrincipalCredential": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "servicePrincipalCredentialType": {},
    "servicePrincipalId": {},
    "servicePrincipalKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "tenant": {},
    "workspaceId": {}
  }
}

对于 Web,请使用:

{
  "type": "Web",
  "typeProperties": {
    "url": {},
    "authenticationType": "string"
    // For remaining properties, see WebLinkedServiceTypeProperties objects
  }
}

对于 Xero,请使用:

{
  "type": "Xero",
  "typeProperties": {
    "connectionProperties": {},
    "consumerKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "encryptedCredential": "string",
    "host": {},
    "privateKey": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "useEncryptedEndpoints": {},
    "useHostVerification": {},
    "usePeerVerification": {}
  }
}

对于 Zendesk,请使用:

{
  "type": "Zendesk",
  "typeProperties": {
    "apiToken": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "authenticationType": "string",
    "encryptedCredential": "string",
    "password": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "url": {},
    "userName": {}
  }
}

对于 Zoho,请使用:

{
  "type": "Zoho",
  "typeProperties": {
    "accessToken": {
      "type": "string"
      // For remaining properties, see SecretBase objects
    },
    "connectionProperties": {},
    "encryptedCredential": "string",
    "endpoint": {},
    "useEncryptedEndpoints": {},
    "useHostVerification": {},
    "usePeerVerification": {}
  }
}

SecretBase 对象

设置 类型 属性以指定对象的类型。

对于 AzureKeyVaultSecret,请使用:

{
  "secretName": {},
  "secretVersion": {},
  "store": {
    "parameters": {
      "{customized property}": {}
    },
    "referenceName": "string",
    "type": "string"
  },
  "type": "AzureKeyVaultSecret"
}

对于 SecureString,请使用:

{
  "type": "SecureString",
  "value": "string"
}

属性值

AmazonMWSLinkedService

名字 描述 价值
类型 链接服务的类型。 “AmazonMWS”(必需)
typeProperties Amazon Marketplace Web Service 链接服务属性。 AmazonMWSLinkedServiceTypeProperties(必需)

AmazonMWSLinkedServiceTypeProperties

名字 描述 价值
accessKeyId 用于访问数据的访问密钥 ID。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
端点 AmazonMWS 服务器的终结点(即 mws.amazonservices.com) 任何(必需)
marketplaceID 要从中检索数据的 Amazon 市场 ID。 若要从多个市场 ID 检索数据,请用逗号(,)将它们分隔开来。 (即A2EUQ1WTGCTBG2) 任何(必需)
mwsAuthToken AmazonMWS 身份验证令牌。 SecretBase
secretKey 用于访问数据的密钥。 SecretBase
sellerID 亚马逊卖家 ID。 任何(必需)
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何

AmazonRdsForLinkedServiceTypeProperties

名字 描述 价值
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 连接字符串中密码的 Azure Key Vault 机密引用。 SecretBase

AmazonRdsForOracleLinkedService

名字 描述 价值
类型 链接服务的类型。 “AmazonRdsForOracle”(必需)
typeProperties AmazonRdsForOracle 数据库链接服务属性。 AmazonRdsForLinkedServiceTypeProperties (必需)

AmazonRdsForSqlServerLinkedService

名字 描述 价值
类型 链接服务的类型。 “AmazonRdsForSqlServer”(必需)
typeProperties Amazon RDS for SQL Server 链接服务属性。 AmazonRdsForSqlServerLinkedServiceTypeProperties (必需)

AmazonRdsForSqlServerLinkedServiceTypeProperties

名字 描述 价值
alwaysEncryptedSettings Sql 始终加密属性。 SqlAlwaysEncryptedProperties
applicationIntent 连接到服务器时的应用程序工作负荷类型,由建议的版本使用。 可能的值为 ReadOnly 和 ReadWrite。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于身份验证的类型。 类型:字符串。 “SQL”
“Windows”
commandTimeout 在终止尝试执行命令并生成错误之前(以秒为单位)的默认等待时间(以秒为单位),由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
connectRetryCount 确定有空闲连接失败(由建议的版本使用)后尝试的重新连接数。 这必须是介于 0 和 255 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectRetryInterval 确定建议的版本使用空闲连接失败后,每个重新连接尝试之间的时间(以秒为单位)。 这必须是介于 1 和 60 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectTimeout 在终止尝试并生成由建议版本使用的错误之前,等待与服务器的连接的时间长度(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
数据库 建议的版本使用的数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
加密 指示客户端和服务器之间发送的所有数据是否需要 TLS 加密(由建议的版本使用)。 可能的值为 true/yes/mandatory、false/no/optional 和 strict。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
failoverPartner 如果主服务器关闭(由建议的版本使用)连接到的伙伴服务器的名称或地址。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
hostNameInCertificate 验证连接的服务器证书时要使用的主机名。 如果未指定,则数据源中的服务器名称用于证书验证,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
integratedSecurity 指示是否在连接(如果为 false)中指定用户 ID 和密码,或者当前 Windows 帐户凭据是否用于身份验证(如果为 true),由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
loadBalanceTimeout 在被建议的版本使用之前,连接在连接池中生存的最短时间(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
maxPoolSize 此特定连接字符串的连接池中允许的最大连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
minPoolSize 此特定连接字符串的连接池中允许的最小连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
multipleActiveResultSets 如果为 true,应用程序可以维护多个活动结果集(MARS)。 如果为 false,应用程序必须处理或取消一个批处理中的所有结果集,然后才能在该连接上执行任何其他批处理(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
multiSubnetFailover 如果应用程序连接到不同子网上的 AlwaysOn 可用性组(AG),则设置 MultiSubnetFailover=true 可以更快地检测和连接到(当前)活动服务器(当前)活动服务器(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
packetSize 用于与服务器实例通信的网络数据包的大小(以字节为单位,由建议的版本使用)。 类型:整数(或包含 resultType 整数的表达式)。 任何
密码 本地 Windows 身份验证密码。 SecretBase
指示每次请求连接时,连接是共用的还是显式打开的,由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
服务器 要连接到的 SQL Server 实例的名称或网络地址,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
trustServerCertificate 指示通道是否在绕过证书链来验证推荐版本使用的信任时是否加密通道。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
userName 本地 Windows 身份验证用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AmazonRedshiftLinkedService

名字 描述 价值
类型 链接服务的类型。 “AmazonRedshift”(必需)
typeProperties Amazon Redshift 链接服务属性。 AmazonRedshiftLinkedServiceTypeProperties(必需)

AmazonRedshiftLinkedServiceTypeProperties

名字 描述 价值
数据库 Amazon Redshift 源的数据库名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 Amazon Redshift 源的密码。 SecretBase
港口 Amazon Redshift 服务器用来侦听客户端连接的 TCP 端口号。 默认值为 5439。 类型:整数(或包含 resultType 整数的表达式)。 任何
服务器 Amazon Redshift 服务器的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
username Amazon Redshift 源的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AmazonS3CompatibleLinkedService

名字 描述 价值
类型 链接服务的类型。 “AmazonS3Compatible”(必需)
typeProperties Amazon S3 兼容链接服务属性。 AmazonS3CompatibleLinkedServiceTypeProperties (必需)

AmazonS3CompatibleLinkedServiceTypeProperties

名字 描述 价值
accessKeyId Amazon S3 兼容标识和访问管理(IAM)用户的访问密钥标识符。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
forcePathStyle 如果为 true,请使用 S3 路径样式访问,而不是虚拟托管样式的访问。 默认值为 false。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
secretAccessKey Amazon S3 兼容标识和访问管理 (IAM) 用户的机密访问密钥。 SecretBase
serviceUrl 此值指定要使用 Amazon S3 兼容连接器访问的终结点。 这是一个可选属性;仅当想要尝试其他服务终结点或想要在 https 和 http 之间切换时更改它。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AmazonS3LinkedService

名字 描述 价值
类型 链接服务的类型。 “AmazonS3”(必需)
typeProperties Amazon S3 链接服务属性。 AmazonS3LinkedServiceTypeProperties(必需)

AmazonS3LinkedServiceTypeProperties

名字 描述 价值
accessKeyId Amazon S3 标识和访问管理(IAM)用户的访问密钥标识符。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType S3 的身份验证类型。 允许的值:AccessKey(默认值)或 TemporarySecurityCredentials。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
secretAccessKey Amazon S3 标识和访问管理(IAM)用户的机密访问密钥。 SecretBase
serviceUrl 此值指定要使用 S3 连接器访问的终结点。 这是一个可选属性;仅当想要尝试其他服务终结点或想要在 https 和 http 之间切换时更改它。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sessionToken S3 临时安全凭据的会话令牌。 SecretBase

AppFiguresLinkedService

名字 描述 价值
类型 链接服务的类型。 “AppFigures”(必需)
typeProperties AppFigures 链接服务属性。 AppFiguresLinkedServiceTypeProperties(必需)

AppFiguresLinkedServiceTypeProperties

名字 描述 价值
clientKey AppFigures 源的客户端密钥。 SecretBase(必需)
密码 AppFigures 源的密码。 SecretBase(必需)
userName Appfigures 源的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

AsanaLinkedService

名字 描述 价值
类型 链接服务的类型。 “Asana”(必需)
typeProperties Asana 链接服务属性。 AsanaLinkedServiceTypeProperties (必需)

AsanaLinkedServiceTypeProperties

名字 描述 价值
apiToken Asana 源的 API 令牌。 SecretBase(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串

AzureBatchLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureBatch”(必需)
typeProperties Azure Batch 链接服务属性。 AzureBatchLinkedServiceTypeProperties (必需)

AzureBatchLinkedServiceTypeProperties

名字 描述 价值
accessKey Azure Batch 帐户访问密钥。 SecretBase
accountName Azure Batch 帐户名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
batchUri Azure Batch URI。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
凭据 包含身份验证信息的凭据引用。 CredentialReference
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
linkedServiceName Azure 存储链接服务参考。 LinkedServiceReference(必需)
poolName Azure Batch 池名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

AzureBlobFSLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureBlobFS”(必需)
typeProperties Azure Data Lake Storage Gen2 链接服务属性。 AzureBlobFSLinkedServiceTypeProperties(必需)

AzureBlobFSLinkedServiceTypeProperties

名字 描述 价值
accountKey Azure Data Lake Storage Gen2 服务的帐户密钥。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
azureCloudType 指示服务主体身份验证的 Azure 云类型。允许的值为 AzurePublic、AzureChina、AzureUsGovernment、AzureGermany。 默认值为数据工厂区域的云类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
sasToken sasToken 的 Azure 密钥保管库机密引用在 sas uri 中。 SecretBase
sasUri Azure Data Lake Storage Gen2 服务的 SAS URI。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId 用于对 Azure Data Lake Storage Gen2 帐户进行身份验证的应用程序的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Azure Data Lake Storage Gen2 帐户进行身份验证的应用程序密钥。 SecretBase
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
url Azure Data Lake Storage Gen2 服务的终结点。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureBlobStorageLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureBlobStorage”(必需)
typeProperties Azure Blob 存储链接服务属性。 AzureBlobStorageLinkedServiceTypeProperties(必需)

AzureBlobStorageLinkedServiceTypeProperties

名字 描述 价值
accountKey 连接字符串中 accountKey 的 Azure 密钥保管库机密引用。 AzureKeyVaultSecretReference
accountKind 指定存储帐户的类型。 允许的值为:存储(常规用途 v1)、StorageV2(常规用途 v2)、BlobStorage 或 BlockBlobStorage。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于身份验证的类型。 类型:字符串。 “AccountKey”
“Anonymous”
“Msi”
“SasUri”
“ServicePrincipal”
azureCloudType 指示服务主体身份验证的 Azure 云类型。允许的值为 AzurePublic、AzureChina、AzureUsGovernment、AzureGermany。 默认值为数据工厂区域的云类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
connectionString 连接字符串。 它与 sasUri、serviceEndpoint 属性互斥。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
containerUri Azure Blob 存储资源的容器 URI 仅支持匿名访问。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
sasToken sasToken 的 Azure 密钥保管库机密引用在 sas uri 中。 AzureKeyVaultSecretReference
sasUri Azure Blob 存储资源的 SAS URI。 它与 connectionString、serviceEndpoint 属性互斥。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
serviceEndpoint Azure Blob 存储资源的 Blob 服务终结点。 它与 connectionString、sasUri 属性互斥。 任何
servicePrincipalId 用于对 Azure SQL 数据仓库进行身份验证的服务主体的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Azure SQL 数据仓库进行身份验证的服务主体的密钥。 SecretBase
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureDatabricksDeltaLakeLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureDatabricksDeltaLake”(必需)
typeProperties Azure Databricks Delta Lake 链接服务属性。 AzureDatabricksDetltaLakeLinkedServiceTypeProperties (必需)

AzureDatabricksDetltaLakeLinkedServiceTypeProperties

名字 描述 价值
accessToken databricks REST API 的访问令牌。 请参阅 https://docs.azuredatabricks.net/api/latest/authentication.html。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 SecretBase
clusterId 将用于此作业的所有运行的现有交互式群集的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
<区域>.azuredatabricks.net,即 Databricks 部署的域名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
workspaceResourceId databricks REST API 的工作区资源 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureDatabricksLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureDatabricks”(必需)
typeProperties Azure Databricks 链接服务属性。 AzureDatabricksLinkedServiceTypeProperties(必需)

AzureDatabricksLinkedServiceTypeProperties

名字 描述 价值
accessToken databricks REST API 的访问令牌。 请参阅 https://docs.azuredatabricks.net/api/latest/authentication.html。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
认证 如果对 databricks REST API 使用工作区资源 ID,则需要指定 MSI。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
<区域>.azuredatabricks.net,即 Databricks 部署的域名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
existingClusterId 将用于此活动的所有运行的现有交互式群集的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
instancePoolId 将用于此活动的所有运行的现有实例池的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
newClusterCustomTags 群集资源的其他标记。 实例池配置中忽略此属性。 AzureDatabricksLinkedServiceTypePropertiesNewClusterCustomTags
newClusterDriverNodeType 新作业群集的驱动程序节点类型。 实例池配置中忽略此属性。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
newClusterEnableElasticDisk 在新群集上启用弹性磁盘。 此属性现已被忽略,并采用 Databricks 中的默认弹性磁盘行为(始终启用弹性磁盘)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
newClusterInitScripts 新群集的用户定义的初始化脚本。 类型:字符串数组(或包含字符串 resultType 数组的表达式)。 任何
newClusterLogDestination 指定用于传送 Spark 驱动程序、辅助角色和事件日志的位置。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
newClusterNodeType 新作业群集的节点类型。 如果指定 newClusterVersion 且未指定 instancePoolId,则此属性是必需的。 如果指定了 instancePoolId,则忽略此属性。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
newClusterNumOfWorker 如果未使用现有的交互式群集,则指定用于新作业群集或实例池的工作器节点数。 对于新的作业群集,此字符串格式的 Int32(如“1”表示 numOfWorker 为 1 或“1:10”表示从 1(最小值)自动缩放到 10(最大值)。 例如,池是字符串格式的 Int32,只能指定固定数量的工作节点,例如“2”。 如果指定 newClusterVersion,则为必需。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
newClusterSparkConf 一组可选的用户指定的 Spark 配置键值对。 AzureDatabricksLinkedServiceTypePropertiesNewClusterSparkConf
newClusterSparkEnvVars 一组可选的用户指定的 Spark 环境变量键值对。 AzureDatabricksLinkedServiceTypePropertiesNewClusterSparkEnvVars
newClusterVersion 如果未使用现有的交互式群集,则指定为此活动的每个运行创建的新作业群集或实例池节点的 Spark 版本。 如果指定了 instancePoolId,则为必需。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
policyId 用于限制基于用户定义的规则集配置群集的功能的策略 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
workspaceResourceId databricks REST API 的工作区资源 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureDatabricksLinkedServiceTypePropertiesNewClusterCustomTags

名字 描述 价值

AzureDatabricksLinkedServiceTypePropertiesNewClusterSparkConf

名字 描述 价值

AzureDatabricksLinkedServiceTypePropertiesNewClusterSparkEnvVars

名字 描述 价值

AzureDataExplorerLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureDataExplorer”(必需)
typeProperties Azure 数据资源管理器(Kusto)链接服务属性。 AzureDataExplorerLinkedServiceTypeProperties(必需)

AzureDataExplorerLinkedServiceTypeProperties

名字 描述 价值
凭据 包含身份验证信息的凭据引用。 CredentialReference
数据库 连接的数据库名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
端点 Azure 数据资源管理器的终结点(引擎的终结点)。 URL 的格式为 clusterName>https://<。<regionName>.kusto.windows.net。 类型:字符串(或带有 resultType 字符串的表达式) 任何(必需)
servicePrincipalId 用于对 Azure 数据资源管理器进行身份验证的服务主体的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Kusto 进行身份验证的服务主体的密钥。 SecretBase
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureDataLakeAnalyticsLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureDataLakeAnalytics”(必需)
typeProperties Azure Data Lake Analytics 链接服务属性。 AzureDataLakeAnalyticsLinkedServiceTypeProperties (必需)

AzureDataLakeAnalyticsLinkedServiceTypeProperties

名字 描述 价值
accountName Azure Data Lake Analytics 帐户名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
dataLakeAnalyticsUri Azure Data Lake Analytics URI 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
resourceGroupName Data Lake Analytics 帐户资源组名称(如果不同于数据工厂帐户)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId 用于对 Azure Data Lake Analytics 帐户进行身份验证的应用程序 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Azure Data Lake Analytics 帐户进行身份验证的应用程序密钥。 SecretBase
subscriptionId Data Lake Analytics 帐户订阅 ID(如果不同于数据工厂帐户)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

AzureDataLakeStoreLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureDataLakeStore”(必需)
typeProperties Azure Data Lake Store 链接服务属性。 AzureDataLakeStoreLinkedServiceTypeProperties(必需)

AzureDataLakeStoreLinkedServiceTypeProperties

名字 描述 价值
accountName Data Lake Store 帐户名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
azureCloudType 指示服务主体身份验证的 Azure 云类型。允许的值为 AzurePublic、AzureChina、AzureUsGovernment、AzureGermany。 默认值为数据工厂区域的云类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
dataLakeStoreUri Data Lake Store 服务 URI。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
resourceGroupName Data Lake Store 帐户资源组名称(如果不同于数据工厂帐户)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId 用于对 Azure Data Lake Store 帐户进行身份验证的应用程序的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Azure Data Lake Store 帐户进行身份验证的应用程序密钥。 SecretBase
subscriptionId Data Lake Store 帐户订阅 ID(如果不同于数据工厂帐户)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureFileStorageLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureFileStorage”(必需)
typeProperties Azure 文件存储链接服务属性。 AzureFileStorageLinkedServiceTypeProperties(必需)

AzureFileStorageLinkedServiceTypeProperties

名字 描述 价值
accountKey 连接字符串中 accountKey 的 Azure 密钥保管库机密引用。 AzureKeyVaultSecretReference
connectionString 连接字符串。 它与 sasUri 属性互斥。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
fileShare Azure 文件共享名称。 使用 accountKey/sasToken 进行身份验证时需要它。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
主机 服务器的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 用于登录服务器的密码。 SecretBase
sasToken sasToken 的 Azure 密钥保管库机密引用在 sas uri 中。 AzureKeyVaultSecretReference
sasUri Azure 文件资源的 SAS URI。 它与 connectionString 属性互斥。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
serviceEndpoint Azure 文件存储资源的文件服务终结点。 它与 connectionString、sasUri 属性互斥。 任何
快照 Azure 文件共享快照版本。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
userId 用于登录服务器的用户 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureFunctionLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureFunction”(必需)
typeProperties Azure Function 链接服务属性。 AzureFunctionLinkedServiceTypeProperties (必需)

AzureFunctionLinkedServiceTypeProperties

名字 描述 价值
认证 用于连接到 AzureFunction 的身份验证类型(需要指定 MSI)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
functionAppUrl Azure Function App 的终结点。 URL 的格式为 https://<accountName>.azurewebsites.net。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
functionKey Azure Function App 的函数或主机密钥。 SecretBase
resourceId Azure 函数的允许令牌访问群体。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureKeyVaultLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureKeyVault”(必需)
typeProperties Azure Key Vault 链接服务属性。 AzureKeyVaultLinkedServiceTypeProperties(必需)

AzureKeyVaultLinkedServiceTypeProperties

名字 描述 价值
baseUrl Azure Key Vault 的基 URL。 例如 https://myakv.vault.azure.net 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
凭据 包含身份验证信息的凭据引用。 CredentialReference

AzureKeyVaultSecretReference

名字 描述 价值
secretName Azure Key Vault 中机密的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
secretVersion Azure Key Vault 中的机密版本。 默认值为最新版本的机密。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
商店 Azure Key Vault 链接服务参考。 LinkedServiceReference(必需)
类型 机密的类型。 string (必需)

AzureKeyVaultSecretReference

名字 描述 价值
secretName Azure Key Vault 中机密的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
secretVersion Azure Key Vault 中的机密版本。 默认值为最新版本的机密。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
商店 Azure Key Vault 链接服务参考。 LinkedServiceReference(必需)
类型 机密的类型。 “AzureKeyVaultSecret”(必需)

AzureMariaDBLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureMariaDB”(必需)
typeProperties Azure Database for MariaDB 链接服务属性。 AzureMariaDBLinkedServiceTypeProperties(必需)

AzureMariaDBLinkedServiceTypeProperties

名字 描述 价值
connectionString ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
pwd 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference

AzureMLLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureML”(必需)
typeProperties Azure ML Studio Web 服务链接服务属性。 AzureMLLinkedServiceTypeProperties (必需)

AzureMLLinkedServiceTypeProperties

名字 描述 价值
apiKey 用于访问 Azure ML 模型终结点的 API 密钥。 SecretBase(必需)
认证 用于连接到 AzureML 的身份验证类型(需要指定 MSI)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
mlEndpoint Azure ML Studio Web 服务终结点的批处理执行 REST URL。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
servicePrincipalId 用于针对 Azure ML Studio Web 服务的基于 ARM 的 updateResourceEndpoint 进行身份验证的服务主体的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于针对 Azure ML Studio Web 服务的基于 ARM 的 updateResourceEndpoint 进行身份验证的服务主体的密钥。 SecretBase
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
updateResourceEndpoint Azure ML Studio Web 服务终结点的更新资源 REST URL。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureMLServiceLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureMLService”(必需)
typeProperties Azure ML 服务链接服务属性。 AzureMLServiceLinkedServiceTypeProperties (必需)

AzureMLServiceLinkedServiceTypeProperties

名字 描述 价值
认证 用于连接到 AzureML 的身份验证类型(需要指定 MSI)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
mlWorkspaceName Azure ML 服务工作区名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
resourceGroupName Azure ML 服务工作区资源组名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
servicePrincipalId 用于针对已发布 Azure ML 服务管道的终结点进行身份验证的服务主体的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于针对已发布 Azure ML 服务管道的终结点进行身份验证的服务主体的密钥。 SecretBase
subscriptionId Azure ML 服务工作区订阅 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureMySqlLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureMySql”(必需)
typeProperties Azure MySQL 数据库链接服务属性。 AzureMySqlLinkedServiceTypeProperties(必需)

AzureMySqlLinkedServiceTypeProperties

名字 描述 价值
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference

AzurePostgreSqlLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzurePostgreSql”(必需)
typeProperties Azure PostgreSQL 链接服务属性。 AzurePostgreSqlLinkedServiceTypeProperties (必需)

AzurePostgreSqlLinkedServiceTypeProperties

名字 描述 价值
commandTimeout 在尝试执行命令之前,等待时间(以秒为单位),然后再终止尝试并生成错误。 对于无穷大,设置为零。 类型:整数。 任何
connectionString ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
数据库 连接的数据库名称。 类型:字符串。 任何
编码 获取或设置用于对 PostgreSQL 字符串数据进行编码/解码的 .NET 编码。 类型:字符串 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference
港口 连接的端口。 类型:整数。 任何
readBufferSize 确定读取时内部缓冲区使用的大小。 如果从数据库传输大型值,则提高性能可能会提高。 类型:整数。 任何
服务器 连接的服务器名称。 类型:字符串。 任何
sslMode 用于连接的 SSL 模式。 类型:整数。 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. 类型:整数。 任何
超时 在终止尝试并生成错误之前,尝试建立连接的时间(以秒为单位)。 类型:整数。 任何
时区 获取或设置会话时区。 类型:字符串。 任何
trustServerCertificate 是否信任服务器证书而不验证它。 类型:布尔值。 任何
username 身份验证的用户名。 类型:字符串。 任何

AzureSearchLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureSearch”(必需)
typeProperties Windows Azure 搜索服务链接服务属性。 AzureSearchLinkedServiceTypeProperties(必需)

AzureSearchLinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
钥匙 Azure 搜索服务的管理密钥 SecretBase
url Azure 搜索服务的 URL。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

AzureSqlDatabaseLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureSqlDatabase”(必需)
typeProperties Azure SQL 数据库链接服务属性。 AzureSqlDatabaseLinkedServiceTypeProperties(必需)

AzureSqlDatabaseLinkedServiceTypeProperties

名字 描述 价值
alwaysEncryptedSettings Sql 始终加密属性。 SqlAlwaysEncryptedProperties
applicationIntent 连接到服务器时的应用程序工作负荷类型,由建议的版本使用。 可能的值为 ReadOnly 和 ReadWrite。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于身份验证的类型。 类型:字符串。 “ServicePrincipal”
“SQL”
“SystemAssignedManagedIdentity”
“UserAssignedManagedIdentity”
azureCloudType 指示服务主体身份验证的 Azure 云类型。允许的值为 AzurePublic、AzureChina、AzureUsGovernment、AzureGermany。 默认值为数据工厂区域的云类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
commandTimeout 在终止尝试执行命令并生成错误之前(以秒为单位)的默认等待时间(以秒为单位),由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
connectRetryCount 确定有空闲连接失败(由建议的版本使用)后尝试的重新连接数。 这必须是介于 0 和 255 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectRetryInterval 确定建议的版本使用空闲连接失败后,每个重新连接尝试之间的时间(以秒为单位)。 这必须是介于 1 和 60 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectTimeout 在终止尝试并生成由建议版本使用的错误之前,等待与服务器的连接的时间长度(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
数据库 建议的版本使用的数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
加密 指示客户端和服务器之间发送的所有数据是否需要 TLS 加密(由建议的版本使用)。 可能的值为 true/yes/mandatory、false/no/optional 和 strict。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
failoverPartner 如果主服务器关闭(由建议的版本使用)连接到的伙伴服务器的名称或地址。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
hostNameInCertificate 验证连接的服务器证书时要使用的主机名。 如果未指定,则数据源中的服务器名称用于证书验证,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
integratedSecurity 指示是否在连接(如果为 false)中指定用户 ID 和密码,或者当前 Windows 帐户凭据是否用于身份验证(如果为 true),由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
loadBalanceTimeout 在被建议的版本使用之前,连接在连接池中生存的最短时间(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
maxPoolSize 此特定连接字符串的连接池中允许的最大连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
minPoolSize 此特定连接字符串的连接池中允许的最小连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
multipleActiveResultSets 如果为 true,应用程序可以维护多个活动结果集(MARS)。 如果为 false,应用程序必须处理或取消一个批处理中的所有结果集,然后才能在该连接上执行任何其他批处理(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
multiSubnetFailover 如果应用程序连接到不同子网上的 AlwaysOn 可用性组(AG),则设置 MultiSubnetFailover=true 可以更快地检测和连接到(当前)活动服务器(当前)活动服务器(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
packetSize 用于与服务器实例通信的网络数据包的大小(以字节为单位,由建议的版本使用)。 类型:整数(或包含 resultType 整数的表达式)。 任何
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference
指示每次请求连接时,连接是共用的还是显式打开的,由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
服务器 要连接到的 SQL Server 实例的名称或网络地址,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId 用于对 Azure SQL 数据库进行身份验证的服务主体的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Azure SQL 数据库进行身份验证的服务主体的密钥。 SecretBase
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
trustServerCertificate 指示通道是否在绕过证书链来验证推荐版本使用的信任时是否加密通道。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
userName 连接到服务器时要使用的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureSqlDWLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureSqlDW”(必需)
typeProperties Azure SQL 数据仓库链接服务属性。 AzureSqlDWLinkedServiceTypeProperties (必需)

AzureSqlDWLinkedServiceTypeProperties

名字 描述 价值
applicationIntent 连接到服务器时的应用程序工作负荷类型,由建议的版本使用。 可能的值为 ReadOnly 和 ReadWrite。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于身份验证的类型。 类型:字符串。 “ServicePrincipal”
“SQL”
“SystemAssignedManagedIdentity”
“UserAssignedManagedIdentity”
azureCloudType 指示服务主体身份验证的 Azure 云类型。允许的值为 AzurePublic、AzureChina、AzureUsGovernment、AzureGermany。 默认值为数据工厂区域的云类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
commandTimeout 在终止尝试执行命令并生成错误之前(以秒为单位)的默认等待时间(以秒为单位),由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
connectRetryCount 确定有空闲连接失败(由建议的版本使用)后尝试的重新连接数。 这必须是介于 0 和 255 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectRetryInterval 确定建议的版本使用空闲连接失败后,每个重新连接尝试之间的时间(以秒为单位)。 这必须是介于 1 和 60 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectTimeout 在终止尝试并生成由建议版本使用的错误之前,等待与服务器的连接的时间长度(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
数据库 建议的版本使用的数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
加密 指示客户端和服务器之间发送的所有数据是否需要 TLS 加密(由建议的版本使用)。 可能的值为 true/yes/mandatory、false/no/optional 和 strict。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
failoverPartner 如果主服务器关闭(由建议的版本使用)连接到的伙伴服务器的名称或地址。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
hostNameInCertificate 验证连接的服务器证书时要使用的主机名。 如果未指定,则数据源中的服务器名称用于证书验证,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
integratedSecurity 指示是否在连接(如果为 false)中指定用户 ID 和密码,或者当前 Windows 帐户凭据是否用于身份验证(如果为 true),由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
loadBalanceTimeout 在被建议的版本使用之前,连接在连接池中生存的最短时间(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
maxPoolSize 此特定连接字符串的连接池中允许的最大连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
minPoolSize 此特定连接字符串的连接池中允许的最小连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
multipleActiveResultSets 如果为 true,应用程序可以维护多个活动结果集(MARS)。 如果为 false,应用程序必须处理或取消一个批处理中的所有结果集,然后才能在该连接上执行任何其他批处理(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
multiSubnetFailover 如果应用程序连接到不同子网上的 AlwaysOn 可用性组(AG),则设置 MultiSubnetFailover=true 可以更快地检测和连接到(当前)活动服务器(当前)活动服务器(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
packetSize 用于与服务器实例通信的网络数据包的大小(以字节为单位,由建议的版本使用)。 类型:整数(或包含 resultType 整数的表达式)。 任何
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference
指示每次请求连接时,连接是共用的还是显式打开的,由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
服务器 要连接到的 SQL Server 实例的名称或网络地址,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId 用于对 Azure SQL 数据仓库进行身份验证的服务主体的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Azure SQL 数据仓库进行身份验证的服务主体的密钥。 SecretBase
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
trustServerCertificate 指示通道是否在绕过证书链来验证推荐版本使用的信任时是否加密通道。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
userName 连接到服务器时要使用的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureSqlMILinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureSqlMI”(必需)
typeProperties Azure SQL 托管实例链接服务属性。 AzureSqlMILinkedServiceTypeProperties(必需)

AzureSqlMILinkedServiceTypeProperties

名字 描述 价值
alwaysEncryptedSettings Sql 始终加密属性。 SqlAlwaysEncryptedProperties
applicationIntent 连接到服务器时的应用程序工作负荷类型,由建议的版本使用。 可能的值为 ReadOnly 和 ReadWrite。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于身份验证的类型。 类型:字符串。 “ServicePrincipal”
“SQL”
“SystemAssignedManagedIdentity”
“UserAssignedManagedIdentity”
azureCloudType 指示服务主体身份验证的 Azure 云类型。允许的值为 AzurePublic、AzureChina、AzureUsGovernment、AzureGermany。 默认值为数据工厂区域的云类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
commandTimeout 在终止尝试执行命令并生成错误之前(以秒为单位)的默认等待时间(以秒为单位),由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
connectRetryCount 确定有空闲连接失败(由建议的版本使用)后尝试的重新连接数。 这必须是介于 0 和 255 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectRetryInterval 确定建议的版本使用空闲连接失败后,每个重新连接尝试之间的时间(以秒为单位)。 这必须是介于 1 和 60 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectTimeout 在终止尝试并生成由建议版本使用的错误之前,等待与服务器的连接的时间长度(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
数据库 建议的版本使用的数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
加密 指示客户端和服务器之间发送的所有数据是否需要 TLS 加密(由建议的版本使用)。 可能的值为 true/yes/mandatory、false/no/optional 和 strict。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
failoverPartner 如果主服务器关闭(由建议的版本使用)连接到的伙伴服务器的名称或地址。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
hostNameInCertificate 验证连接的服务器证书时要使用的主机名。 如果未指定,则数据源中的服务器名称用于证书验证,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
integratedSecurity 指示是否在连接(如果为 false)中指定用户 ID 和密码,或者当前 Windows 帐户凭据是否用于身份验证(如果为 true),由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
loadBalanceTimeout 在被建议的版本使用之前,连接在连接池中生存的最短时间(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
maxPoolSize 此特定连接字符串的连接池中允许的最大连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
minPoolSize 此特定连接字符串的连接池中允许的最小连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
multipleActiveResultSets 如果为 true,应用程序可以维护多个活动结果集(MARS)。 如果为 false,应用程序必须处理或取消一个批处理中的所有结果集,然后才能在该连接上执行任何其他批处理(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
multiSubnetFailover 如果应用程序连接到不同子网上的 AlwaysOn 可用性组(AG),则设置 MultiSubnetFailover=true 可以更快地检测和连接到(当前)活动服务器(当前)活动服务器(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
packetSize 用于与服务器实例通信的网络数据包的大小(以字节为单位,由建议的版本使用)。 类型:整数(或包含 resultType 整数的表达式)。 任何
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference
指示每次请求连接时,连接是共用的还是显式打开的,由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
服务器 要连接到的 SQL Server 实例的名称或网络地址,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId 用于对 Azure SQL 托管实例进行身份验证的服务主体的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Azure SQL 托管实例进行身份验证的服务主体的密钥。 SecretBase
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
trustServerCertificate 指示通道是否在绕过证书链来验证推荐版本使用的信任时是否加密通道。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
userName 连接到服务器时要使用的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureStorageLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureStorage”(必需)
typeProperties Azure 存储链接服务属性。 AzureStorageLinkedServiceTypeProperties(必需)

AzureStorageLinkedServiceTypeProperties

名字 描述 价值
accountKey 连接字符串中 accountKey 的 Azure 密钥保管库机密引用。 AzureKeyVaultSecretReference
connectionString 连接字符串。 它与 sasUri 属性互斥。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
sasToken sasToken 的 Azure 密钥保管库机密引用在 sas uri 中。 AzureKeyVaultSecretReference
sasUri Azure 存储资源的 SAS URI。 它与 connectionString 属性互斥。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何

AzureSynapseArtifactsLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureSynapseArtifacts”(必需)
typeProperties Azure Synapse Analytics (Artifacts) 链接服务属性。 AzureSynapseArtifactsLinkedServiceTypeProperties(必需)

AzureSynapseArtifactsLinkedServiceTypeProperties

名字 描述 价值
认证 如果使用系统分配的托管标识作为身份验证方法,则需要指定 MSI。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
端点 https://<工作区名称>.dev.azuresynapse.net、Azure Synapse Analytics 工作区 URL。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
workspaceResourceId Synapse 工作区的资源 ID。 格式应为:/subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureTableStorageLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureTableStorage”(必需)
typeProperties Azure 表存储链接服务属性。 AzureTableStorageLinkedServiceTypeProperties(必需)

AzureTableStorageLinkedServiceTypeProperties

名字 描述 价值
accountKey 连接字符串中 accountKey 的 Azure 密钥保管库机密引用。 AzureKeyVaultSecretReference
connectionString 连接字符串。 它与 sasUri 属性互斥。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
sasToken sasToken 的 Azure 密钥保管库机密引用在 sas uri 中。 AzureKeyVaultSecretReference
sasUri Azure 存储资源的 SAS URI。 它与 connectionString 属性互斥。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
serviceEndpoint Azure 表存储资源的表服务终结点。 它与 connectionString、sasUri 属性互斥。 任何

CassandraLinkedService

名字 描述 价值
类型 链接服务的类型。 “Cassandra”(必需)
typeProperties Cassandra 链接服务属性。 CassandraLinkedServiceTypeProperties (必需)

CassandraLinkedServiceTypeProperties

名字 描述 价值
authenticationType 要用于连接的 AuthenticationType。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 连接的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
密码 身份验证密码。 SecretBase
港口 连接的端口。 类型:整数(或包含 resultType 整数的表达式)。 任何
username 身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

CommonDataServiceForAppsLinkedService

名字 描述 价值
类型 链接服务的类型。 “CommonDataServiceForApps”(必需)
typeProperties Common Data Service for Apps 链接服务属性。 CommonDataServiceForAppsLinkedServiceTypeProperties(必需)

CommonDataServiceForAppsLinkedServiceTypeProperties

名字 描述 价值
authenticationType 要连接到 Common Data Service for Apps 服务器的身份验证类型。 联机方案的“Office365”,对于本地使用 Ifd 方案,则为“Ifd”。 联机方案中用于 Server-To-Server 身份验证的“AADServicePrincipal”,适用于具有 IFD 的本地 Dynamics 的“Active Directory”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
deploymentType Common Data Service for Apps 实例的部署类型。 Common Data Service for Apps Online 的“Online”和“OnPremisesWithIfd”,适用于本地具有 Ifd 的 Common Data Service for Apps。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
将验证用户凭据的 Active Directory 域。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
hostName 本地 Common Data Service for Apps 服务器的主机名。 属性是本地所必需的,不允许联机。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
organizationName Common Data Service for Apps 实例的组织名称。 当有多个与用户关联的 Common Data Service for Apps 实例时,本地需要此属性,并且需要联机属性。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 用于访问 Common Data Service for Apps 实例的密码。 SecretBase
港口 本地 Common Data Service for Apps 服务器的端口。 属性是本地所必需的,不允许联机。 默认值为 443。 类型:整数(或包含 resultType 整数的表达式),最小值:0。 任何
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId Azure Active Directory 中用于服务器To-Server 身份验证的应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
serviceUri Microsoft Common Data Service for Apps 服务器的 URL。 该属性对于在线是必需的,不允许本地使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
username 用于访问 Common Data Service for Apps 实例的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

ConcurLinkedService

名字 描述 价值
类型 链接服务的类型。 “Concur”(必需)
typeProperties Concur Service 链接服务属性。 ConcurLinkedServiceTypeProperties(必需)

ConcurLinkedServiceTypeProperties

名字 描述 价值
clientId Concur 应用管理提供的应用程序client_id。 任何(必需)
connectionProperties 用于连接到 Concur 的属性。 它与链接服务中的其他任何属性互斥。 类型:对象。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 与用户名字段中提供的用户名对应的密码。 SecretBase
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何
username 用于访问 Concur 服务的用户名。 任何(必需)

CosmosDbLinkedService

名字 描述 价值
类型 链接服务的类型。 “CosmosDb”(必需)
typeProperties CosmosDB 链接服务属性。 CosmosDbLinkedServiceTypeProperties (必需)

CosmosDbLinkedServiceTypeProperties

名字 描述 价值
accountEndpoint Azure CosmosDB 帐户的终结点。 类型:字符串(或带有 resultType 字符串的表达式) 任何
accountKey Azure CosmosDB 帐户的帐户密钥。 类型:SecureString 或 AzureKeyVaultSecretReference。 SecretBase
azureCloudType 指示服务主体身份验证的 Azure 云类型。允许的值为 AzurePublic、AzureChina、AzureUsGovernment、AzureGermany。 默认值为数据工厂区域的云类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
connectionMode 用于访问 CosmosDB 帐户的连接模式。 类型:字符串。 “Direct”
“Gateway”
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
数据库 数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式) 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串。 任何
servicePrincipalId Azure Active Directory 中用于服务器To-Server 身份验证的应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

CosmosDbMongoDbApiLinkedService

名字 描述 价值
类型 链接服务的类型。 “CosmosDbMongoDbApi”(必需)
typeProperties CosmosDB (MongoDB API) 链接服务属性。 CosmosDbMongoDbApiLinkedServiceTypeProperties (必需)

CosmosDbMongoDbApiLinkedServiceTypeProperties

名字 描述 价值
connectionString CosmosDB (MongoDB API) 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何(必需)
数据库 要访问的 CosmosDB (MongoDB API) 数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
isServerVersionAbove32 CosmosDB (MongoDB API) 服务器版本是否高于 3.2。 默认值为 false。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何

CouchbaseLinkedService

名字 描述 价值
类型 链接服务的类型。 “Couchbase”(必需)
typeProperties Couchbase 服务器链接服务属性。 CouchbaseLinkedServiceTypeProperties(必需)

CouchbaseLinkedServiceTypeProperties

名字 描述 价值
connectionString ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
credString 连接字符串中 credString 的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串

CredentialReference

名字 描述 价值
referenceName 引用凭据名称。 string (必需)
类型 凭据引用类型。 “CredentialReference”(必需)

CustomDataSourceLinkedService

名字 描述 价值
类型 链接服务的类型。 “CustomDataSource”(必需)
typeProperties 自定义链接服务属性。 任何(必需)

DataworldLinkedService

名字 描述 价值
类型 链接服务的类型。 “Dataworld”(必需)
typeProperties Dataworld 链接服务属性。 DataworldLinkedServiceTypeProperties (必需)

DataworldLinkedServiceTypeProperties

名字 描述 价值
apiToken Dataworld 源的 API 令牌。 SecretBase(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串

Db2LinkedService

名字 描述 价值
类型 链接服务的类型。 “Db2”(必需)
typeProperties DB2 链接服务属性。 Db2LinkedServiceTypeProperties(必需)

Db2LinkedServiceTypeProperties

名字 描述 价值
authenticationType 要用于连接的 AuthenticationType。 它与 connectionString 属性互斥。 “Basic”
certificateCommonName 启用 TLS 时证书公用名。 它与 connectionString 属性互斥。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
connectionString 连接字符串。 它与服务器、数据库、authenticationType、userName、packageCollection 和 certificateCommonName 属性互斥。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
数据库 连接的数据库名称。 它与 connectionString 属性互斥。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 它与 connectionString 属性互斥。 类型:字符串。 字符串
packageCollection 在查询数据库时创建包的位置下。 它与 connectionString 属性互斥。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 身份验证密码。 SecretBase
服务器 连接的服务器名称。 它与 connectionString 属性互斥。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
username 身份验证的用户名。 它与 connectionString 属性互斥。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

DrillLinkedService

名字 描述 价值
类型 链接服务的类型。 “钻取”(必需)
typeProperties 钻取服务器链接服务属性。 DrillLinkedServiceTypeProperties (必需)

DrillLinkedServiceTypeProperties

名字 描述 价值
connectionString ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
pwd 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference

DynamicsAXLinkedService

名字 描述 价值
类型 链接服务的类型。 “DynamicsAX”(必需)
typeProperties Dynamics AX 链接服务属性。 DynamicsAXLinkedServiceTypeProperties(必需)

DynamicsAXLinkedServiceTypeProperties

名字 描述 价值
aadResourceId 指定要请求授权的资源。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
servicePrincipalId 指定应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
servicePrincipalKey 指定应用程序的密钥。 将此字段标记为 SecureString 以安全地将其存储在数据工厂中,或引用存储在 Azure Key Vault 中的机密。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase(必需)
房客 指定应用程序所在的租户信息(域名或租户 ID)。 通过将鼠标悬停在 Azure 门户右上角来检索它。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
url Dynamics AX(或 Dynamics 365 Finance and Operations)实例 OData 终结点。 任何(必需)

DynamicsCrmLinkedService

名字 描述 价值
类型 链接服务的类型。 “DynamicsCrm”(必需)
typeProperties Dynamics CRM 链接服务属性。 DynamicsCrmLinkedServiceTypeProperties (必需)

DynamicsCrmLinkedServiceTypeProperties

名字 描述 价值
authenticationType 要连接到 Dynamics CRM 服务器的身份验证类型。 联机方案的“Office365”、“Ifd”(适用于本地 Ifd 方案)的“AADServicePrincipal”,用于联机方案中的服务器To-Server 身份验证的“Active Directory”,适用于具有 IFD 的 Dynamics 本地的“Active Directory”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
凭据 包含身份验证信息的凭据引用。 CredentialReference
deploymentType Dynamics CRM 实例的部署类型。 Dynamics CRM Online 的“Online”和“OnPremisesWithIfd”(适用于具有 Ifd 的本地 Dynamics CRM)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
将验证用户凭据的 Active Directory 域。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
hostName 本地 Dynamics CRM 服务器的主机名。 属性是本地所必需的,不允许联机。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
organizationName Dynamics CRM 实例的组织名称。 当有多个与用户关联的 Dynamics CRM 实例时,本地属性是必需的,并且需要联机属性。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 用于访问 Dynamics CRM 实例的密码。 SecretBase
港口 本地 Dynamics CRM 服务器的端口。 属性是本地所必需的,不允许联机。 默认值为 443。 类型:整数(或包含 resultType 整数的表达式),最小值:0。 任何
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId Azure Active Directory 中用于服务器To-Server 身份验证的应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
serviceUri Microsoft Dynamics CRM 服务器的 URL。 该属性对于在线是必需的,不允许本地使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
username 用于访问 Dynamics CRM 实例的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

DynamicsLinkedService

名字 描述 价值
类型 链接服务的类型。 “Dynamics”(必需)
typeProperties Dynamics 链接服务属性。 DynamicsLinkedServiceTypeProperties(必需)

DynamicsLinkedServiceTypeProperties

名字 描述 价值
authenticationType 要连接到 Dynamics 服务器的身份验证类型。 联机方案的“Office365”、“Ifd”(适用于本地 Ifd 方案)的“AADServicePrincipal”,用于联机方案中的服务器To-Server 身份验证的“Active Directory”,适用于具有 IFD 的 Dynamics 本地的“Active Directory”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
凭据 包含身份验证信息的凭据引用。 CredentialReference
deploymentType Dynamics 实例的部署类型。 Dynamics Online 的“Online”和“OnPremisesWithIfd”(适用于具有 Ifd 的本地 Dynamics)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
将验证用户凭据的 Active Directory 域。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
hostName 本地 Dynamics 服务器的主机名。 属性是本地所必需的,不允许联机。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
organizationName Dynamics 实例的组织名称。 当有多个与用户关联的 Dynamics 实例时,本地需要此属性,并且对于联机是必需的。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 用于访问 Dynamics 实例的密码。 SecretBase
港口 本地 Dynamics 服务器的端口。 属性是本地所必需的,不允许联机。 默认值为 443。 类型:整数(或包含 resultType 整数的表达式),最小值:0。 任何
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId Azure Active Directory 中用于服务器To-Server 身份验证的应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
serviceUri Microsoft Dynamics 服务器的 URL。 该属性对于在线是必需的,不允许本地使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
username 用于访问 Dynamics 实例的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

EloquaLinkedService

名字 描述 价值
类型 链接服务的类型。 “Eloqua”(必需)
typeProperties Eloqua 服务器链接服务属性。 EloquaLinkedServiceTypeProperties(必需)

EloquaLinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
端点 Eloqua 服务器的终结点。 (即 eloqua.example.com) 任何(必需)
密码 与用户名对应的密码。 SecretBase
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何
username Eloqua 帐户的网站名称和用户名,格式为:sitename/username。 (即埃洛夸/爱丽丝) 任何(必需)

FileServerLinkedService

名字 描述 价值
类型 链接服务的类型。 “FileServer”(必需)
typeProperties 文件系统链接服务属性。 FileServerLinkedServiceTypeProperties (必需)

FileServerLinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 服务器的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
密码 用于登录服务器的密码。 SecretBase
userId 用于登录服务器的用户 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

FtpServerLinkedService

名字 描述 价值
类型 链接服务的类型。 “FtpServer”(必需)
typeProperties 特定于此链接服务类型的属性。 FtpServerLinkedServiceTypeProperties (必需)

FtpServerLinkedServiceTypeProperties

名字 描述 价值
authenticationType 用于连接到 FTP 服务器的身份验证类型。 “Anonymous”
“Basic”
enableServerCertificateValidation 如果为 true,则通过 SSL/TLS 通道连接时验证 FTP 服务器 SSL 证书。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
enableSsl 如果为 true,请通过 SSL/TLS 通道连接到 FTP 服务器。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 FTP 服务器的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
密码 用于登录 FTP 服务器的密码。 SecretBase
港口 FTP 服务器用于侦听客户端连接的 TCP 端口号。 默认值为 21。 类型:整数(或包含 resultType 整数的表达式),最小值:0。 任何
userName 用于登录 FTP 服务器的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

GoogleAdWordsLinkedService

名字 描述 价值
类型 链接服务的类型。 “GoogleAdWords”(必需)
typeProperties Google AdWords 服务链接服务属性。 GoogleAdWordsLinkedServiceTypeProperties (必需)

GoogleAdWordsLinkedServiceTypeProperties

名字 描述 价值
authenticationType 用于身份验证的 OAuth 2.0 身份验证机制。 ServiceAuthentication 只能在自承载 IR 上使用。 “ServiceAuthentication”
“UserAuthentication”
clientCustomerID 要为其提取报表数据的 AdWords 帐户的客户端客户 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clientId 用于获取刷新令牌的 google 应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clientSecret 用于获取刷新令牌的 google 应用程序的客户端密码。 SecretBase
connectionProperties (已弃用)用于连接到 GoogleAds 的属性。 它与链接服务中的其他任何属性互斥。 类型:对象。 任何
developerToken 与用于授予 AdWords API 访问权限的经理帐户关联的开发人员令牌。 SecretBase
电子邮件 用于 ServiceAuthentication 的服务帐户电子邮件 ID,只能在自承载 IR 上使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
googleAdsApiVersion Google Ads API 主版本(如 v14)。 可在 https://developers.google.com/google-ads/api/docs/release-notes中找到支持的主要版本。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
keyFilePath (已弃用)用于对服务帐户电子邮件地址进行身份验证的 .p12 密钥文件的完整路径,只能在自承载 IR 上使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
loginCustomerID 要通过该帐户提取特定客户的报表数据的 Google Ads Manager 帐户的客户 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
privateKey 用于对服务帐户电子邮件地址进行身份验证的私钥,只能在自承载 IR 上使用。 SecretBase
refreshToken 从 Google 获取的刷新令牌,用于授权访问 AdWords for UserAuthentication。 SecretBase
supportLegacyDataTypes 指定是否使用旧数据类型映射,这些映射将 float、int32 和 int64 从 Google 映射到字符串。 除非要保持与旧驱动程序数据类型映射的向后兼容性,否则不要将其设置为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
trustedCertPath (已弃用)包含受信任的 CA 证书的 .pem 文件的完整路径,用于通过 SSL 连接时验证服务器。 只能在自承载 IR 上使用 SSL 时设置此属性。 默认值为随 IR 一起安装的 cacerts.pem 文件。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
useSystemTrustStore (已弃用)指定是使用系统信任存储中的 CA 证书还是从指定的 PEM 文件使用 CA 证书。 默认值为 false。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何

GoogleBigQueryLinkedService

名字 描述 价值
类型 链接服务的类型。 “GoogleBigQuery”(必需)
typeProperties Google BigQuery 服务链接服务属性。 GoogleBigQueryLinkedServiceTypeProperties (必需)

GoogleBigQueryLinkedServiceTypeProperties

名字 描述 价值
additionalProjects 要访问的公共 BigQuery 项目的逗号分隔列表。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于身份验证的 OAuth 2.0 身份验证机制。 ServiceAuthentication 只能在自承载 IR 上使用。 “ServiceAuthentication”
“UserAuthentication”(必需)
clientId 用于获取刷新令牌的 google 应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clientSecret 用于获取刷新令牌的 google 应用程序的客户端密码。 SecretBase
电子邮件 用于 ServiceAuthentication 的服务帐户电子邮件 ID,只能在自承载 IR 上使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
keyFilePath 用于对服务帐户电子邮件地址进行身份验证的 .p12 密钥文件的完整路径,只能在自承载 IR 上使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
项目 要查询的默认 BigQuery 项目。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
refreshToken 从 Google 获取的刷新令牌,用于授权访问 BigQuery for UserAuthentication。 SecretBase
requestGoogleDriveScope 是否请求访问 Google Drive。 允许 Google Drive 访问支持将 BigQuery 数据与 Google Drive 中的数据相结合的联合表。 默认值为 false。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
trustedCertPath 包含受信任的 CA 证书的 .pem 文件的完整路径,用于通过 SSL 连接时验证服务器。 只能在自承载 IR 上使用 SSL 时设置此属性。 默认值为随 IR 一起安装的 cacerts.pem 文件。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
useSystemTrustStore 指定是使用系统信任存储中的 CA 证书还是从指定的 PEM 文件使用 CA 证书。 默认值为 false。类型:布尔值(或带有 resultType 布尔值的表达式)。 任何

GoogleBigQueryV2LinkedService

名字 描述 价值
类型 链接服务的类型。 “GoogleBigQueryV2”(必需)
typeProperties Google BigQuery 服务链接服务属性。 GoogleBigQueryV2LinkedServiceTypeProperties (必需)

GoogleBigQueryV2LinkedServiceTypeProperties

名字 描述 价值
authenticationType 用于身份验证的 OAuth 2.0 身份验证机制。 “ServiceAuthentication”
“UserAuthentication”(必需)
clientId 用于获取刷新令牌的 google 应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clientSecret 用于获取刷新令牌的 google 应用程序的客户端密码。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
keyFileContent 用于对服务帐户进行身份验证的 .json 密钥文件的内容。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
projectId 要查询的默认 BigQuery 项目 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
refreshToken 从 Google 获取的刷新令牌,用于授权访问 BigQuery for UserAuthentication。 SecretBase

GoogleCloudStorageLinkedService

名字 描述 价值
类型 链接服务的类型。 “GoogleCloudStorage”(必需)
typeProperties Google Cloud Storage 链接服务属性。 GoogleCloudStorageLinkedServiceTypeProperties(必需)

GoogleCloudStorageLinkedServiceTypeProperties

名字 描述 价值
accessKeyId Google Cloud Storage Identity and Access Management (IAM) 用户的访问密钥标识符。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
secretAccessKey Google Cloud Storage Identity and Access Management (IAM) 用户的机密访问密钥。 SecretBase
serviceUrl 此值指定要使用 Google Cloud Storage Connector 访问的终结点。 这是一个可选属性;仅当想要尝试其他服务终结点或想要在 https 和 http 之间切换时更改它。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

GoogleSheetsLinkedService

名字 描述 价值
类型 链接服务的类型。 “GoogleSheets”(必需)
typeProperties GoogleSheets 链接服务属性。 GoogleSheetsLinkedServiceTypeProperties (必需)

GoogleSheetsLinkedServiceTypeProperties

名字 描述 价值
apiToken GoogleSheets 源的 API 令牌。 SecretBase(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串

GreenplumLinkedService

名字 描述 价值
类型 链接服务的类型。 “Greenplum”(必需)
typeProperties Greenplum 数据库链接服务属性。 GreenplumLinkedServiceTypeProperties(必需)

GreenplumLinkedServiceTypeProperties

名字 描述 价值
connectionString ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
pwd 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference

HBaseLinkedService

名字 描述 价值
类型 链接服务的类型。 “HBase”(必需)
typeProperties HBase 服务器链接服务属性。 HBaseLinkedServiceTypeProperties(必需)

HBaseLinkedServiceTypeProperties

名字 描述 价值
allowHostNameCNMismatch 指定是否要求 CA 颁发的 SSL 证书名称与通过 SSL 连接时服务器的主机名匹配。 默认值为 false。 任何
allowSelfSignedServerCert 指定是否允许来自服务器的自签名证书。 默认值为 false。 任何
authenticationType 用于连接到 HBase 服务器的身份验证机制。 “Anonymous”
“Basic”(必需)
enableSsl 指定是否使用 SSL 加密与服务器的连接。 默认值为 false。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 HBase 服务器的 IP 地址或主机名。 (即 192.168.222.160) 任何(必需)
httpPath 对应于 HBase 服务器的部分 URL。 (即 /gateway/sandbox/hbase/version) 任何
密码 与用户名对应的密码。 SecretBase
港口 HBase 实例用于侦听客户端连接的 TCP 端口。 默认值为 9090。 任何
trustedCertPath 包含受信任的 CA 证书的 .pem 文件的完整路径,用于通过 SSL 连接时验证服务器。 只能在自承载 IR 上使用 SSL 时设置此属性。 默认值为随 IR 一起安装的 cacerts.pem 文件。 任何
username 用于连接到 HBase 实例的用户名。 任何

HdfsLinkedService

名字 描述 价值
类型 链接服务的类型。 “Hdfs”(必需)
typeProperties HDFS 链接服务属性。 HdfsLinkedServiceTypeProperties(必需)

HdfsLinkedServiceTypeProperties

名字 描述 价值
authenticationType 用于连接到 HDFS 的身份验证类型。 可能的值为:Anonymous 和 Windows。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 Windows 身份验证的密码。 SecretBase
url HDFS 服务终结点的 URL,例如 http://myhostname:50070/webhdfs/v1。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
userName Windows 身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

HDInsightLinkedService

名字 描述 价值
类型 链接服务的类型。 “HDInsight”(必需)
typeProperties HDInsight 链接服务属性。 HDInsightLinkedServiceTypeProperties(必需)

HDInsightLinkedServiceTypeProperties

名字 描述 价值
clusterUri HDInsight 群集 URI。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
fileSystem 如果 HDInsight 的主存储为 ADLS Gen2,请指定 FileSystem。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
hcatalogLinkedServiceName 指向 HCatalog 数据库的 Azure SQL 链接服务的引用。 LinkedServiceReference
isEspEnabled 指定是否使用 ESP 创建 HDInsight(企业安全包)。 类型:布尔值。 任何
linkedServiceName Azure 存储链接服务参考。 LinkedServiceReference
密码 HDInsight 群集密码。 SecretBase
userName HDInsight 群集用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

HDInsightOnDemandLinkedService

名字 描述 价值
类型 链接服务的类型。 “HDInsightOnDemand”(必需)
typeProperties HDInsight ondemand 链接服务属性。 HDInsightOnDemandLinkedServiceTypeProperties(必需)

HDInsightOnDemandLinkedServiceTypeProperties

名字 描述 价值
additionalLinkedServiceNames 为 HDInsight 链接服务指定其他存储帐户,以便数据工厂服务可以代表你注册它们。 LinkedServiceReference[]
clusterNamePrefix 群集名称的前缀,后缀将不同于时间戳。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clusterPassword 用于访问群集的密码。 SecretBase
clusterResourceGroup 群集所属的资源组。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
clusterSize 群集中的辅助角色/数据节点数。 建议值:4。 类型:int(或包含 resultType int 的表达式)。 任何(必需)
clusterSshPassword SSH 远程连接群集节点(适用于 Linux)的密码。 SecretBase
clusterSshUserName SSH 的用户名远程连接到群集的节点(适用于 Linux)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clusterType 群集类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clusterUserName 用于访问群集的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
coreConfiguration 指定要创建的 HDInsight 群集的核心配置参数(如 core-site.xml)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
dataNodeSize 指定 HDInsight 群集的数据节点的大小。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
hBaseConfiguration 指定 HDInsight 群集的 HBase 配置参数(hbase-site.xml)。 任何
hcatalogLinkedServiceName 指向 HCatalog 数据库的 Azure SQL 链接服务的名称。 按需 HDInsight 群集是使用 Azure SQL 数据库作为元存储创建的。 LinkedServiceReference
hdfsConfiguration 指定 HDInsight 群集的 HDFS 配置参数(hdfs-site.xml)。 任何
headNodeSize 指定 HDInsight 群集的头节点的大小。 任何
hiveConfiguration 指定 HDInsight 群集的 hive 配置参数(hive-site.xml)。 任何
hostSubscriptionId 用于托管群集的客户订阅。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
linkedServiceName 供按需群集用于存储和处理数据的 Azure 存储链接服务。 LinkedServiceReference(必需)
mapReduceConfiguration 指定 HDInsight 群集的 MapReduce 配置参数(mapred-site.xml)。 任何
oozieConfiguration 指定 HDInsight 群集的 Oozie 配置参数(oozie-site.xml)。 任何
scriptActions 自定义脚本操作,在 HDI ondemand 群集上运行一旦启动。 请参阅 /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。 ScriptAction[]
servicePrincipalId hostSubscriptionId 的服务主体 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 服务主体 ID 的密钥。 SecretBase
sparkVersion 如果群集类型为“spark”,则为 spark 的版本。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
stormConfiguration 指定 HDInsight 群集的 Storm 配置参数(storm-site.xml)。 任何
subnetName vNet 中子网的 ARM 资源 ID。 如果指定了 virtualNetworkId,则需要此属性。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
房客 服务主体所属的租户 ID/名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
timeToLive 按需 HDInsight 群集的允许空闲时间。 指定当群集中没有其他活动作业时,按需 HDInsight 群集在活动运行完成后保持活动运行的时间。 最小值为 5 分钟。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
版本 HDInsight 群集的版本。  类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
virtualNetworkId 创建群集后应加入的 vNet 的 ARM 资源 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
yarnConfiguration 指定 HDInsight 群集的 Yarn 配置参数(yarn-site.xml)。 任何
zookeeperNodeSize 指定 HDInsight 群集的 Zoo Keeper 节点的大小。 任何

HiveLinkedService

名字 描述 价值
类型 链接服务的类型。 “Hive”(必需)
typeProperties Hive Server 链接服务属性。 HiveLinkedServiceTypeProperties(必需)

HiveLinkedServiceTypeProperties

名字 描述 价值
allowHostNameCNMismatch 指定是否要求 CA 颁发的 SSL 证书名称与通过 SSL 连接时服务器的主机名匹配。 默认值为 false。 任何
allowSelfSignedServerCert 指定是否允许来自服务器的自签名证书。 默认值为 false。 任何
authenticationType 用于访问 Hive 服务器的身份验证方法。 “Anonymous”
“Username”
“UsernameAndPassword”
“WindowsAzureHDInsightService”(必需)
enableSsl 指定是否使用 SSL 加密与服务器的连接。 默认值为 false。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Hive 服务器的 IP 地址或主机名,由多个主机的“;”分隔(仅当 serviceDiscoveryMode 启用时)。 任何(必需)
httpPath 与 Hive 服务器对应的部分 URL。 任何
密码 与你在“用户名”字段中提供的用户名对应的密码 SecretBase
港口 Hive 服务器用来侦听客户端连接的 TCP 端口。 任何
serverType Hive 服务器的类型。 “HiveServer1”
“HiveServer2”
“HiveThriftServer”
serviceDiscoveryMode 如果指示使用 ZooKeeper 服务,则为 true,则为 false。 任何
thriftTransportProtocol 在 Thrift 层中使用的传输协议。 “Binary”
“HTTP”
“SASL”
trustedCertPath 包含受信任的 CA 证书的 .pem 文件的完整路径,用于通过 SSL 连接时验证服务器。 只能在自承载 IR 上使用 SSL 时设置此属性。 默认值为随 IR 一起安装的 cacerts.pem 文件。 任何
useNativeQuery 指定驱动程序是使用本机 HiveQL 查询,还是将它们转换为 HiveQL 中的等效形式。 任何
username 用于访问 Hive Server 的用户名。 任何
useSystemTrustStore 指定是使用系统信任存储中的 CA 证书还是从指定的 PEM 文件使用 CA 证书。 默认值为 false。 任何
zooKeeperNameSpace 添加 Hive Server 2 节点的 ZooKeeper 上的命名空间。 任何

HttpLinkedService

名字 描述 价值
类型 链接服务的类型。 “HttpServer”(必需)
typeProperties 特定于此链接服务类型的属性。 HttpLinkedServiceTypeProperties (必需)

HttpLinkedServiceTypeProperties

名字 描述 价值
authenticationType 用于连接到 HTTP 服务器的身份验证类型。 “Anonymous”
“Basic”
“ClientCertificate”
“Digest”
“Windows”
authHeaders 请求中用于授权的 RESTful API 中的其他 HTTP 标头。 类型:键值对(值应为字符串类型)。 任何
certThumbprint ClientCertificate 身份验证的证书指纹。 仅适用于本地复制。 对于使用 ClientCertificate 身份验证的本地复制,应指定 CertThumbprint 或 EmbeddedCertData/Password。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
embeddedCertData 用于 ClientCertificate 身份验证的 Base64 编码证书数据。 对于使用 ClientCertificate 身份验证的本地复制,应指定 CertThumbprint 或 EmbeddedCertData/Password。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
enableServerCertificateValidation 如果为 true,请验证 HTTPS 服务器 SSL 证书。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 使用 EmbeddedCertData 身份验证进行基本、摘要、Windows 或 ClientCertificate 的密码。 SecretBase
url HTTP 终结点的基 URL,例如 https://www.microsoft.com。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
userName 基本、摘要或 Windows 身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

HubspotLinkedService

名字 描述 价值
类型 链接服务的类型。 “Hubspot”(必需)
typeProperties Hubspot Service 链接服务属性。 HubspotLinkedServiceTypeProperties(必需)

HubspotLinkedServiceTypeProperties

名字 描述 价值
accessToken 最初对 OAuth 集成进行身份验证时获取的访问令牌。 SecretBase
clientId 与 Hubspot 应用程序关联的客户端 ID。 任何(必需)
clientSecret 与 Hubspot 应用程序关联的客户端密码。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
refreshToken 最初对 OAuth 集成进行身份验证时获取的刷新令牌。 SecretBase
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何

ImpalaLinkedService

名字 描述 价值
类型 链接服务的类型。 “Impala”(必需)
typeProperties Impala 服务器链接服务属性。 ImpalaLinkedServiceTypeProperties (必需)

ImpalaLinkedServiceTypeProperties

名字 描述 价值
allowHostNameCNMismatch 指定是否要求 CA 颁发的 SSL 证书名称与通过 SSL 连接时服务器的主机名匹配。 默认值为 false。 任何
allowSelfSignedServerCert 指定是否允许来自服务器的自签名证书。 默认值为 false。 任何
authenticationType 要使用的身份验证类型。 “Anonymous”
“SASLUsername”
“UsernameAndPassword”(必需)
enableSsl 指定是否使用 SSL 加密与服务器的连接。 默认值为 false。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Impala 服务器的 IP 地址或主机名。 (即 192.168.222.160) 任何(必需)
密码 使用 UsernameAndPassword 时,与用户名对应的密码。 SecretBase
港口 Impala 服务器用来侦听客户端连接的 TCP 端口。 默认值为 21050。 任何
trustedCertPath 包含受信任的 CA 证书的 .pem 文件的完整路径,用于通过 SSL 连接时验证服务器。 只能在自承载 IR 上使用 SSL 时设置此属性。 默认值为随 IR 一起安装的 cacerts.pem 文件。 任何
username 用于访问 Impala 服务器的用户名。 使用 SASLUsername 时,默认值为匿名。 任何
useSystemTrustStore 指定是使用系统信任存储中的 CA 证书还是从指定的 PEM 文件使用 CA 证书。 默认值为 false。 任何

InformixLinkedService

名字 描述 价值
类型 链接服务的类型。 “Informix”(必需)
typeProperties Informix 链接服务属性。 InformixLinkedServiceTypeProperties(必需)

InformixLinkedServiceTypeProperties

名字 描述 价值
authenticationType 用于作为 ODBC 数据存储连接到 Informix 的身份验证类型。 可能的值为:Anonymous 和 Basic。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
connectionString 连接字符串的非访问凭据部分以及可选的加密凭据。 类型:string、SecureString、AzureKeyVaultSecretReference 或 Expression 和 resultType 字符串。 任何(必需)
凭据 以特定于驱动程序的属性值格式指定的连接字符串的访问凭据部分。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 基本身份验证的密码。 SecretBase
userName 基本身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

IntegrationRuntimeReference

名字 描述 价值
参数 集成运行时的参数。 ParameterValueSpecification
referenceName 引用集成运行时名称。 string (必需)
类型 集成运行时的类型。 “IntegrationRuntimeReference”(必需)

JiraLinkedService

名字 描述 价值
类型 链接服务的类型。 “Jira”(必需)
typeProperties Jira 服务链接服务属性。 JiraLinkedServiceTypeProperties (必需)

JiraLinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Jira 服务的 IP 地址或主机名。 (例如 jira.example.com) 任何(必需)
密码 与用户名字段中提供的用户名对应的密码。 SecretBase
港口 Jira 服务器用于侦听客户端连接的 TCP 端口。 如果通过 HTTPS 进行连接,则默认值为 443;如果通过 HTTP 进行连接,则为 8080。 任何
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何
username 用于访问 Jira 服务的用户名。 任何(必需)

LakeHouseLinkedService

名字 描述 价值
类型 链接服务的类型。 “LakeHouse”(必需)
typeProperties Microsoft Fabric LakeHouse 链接服务属性。 LakeHouseLinkedServiceTypeProperties (必需)

LakeHouseLinkedServiceTypeProperties

名字 描述 价值
artifactId Microsoft Fabric LakeHouse 项目的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId 用于对 Microsoft Fabric LakeHouse 进行身份验证的应用程序 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Microsoft Fabric LakeHouse 进行身份验证的应用程序密钥。 SecretBase
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
workspaceId Microsoft Fabric 工作区的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

LinkedService

名字 描述 价值
附注 可用于描述链接服务的标记列表。 any[]
connectVia 集成运行时参考。 IntegrationRuntimeReference
描述 链接服务说明。 字符串
参数 链接服务的参数。 ParameterDefinitionSpecification
类型 对于 AmazonMWSLinkedService类型,设置为“AmazonMWS”。 对于 AmazonRdsForOracleLinkedService类型,设置为“AmazonRdsForOracle”。 对于 AmazonRdsForSqlServerLinkedService,请设置为“AmazonRdsForSqlServer”。 对于 AmazonRedshiftLinkedService,请设置为“AmazonRedshift”类型。 对于 AmazonS3LinkedService,请设置为“AmazonS3”。 对于 AmazonS3CompatibleLinkedService类型,设置为“AmazonS3Compatible”。 对于 AppFiguresLinkedService,请设置为“AppFigures”。 对于 AsanaLinkedService类型,设置为“Asana”。 对于 AzureBatchLinkedService,请设置为“AzureBatch”。 对于 AzureBlobFSLinkedService,请设置为“AzureBlobFS”。 对于 AzureBlobStorageLinkedService,请设置为“AzureBlobStorage”。 对于 AzureDataExplorerLinkedService,请设置为“AzureDataExplorer”。 对于 AzureDataLakeAnalyticsLinkedService,请设置为“AzureDataLakeAnalytics”。 对于 AzureDataLakeStoreLinkedService,请设置为“AzureDataLakeStore”。 对于 AzureDatabricksLinkedService,请设置为“AzureDatabricks”。 对于 AzureDatabricksDeltaLakeLinkedService,请设置为“AzureDatabricksDeltaLake”。 对于 AzureFileStorageLinkedService,请设置为“AzureFileStorage”类型。 对于 AzureFunctionLinkedService,请设置为“AzureFunction”。 对于 AzureKeyVaultLinkedService,请设置为“AzureKeyVault”类型。 对于 AzureMLLinkedService,请设置为“AzureML”。 对于 AzureMLServiceLinkedService,请设置为“AzureMLService”。 对于 AzureMariaDBLinkedService,请设置为“AzureMariaDB”。 对于 AzureMySqlLinkedService类型,设置为“AzureMySqlSql”。 对于 AzurePostgreSqlLinkedService,请设置为“AzurePostgreSql”。 对于 AzureSearchLinkedService,请设置为“AzureSearch”。 对于 AzureSqlDWLinkedService,请设置为“AzureSqlDWW”。 对于 AzureSqlDatabaseLinkedService,请设置为“AzureSqlDatabase”。 对于 AzureSqlMILinkedService,请设置为“AzureSqlMI”。 对于 AzureStorageLinkedService,请设置为“AzureStorage”。 对于 azureSynapseArtifacts 类型,设置为“AzureSynapseArtifactsLinkedService”。 对于 AzureTableStorageLinkedService类型,设置为“AzureTableStorage”。 对于 CassandraLinkedService类型,设置为“Cassandraandra”。 对于 CommonDataServiceForAppsLinkedService,请设置为“CommonDataServiceForApps”。 对于 ConcurLinkedService类型,设置为“Concur”。 对于 CosmosDbLinkedService,请设置为“CosmosDb”。 对于类型为 CosmosDbMongoDbApiLinkedService,请设置为“CosmosDbMongoDbApi”。 对于 CouchbaseLinkedService类型,设置为“Couchbase”。 对于 customDataSourceLinkedService类型,请设置为“CustomDataSource”。 对于 dataworldLinkedService类型,设置为“Dataworld”。 对于 Db2LinkedService,请设置为“Db2”。 设置为“DrillLinkedService类型 ”钻取”。 对于 dynamicsLinkedService类型,请设置为“Dynamics”。 对于 dynamicsAXLinkedService类型,设置为“DynamicsAXAX”。 对于 dynamicsCrmLinkedService,请设置为 “DynamicsCrm”类型。 对于 EloquaLinkedService,请设置为类型 “Eloqua”。 对于 fileServerLinkedService类型,请设置为“FileServer”。 对于 FtpServerLinkedService,请设置为“FtpServer”。 对于 GoogleAdWordsLinkedService,请设置为“GoogleAdWords”。 对于 GoogleBigQueryLinkedService,请设置为“GoogleBigQuery”。 对于 GoogleBigQueryV2LinkedService,请设置为“GoogleBigQueryV2”。 对于 GoogleCloudStorageLinkedService,请设置为“GoogleCloudStorage”。 对于 GoogleSheetsLinkedService,请设置为“GoogleSheets”。 对于 greenplumLinkedService类型,设置为“Greenplum”类型。 对于 HBaseLinkedService类型,设置为“HBase”。 对于 HDInsightLinkedService,请设置为“HDInsight”。 对于 HDInsightOnDemandLinkedService,请设置为“HDInsightOnDemand”。 对于 HdfsLinkedService类型,设置为“Hdfs”。 对于 hiveLinkedService类型,设置为“Hive” 。 对于 HttpLinkedService类型,设置为“HttpServer”。 对于 HubspotLinkedService类型,设置为“Hubspot”。 对于 impalaLinkedService,请设置为类型 “Impala”。 对于 InformixLinkedService类型,设置为“Informix”。 对于 JiraLinkedService,设置为“Jira”。 对于 LakeHouseLinkedService,请设置为“LakeHouse”。 对于 MagentoLinkedService类型,设置为“Magento”。 对于 mariaDBLinkedService类型,请设置为“MariaDB”。 对于 MarketoLinkedService,请设置为“Marketo”。 对于 microsoftAccessLinkedService,请设置为“MicrosoftAccesss”类型。 对于 MongoDbLinkedService,请设置为“MongoDb”。 对于 MongoDbAtlasLinkedService类型,设置为“MongoDbAtlas”。 对于 MongoDbV2LinkedService,请设置为“MongoDbV2”。 对于 MySqlLinkedService类型,设置为“MySql”。 对于 NetezzaLinkedService,请设置为“Netezza”。 对于 ODataLinkedService类型,设置为“OData”。 对于 OdbcLinkedService,请设置为“Odbc”。 对于 Office365LinkedService,请设置为“Office365”。 对于 OracleLinkedService,请设置为“Oracle”。 对于 OracleCloudStorageLinkedService类型,设置为“OracleCloudStorage”。 对于 OracleServiceCloudLinkedService类型,设置为“OracleServiceCloudCloud”。 对于 paypalLinkedService类型,设置为“PayPal”。 对于 phoenixLinkedService类型,请设置为“Phoenix”。 对于 PostgreSqlLinkedService,请设置为“PostgreSql”。 对于 PostgreSqlV2LinkedService类型,设置为“PostgreSqlV2”。 对于 prestoLinkedService类型,设置为“Presto”。 对于 QuickBooksLinkedService,请设置为“QuickBooks”。 对于 QuickbaseLinkedService,请设置为“Quickbase”。 对于 ResponsysLinkedService类型,设置为“Responsys”。 对于 RestServiceLinkedService,请设置为“RestService”。 对于 SalesforceLinkedService类型,设置为“Salesforce”。 设置为 SalesforceMarketingCloudLinkedService类型的“SalesforceMarketingCloud”。 设置为 SalesforceServiceCloudLinkedService类型的“SalesforceServiceCloud”。 对于 SalesforceServiceCloudV2LinkedService,请设置为“SalesforceServiceCloudV2”。 对于 SalesforceV2LinkedService,请设置为“SalesforceV2”。 对于 SapBWLinkedService,请设置为“SapBWW”。 对于 SapCloudForCustomerLinkedService,请设置为“SapCloudForCustomer”。 对于 SapEccLinkedService类型,请设置为“SapEcc”。 对于 SapHanaLinkedService,请设置为“SapHana”。 对于 SapOdpLinkedService类型,设置为“SapOdpdp”。 对于 SapOpenHubLinkedService类型,设置为“SapOpenHubHub”。 对于 SapTableLinkedService类型,设置为“SapTableTable”。 对于 ServiceNowLinkedService类型,设置为“ServiceNow”。 对于 ServiceNowV2LinkedService,请设置为“ServiceNowV2”。 对于 SftpServerLinkedService类型,设置为“Sftp”。 对于 SharePointOnlineListLinkedService,请设置为“SharePointOnlineList”。 对于 ShopifyLinkedService,请设置为“Shopify”。 对于 SmartsheetLinkedService类型,设置为“Smartsheet”。 对于 SnowflakeLinkedService,请设置为“Snowflake”。 对于 SnowflakeV2LinkedService,请设置为“SnowflakeV2”。 对于 SparkLinkedService类型,设置为“Spark Spark”。 对于 SqlServerLinkedService,请设置为“SqlServer”。 对于 SquareLinkedService类型,设置为“Square”。 对于类型 SybaseLinkedService,设置为“Sybase”。 对于 TeamDeskLinkedService,请设置为“TeamDesk”。 对于类型 TeradataLinkedService,设置为“Teradata”。 对于类型 TwilioLinkedService,设置为“Twilio”。 对于类型 VerticaLinkedService,设置为“Vertica”。 对于 WarehouseLinkedService类型,设置为“Warehouse”。 对于 WebLinkedService类型,设置为“Web”。 对于 XeroLinkedService,请设置为“Xero”。 对于 ZendeskLinkedService,请设置为“Zendesk”。 对于类型 ZohoLinkedService,设置为“Zoho”。 “AmazonMWS”
“AmazonRdsForOracle”
“AmazonRdsForSqlServer”
“AmazonRedshift”
“AmazonS3”
“AmazonS3Compatible”
“AppFigures”
“Asana”
“AzureBatch”
“AzureBlobFS”
“AzureBlobStorage”
“AzureDatabricks”
“AzureDatabricksDeltaLake”
“AzureDataExplorer”
“AzureDataLakeAnalytics”
“AzureDataLakeStore”
“AzureFileStorage”
“AzureFunction”
“AzureKeyVault”
“AzureMariaDB”
“AzureML”
“AzureMLService”
“AzureMySql”
“AzurePostgreSql”
“AzureSearch”
“AzureSqlDatabase”
“AzureSqlDW”
“AzureSqlMI”
“AzureStorage”
“AzureSynapseArtifacts”
“AzureTableStorage”
“Cassandra”
“CommonDataServiceForApps”
“Concur”
“CosmosDb”
“CosmosDbMongoDbApi”
“Couchbase”
“CustomDataSource”
“Dataworld”
“Db2”
“钻取”
“Dynamics”
“DynamicsAX”
“DynamicsCrm”
“Eloqua”
“FileServer”
“FtpServer”
“GoogleAdWords”
“GoogleBigQuery”
“GoogleBigQueryV2”
“GoogleCloudStorage”
“GoogleSheets”
“Greenplum”
“HBase”
“Hdfs”
“HDInsight”
'HDInsightOnDemand'
“Hive”
“HttpServer”
“Hubspot”
“Impala”
“Informix”
“Jira”
“LakeHouse”
“Magento”
“MariaDB”
“Marketo”
“MicrosoftAccess”
“MongoDb”
“MongoDbAtlas”
“MongoDbV2”
“MySql”
“Netezza”
“OData”
“Odbc”
“Office365”
“Oracle”
“OracleCloudStorage”
“OracleServiceCloud”
“PayPal”
“Phoenix”
“PostgreSql”
“PostgreSqlV2”
“Presto”
“Quickbase”
“QuickBooks”
“Responsys”
“RestService”
“Salesforce”
“SalesforceMarketingCloud”
“SalesforceServiceCloud”
'SalesforceServiceCloudV2'
“SalesforceV2”
“SapBW”
“SapCloudForCustomer”
“SapEcc”
“SapHana”
“SapOdp”
“SapOpenHub”
“SapTable”
“ServiceNow”
“ServiceNowV2”
'Sftp'
“SharePointOnlineList”
“Shopify”
“Smartsheet”
“Snowflake”
“SnowflakeV2”
“Spark”
“SqlServer”
“Square”
“Sybase”
“TeamDesk”
'Teradata'
“Twilio”
“Vertica”
“Warehouse”
“Web”
“Xero”
“Zendesk”
“Zoho”(必需)
版本 链接服务的版本。 字符串

LinkedServiceReference

名字 描述 价值
参数 LinkedService 的参数。 ParameterValueSpecification
referenceName 引用 LinkedService 名称。 string (必需)
类型 链接服务引用类型。 “LinkedServiceReference”(必需)

MagentoLinkedService

名字 描述 价值
类型 链接服务的类型。 “Magento”(必需)
typeProperties Magento 服务器链接服务属性。 MagentoLinkedServiceTypeProperties (必需)

MagentoLinkedServiceTypeProperties

名字 描述 价值
accessToken Magento 的访问令牌。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Magento 实例的 URL。 (即 192.168.222.110/magento3) 任何(必需)
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何

MariaDBLinkedService

名字 描述 价值
类型 链接服务的类型。 “MariaDB”(必需)
typeProperties MariaDB 服务器链接服务属性。 MariaDBLinkedServiceTypeProperties (必需)

MariaDBLinkedServiceTypeProperties

名字 描述 价值
connectionString ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
数据库 连接的数据库名称。 类型:字符串。 任何
driverVersion MariaDB 驱动程序的版本。 类型:字符串。 对于旧驱动程序,V1 或为空,V2 用于新驱动程序。 V1 可以支持连接字符串和属性包,V2 只能支持连接字符串。 旧驱动程序计划于 2024 年 10 月弃用。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference
港口 连接的端口。 类型:整数。 任何
服务器 连接的服务器名称。 类型:字符串。 任何
sslMode 此选项指定驱动程序在连接到 MariaDB 时是否使用 TLS 加密和验证。 例如,SSLMode=<0/1/2/3/4>。 选项:DISABLED (0) / PREFERRED (1) /REQUIRED (2) / VERIFY_CA (3) / VERIFY_IDENTITY (4), REQUIRED (2) 建议仅允许使用 SSL/TLS 加密的连接。 任何
username 身份验证的用户名。 类型:字符串。 任何
useSystemTrustStore 此选项指定是使用系统信任存储中的 CA 证书,还是从指定的 PEM 文件使用 CA 证书。 例如 UseSystemTrustStore=<0/1>;选项:已启用 (1) / 禁用 (0) (默认) 任何

MarketoLinkedService

名字 描述 价值
类型 链接服务的类型。 “Marketo”(必需)
typeProperties Marketo 服务器链接服务属性。 MarketoLinkedServiceTypeProperties(必需)

MarketoLinkedServiceTypeProperties

名字 描述 价值
clientId Marketo 服务的客户端 ID。 任何(必需)
clientSecret Marketo 服务的客户端密码。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
端点 Marketo 服务器的终结点。 (即 123-ABC-321.mktorest.com) 任何(必需)
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何

Microsoft.DataFactory/factories/linkedservices

名字 描述 价值
apiVersion API 版本 '2018-06-01'
名字 资源名称 字符串

约束:
最小长度 = 1
最大长度 = 1
模式 = ^[A-Za-z0-9_][^<>*#.%&:\\+?/]*$ (必需)
性能 链接服务的属性。 LinkedService(必需)
类型 资源类型 “Microsoft.DataFactory/factories/linkedservices”

MicrosoftAccessLinkedService

名字 描述 价值
类型 链接服务的类型。 “MicrosoftAccess”(必需)
typeProperties Microsoft Access 链接服务属性。 MicrosoftAccessLinkedServiceTypeProperties (必需)

MicrosoftAccessLinkedServiceTypeProperties

名字 描述 价值
authenticationType 用于作为 ODBC 数据存储连接到 Microsoft Access 的身份验证类型。 可能的值为:Anonymous 和 Basic。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
connectionString 连接字符串的非访问凭据部分以及可选的加密凭据。 类型:string、SecureString、AzureKeyVaultSecretReference 或 Expression 和 resultType 字符串。 任何(必需)
凭据 以特定于驱动程序的属性值格式指定的连接字符串的访问凭据部分。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 基本身份验证的密码。 SecretBase
userName 基本身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

MongoDbAtlasLinkedService

名字 描述 价值
类型 链接服务的类型。 “MongoDbAtlas”(必需)
typeProperties MongoDB Atlas 链接服务属性。 MongoDbAtlasLinkedServiceTypeProperties (必需)

MongoDbAtlasLinkedServiceTypeProperties

名字 描述 价值
connectionString MongoDB Atlas 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何(必需)
数据库 要访问的 MongoDB Atlas 数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
driverVersion 要选择的驱动程序版本。 允许的值为 v1 和 v2。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

MongoDbLinkedService

名字 描述 价值
类型 链接服务的类型。 “MongoDb”(必需)
typeProperties MongoDB 链接服务属性。 MongoDbLinkedServiceTypeProperties(必需)

MongoDbLinkedServiceTypeProperties

名字 描述 价值
allowSelfSignedServerCert 指定是否允许来自服务器的自签名证书。 默认值为 false。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
authenticationType 用于连接到 MongoDB 数据库的身份验证类型。 “Anonymous”
“Basic”
authSource 用于验证用户名和密码的数据库。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
databaseName 要访问的 MongoDB 数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
enableSsl 指定是否使用 SSL 加密与服务器的连接。 默认值为 false。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 身份验证密码。 SecretBase
港口 MongoDB 服务器用于侦听客户端连接的 TCP 端口号。 默认值为 27017。 类型:整数(或包含 resultType 整数的表达式),最小值:0。 任何
服务器 MongoDB 服务器的 IP 地址或服务器名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
username 身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

MongoDbV2LinkedService

名字 描述 价值
类型 链接服务的类型。 “MongoDbV2”(必需)
typeProperties MongoDB 链接服务属性。 MongoDbV2LinkedServiceTypeProperties(必需)

MongoDbV2LinkedServiceTypeProperties

名字 描述 价值
connectionString MongoDB 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何(必需)
数据库 要访问的 MongoDB 数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

MySqlLinkedService

名字 描述 价值
类型 链接服务的类型。 “MySql”(必需)
typeProperties MySQL 链接服务属性。 MySqlLinkedServiceTypeProperties(必需)

MySqlLinkedServiceTypeProperties

名字 描述 价值
allowZeroDateTime 这允许从数据库检索特殊的“零”日期值 0000-00-00。 类型:布尔值。 任何
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
connectionTimeout 在终止尝试并生成错误之前,等待与服务器的连接的时间长度(以秒为单位)。 类型:整数。 任何
convertZeroDateTime 如果返回日期或日期/时间列的 DateTime.MinValue,则返回不允许的值。 类型:布尔值。 任何
数据库 连接的数据库名称。 类型:字符串。 任何
driverVersion MySQL 驱动程序的版本。 类型:字符串。 对于旧驱动程序,V1 或为空,V2 用于新驱动程序。 V1 可以支持连接字符串和属性包,V2 只能支持连接字符串。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
guidFormat 确定应将哪个列类型(如果有)读取为 GUID。 类型:字符串。 无:不会将列类型作为 Guid 自动读取;Char36:所有 CHAR(36)列都以小写十六进制和连字符(与 UUID 匹配)作为 Guid 读取/写入。 任何
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference
港口 连接的端口。 类型:整数。 任何
服务器 连接的服务器名称。 类型:字符串。 任何
sslCert 客户端 SSL 证书文件的路径(采用 PEM 格式)。 还必须指定 SslKey。 类型:字符串。 任何
sslKey 客户端 SSL 私钥的路径(采用 PEM 格式)。 还必须指定 SslCert。 类型:字符串。 任何
sslMode 用于连接的 SSL 模式。 类型:整数。 0:禁用,1:首选,2:需要,3:verify-ca,4:验证完整。 任何
treatTinyAsBoolean 设置为 true 时,TINYINT(1) 值将作为布尔值返回。 类型:bool。 任何
username 身份验证的用户名。 类型:字符串。 任何
useSystemTrustStore 使用系统信任存储进行连接。 类型:整数。 0:启用,1:禁用。 任何

NetezzaLinkedService

名字 描述 价值
类型 链接服务的类型。 “Netezza”(必需)
typeProperties Netezza 链接服务属性。 NetezzaLinkedServiceTypeProperties (必需)

NetezzaLinkedServiceTypeProperties

名字 描述 价值
connectionString ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
pwd 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference

ODataLinkedService

名字 描述 价值
类型 链接服务的类型。 “OData”(必需)
typeProperties OData 链接服务属性。 ODataLinkedServiceTypeProperties(必需)

ODataLinkedServiceTypeProperties

名字 描述 价值
aadResourceId 指定要请求授权以使用 Directory 的资源。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
aadServicePrincipalCredentialType 指定用于服务主体的凭据类型(密钥或证书)。 “ServicePrincipalCert”
“ServicePrincipalKey”
authenticationType 用于连接到 OData 服务的身份验证类型。 “AadServicePrincipal”
“Anonymous”
“Basic”
“ManagedServiceIdentity”
“Windows”
authHeaders 请求中用于授权的 RESTful API 中的其他 HTTP 标头。 类型:键值对(值应为字符串类型)。 任何
azureCloudType 指示服务主体身份验证的 Azure 云类型。允许的值为 AzurePublic、AzureChina、AzureUsGovernment、AzureGermany。 默认值为数据工厂区域的云类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 OData 服务的密码。 SecretBase
servicePrincipalEmbeddedCert 指定在 Azure Active Directory 中注册的应用程序的 base64 编码证书。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
servicePrincipalEmbeddedCertPassword 如果证书具有密码,并且使用的是 AadServicePrincipal 身份验证,请指定证书的密码。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
servicePrincipalId 指定在 Azure Active Directory 中注册的应用程序的应用程序 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 指定在 Azure Active Directory 中注册的应用程序的机密。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
房客 指定应用程序所在的租户信息(域名或租户 ID)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
url OData 服务终结点的 URL。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
userName OData 服务的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

OdbcLinkedService

名字 描述 价值
类型 链接服务的类型。 “Odbc”(必需)
typeProperties ODBC 链接服务属性。 OdbcLinkedServiceTypeProperties (必需)

OdbcLinkedServiceTypeProperties

名字 描述 价值
authenticationType 用于连接到 ODBC 数据存储的身份验证类型。 可能的值为:Anonymous 和 Basic。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
connectionString 连接字符串的非访问凭据部分以及可选的加密凭据。 类型:string、SecureString、AzureKeyVaultSecretReference 或 Expression 和 resultType 字符串。 任何(必需)
凭据 以特定于驱动程序的属性值格式指定的连接字符串的访问凭据部分。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 基本身份验证的密码。 SecretBase
userName 基本身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

Office365LinkedService

名字 描述 价值
类型 链接服务的类型。 “Office365”(必需)
typeProperties Office365 链接服务属性。 Office365LinkedServiceTypeProperties(必需)

Office365LinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
office365TenantId Office 365 帐户所属的 Azure 租户 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
servicePrincipalId 指定应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
servicePrincipalKey 指定应用程序的密钥。 SecretBase(必需)
servicePrincipalTenantId 指定 Azure AD Web 应用程序所在的租户信息。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

OracleCloudStorageLinkedService

名字 描述 价值
类型 链接服务的类型。 “OracleCloudStorage”(必需)
typeProperties Oracle 云存储链接服务属性。 OracleCloudStorageLinkedServiceTypeProperties (必需)

OracleCloudStorageLinkedServiceTypeProperties

名字 描述 价值
accessKeyId Oracle 云存储标识和访问管理(IAM)用户的访问密钥标识符。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
secretAccessKey Oracle 云存储标识和访问管理 (IAM) 用户的机密访问密钥。 SecretBase
serviceUrl 此值指定要使用 Oracle 云存储连接器访问的终结点。 这是一个可选属性;仅当想要尝试其他服务终结点或想要在 https 和 http 之间切换时更改它。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

OracleLinkedService

名字 描述 价值
类型 链接服务的类型。 “Oracle”(必需)
typeProperties Oracle 数据库链接服务属性。 OracleLinkedServiceTypeProperties(必需)

OracleLinkedServiceTypeProperties

名字 描述 价值
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference

OracleServiceCloudLinkedService

名字 描述 价值
类型 链接服务的类型。 “OracleServiceCloud”(必需)
typeProperties Oracle 服务云链接服务属性。 OracleServiceCloudLinkedServiceTypeProperties(必需)

OracleServiceCloudLinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Oracle 服务云实例的 URL。 任何(必需)
密码 与用户名密钥中提供的用户名对应的密码。 SecretBase(必需)
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
username 用于访问 Oracle 服务云服务器的用户名。 任何(必需)

ParameterDefinitionSpecification

名字 描述 价值

ParameterSpecification

名字 描述 价值
defaultValue 参数的默认值。 任何
类型 参数类型。 “Array”
“Bool”
“Float”
“Int”
“Object”
“SecureString”
“String”(必需)

ParameterValueSpecification

名字 描述 价值

ParameterValueSpecification

名字 描述 价值

PaypalLinkedService

名字 描述 价值
类型 链接服务的类型。 “PayPal”(必需)
typeProperties PayPal服务链接服务属性。 PaypalLinkedServiceTypeProperties (必需)

PaypalLinkedServiceTypeProperties

名字 描述 价值
clientId 与PayPal应用程序关联的客户端 ID。 任何(必需)
clientSecret 与PayPal应用程序关联的客户端密码。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 PayPal实例的 URL。 (即 api.sandbox.paypal.com) 任何(必需)
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何

PhoenixLinkedService

名字 描述 价值
类型 链接服务的类型。 “Phoenix”(必需)
typeProperties Phoenix 服务器链接服务属性。 PhoenixLinkedServiceTypeProperties (必需)

PhoenixLinkedServiceTypeProperties

名字 描述 价值
allowHostNameCNMismatch 指定是否要求 CA 颁发的 SSL 证书名称与通过 SSL 连接时服务器的主机名匹配。 默认值为 false。 任何
allowSelfSignedServerCert 指定是否允许来自服务器的自签名证书。 默认值为 false。 任何
authenticationType 用于连接到 Phoenix 服务器的身份验证机制。 “Anonymous”
“UsernameAndPassword”
“WindowsAzureHDInsightService”(必需)
enableSsl 指定是否使用 SSL 加密与服务器的连接。 默认值为 false。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Phoenix 服务器的 IP 地址或主机名。 (即 192.168.222.160) 任何(必需)
httpPath 对应于 Phoenix 服务器的部分 URL。 (即 /gateway/sandbox/phoenix/version)。 如果使用 WindowsAzureHDInsightService,则默认值为 hbasephoenix。 任何
密码 与用户名对应的密码。 SecretBase
港口 Phoenix 服务器用来侦听客户端连接的 TCP 端口。 默认值为 8765。 任何
trustedCertPath 包含受信任的 CA 证书的 .pem 文件的完整路径,用于通过 SSL 连接时验证服务器。 只能在自承载 IR 上使用 SSL 时设置此属性。 默认值为随 IR 一起安装的 cacerts.pem 文件。 任何
username 用于连接到 Phoenix 服务器的用户名。 任何
useSystemTrustStore 指定是使用系统信任存储中的 CA 证书还是从指定的 PEM 文件使用 CA 证书。 默认值为 false。 任何

PostgreSqlLinkedService

名字 描述 价值
类型 链接服务的类型。 “PostgreSql”(必需)
typeProperties PostgreSQL 链接服务属性。 PostgreSqlLinkedServiceTypeProperties(必需)

PostgreSqlLinkedServiceTypeProperties

名字 描述 价值
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference

PostgreSqlV2LinkedService

名字 描述 价值
类型 链接服务的类型。 “PostgreSqlV2”(必需)
typeProperties PostgreSQLV2 链接服务属性。 PostgreSqlV2LinkedServiceTypeProperties (必需)

PostgreSqlV2LinkedServiceTypeProperties

名字 描述 价值
authenticationType 要使用的身份验证类型。 类型:字符串。 任何(必需)
commandTimeout 在尝试执行命令之前,等待时间(以秒为单位),然后再终止尝试并生成错误。 对于无穷大,设置为零。 类型:整数。 任何
connectionTimeout 在终止尝试并生成错误之前,尝试建立连接的时间(以秒为单位)。 类型:整数。 任何
数据库 连接的数据库名称。 类型:字符串。 任何(必需)
编码 获取或设置用于对 PostgreSQL 字符串数据进行编码/解码的 .NET 编码。 类型:字符串 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
logParameters 启用后,在执行命令时,将记录参数值。 类型:布尔值。 任何
密码 连接字符串中密码的 Azure Key Vault 机密引用。 类型:字符串。 AzureKeyVaultSecretReference
是否应使用连接池。 类型:布尔值。 任何
港口 连接的端口。 类型:整数。 任何
readBufferSize 确定读取时内部缓冲区使用的大小。 如果从数据库传输大型值,则提高性能可能会提高。 类型:整数。 任何
图式 设置架构搜索路径。 类型:字符串。 任何
服务器 连接的服务器名称。 类型:字符串。 任何(必需)
sslCertificate 要发送到服务器的客户端证书的位置。 类型:字符串。 任何
sslKey 要发送到服务器的客户端证书的客户端密钥的位置。 类型:字符串。 任何
sslMode 用于连接的 SSL 模式。 类型:整数。 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. 类型:整数。 任何(必需)
sslPassword 客户端证书密钥的密码。 类型:字符串。 任何
时区 获取或设置会话时区。 类型:字符串。 任何
trustServerCertificate 是否信任服务器证书而不验证它。 类型:布尔值。 任何
username 身份验证的用户名。 类型:字符串。 任何(必需)

PrestoLinkedService

名字 描述 价值
类型 链接服务的类型。 “Presto”(必需)
typeProperties Presto 服务器链接服务属性。 PrestoLinkedServiceTypeProperties(必需)

PrestoLinkedServiceTypeProperties

名字 描述 价值
allowHostNameCNMismatch 指定是否要求 CA 颁发的 SSL 证书名称与通过 SSL 连接时服务器的主机名匹配。 默认值为 false。 任何
allowSelfSignedServerCert 指定是否允许来自服务器的自签名证书。 默认值为 false。 任何
authenticationType 用于连接到 Presto 服务器的身份验证机制。 “Anonymous”
“LDAP”(必需)
目录 针对服务器的所有请求的目录上下文。 任何(必需)
enableSsl 指定是否使用 SSL 加密与服务器的连接。 默认值为 false。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Presto 服务器的 IP 地址或主机名。 (即 192.168.222.160) 任何(必需)
密码 与用户名对应的密码。 SecretBase
港口 Presto 服务器用来侦听客户端连接的 TCP 端口。 默认值为 8080。 任何
serverVersion Presto 服务器的版本。 (即 0.148-t) 任何(必需)
timeZoneID 连接使用的本地时区。 此选项的有效值在 IANA 时区数据库中指定。 默认值为系统时区。 任何
trustedCertPath 包含受信任的 CA 证书的 .pem 文件的完整路径,用于通过 SSL 连接时验证服务器。 只能在自承载 IR 上使用 SSL 时设置此属性。 默认值为随 IR 一起安装的 cacerts.pem 文件。 任何
username 用于连接到 Presto 服务器的用户名。 任何
useSystemTrustStore 指定是使用系统信任存储中的 CA 证书还是从指定的 PEM 文件使用 CA 证书。 默认值为 false。 任何

QuickbaseLinkedService

名字 描述 价值
类型 链接服务的类型。 “Quickbase”(必需)
typeProperties 快速数据库链接服务属性。 QuickbaseLinkedServiceTypeProperties(必需)

QuickbaseLinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
url 用于连接 Quickbase 源的 URL。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
userToken Quickbase 源的用户令牌。 SecretBase(必需)

QuickBooksLinkedService

名字 描述 价值
类型 链接服务的类型。 “QuickBooks”(必需)
typeProperties QuickBooks 服务器链接服务属性。 QuickBooksLinkedServiceTypeProperties(必需)

QuickBooksLinkedServiceTypeProperties

名字 描述 价值
accessToken OAuth 1.0 身份验证的访问令牌。 SecretBase
accessTokenSecret OAuth 1.0 身份验证的访问令牌机密。 SecretBase
companyId 要授权的 QuickBooks 公司的公司 ID。 任何
connectionProperties 用于连接到 QuickBooks 的属性。 它与链接服务中的其他任何属性互斥。 类型:对象。 任何
consumerKey OAuth 1.0 身份验证的使用者密钥。 任何
consumerSecret OAuth 1.0 身份验证的使用者密码。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
端点 QuickBooks 服务器的终结点。 (即 quickbooks.api.intuit.com) 任何
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何

ResponsysLinkedService

名字 描述 价值
类型 链接服务的类型。 “Responsys”(必需)
typeProperties Responsys 链接服务属性。 ResponsysLinkedServiceTypeProperties (必需)

ResponsysLinkedServiceTypeProperties

名字 描述 价值
clientId 与 Responsys 应用程序关联的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
clientSecret 与 Responsys 应用程序关联的客户端密码。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
端点 Responsys 服务器的终结点。 任何(必需)
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何

RestServiceLinkedService

名字 描述 价值
类型 链接服务的类型。 “RestService”(必需)
typeProperties Rest Service 链接服务属性。 RestServiceLinkedServiceTypeProperties(必需)

RestServiceLinkedServiceTypeProperties

名字 描述 价值
aadResourceId 请求使用授权的资源。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于连接到 REST 服务的身份验证类型。 “AadServicePrincipal”
“Anonymous”
“Basic”
“ManagedServiceIdentity”
“OAuth2ClientCredential”(必需)
authHeaders 请求中用于授权的 RESTful API 中的其他 HTTP 标头。 类型:对象(或带有 resultType 对象的表达式)。 任何
azureCloudType 指示服务主体身份验证的 Azure 云类型。允许的值为 AzurePublic、AzureChina、AzureUsGovernment、AzureGermany。 默认值为数据工厂区域的云类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clientId 与应用程序关联的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clientSecret 与应用程序关联的客户端密码。 SecretBase
凭据 包含身份验证信息的凭据引用。 CredentialReference
enableServerCertificateValidation 是否在连接到终结点时验证服务器端 SSL 证书。默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 基本身份验证类型中使用的密码。 SecretBase
资源 将向其请求访问权限的目标服务或资源。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
范围 所需的访问范围。 它描述将请求哪种类型的访问。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalEmbeddedCert 指定在 Azure Active Directory 中注册的应用程序的 base64 编码证书。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
servicePrincipalEmbeddedCertPassword 如果证书具有密码,并且使用的是 AadServicePrincipal 身份验证,请指定证书的密码。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
servicePrincipalId AadServicePrincipal 身份验证类型中使用的应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey AadServicePrincipal 身份验证类型中使用的应用程序的密钥。 SecretBase
房客 应用程序所在的 AadServicePrincipal 身份验证类型中使用的租户信息(域名或租户 ID)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
tokenEndpoint 要获取访问令牌的授权服务器的令牌终结点。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
url REST 服务的基 URL。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
userName 基本身份验证类型中使用的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SalesforceLinkedService

名字 描述 价值
类型 链接服务的类型。 “Salesforce”(必需)
typeProperties Salesforce 链接服务属性。 SalesforceLinkedServiceTypeProperties (必需)

SalesforceLinkedServiceTypeProperties

名字 描述 价值
apiVersion ADF 中使用的 Salesforce API 版本。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
environmentUrl Salesforce 实例的 URL。 默认值为“https://login.salesforce.com”。 若要从沙盒复制数据,请指定“https://test.salesforce.com”。 若要从自定义域复制数据,请指定“https://[domain].my.salesforce.com”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 Salesforce 实例的基本身份验证的密码。 SecretBase
securityToken 安全令牌是可选的,用于远程访问 Salesforce 实例。 SecretBase
username Salesforce 实例的基本身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SalesforceMarketingCloudLinkedService

名字 描述 价值
类型 链接服务的类型。 “SalesforceMarketingCloud”(必需)
typeProperties Salesforce Marketing Cloud 链接服务属性。 SalesforceMarketingCloudLinkedServiceTypeProperties(必需)

SalesforceMarketingCloudLinkedServiceTypeProperties

名字 描述 价值
clientId 与 Salesforce Marketing Cloud 应用程序关联的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clientSecret 与 Salesforce Marketing Cloud 应用程序关联的客户端密码。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
connectionProperties 用于连接到 Salesforce Marketing Cloud 的属性。 它与链接服务中的其他任何属性互斥。 类型:对象。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何

SalesforceServiceCloudLinkedService

名字 描述 价值
类型 链接服务的类型。 “SalesforceServiceCloud”(必需)
typeProperties Salesforce Service Cloud 链接服务属性。 SalesforceServiceCloudLinkedServiceTypeProperties(必需)

SalesforceServiceCloudLinkedServiceTypeProperties

名字 描述 价值
apiVersion ADF 中使用的 Salesforce API 版本。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
environmentUrl Salesforce Service Cloud 实例的 URL。 默认值为“https://login.salesforce.com”。 若要从沙盒复制数据,请指定“https://test.salesforce.com”。 若要从自定义域复制数据,请指定“https://[domain].my.salesforce.com”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
extendedProperties 追加到连接字符串的扩展属性。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 Salesforce 实例的基本身份验证的密码。 SecretBase
securityToken 安全令牌是可选的,用于远程访问 Salesforce 实例。 SecretBase
username Salesforce 实例的基本身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SalesforceServiceCloudV2LinkedService

名字 描述 价值
类型 链接服务的类型。 “SalesforceServiceCloudV2”(必需)
typeProperties Salesforce Service Cloud V2 链接服务属性。 SalesforceServiceCloudV2LinkedServiceTypeProperties(必需)

SalesforceServiceCloudV2LinkedServiceTypeProperties

名字 描述 价值
apiVersion ADF 中使用的 Salesforce API 版本。 版本必须大于或等于 Salesforce BULK API 2.0 所需的 47.0。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于连接到 Salesforce 的身份验证类型。 目前,我们仅支持 OAuth2ClientCredentials,这也是默认值 任何
clientId Salesforce 实例的 OAuth 2.0 客户端凭据流身份验证的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clientSecret Salesforce 实例的 OAuth 2.0 客户端凭据流身份验证的客户端密码。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
environmentUrl Salesforce Service Cloud 实例的 URL。 例如,“https://[domain].my.salesforce.com”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SalesforceV2LinkedService

名字 描述 价值
类型 链接服务的类型。 “SalesforceV2”(必需)
typeProperties Salesforce V2 链接服务属性。 SalesforceV2LinkedServiceTypeProperties (必需)

SalesforceV2LinkedServiceTypeProperties

名字 描述 价值
apiVersion ADF 中使用的 Salesforce API 版本。 版本必须大于或等于 Salesforce BULK API 2.0 所需的 47.0。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于连接到 Salesforce 的身份验证类型。 目前,我们仅支持 OAuth2ClientCredentials,这也是默认值 任何
clientId Salesforce 实例的 OAuth 2.0 客户端凭据流身份验证的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clientSecret Salesforce 实例的 OAuth 2.0 客户端凭据流身份验证的客户端密码。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
environmentUrl Salesforce 实例的 URL。 例如,“https://[domain].my.salesforce.com”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SapBWLinkedService

名字 描述 价值
类型 链接服务的类型。 “SapBW”(必需)
typeProperties 特定于此链接服务类型的属性。 SapBWLinkedServiceTypeProperties(必需)

SapBWLinkedServiceTypeProperties

名字 描述 价值
clientId BW 系统上客户端的客户端 ID。 (通常为表示为字符串的三位数十进制数)类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 用于访问 SAP BW 服务器的密码。 SecretBase
服务器 SAP BW 实例的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
systemNumber BW 系统的系统编号。 (通常为表示为字符串的两位数十进制数字。类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
userName 用于访问 SAP BW 服务器的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SapCloudForCustomerLinkedService

名字 描述 价值
类型 链接服务的类型。 “SapCloudForCustomer”(必需)
typeProperties SAP Cloud for Customer 链接服务属性。 SapCloudForCustomerLinkedServiceTypeProperties(必需)

SapCloudForCustomerLinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 必须提供 encryptedCredential 或用户名/密码。 类型:字符串。 字符串
密码 基本身份验证的密码。 SecretBase
url SAP Cloud for Customer OData API 的 URL。 例如,“[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
username 基本身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SapEccLinkedService

名字 描述 价值
类型 链接服务的类型。 “SapEcc”(必需)
typeProperties SAP ECC 链接服务属性。 SapEccLinkedServiceTypeProperties(必需)

SapEccLinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 必须提供 encryptedCredential 或用户名/密码。 类型:字符串。 字符串
密码 基本身份验证的密码。 SecretBase
url SAP ECC OData API 的 URL。 例如,“[https://hostname:port/sap/opu/odata/sap/servicename/]”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
username 基本身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SapHanaLinkedService

名字 描述 价值
类型 链接服务的类型。 “SapHana”(必需)
typeProperties 特定于此链接服务类型的属性。 SapHanaLinkedServiceProperties (必需)

SapHanaLinkedServiceProperties

名字 描述 价值
authenticationType 用于连接到 SAP HANA 服务器的身份验证类型。 “Basic”
“Windows”
connectionString SAP HANA ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 用于访问 SAP HANA 服务器的密码。 SecretBase
服务器 SAP HANA 服务器的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
userName 用于访问 SAP HANA 服务器的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SapOdpLinkedService

名字 描述 价值
类型 链接服务的类型。 “SapOdp”(必需)
typeProperties 特定于 SAP ODP 链接服务类型的属性。 SapOdpLinkedServiceTypeProperties(必需)

SapOdpLinkedServiceTypeProperties

名字 描述 价值
clientId 表所在的 SAP 系统上客户端的客户端 ID。 (通常为表示为字符串的三位数十进制数)类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
语言 表所在的 SAP 系统的语言。 默认值为 EN。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
logonGroup SAP 系统的登录组。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
messageServer SAP 消息服务器的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
messageServerService 消息服务器的服务名称或端口号。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 用于访问表所在的 SAP 服务器的密码。 SecretBase
服务器 表所在的 SAP 实例的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncLibraryPath 外部安全产品的库,用于访问表所在的 SAP 服务器。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncMode 用于访问表所在的 SAP 服务器的 SNC 激活指示器。 必须是 0(关)或 1(开)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncMyName 发起程序的 SNC 名称,用于访问表所在的 SAP 服务器。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncPartnerName 通信合作伙伴的 SNC 名称,用于访问表所在的 SAP 服务器。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncQop SNC 保护质量。 允许的值包括:1、2、3、8、9。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
subscriberName 订阅者名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
systemId 表所在的 SAP 系统的 SystemID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
systemNumber 表所在的 SAP 系统的系统编号。 (通常为表示为字符串的两位数十进制数字。类型:字符串(或带有 resultType 字符串的表达式)。 任何
userName 用于访问表所在的 SAP 服务器的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
x509CertificatePath SNC X509 证书文件路径。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SapOpenHubLinkedService

名字 描述 价值
类型 链接服务的类型。 “SapOpenHub”(必需)
typeProperties 特定于 SAP Business Warehouse Open Hub 目标链接服务类型的属性。 SapOpenHubLinkedServiceTypeProperties(必需)

SapOpenHubLinkedServiceTypeProperties

名字 描述 价值
clientId 开放中心目标的 BW 系统上的客户端的客户端 ID。 (通常为表示为字符串的三位数十进制数)类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
语言 开放中心目标所在的 BW 系统的语言。 默认值为 EN。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
logonGroup SAP 系统的登录组。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
messageServer SAP 消息服务器的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
messageServerService 消息服务器的服务名称或端口号。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 用于访问开放中心目标所在的 SAP BW 服务器的密码。 SecretBase
服务器 打开中心目标的 SAP BW 实例的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
systemId 表所在的 SAP 系统的 SystemID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
systemNumber 开放中心目标所在的 BW 系统的系统编号。 (通常为表示为字符串的两位数十进制数字。类型:字符串(或带有 resultType 字符串的表达式)。 任何
userName 用于访问打开中心目标的 SAP BW 服务器的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SapTableLinkedService

名字 描述 价值
类型 链接服务的类型。 “SapTable”(必需)
typeProperties 特定于此链接服务类型的属性。 SapTableLinkedServiceTypeProperties(必需)

SapTableLinkedServiceTypeProperties

名字 描述 价值
clientId 表所在的 SAP 系统上客户端的客户端 ID。 (通常为表示为字符串的三位数十进制数)类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
语言 表所在的 SAP 系统的语言。 默认值为 EN。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
logonGroup SAP 系统的登录组。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
messageServer SAP 消息服务器的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
messageServerService 消息服务器的服务名称或端口号。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 用于访问表所在的 SAP 服务器的密码。 SecretBase
服务器 表所在的 SAP 实例的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncLibraryPath 外部安全产品的库,用于访问表所在的 SAP 服务器。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncMode 用于访问表所在的 SAP 服务器的 SNC 激活指示器。 必须是 0(关)或 1(开)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncMyName 发起程序的 SNC 名称,用于访问表所在的 SAP 服务器。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncPartnerName 通信合作伙伴的 SNC 名称,用于访问表所在的 SAP 服务器。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncQop SNC 保护质量。 允许的值包括:1、2、3、8、9。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
systemId 表所在的 SAP 系统的 SystemID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
systemNumber 表所在的 SAP 系统的系统编号。 (通常为表示为字符串的两位数十进制数字。类型:字符串(或带有 resultType 字符串的表达式)。 任何
userName 用于访问表所在的 SAP 服务器的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

ScriptAction

名字 描述 价值
名字 脚本操作的用户提供的名称。 string (必需)
参数 脚本操作的参数。 字符串
角色 应对其执行脚本操作的节点类型。 任何(必需)
uri 脚本操作的 URI。 string (必需)

SecretBase

名字 描述 价值
类型 对于 AzureKeyVaultSecretReference,请设置为“AzureKeyVaultSecret”。 对于 type SecureString,设置为“SecureString”。 “AzureKeyVaultSecret”
“SecureString”(必需)

SecureString

名字 描述 价值
类型 机密的类型。 “SecureString”(必需)
价值 安全字符串的值。 string (必需)

ServiceNowLinkedService

名字 描述 价值
类型 链接服务的类型。 “ServiceNow”(必需)
typeProperties ServiceNow 服务器链接服务属性。 ServiceNowLinkedServiceTypeProperties (必需)

ServiceNowLinkedServiceTypeProperties

名字 描述 价值
authenticationType 要使用的身份验证类型。 “Basic”
“OAuth2”(必需)
clientId OAuth2 身份验证的客户端 ID。 任何
clientSecret OAuth2 身份验证的客户端密码。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
端点 ServiceNow 服务器的终结点。 (即 <实例>.service-now.com) 任何(必需)
密码 与基本身份验证和 OAuth2 身份验证的用户名对应的密码。 SecretBase
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何
username 用于连接到 ServiceNow 服务器以进行基本身份验证和 OAuth2 身份验证的用户名。 任何

ServiceNowV2LinkedService

名字 描述 价值
类型 链接服务的类型。 “ServiceNowV2”(必需)
typeProperties ServiceNowV2 服务器链接服务属性。 ServiceNowV2LinkedServiceTypeProperties (必需)

ServiceNowV2LinkedServiceTypeProperties

名字 描述 价值
authenticationType 要使用的身份验证类型。 “Basic”
“OAuth2”(必需)
clientId OAuth2 身份验证的客户端 ID。 任何
clientSecret OAuth2 身份验证的客户端密码。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
端点 ServiceNowV2 服务器的终结点。 (即 <实例>.service-now.com) 任何(必需)
grantType 用于 OAuth2 身份验证的 GrantType。 默认值为密码。 任何
密码 与基本身份验证和 OAuth2 身份验证的用户名对应的密码。 SecretBase
username 用于连接到 ServiceNowV2 服务器以进行基本身份验证和 OAuth2 身份验证的用户名。 任何

SftpServerLinkedService

名字 描述 价值
类型 链接服务的类型。 “Sftp”(必需)
typeProperties 特定于此链接服务类型的属性。 SftpServerLinkedServiceTypeProperties (必需)

SftpServerLinkedServiceTypeProperties

名字 描述 价值
authenticationType 用于连接到 FTP 服务器的身份验证类型。 “Basic”
“MultiFactor”
“SshPublicKey”
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 SFTP 服务器主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
hostKeyFingerprint SFTP 服务器的主机键指打印。 当 SkipHostKeyValidation 为 false 时,应指定 HostKeyFingerprint。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
passPhrase 如果 SSH 私钥已加密,则解密 SSH 私钥的密码。 SecretBase
密码 用于登录 SFTP 服务器进行基本身份验证的密码。 SecretBase
港口 SFTP 服务器用于侦听客户端连接的 TCP 端口号。 默认值为 22。 类型:整数(或包含 resultType 整数的表达式),最小值:0。 任何
privateKeyContent 用于 SshPublicKey 身份验证的 Base64 编码 SSH 私钥内容。 对于使用 SshPublicKey 身份验证的本地复制,应指定 PrivateKeyPath 或 PrivateKeyContent。 SSH 私钥应为 OpenSSH 格式。 SecretBase
privateKeyPath SshPublicKey 身份验证的 SSH 私钥文件路径。 仅适用于本地复制。 对于使用 SshPublicKey 身份验证的本地复制,应指定 PrivateKeyPath 或 PrivateKeyContent。 SSH 私钥应为 OpenSSH 格式。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
skipHostKeyValidation 如果为 true,请跳过 SSH 主机密钥验证。 默认值为 false。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
userName 用于登录到 SFTP 服务器的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SharePointOnlineListLinkedService

名字 描述 价值
类型 链接服务的类型。 “SharePointOnlineList”(必需)
typeProperties SharePoint Online 列表链接服务属性。 SharePointOnlineListLinkedServiceTypeProperties (必需)

SharePointOnlineListLinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalEmbeddedCert 指定在 Azure Active Directory 中注册的应用程序的 base64 编码证书。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
servicePrincipalEmbeddedCertPassword 如果证书具有密码,并且使用的是 AadServicePrincipal 身份验证,请指定证书的密码。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
servicePrincipalId 在 Azure Active Directory 中注册的应用程序(客户端)ID。 请确保向此应用程序授予 SharePoint 网站权限。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
servicePrincipalKey 在 Azure Active Directory 中注册的应用程序的客户端密码。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
siteUrl SharePoint Online 网站的 URL。 例如,https://contoso.sharepoint.com/sites/siteName。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
tenantId 应用程序所在的租户 ID。 可以从 Azure 门户 Active Directory 概述页找到它。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

ShopifyLinkedService

名字 描述 价值
类型 链接服务的类型。 “Shopify”(必需)
typeProperties Shopify Service 链接服务属性。 ShopifyLinkedServiceTypeProperties(必需)

ShopifyLinkedServiceTypeProperties

名字 描述 价值
accessToken 可用于访问 Shopify 数据的 API 访问令牌。 如果令牌处于脱机模式,则令牌不会过期。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Shopify 服务器的终结点。 (即 mystore.myshopify.com) 任何(必需)
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何

SmartsheetLinkedService

名字 描述 价值
类型 链接服务的类型。 “Smartsheet”(必需)
typeProperties Smartsheet 链接服务属性。 SmartsheetLinkedServiceTypeProperties (必需)

SmartsheetLinkedServiceTypeProperties

名字 描述 价值
apiToken Smartsheet 源的 API 令牌。 SecretBase(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串

SnowflakeLinkedService

名字 描述 价值
类型 链接服务的类型。 “Snowflake”(必需)
typeProperties Snowflake 链接服务属性。 SnowflakeLinkedServiceTypeProperties(必需)

SnowflakeLinkedServiceTypeProperties

名字 描述 价值
connectionString 雪花的连接字符串。 类型:string、SecureString。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference

SnowflakeLinkedV2ServiceTypeProperties

名字 描述 价值
accountIdentifier Snowflake 帐户的帐户标识符,例如 xy12345.east-us-2.azure 任何(必需)
authenticationType 用于身份验证的类型。 类型:字符串。 “AADServicePrincipal”
“Basic”
“KeyPair”
clientId 在 Azure Active Directory 中注册用于 AADServicePrincipal 身份验证的应用程序的客户端 ID。 任何
clientSecret 用于 AADServicePrincipal 身份验证的客户端机密的 Azure 密钥保管库机密参考。 SecretBase
数据库 Snowflake 数据库的名称。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Snowflake 帐户的主机名。 任何
密码 连接字符串中密码的 Azure Key Vault 机密引用。 SecretBase
privateKey 用于 KeyPair 身份验证的 privateKey 的 Azure Key Vault 机密参考。 SecretBase
privateKeyPassphrase 使用加密私钥进行 KeyPair 身份验证的私钥密码的 Azure 密钥保管库机密参考。 SecretBase
范围 在 Azure Active Directory 中注册用于 AADServicePrincipal 身份验证的应用程序的范围。 任何
tenantId 在 Azure Active Directory 中注册用于 AADServicePrincipal 身份验证的应用程序的租户 ID。 任何
用户 Snowflake 用户的名称。 任何
仓库 Snowflake 仓库的名称。 任何(必需)

SnowflakeV2LinkedService

名字 描述 价值
类型 链接服务的类型。 “SnowflakeV2”(必需)
typeProperties Snowflake 链接服务属性。 SnowflakeLinkedV2ServiceTypeProperties (必需)

SparkLinkedService

名字 描述 价值
类型 链接服务的类型。 “Spark”(必需)
typeProperties Spark Server 链接服务属性。 SparkLinkedServiceTypeProperties (必需)

SparkLinkedServiceTypeProperties

名字 描述 价值
allowHostNameCNMismatch 指定是否要求 CA 颁发的 SSL 证书名称与通过 SSL 连接时服务器的主机名匹配。 默认值为 false。 任何
allowSelfSignedServerCert 指定是否允许来自服务器的自签名证书。 默认值为 false。 任何
authenticationType 用于访问 Spark 服务器的身份验证方法。 “Anonymous”
“Username”
“UsernameAndPassword”
“WindowsAzureHDInsightService”(必需)
enableSsl 指定是否使用 SSL 加密与服务器的连接。 默认值为 false。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Spark 服务器的 IP 地址或主机名 任何(必需)
httpPath 与 Spark 服务器对应的部分 URL。 任何
密码 与你在“用户名”字段中提供的用户名对应的密码 SecretBase
港口 Spark 服务器用于侦听客户端连接的 TCP 端口。 任何(必需)
serverType Spark 服务器的类型。 “SharkServer”
“SharkServer2”
“SparkThriftServer”
thriftTransportProtocol 在 Thrift 层中使用的传输协议。 “Binary”
“HTTP”
“SASL”
trustedCertPath 包含受信任的 CA 证书的 .pem 文件的完整路径,用于通过 SSL 连接时验证服务器。 只能在自承载 IR 上使用 SSL 时设置此属性。 默认值为随 IR 一起安装的 cacerts.pem 文件。 任何
username 用于访问 Spark Server 的用户名。 任何
useSystemTrustStore 指定是使用系统信任存储中的 CA 证书还是从指定的 PEM 文件使用 CA 证书。 默认值为 false。 任何

SqlAlwaysEncryptedProperties

名字 描述 价值
alwaysEncryptedAkvAuthType Sql 始终加密 AKV 身份验证类型。 类型:字符串。 “ManagedIdentity”
“ServicePrincipal”
“UserAssignedManagedIdentity”(必需)
凭据 包含身份验证信息的凭据引用。 CredentialReference
servicePrincipalId Azure Active Directory 中用于 Azure Key Vault 身份验证的应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Azure Key Vault 进行身份验证的服务主体的密钥。 SecretBase

SqlServerLinkedService

名字 描述 价值
类型 链接服务的类型。 “SqlServer”(必需)
typeProperties SQL Server 链接服务属性。 SqlServerLinkedServiceTypeProperties(必需)

SqlServerLinkedServiceTypeProperties

名字 描述 价值
alwaysEncryptedSettings Sql 始终加密属性。 SqlAlwaysEncryptedProperties
applicationIntent 连接到服务器时的应用程序工作负荷类型,由建议的版本使用。 可能的值为 ReadOnly 和 ReadWrite。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于身份验证的类型。 类型:字符串。 “SQL”
“UserAssignedManagedIdentity”
“Windows”
commandTimeout 在终止尝试执行命令并生成错误之前(以秒为单位)的默认等待时间(以秒为单位),由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
connectRetryCount 确定有空闲连接失败(由建议的版本使用)后尝试的重新连接数。 这必须是介于 0 和 255 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectRetryInterval 确定建议的版本使用空闲连接失败后,每个重新连接尝试之间的时间(以秒为单位)。 这必须是介于 1 和 60 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectTimeout 在终止尝试并生成由建议版本使用的错误之前,等待与服务器的连接的时间长度(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
数据库 建议的版本使用的数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
加密 指示客户端和服务器之间发送的所有数据是否需要 TLS 加密(由建议的版本使用)。 可能的值为 true/yes/mandatory、false/no/optional 和 strict。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
failoverPartner 如果主服务器关闭(由建议的版本使用)连接到的伙伴服务器的名称或地址。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
hostNameInCertificate 验证连接的服务器证书时要使用的主机名。 如果未指定,则数据源中的服务器名称用于证书验证,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
integratedSecurity 指示是否在连接(如果为 false)中指定用户 ID 和密码,或者当前 Windows 帐户凭据是否用于身份验证(如果为 true),由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
loadBalanceTimeout 在被建议的版本使用之前,连接在连接池中生存的最短时间(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
maxPoolSize 此特定连接字符串的连接池中允许的最大连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
minPoolSize 此特定连接字符串的连接池中允许的最小连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
multipleActiveResultSets 如果为 true,应用程序可以维护多个活动结果集(MARS)。 如果为 false,应用程序必须处理或取消一个批处理中的所有结果集,然后才能在该连接上执行任何其他批处理(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
multiSubnetFailover 如果应用程序连接到不同子网上的 AlwaysOn 可用性组(AG),则设置 MultiSubnetFailover=true 可以更快地检测和连接到(当前)活动服务器(当前)活动服务器(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
packetSize 用于与服务器实例通信的网络数据包的大小(以字节为单位,由建议的版本使用)。 类型:整数(或包含 resultType 整数的表达式)。 任何
密码 本地 Windows 身份验证密码。 SecretBase
指示每次请求连接时,连接是共用的还是显式打开的,由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
服务器 要连接到的 SQL Server 实例的名称或网络地址,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
trustServerCertificate 指示通道是否在绕过证书链来验证推荐版本使用的信任时是否加密通道。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
userName 本地 Windows 身份验证用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SquareLinkedService

名字 描述 价值
类型 链接服务的类型。 “Square”(必需)
typeProperties 方块服务链接服务属性。 SquareLinkedServiceTypeProperties(必需)

SquareLinkedServiceTypeProperties

名字 描述 价值
clientId 与 Square 应用程序关联的客户端 ID。 任何
clientSecret 与 Square 应用程序关联的客户端密码。 SecretBase
connectionProperties 用于连接到 Square 的属性。 它与链接服务中的其他任何属性互斥。 类型:对象。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Square 实例的 URL。 (即 mystore.mysquare.com) 任何
redirectUri 在 Square 应用程序仪表板中分配的重定向 URL。 (即 http://localhost:2500) 任何
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何

SybaseLinkedService

名字 描述 价值
类型 链接服务的类型。 “Sybase”(必需)
typeProperties Sybase 链接服务属性。 SybaseLinkedServiceTypeProperties (必需)

SybaseLinkedServiceTypeProperties

名字 描述 价值
authenticationType 要用于连接的 AuthenticationType。 “Basic”
“Windows”
数据库 连接的数据库名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 身份验证密码。 SecretBase
图式 连接的架构名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
服务器 连接的服务器名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
username 身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

TeamDeskLinkedService

名字 描述 价值
类型 链接服务的类型。 “TeamDesk”(必需)
typeProperties TeamDesk 链接服务属性。 TeamDeskLinkedServiceTypeProperties(必需)

TeamDeskLinkedServiceTypeProperties

名字 描述 价值
apiToken TeamDesk 源的 API 令牌。 SecretBase
authenticationType 要使用的身份验证类型。 “Basic”
“Token”(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 TeamDesk 源的密码。 SecretBase
url 用于连接 TeamDesk 源的 URL。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
userName TeamDesk 源的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

TeradataLinkedService

名字 描述 价值
类型 链接服务的类型。 “Teradata”(必需)
typeProperties Teradata 链接服务属性。 TeradataLinkedServiceTypeProperties(必需)

TeradataLinkedServiceTypeProperties

名字 描述 价值
authenticationType 要用于连接的 AuthenticationType。 “Basic”
“Windows”
connectionString Teradata ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 身份验证密码。 SecretBase
服务器 连接的服务器名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
username 身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

TwilioLinkedService

名字 描述 价值
类型 链接服务的类型。 “Twilio”(必需)
typeProperties Twilio 链接服务属性。 TwilioLinkedServiceTypeProperties(必需)

TwilioLinkedServiceTypeProperties

名字 描述 价值
密码 Twilio 服务的身份验证令牌。 SecretBase(必需)
userName Twilio 服务的帐户 SID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

VerticaLinkedService

名字 描述 价值
类型 链接服务的类型。 “Vertica”(必需)
typeProperties Vertica 链接服务属性。 VerticaLinkedServiceTypeProperties (必需)

VerticaLinkedServiceTypeProperties

名字 描述 价值
connectionString ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
数据库 连接的数据库名称。 类型:字符串。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
港口 连接的端口。 类型:整数。 任何
pwd 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference
服务器 连接的服务器名称。 类型:字符串。 任何
uid 身份验证的用户名。 类型:字符串。 任何

WarehouseLinkedService

名字 描述 价值
类型 链接服务的类型。 “仓库”(必需)
typeProperties Microsoft Fabric Warehouse 链接服务属性。 WarehouseLinkedServiceTypeProperties(必需)

WarehouseLinkedServiceTypeProperties

名字 描述 价值
artifactId Microsoft Fabric Warehouse 项目的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
端点 Microsoft Fabric Warehouse 服务器的终结点。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId 用于对 Microsoft Fabric Warehouse 进行身份验证的应用程序的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Microsoft Fabric Warehouse 进行身份验证的应用程序密钥。 SecretBase
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
workspaceId Microsoft Fabric 工作区的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

WebAnonymousAuthentication

名字 描述 价值
authenticationType 用于连接到 Web 表源的身份验证类型。 “Anonymous”(必需)

WebBasicAuthentication

名字 描述 价值
authenticationType 用于连接到 Web 表源的身份验证类型。 “Basic”(必需)
密码 基本身份验证的密码。 SecretBase(必需)
username 基本身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

WebClientCertificateAuthentication

名字 描述 价值
authenticationType 用于连接到 Web 表源的身份验证类型。 “ClientCertificate”(必需)
密码 PFX 文件的密码。 SecretBase(必需)
pfx PFX 文件的 Base64 编码内容。 SecretBase(必需)

WebLinkedService

名字 描述 价值
类型 链接服务的类型。 “Web”(必需)
typeProperties Web 链接服务属性。 WebLinkedServiceTypeProperties(必需)

WebLinkedServiceTypeProperties

名字 描述 价值
authenticationType 对于 WebAnonymousAuthentication类型,设置为“Anonymous”。 对于 WebBasicAuthentication,请设置为“基本”。 对于 WebClientCertificateAuthentication,请设置为“ClientCertificate”。 “Anonymous”
“Basic”
“ClientCertificate”(必需)
url Web 服务终结点的 URL,例如 https://www.microsoft.com。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

XeroLinkedService

名字 描述 价值
类型 链接服务的类型。 “Xero”(必需)
typeProperties Xero 服务链接服务属性。 XeroLinkedServiceTypeProperties(必需)

XeroLinkedServiceTypeProperties

名字 描述 价值
connectionProperties 用于连接到 Xero 的属性。 它与链接服务中的其他任何属性互斥。 类型:对象。 任何
consumerKey 与 Xero 应用程序关联的使用者密钥。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Xero 服务器的终结点。 (即 api.xero.com) 任何
privateKey 为 Xero 专用应用程序生成的 .pem 文件中的私钥。 必须包括 .pem 文件中的所有文本,包括 Unix 行结尾(
).
SecretBase
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何

ZendeskLinkedService

名字 描述 价值
类型 链接服务的类型。 “Zendesk”(必需)
typeProperties Zendesk 链接服务属性。 ZendeskLinkedServiceTypeProperties (必需)

ZendeskLinkedServiceTypeProperties

名字 描述 价值
apiToken Zendesk 源的 API 令牌。 SecretBase
authenticationType 要使用的身份验证类型。 “Basic”
“Token”(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 Zendesk 源的密码。 SecretBase
url 用于连接 Zendesk 源的 URL。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
userName Zendesk 源的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

ZohoLinkedService

名字 描述 价值
类型 链接服务的类型。 “Zoho”(必需)
typeProperties Zoho 服务器链接服务属性。 ZohoLinkedServiceTypeProperties(必需)

ZohoLinkedServiceTypeProperties

名字 描述 价值
accessToken Zoho 身份验证的访问令牌。 SecretBase
connectionProperties 用于连接到 Zoho 的属性。 它与链接服务中的其他任何属性互斥。 类型:对象。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
端点 Zoho 服务器的终结点。 (即 crm.zoho.com/crm/private) 任何
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何

快速入门模板

以下快速入门模板部署此资源类型。

模板 描述
创建 V2 数据工厂

部署到 Azure
此模板创建一个 V2 数据工厂,用于将数据从 Azure Blob 存储中的文件夹复制到存储中的另一个文件夹。
在 Azure 体系结构 上部署体育分析

部署到 Azure
创建启用了 ADLS Gen 2 的 Azure 存储帐户、存储帐户的链接服务的 Azure 数据工厂实例(如果已部署的 Azure SQL 数据库)和 Azure Databricks 实例。 将为部署模板的用户的 AAD 标识以及 ADF 实例的托管标识授予存储帐户上的存储 Blob 数据参与者角色。 还有一些选项可用于部署 Azure Key Vault 实例、Azure SQL 数据库和 Azure 事件中心(用于流式处理用例)。 部署 Azure Key Vault 后,将为部署模板的用户提供数据工厂托管标识和 AAD 标识,并被授予 Key Vault 机密用户角色。
可以使用 Azure 数据工厂 更多 - 单击一次尝试 Azure 数据工厂

部署到 Azure
此模板为从 Azure Blob 复制到另一个 Azure Blob 中的复制活动创建数据工厂管道

Terraform (AzAPI 提供程序)资源定义

可以使用目标操作部署工厂/linkedservices 资源类型:

  • 资源组

有关每个 API 版本中已更改属性的列表,请参阅 更改日志

资源格式

若要创建 Microsoft.DataFactory/factories/linkedservices 资源,请将以下 Terraform 添加到模板。

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.DataFactory/factories/linkedservices@2018-06-01"
  name = "string"
  body = jsonencode({
    properties = {
      annotations = [
        ?
      ]
      connectVia = {
        parameters = {
          {customized property} = ?
        }
        referenceName = "string"
        type = "string"
      }
      description = "string"
      parameters = {
        {customized property} = {
          defaultValue = ?
          type = "string"
        }
      }
      version = "string"
      type = "string"
      // For remaining properties, see LinkedService objects
    }
  })
}

WebLinkedServiceTypeProperties 对象

设置 authenticationType 属性以指定对象的类型。

对于 匿名,请使用:

{
  authenticationType = "Anonymous"
}

对于 基本,请使用:

{
  authenticationType = "Basic"
  password = {
    type = "string"
    // For remaining properties, see SecretBase objects
  }
  username = ?
}

对于 ClientCertificate,请使用:

{
  authenticationType = "ClientCertificate"
  password = {
    type = "string"
    // For remaining properties, see SecretBase objects
  }
  pfx = {
    type = "string"
    // For remaining properties, see SecretBase objects
  }
}

LinkedService 对象

设置 类型 属性以指定对象的类型。

对于 AmazonMWS,请使用:

{
  type = "AmazonMWS"
  typeProperties = {
    accessKeyId = ?
    encryptedCredential = "string"
    endpoint = ?
    marketplaceID = ?
    mwsAuthToken = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    secretKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    sellerID = ?
    useEncryptedEndpoints = ?
    useHostVerification = ?
    usePeerVerification = ?
  }
}

对于 AmazonRdsForOracle,请使用:

{
  type = "AmazonRdsForOracle"
  typeProperties = {
    connectionString = ?
    encryptedCredential = "string"
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
  }
}

对于 AmazonRdsForSqlServer,请使用:

{
  type = "AmazonRdsForSqlServer"
  typeProperties = {
    alwaysEncryptedSettings = {
      alwaysEncryptedAkvAuthType = "string"
      credential = {
        referenceName = "string"
        type = "string"
      }
      servicePrincipalId = ?
      servicePrincipalKey = {
        type = "string"
        // For remaining properties, see SecretBase objects
      }
    }
    applicationIntent = ?
    authenticationType = "string"
    commandTimeout = ?
    connectionString = ?
    connectRetryCount = ?
    connectRetryInterval = ?
    connectTimeout = ?
    database = ?
    encrypt = ?
    encryptedCredential = "string"
    failoverPartner = ?
    hostNameInCertificate = ?
    integratedSecurity = ?
    loadBalanceTimeout = ?
    maxPoolSize = ?
    minPoolSize = ?
    multipleActiveResultSets = ?
    multiSubnetFailover = ?
    packetSize = ?
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    pooling = ?
    server = ?
    trustServerCertificate = ?
    userName = ?
  }
}

对于 AmazonRedshift,请使用:

{
  type = "AmazonRedshift"
  typeProperties = {
    database = ?
    encryptedCredential = "string"
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    port = ?
    server = ?
    username = ?
  }
}

对于 AmazonS3,请使用:

{
  type = "AmazonS3"
  typeProperties = {
    accessKeyId = ?
    authenticationType = ?
    encryptedCredential = "string"
    secretAccessKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    serviceUrl = ?
    sessionToken = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
  }
}

对于 AmazonS3Compatible,请使用:

{
  type = "AmazonS3Compatible"
  typeProperties = {
    accessKeyId = ?
    encryptedCredential = "string"
    forcePathStyle = ?
    secretAccessKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    serviceUrl = ?
  }
}

对于 AppFigures,请使用:

{
  type = "AppFigures"
  typeProperties = {
    clientKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    userName = ?
  }
}

对于 Asana,请使用:

{
  type = "Asana"
  typeProperties = {
    apiToken = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential = "string"
  }
}

对于 AzureBatch,请使用:

{
  type = "AzureBatch"
  typeProperties = {
    accessKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    accountName = ?
    batchUri = ?
    credential = {
      referenceName = "string"
      type = "string"
    }
    encryptedCredential = "string"
    linkedServiceName = {
      parameters = {
        {customized property} = ?
      }
      referenceName = "string"
      type = "string"
    }
    poolName = ?
  }
}

对于 AzureBlobFS,请使用:

{
  type = "AzureBlobFS"
  typeProperties = {
    accountKey = ?
    azureCloudType = ?
    credential = {
      referenceName = "string"
      type = "string"
    }
    encryptedCredential = "string"
    sasToken = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    sasUri = ?
    servicePrincipalCredential = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalCredentialType = ?
    servicePrincipalId = ?
    servicePrincipalKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    tenant = ?
    url = ?
  }
}

对于 azureBlobStorage,请使用:

{
  type = "AzureBlobStorage"
  typeProperties = {
    accountKey = {
      secretName = ?
      secretVersion = ?
      store = {
        parameters = {
          {customized property} = ?
        }
        referenceName = "string"
        type = "string"
      }
      type = "string"
    }
    accountKind = ?
    authenticationType = "string"
    azureCloudType = ?
    connectionString = ?
    containerUri = ?
    credential = {
      referenceName = "string"
      type = "string"
    }
    encryptedCredential = "string"
    sasToken = {
      secretName = ?
      secretVersion = ?
      store = {
        parameters = {
          {customized property} = ?
        }
        referenceName = "string"
        type = "string"
      }
      type = "string"
    }
    sasUri = ?
    serviceEndpoint = ?
    servicePrincipalId = ?
    servicePrincipalKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    tenant = ?
  }
}

对于 AzureDataExplorer,请使用:

{
  type = "AzureDataExplorer"
  typeProperties = {
    credential = {
      referenceName = "string"
      type = "string"
    }
    database = ?
    endpoint = ?
    servicePrincipalId = ?
    servicePrincipalKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    tenant = ?
  }
}

对于 AzureDataLakeAnalytics,请使用:

{
  type = "AzureDataLakeAnalytics"
  typeProperties = {
    accountName = ?
    dataLakeAnalyticsUri = ?
    encryptedCredential = "string"
    resourceGroupName = ?
    servicePrincipalId = ?
    servicePrincipalKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    subscriptionId = ?
    tenant = ?
  }
}

对于 azureDataLakeStore,请使用:

{
  type = "AzureDataLakeStore"
  typeProperties = {
    accountName = ?
    azureCloudType = ?
    credential = {
      referenceName = "string"
      type = "string"
    }
    dataLakeStoreUri = ?
    encryptedCredential = "string"
    resourceGroupName = ?
    servicePrincipalId = ?
    servicePrincipalKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    subscriptionId = ?
    tenant = ?
  }
}

对于 AzureDatabricks,请使用:

{
  type = "AzureDatabricks"
  typeProperties = {
    accessToken = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    authentication = ?
    credential = {
      referenceName = "string"
      type = "string"
    }
    domain = ?
    encryptedCredential = "string"
    existingClusterId = ?
    instancePoolId = ?
    newClusterCustomTags = {
      {customized property} = ?
    }
    newClusterDriverNodeType = ?
    newClusterEnableElasticDisk = ?
    newClusterInitScripts = ?
    newClusterLogDestination = ?
    newClusterNodeType = ?
    newClusterNumOfWorker = ?
    newClusterSparkConf = {
      {customized property} = ?
    }
    newClusterSparkEnvVars = {
      {customized property} = ?
    }
    newClusterVersion = ?
    policyId = ?
    workspaceResourceId = ?
  }
}

对于 AzureDatabricksDeltaLake,请使用:

{
  type = "AzureDatabricksDeltaLake"
  typeProperties = {
    accessToken = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    clusterId = ?
    credential = {
      referenceName = "string"
      type = "string"
    }
    domain = ?
    encryptedCredential = "string"
    workspaceResourceId = ?
  }
}

对于 AzureFileStorage,请使用:

{
  type = "AzureFileStorage"
  typeProperties = {
    accountKey = {
      secretName = ?
      secretVersion = ?
      store = {
        parameters = {
          {customized property} = ?
        }
        referenceName = "string"
        type = "string"
      }
      type = "string"
    }
    connectionString = ?
    credential = {
      referenceName = "string"
      type = "string"
    }
    encryptedCredential = "string"
    fileShare = ?
    host = ?
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    sasToken = {
      secretName = ?
      secretVersion = ?
      store = {
        parameters = {
          {customized property} = ?
        }
        referenceName = "string"
        type = "string"
      }
      type = "string"
    }
    sasUri = ?
    serviceEndpoint = ?
    snapshot = ?
    userId = ?
  }
}

对于 azureFunction,请使用:

{
  type = "AzureFunction"
  typeProperties = {
    authentication = ?
    credential = {
      referenceName = "string"
      type = "string"
    }
    encryptedCredential = "string"
    functionAppUrl = ?
    functionKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    resourceId = ?
  }
}

对于 azureKeyVault,请使用:

{
  type = "AzureKeyVault"
  typeProperties = {
    baseUrl = ?
    credential = {
      referenceName = "string"
      type = "string"
    }
  }
}

对于 azureML,请使用:

{
  type = "AzureML"
  typeProperties = {
    apiKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    authentication = ?
    encryptedCredential = "string"
    mlEndpoint = ?
    servicePrincipalId = ?
    servicePrincipalKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    tenant = ?
    updateResourceEndpoint = ?
  }
}

对于 AzureMLService,请使用:

{
  type = "AzureMLService"
  typeProperties = {
    authentication = ?
    encryptedCredential = "string"
    mlWorkspaceName = ?
    resourceGroupName = ?
    servicePrincipalId = ?
    servicePrincipalKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    subscriptionId = ?
    tenant = ?
  }
}

对于 azureMariaDB,请使用:

{
  type = "AzureMariaDB"
  typeProperties = {
    connectionString = ?
    encryptedCredential = "string"
    pwd = {
      secretName = ?
      secretVersion = ?
      store = {
        parameters = {
          {customized property} = ?
        }
        referenceName = "string"
        type = "string"
      }
      type = "string"
    }
  }
}

对于 azureMySql,请使用:

{
  type = "AzureMySql"
  typeProperties = {
    connectionString = ?
    encryptedCredential = "string"
    password = {
      secretName = ?
      secretVersion = ?
      store = {
        parameters = {
          {customized property} = ?
        }
        referenceName = "string"
        type = "string"
      }
      type = "string"
    }
  }
}

对于 AzurePostgreSql,请使用:

{
  type = "AzurePostgreSql"
  typeProperties = {
    commandTimeout = ?
    connectionString = ?
    database = ?
    encoding = ?
    encryptedCredential = "string"
    password = {
      secretName = ?
      secretVersion = ?
      store = {
        parameters = {
          {customized property} = ?
        }
        referenceName = "string"
        type = "string"
      }
      type = "string"
    }
    port = ?
    readBufferSize = ?
    server = ?
    sslMode = ?
    timeout = ?
    timezone = ?
    trustServerCertificate = ?
    username = ?
  }
}

对于 azureSearch,请使用:

{
  type = "AzureSearch"
  typeProperties = {
    encryptedCredential = "string"
    key = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    url = ?
  }
}

对于 azureSqlDW,请使用:

{
  type = "AzureSqlDW"
  typeProperties = {
    applicationIntent = ?
    authenticationType = "string"
    azureCloudType = ?
    commandTimeout = ?
    connectionString = ?
    connectRetryCount = ?
    connectRetryInterval = ?
    connectTimeout = ?
    credential = {
      referenceName = "string"
      type = "string"
    }
    database = ?
    encrypt = ?
    encryptedCredential = "string"
    failoverPartner = ?
    hostNameInCertificate = ?
    integratedSecurity = ?
    loadBalanceTimeout = ?
    maxPoolSize = ?
    minPoolSize = ?
    multipleActiveResultSets = ?
    multiSubnetFailover = ?
    packetSize = ?
    password = {
      secretName = ?
      secretVersion = ?
      store = {
        parameters = {
          {customized property} = ?
        }
        referenceName = "string"
        type = "string"
      }
      type = "string"
    }
    pooling = ?
    server = ?
    servicePrincipalCredential = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalCredentialType = ?
    servicePrincipalId = ?
    servicePrincipalKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    tenant = ?
    trustServerCertificate = ?
    userName = ?
  }
}

对于 AzureSqlDatabase,请使用:

{
  type = "AzureSqlDatabase"
  typeProperties = {
    alwaysEncryptedSettings = {
      alwaysEncryptedAkvAuthType = "string"
      credential = {
        referenceName = "string"
        type = "string"
      }
      servicePrincipalId = ?
      servicePrincipalKey = {
        type = "string"
        // For remaining properties, see SecretBase objects
      }
    }
    applicationIntent = ?
    authenticationType = "string"
    azureCloudType = ?
    commandTimeout = ?
    connectionString = ?
    connectRetryCount = ?
    connectRetryInterval = ?
    connectTimeout = ?
    credential = {
      referenceName = "string"
      type = "string"
    }
    database = ?
    encrypt = ?
    encryptedCredential = "string"
    failoverPartner = ?
    hostNameInCertificate = ?
    integratedSecurity = ?
    loadBalanceTimeout = ?
    maxPoolSize = ?
    minPoolSize = ?
    multipleActiveResultSets = ?
    multiSubnetFailover = ?
    packetSize = ?
    password = {
      secretName = ?
      secretVersion = ?
      store = {
        parameters = {
          {customized property} = ?
        }
        referenceName = "string"
        type = "string"
      }
      type = "string"
    }
    pooling = ?
    server = ?
    servicePrincipalCredential = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalCredentialType = ?
    servicePrincipalId = ?
    servicePrincipalKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    tenant = ?
    trustServerCertificate = ?
    userName = ?
  }
}

对于 AzureSqlMI,请使用:

{
  type = "AzureSqlMI"
  typeProperties = {
    alwaysEncryptedSettings = {
      alwaysEncryptedAkvAuthType = "string"
      credential = {
        referenceName = "string"
        type = "string"
      }
      servicePrincipalId = ?
      servicePrincipalKey = {
        type = "string"
        // For remaining properties, see SecretBase objects
      }
    }
    applicationIntent = ?
    authenticationType = "string"
    azureCloudType = ?
    commandTimeout = ?
    connectionString = ?
    connectRetryCount = ?
    connectRetryInterval = ?
    connectTimeout = ?
    credential = {
      referenceName = "string"
      type = "string"
    }
    database = ?
    encrypt = ?
    encryptedCredential = "string"
    failoverPartner = ?
    hostNameInCertificate = ?
    integratedSecurity = ?
    loadBalanceTimeout = ?
    maxPoolSize = ?
    minPoolSize = ?
    multipleActiveResultSets = ?
    multiSubnetFailover = ?
    packetSize = ?
    password = {
      secretName = ?
      secretVersion = ?
      store = {
        parameters = {
          {customized property} = ?
        }
        referenceName = "string"
        type = "string"
      }
      type = "string"
    }
    pooling = ?
    server = ?
    servicePrincipalCredential = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalCredentialType = ?
    servicePrincipalId = ?
    servicePrincipalKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    tenant = ?
    trustServerCertificate = ?
    userName = ?
  }
}

对于 azureStorage,请使用:

{
  type = "AzureStorage"
  typeProperties = {
    accountKey = {
      secretName = ?
      secretVersion = ?
      store = {
        parameters = {
          {customized property} = ?
        }
        referenceName = "string"
        type = "string"
      }
      type = "string"
    }
    connectionString = ?
    encryptedCredential = "string"
    sasToken = {
      secretName = ?
      secretVersion = ?
      store = {
        parameters = {
          {customized property} = ?
        }
        referenceName = "string"
        type = "string"
      }
      type = "string"
    }
    sasUri = ?
  }
}

对于 azureSynapseArtifacts,请使用:

{
  type = "AzureSynapseArtifacts"
  typeProperties = {
    authentication = ?
    endpoint = ?
    workspaceResourceId = ?
  }
}

对于 azureTableStorage,请使用:

{
  type = "AzureTableStorage"
  typeProperties = {
    accountKey = {
      secretName = ?
      secretVersion = ?
      store = {
        parameters = {
          {customized property} = ?
        }
        referenceName = "string"
        type = "string"
      }
      type = "string"
    }
    connectionString = ?
    credential = {
      referenceName = "string"
      type = "string"
    }
    encryptedCredential = "string"
    sasToken = {
      secretName = ?
      secretVersion = ?
      store = {
        parameters = {
          {customized property} = ?
        }
        referenceName = "string"
        type = "string"
      }
      type = "string"
    }
    sasUri = ?
    serviceEndpoint = ?
  }
}

对于 Cassandra,请使用:

{
  type = "Cassandra"
  typeProperties = {
    authenticationType = ?
    encryptedCredential = "string"
    host = ?
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    port = ?
    username = ?
  }
}

对于 CommonDataServiceForApps,请使用:

{
  type = "CommonDataServiceForApps"
  typeProperties = {
    authenticationType = ?
    deploymentType = ?
    domain = ?
    encryptedCredential = "string"
    hostName = ?
    organizationName = ?
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    port = ?
    servicePrincipalCredential = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalCredentialType = ?
    servicePrincipalId = ?
    serviceUri = ?
    username = ?
  }
}

对于 Concur,请使用:

{
  type = "Concur"
  typeProperties = {
    clientId = ?
    connectionProperties = ?
    encryptedCredential = "string"
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    useEncryptedEndpoints = ?
    useHostVerification = ?
    usePeerVerification = ?
    username = ?
  }
}

对于 CosmosDb,请使用:

{
  type = "CosmosDb"
  typeProperties = {
    accountEndpoint = ?
    accountKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    azureCloudType = ?
    connectionMode = "string"
    connectionString = ?
    credential = {
      referenceName = "string"
      type = "string"
    }
    database = ?
    encryptedCredential = "string"
    servicePrincipalCredential = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalCredentialType = ?
    servicePrincipalId = ?
    tenant = ?
  }
}

对于 CosmosDbMongoDbApi,请使用:

{
  type = "CosmosDbMongoDbApi"
  typeProperties = {
    connectionString = ?
    database = ?
    isServerVersionAbove32 = ?
  }
}

对于 Couchbase,请使用:

{
  type = "Couchbase"
  typeProperties = {
    connectionString = ?
    credString = {
      secretName = ?
      secretVersion = ?
      store = {
        parameters = {
          {customized property} = ?
        }
        referenceName = "string"
        type = "string"
      }
      type = "string"
    }
    encryptedCredential = "string"
  }
}

对于 customDataSource ,请使用:

{
  type = "CustomDataSource"
  typeProperties = ?
}

对于 Dataworld,请使用:

{
  type = "Dataworld"
  typeProperties = {
    apiToken = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential = "string"
  }
}

对于 Db2,请使用:

{
  type = "Db2"
  typeProperties = {
    authenticationType = "string"
    certificateCommonName = ?
    connectionString = ?
    database = ?
    encryptedCredential = "string"
    packageCollection = ?
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    server = ?
    username = ?
  }
}

对于 钻取,请使用:

{
  type = "Drill"
  typeProperties = {
    connectionString = ?
    encryptedCredential = "string"
    pwd = {
      secretName = ?
      secretVersion = ?
      store = {
        parameters = {
          {customized property} = ?
        }
        referenceName = "string"
        type = "string"
      }
      type = "string"
    }
  }
}

对于 Dynamics,请使用:

{
  type = "Dynamics"
  typeProperties = {
    authenticationType = ?
    credential = {
      referenceName = "string"
      type = "string"
    }
    deploymentType = ?
    domain = ?
    encryptedCredential = "string"
    hostName = ?
    organizationName = ?
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    port = ?
    servicePrincipalCredential = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalCredentialType = ?
    servicePrincipalId = ?
    serviceUri = ?
    username = ?
  }
}

对于 DynamicsAX,请使用:

{
  type = "DynamicsAX"
  typeProperties = {
    aadResourceId = ?
    encryptedCredential = "string"
    servicePrincipalId = ?
    servicePrincipalKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    tenant = ?
    url = ?
  }
}

对于 DynamicsCrm,请使用:

{
  type = "DynamicsCrm"
  typeProperties = {
    authenticationType = ?
    credential = {
      referenceName = "string"
      type = "string"
    }
    deploymentType = ?
    domain = ?
    encryptedCredential = "string"
    hostName = ?
    organizationName = ?
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    port = ?
    servicePrincipalCredential = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalCredentialType = ?
    servicePrincipalId = ?
    serviceUri = ?
    username = ?
  }
}

对于 Eloqua,请使用:

{
  type = "Eloqua"
  typeProperties = {
    encryptedCredential = "string"
    endpoint = ?
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    useEncryptedEndpoints = ?
    useHostVerification = ?
    usePeerVerification = ?
    username = ?
  }
}

对于 FileServer,请使用:

{
  type = "FileServer"
  typeProperties = {
    encryptedCredential = "string"
    host = ?
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    userId = ?
  }
}

对于 ftpServer,请使用:

{
  type = "FtpServer"
  typeProperties = {
    authenticationType = "string"
    enableServerCertificateValidation = ?
    enableSsl = ?
    encryptedCredential = "string"
    host = ?
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    port = ?
    userName = ?
  }
}

对于 GoogleAdWords,请使用:

{
  type = "GoogleAdWords"
  typeProperties = {
    authenticationType = "string"
    clientCustomerID = ?
    clientId = ?
    clientSecret = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    connectionProperties = ?
    developerToken = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    email = ?
    encryptedCredential = "string"
    googleAdsApiVersion = ?
    keyFilePath = ?
    loginCustomerID = ?
    privateKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    refreshToken = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    supportLegacyDataTypes = ?
    trustedCertPath = ?
    useSystemTrustStore = ?
  }
}

对于 GoogleBigQuery,请使用:

{
  type = "GoogleBigQuery"
  typeProperties = {
    additionalProjects = ?
    authenticationType = "string"
    clientId = ?
    clientSecret = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    email = ?
    encryptedCredential = "string"
    keyFilePath = ?
    project = ?
    refreshToken = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    requestGoogleDriveScope = ?
    trustedCertPath = ?
    useSystemTrustStore = ?
  }
}

对于 GoogleBigQueryV2,请使用:

{
  type = "GoogleBigQueryV2"
  typeProperties = {
    authenticationType = "string"
    clientId = ?
    clientSecret = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential = "string"
    keyFileContent = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    projectId = ?
    refreshToken = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
  }
}

对于 GoogleCloudStorage,请使用:

{
  type = "GoogleCloudStorage"
  typeProperties = {
    accessKeyId = ?
    encryptedCredential = "string"
    secretAccessKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    serviceUrl = ?
  }
}

对于 GoogleSheets,请使用:

{
  type = "GoogleSheets"
  typeProperties = {
    apiToken = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential = "string"
  }
}

对于 Greenplum,请使用:

{
  type = "Greenplum"
  typeProperties = {
    connectionString = ?
    encryptedCredential = "string"
    pwd = {
      secretName = ?
      secretVersion = ?
      store = {
        parameters = {
          {customized property} = ?
        }
        referenceName = "string"
        type = "string"
      }
      type = "string"
    }
  }
}

对于 HBase,请使用:

{
  type = "HBase"
  typeProperties = {
    allowHostNameCNMismatch = ?
    allowSelfSignedServerCert = ?
    authenticationType = "string"
    enableSsl = ?
    encryptedCredential = "string"
    host = ?
    httpPath = ?
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    port = ?
    trustedCertPath = ?
    username = ?
  }
}

对于 HDInsight,请使用:

{
  type = "HDInsight"
  typeProperties = {
    clusterUri = ?
    encryptedCredential = "string"
    fileSystem = ?
    hcatalogLinkedServiceName = {
      parameters = {
        {customized property} = ?
      }
      referenceName = "string"
      type = "string"
    }
    isEspEnabled = ?
    linkedServiceName = {
      parameters = {
        {customized property} = ?
      }
      referenceName = "string"
      type = "string"
    }
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    userName = ?
  }
}

对于 HDInsightOnDemand,请使用:

{
  type = "HDInsightOnDemand"
  typeProperties = {
    additionalLinkedServiceNames = [
      {
        parameters = {
          {customized property} = ?
        }
        referenceName = "string"
        type = "string"
      }
    ]
    clusterNamePrefix = ?
    clusterPassword = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    clusterResourceGroup = ?
    clusterSize = ?
    clusterSshPassword = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    clusterSshUserName = ?
    clusterType = ?
    clusterUserName = ?
    coreConfiguration = ?
    credential = {
      referenceName = "string"
      type = "string"
    }
    dataNodeSize = ?
    encryptedCredential = "string"
    hBaseConfiguration = ?
    hcatalogLinkedServiceName = {
      parameters = {
        {customized property} = ?
      }
      referenceName = "string"
      type = "string"
    }
    hdfsConfiguration = ?
    headNodeSize = ?
    hiveConfiguration = ?
    hostSubscriptionId = ?
    linkedServiceName = {
      parameters = {
        {customized property} = ?
      }
      referenceName = "string"
      type = "string"
    }
    mapReduceConfiguration = ?
    oozieConfiguration = ?
    scriptActions = [
      {
        name = "string"
        parameters = "string"
        roles = ?
        uri = "string"
      }
    ]
    servicePrincipalId = ?
    servicePrincipalKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    sparkVersion = ?
    stormConfiguration = ?
    subnetName = ?
    tenant = ?
    timeToLive = ?
    version = ?
    virtualNetworkId = ?
    yarnConfiguration = ?
    zookeeperNodeSize = ?
  }
}

对于 Hdfs,请使用:

{
  type = "Hdfs"
  typeProperties = {
    authenticationType = ?
    encryptedCredential = "string"
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    url = ?
    userName = ?
  }
}

对于 Hive,请使用:

{
  type = "Hive"
  typeProperties = {
    allowHostNameCNMismatch = ?
    allowSelfSignedServerCert = ?
    authenticationType = "string"
    enableSsl = ?
    encryptedCredential = "string"
    host = ?
    httpPath = ?
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    port = ?
    serverType = "string"
    serviceDiscoveryMode = ?
    thriftTransportProtocol = "string"
    trustedCertPath = ?
    useNativeQuery = ?
    username = ?
    useSystemTrustStore = ?
    zooKeeperNameSpace = ?
  }
}

对于 HttpServer,请使用:

{
  type = "HttpServer"
  typeProperties = {
    authenticationType = "string"
    authHeaders = ?
    certThumbprint = ?
    embeddedCertData = ?
    enableServerCertificateValidation = ?
    encryptedCredential = "string"
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    url = ?
    userName = ?
  }
}

对于 Hubspot,请使用:

{
  type = "Hubspot"
  typeProperties = {
    accessToken = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    clientId = ?
    clientSecret = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential = "string"
    refreshToken = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    useEncryptedEndpoints = ?
    useHostVerification = ?
    usePeerVerification = ?
  }
}

对于 Impala,请使用:

{
  type = "Impala"
  typeProperties = {
    allowHostNameCNMismatch = ?
    allowSelfSignedServerCert = ?
    authenticationType = "string"
    enableSsl = ?
    encryptedCredential = "string"
    host = ?
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    port = ?
    trustedCertPath = ?
    username = ?
    useSystemTrustStore = ?
  }
}

对于 Informix,请使用:

{
  type = "Informix"
  typeProperties = {
    authenticationType = ?
    connectionString = ?
    credential = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential = "string"
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    userName = ?
  }
}

对于 Jira,请使用:

{
  type = "Jira"
  typeProperties = {
    encryptedCredential = "string"
    host = ?
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    port = ?
    useEncryptedEndpoints = ?
    useHostVerification = ?
    usePeerVerification = ?
    username = ?
  }
}

对于 LakeHouse,请使用:

{
  type = "LakeHouse"
  typeProperties = {
    artifactId = ?
    encryptedCredential = "string"
    servicePrincipalCredential = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalCredentialType = ?
    servicePrincipalId = ?
    servicePrincipalKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    tenant = ?
    workspaceId = ?
  }
}

对于 Magento,请使用:

{
  type = "Magento"
  typeProperties = {
    accessToken = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential = "string"
    host = ?
    useEncryptedEndpoints = ?
    useHostVerification = ?
    usePeerVerification = ?
  }
}

对于 MariaDB,请使用:

{
  type = "MariaDB"
  typeProperties = {
    connectionString = ?
    database = ?
    driverVersion = ?
    encryptedCredential = "string"
    password = {
      secretName = ?
      secretVersion = ?
      store = {
        parameters = {
          {customized property} = ?
        }
        referenceName = "string"
        type = "string"
      }
      type = "string"
    }
    port = ?
    server = ?
    sslMode = ?
    username = ?
    useSystemTrustStore = ?
  }
}

对于 Marketo,请使用:

{
  type = "Marketo"
  typeProperties = {
    clientId = ?
    clientSecret = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential = "string"
    endpoint = ?
    useEncryptedEndpoints = ?
    useHostVerification = ?
    usePeerVerification = ?
  }
}

对于 MicrosoftAccess,请使用:

{
  type = "MicrosoftAccess"
  typeProperties = {
    authenticationType = ?
    connectionString = ?
    credential = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential = "string"
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    userName = ?
  }
}

对于 MongoDb,请使用:

{
  type = "MongoDb"
  typeProperties = {
    allowSelfSignedServerCert = ?
    authenticationType = "string"
    authSource = ?
    databaseName = ?
    enableSsl = ?
    encryptedCredential = "string"
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    port = ?
    server = ?
    username = ?
  }
}

对于 MongoDbAtlas,请使用:

{
  type = "MongoDbAtlas"
  typeProperties = {
    connectionString = ?
    database = ?
    driverVersion = ?
  }
}

对于 MongoDbV2,请使用:

{
  type = "MongoDbV2"
  typeProperties = {
    connectionString = ?
    database = ?
  }
}

对于 MySql,请使用:

{
  type = "MySql"
  typeProperties = {
    allowZeroDateTime = ?
    connectionString = ?
    connectionTimeout = ?
    convertZeroDateTime = ?
    database = ?
    driverVersion = ?
    encryptedCredential = "string"
    guidFormat = ?
    password = {
      secretName = ?
      secretVersion = ?
      store = {
        parameters = {
          {customized property} = ?
        }
        referenceName = "string"
        type = "string"
      }
      type = "string"
    }
    port = ?
    server = ?
    sslCert = ?
    sslKey = ?
    sslMode = ?
    treatTinyAsBoolean = ?
    username = ?
    useSystemTrustStore = ?
  }
}

对于 Netezza,请使用:

{
  type = "Netezza"
  typeProperties = {
    connectionString = ?
    encryptedCredential = "string"
    pwd = {
      secretName = ?
      secretVersion = ?
      store = {
        parameters = {
          {customized property} = ?
        }
        referenceName = "string"
        type = "string"
      }
      type = "string"
    }
  }
}

对于 OData,请使用:

{
  type = "OData"
  typeProperties = {
    aadResourceId = ?
    aadServicePrincipalCredentialType = "string"
    authenticationType = "string"
    authHeaders = ?
    azureCloudType = ?
    encryptedCredential = "string"
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalEmbeddedCert = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalEmbeddedCertPassword = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalId = ?
    servicePrincipalKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    tenant = ?
    url = ?
    userName = ?
  }
}

对于 Odbc,请使用:

{
  type = "Odbc"
  typeProperties = {
    authenticationType = ?
    connectionString = ?
    credential = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential = "string"
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    userName = ?
  }
}

对于 Office365,请使用:

{
  type = "Office365"
  typeProperties = {
    encryptedCredential = "string"
    office365TenantId = ?
    servicePrincipalId = ?
    servicePrincipalKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalTenantId = ?
  }
}

对于 Oracle,请使用:

{
  type = "Oracle"
  typeProperties = {
    connectionString = ?
    encryptedCredential = "string"
    password = {
      secretName = ?
      secretVersion = ?
      store = {
        parameters = {
          {customized property} = ?
        }
        referenceName = "string"
        type = "string"
      }
      type = "string"
    }
  }
}

对于 OracleCloudStorage,请使用:

{
  type = "OracleCloudStorage"
  typeProperties = {
    accessKeyId = ?
    encryptedCredential = "string"
    secretAccessKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    serviceUrl = ?
  }
}

对于 OracleServiceCloud,请使用:

{
  type = "OracleServiceCloud"
  typeProperties = {
    encryptedCredential = "string"
    host = ?
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    useEncryptedEndpoints = ?
    useHostVerification = ?
    usePeerVerification = ?
    username = ?
  }
}

对于 PayPal,请使用:

{
  type = "Paypal"
  typeProperties = {
    clientId = ?
    clientSecret = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential = "string"
    host = ?
    useEncryptedEndpoints = ?
    useHostVerification = ?
    usePeerVerification = ?
  }
}

对于 Phoenix,请使用:

{
  type = "Phoenix"
  typeProperties = {
    allowHostNameCNMismatch = ?
    allowSelfSignedServerCert = ?
    authenticationType = "string"
    enableSsl = ?
    encryptedCredential = "string"
    host = ?
    httpPath = ?
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    port = ?
    trustedCertPath = ?
    username = ?
    useSystemTrustStore = ?
  }
}

对于 PostgreSql,请使用:

{
  type = "PostgreSql"
  typeProperties = {
    connectionString = ?
    encryptedCredential = "string"
    password = {
      secretName = ?
      secretVersion = ?
      store = {
        parameters = {
          {customized property} = ?
        }
        referenceName = "string"
        type = "string"
      }
      type = "string"
    }
  }
}

对于 PostgreSqlV2,请使用:

{
  type = "PostgreSqlV2"
  typeProperties = {
    authenticationType = ?
    commandTimeout = ?
    connectionTimeout = ?
    database = ?
    encoding = ?
    encryptedCredential = "string"
    logParameters = ?
    password = {
      secretName = ?
      secretVersion = ?
      store = {
        parameters = {
          {customized property} = ?
        }
        referenceName = "string"
        type = "string"
      }
      type = "string"
    }
    pooling = ?
    port = ?
    readBufferSize = ?
    schema = ?
    server = ?
    sslCertificate = ?
    sslKey = ?
    sslMode = ?
    sslPassword = ?
    timezone = ?
    trustServerCertificate = ?
    username = ?
  }
}

对于 Presto,请使用:

{
  type = "Presto"
  typeProperties = {
    allowHostNameCNMismatch = ?
    allowSelfSignedServerCert = ?
    authenticationType = "string"
    catalog = ?
    enableSsl = ?
    encryptedCredential = "string"
    host = ?
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    port = ?
    serverVersion = ?
    timeZoneID = ?
    trustedCertPath = ?
    username = ?
    useSystemTrustStore = ?
  }
}

对于 QuickBooks,请使用:

{
  type = "QuickBooks"
  typeProperties = {
    accessToken = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    accessTokenSecret = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    companyId = ?
    connectionProperties = ?
    consumerKey = ?
    consumerSecret = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential = "string"
    endpoint = ?
    useEncryptedEndpoints = ?
  }
}

对于 Quickbase,请使用:

{
  type = "Quickbase"
  typeProperties = {
    encryptedCredential = "string"
    url = ?
    userToken = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
  }
}

对于 Responsys,请使用:

{
  type = "Responsys"
  typeProperties = {
    clientId = ?
    clientSecret = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential = "string"
    endpoint = ?
    useEncryptedEndpoints = ?
    useHostVerification = ?
    usePeerVerification = ?
  }
}

对于 RestService,请使用:

{
  type = "RestService"
  typeProperties = {
    aadResourceId = ?
    authenticationType = "string"
    authHeaders = ?
    azureCloudType = ?
    clientId = ?
    clientSecret = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    credential = {
      referenceName = "string"
      type = "string"
    }
    enableServerCertificateValidation = ?
    encryptedCredential = "string"
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    resource = ?
    scope = ?
    servicePrincipalCredentialType = ?
    servicePrincipalEmbeddedCert = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalEmbeddedCertPassword = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalId = ?
    servicePrincipalKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    tenant = ?
    tokenEndpoint = ?
    url = ?
    userName = ?
  }
}

对于 Salesforce,请使用:

{
  type = "Salesforce"
  typeProperties = {
    apiVersion = ?
    encryptedCredential = "string"
    environmentUrl = ?
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    securityToken = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    username = ?
  }
}

对于 SalesforceMarketingCloud,请使用:

{
  type = "SalesforceMarketingCloud"
  typeProperties = {
    clientId = ?
    clientSecret = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    connectionProperties = ?
    encryptedCredential = "string"
    useEncryptedEndpoints = ?
    useHostVerification = ?
    usePeerVerification = ?
  }
}

对于 SalesforceServiceCloud,请使用:

{
  type = "SalesforceServiceCloud"
  typeProperties = {
    apiVersion = ?
    encryptedCredential = "string"
    environmentUrl = ?
    extendedProperties = ?
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    securityToken = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    username = ?
  }
}

对于 SalesforceServiceCloudV2,请使用:

{
  type = "SalesforceServiceCloudV2"
  typeProperties = {
    apiVersion = ?
    authenticationType = ?
    clientId = ?
    clientSecret = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential = "string"
    environmentUrl = ?
  }
}

对于 SalesforceV2,请使用:

{
  type = "SalesforceV2"
  typeProperties = {
    apiVersion = ?
    authenticationType = ?
    clientId = ?
    clientSecret = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential = "string"
    environmentUrl = ?
  }
}

对于 SapBW,请使用:

{
  type = "SapBW"
  typeProperties = {
    clientId = ?
    encryptedCredential = "string"
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    server = ?
    systemNumber = ?
    userName = ?
  }
}

对于 sapCloudForCustomer,请使用:

{
  type = "SapCloudForCustomer"
  typeProperties = {
    encryptedCredential = "string"
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    url = ?
    username = ?
  }
}

对于 SapEcc,请使用:

{
  type = "SapEcc"
  typeProperties = {
    encryptedCredential = "string"
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    url = ?
    username = ?
  }
}

对于 SapHana,请使用:

{
  type = "SapHana"
  typeProperties = {
    authenticationType = "string"
    connectionString = ?
    encryptedCredential = "string"
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    server = ?
    userName = ?
  }
}

对于 sapOdp,请使用:

{
  type = "SapOdp"
  typeProperties = {
    clientId = ?
    encryptedCredential = "string"
    language = ?
    logonGroup = ?
    messageServer = ?
    messageServerService = ?
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    server = ?
    sncLibraryPath = ?
    sncMode = ?
    sncMyName = ?
    sncPartnerName = ?
    sncQop = ?
    subscriberName = ?
    systemId = ?
    systemNumber = ?
    userName = ?
    x509CertificatePath = ?
  }
}

对于 SapOpenHub,请使用:

{
  type = "SapOpenHub"
  typeProperties = {
    clientId = ?
    encryptedCredential = "string"
    language = ?
    logonGroup = ?
    messageServer = ?
    messageServerService = ?
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    server = ?
    systemId = ?
    systemNumber = ?
    userName = ?
  }
}

对于 SapTable,请使用:

{
  type = "SapTable"
  typeProperties = {
    clientId = ?
    encryptedCredential = "string"
    language = ?
    logonGroup = ?
    messageServer = ?
    messageServerService = ?
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    server = ?
    sncLibraryPath = ?
    sncMode = ?
    sncMyName = ?
    sncPartnerName = ?
    sncQop = ?
    systemId = ?
    systemNumber = ?
    userName = ?
  }
}

对于 ServiceNow,请使用:

{
  type = "ServiceNow"
  typeProperties = {
    authenticationType = "string"
    clientId = ?
    clientSecret = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential = "string"
    endpoint = ?
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    useEncryptedEndpoints = ?
    useHostVerification = ?
    usePeerVerification = ?
    username = ?
  }
}

对于 ServiceNowV2,请使用:

{
  type = "ServiceNowV2"
  typeProperties = {
    authenticationType = "string"
    clientId = ?
    clientSecret = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential = "string"
    endpoint = ?
    grantType = ?
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    username = ?
  }
}

对于 Sftp,请使用:

{
  type = "Sftp"
  typeProperties = {
    authenticationType = "string"
    encryptedCredential = "string"
    host = ?
    hostKeyFingerprint = ?
    passPhrase = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    port = ?
    privateKeyContent = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    privateKeyPath = ?
    skipHostKeyValidation = ?
    userName = ?
  }
}

对于 SharePointOnlineList,请使用:

{
  type = "SharePointOnlineList"
  typeProperties = {
    encryptedCredential = "string"
    servicePrincipalCredentialType = ?
    servicePrincipalEmbeddedCert = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalEmbeddedCertPassword = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalId = ?
    servicePrincipalKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    siteUrl = ?
    tenantId = ?
  }
}

对于 Shopify,请使用:

{
  type = "Shopify"
  typeProperties = {
    accessToken = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential = "string"
    host = ?
    useEncryptedEndpoints = ?
    useHostVerification = ?
    usePeerVerification = ?
  }
}

对于 Smartsheet,请使用:

{
  type = "Smartsheet"
  typeProperties = {
    apiToken = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential = "string"
  }
}

对于 Snowflake,请使用:

{
  type = "Snowflake"
  typeProperties = {
    connectionString = ?
    encryptedCredential = "string"
    password = {
      secretName = ?
      secretVersion = ?
      store = {
        parameters = {
          {customized property} = ?
        }
        referenceName = "string"
        type = "string"
      }
      type = "string"
    }
  }
}

对于 SnowflakeV2,请使用:

{
  type = "SnowflakeV2"
  typeProperties = {
    accountIdentifier = ?
    authenticationType = "string"
    clientId = ?
    clientSecret = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    database = ?
    encryptedCredential = "string"
    host = ?
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    privateKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    privateKeyPassphrase = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    scope = ?
    tenantId = ?
    user = ?
    warehouse = ?
  }
}

对于 Spark,请使用:

{
  type = "Spark"
  typeProperties = {
    allowHostNameCNMismatch = ?
    allowSelfSignedServerCert = ?
    authenticationType = "string"
    enableSsl = ?
    encryptedCredential = "string"
    host = ?
    httpPath = ?
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    port = ?
    serverType = "string"
    thriftTransportProtocol = "string"
    trustedCertPath = ?
    username = ?
    useSystemTrustStore = ?
  }
}

对于 sqlServer,请使用:

{
  type = "SqlServer"
  typeProperties = {
    alwaysEncryptedSettings = {
      alwaysEncryptedAkvAuthType = "string"
      credential = {
        referenceName = "string"
        type = "string"
      }
      servicePrincipalId = ?
      servicePrincipalKey = {
        type = "string"
        // For remaining properties, see SecretBase objects
      }
    }
    applicationIntent = ?
    authenticationType = "string"
    commandTimeout = ?
    connectionString = ?
    connectRetryCount = ?
    connectRetryInterval = ?
    connectTimeout = ?
    credential = {
      referenceName = "string"
      type = "string"
    }
    database = ?
    encrypt = ?
    encryptedCredential = "string"
    failoverPartner = ?
    hostNameInCertificate = ?
    integratedSecurity = ?
    loadBalanceTimeout = ?
    maxPoolSize = ?
    minPoolSize = ?
    multipleActiveResultSets = ?
    multiSubnetFailover = ?
    packetSize = ?
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    pooling = ?
    server = ?
    trustServerCertificate = ?
    userName = ?
  }
}

对于 平方,请使用:

{
  type = "Square"
  typeProperties = {
    clientId = ?
    clientSecret = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    connectionProperties = ?
    encryptedCredential = "string"
    host = ?
    redirectUri = ?
    useEncryptedEndpoints = ?
    useHostVerification = ?
    usePeerVerification = ?
  }
}

对于 Sybase,请使用:

{
  type = "Sybase"
  typeProperties = {
    authenticationType = "string"
    database = ?
    encryptedCredential = "string"
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    schema = ?
    server = ?
    username = ?
  }
}

对于 TeamDesk,请使用:

{
  type = "TeamDesk"
  typeProperties = {
    apiToken = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    authenticationType = "string"
    encryptedCredential = "string"
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    url = ?
    userName = ?
  }
}

对于 Teradata,请使用:

{
  type = "Teradata"
  typeProperties = {
    authenticationType = "string"
    connectionString = ?
    encryptedCredential = "string"
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    server = ?
    username = ?
  }
}

对于 Twilio,请使用:

{
  type = "Twilio"
  typeProperties = {
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    userName = ?
  }
}

对于 Vertica,请使用:

{
  type = "Vertica"
  typeProperties = {
    connectionString = ?
    database = ?
    encryptedCredential = "string"
    port = ?
    pwd = {
      secretName = ?
      secretVersion = ?
      store = {
        parameters = {
          {customized property} = ?
        }
        referenceName = "string"
        type = "string"
      }
      type = "string"
    }
    server = ?
    uid = ?
  }
}

对于 仓库,请使用:

{
  type = "Warehouse"
  typeProperties = {
    artifactId = ?
    encryptedCredential = "string"
    endpoint = ?
    servicePrincipalCredential = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    servicePrincipalCredentialType = ?
    servicePrincipalId = ?
    servicePrincipalKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    tenant = ?
    workspaceId = ?
  }
}

对于 Web,请使用:

{
  type = "Web"
  typeProperties = {
    url = ?
    authenticationType = "string"
    // For remaining properties, see WebLinkedServiceTypeProperties objects
  }
}

对于 Xero,请使用:

{
  type = "Xero"
  typeProperties = {
    connectionProperties = ?
    consumerKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    encryptedCredential = "string"
    host = ?
    privateKey = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    useEncryptedEndpoints = ?
    useHostVerification = ?
    usePeerVerification = ?
  }
}

对于 Zendesk,请使用:

{
  type = "Zendesk"
  typeProperties = {
    apiToken = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    authenticationType = "string"
    encryptedCredential = "string"
    password = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    url = ?
    userName = ?
  }
}

对于 Zoho,请使用:

{
  type = "Zoho"
  typeProperties = {
    accessToken = {
      type = "string"
      // For remaining properties, see SecretBase objects
    }
    connectionProperties = ?
    encryptedCredential = "string"
    endpoint = ?
    useEncryptedEndpoints = ?
    useHostVerification = ?
    usePeerVerification = ?
  }
}

SecretBase 对象

设置 类型 属性以指定对象的类型。

对于 AzureKeyVaultSecret,请使用:

{
  secretName = ?
  secretVersion = ?
  store = {
    parameters = {
      {customized property} = ?
    }
    referenceName = "string"
    type = "string"
  }
  type = "AzureKeyVaultSecret"
}

对于 SecureString,请使用:

{
  type = "SecureString"
  value = "string"
}

属性值

AmazonMWSLinkedService

名字 描述 价值
类型 链接服务的类型。 “AmazonMWS”(必需)
typeProperties Amazon Marketplace Web Service 链接服务属性。 AmazonMWSLinkedServiceTypeProperties(必需)

AmazonMWSLinkedServiceTypeProperties

名字 描述 价值
accessKeyId 用于访问数据的访问密钥 ID。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
端点 AmazonMWS 服务器的终结点(即 mws.amazonservices.com) 任何(必需)
marketplaceID 要从中检索数据的 Amazon 市场 ID。 若要从多个市场 ID 检索数据,请用逗号(,)将它们分隔开来。 (即A2EUQ1WTGCTBG2) 任何(必需)
mwsAuthToken AmazonMWS 身份验证令牌。 SecretBase
secretKey 用于访问数据的密钥。 SecretBase
sellerID 亚马逊卖家 ID。 任何(必需)
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何

AmazonRdsForLinkedServiceTypeProperties

名字 描述 价值
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 连接字符串中密码的 Azure Key Vault 机密引用。 SecretBase

AmazonRdsForOracleLinkedService

名字 描述 价值
类型 链接服务的类型。 “AmazonRdsForOracle”(必需)
typeProperties AmazonRdsForOracle 数据库链接服务属性。 AmazonRdsForLinkedServiceTypeProperties (必需)

AmazonRdsForSqlServerLinkedService

名字 描述 价值
类型 链接服务的类型。 “AmazonRdsForSqlServer”(必需)
typeProperties Amazon RDS for SQL Server 链接服务属性。 AmazonRdsForSqlServerLinkedServiceTypeProperties (必需)

AmazonRdsForSqlServerLinkedServiceTypeProperties

名字 描述 价值
alwaysEncryptedSettings Sql 始终加密属性。 SqlAlwaysEncryptedProperties
applicationIntent 连接到服务器时的应用程序工作负荷类型,由建议的版本使用。 可能的值为 ReadOnly 和 ReadWrite。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于身份验证的类型。 类型:字符串。 “SQL”
“Windows”
commandTimeout 在终止尝试执行命令并生成错误之前(以秒为单位)的默认等待时间(以秒为单位),由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
connectRetryCount 确定有空闲连接失败(由建议的版本使用)后尝试的重新连接数。 这必须是介于 0 和 255 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectRetryInterval 确定建议的版本使用空闲连接失败后,每个重新连接尝试之间的时间(以秒为单位)。 这必须是介于 1 和 60 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectTimeout 在终止尝试并生成由建议版本使用的错误之前,等待与服务器的连接的时间长度(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
数据库 建议的版本使用的数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
加密 指示客户端和服务器之间发送的所有数据是否需要 TLS 加密(由建议的版本使用)。 可能的值为 true/yes/mandatory、false/no/optional 和 strict。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
failoverPartner 如果主服务器关闭(由建议的版本使用)连接到的伙伴服务器的名称或地址。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
hostNameInCertificate 验证连接的服务器证书时要使用的主机名。 如果未指定,则数据源中的服务器名称用于证书验证,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
integratedSecurity 指示是否在连接(如果为 false)中指定用户 ID 和密码,或者当前 Windows 帐户凭据是否用于身份验证(如果为 true),由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
loadBalanceTimeout 在被建议的版本使用之前,连接在连接池中生存的最短时间(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
maxPoolSize 此特定连接字符串的连接池中允许的最大连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
minPoolSize 此特定连接字符串的连接池中允许的最小连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
multipleActiveResultSets 如果为 true,应用程序可以维护多个活动结果集(MARS)。 如果为 false,应用程序必须处理或取消一个批处理中的所有结果集,然后才能在该连接上执行任何其他批处理(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
multiSubnetFailover 如果应用程序连接到不同子网上的 AlwaysOn 可用性组(AG),则设置 MultiSubnetFailover=true 可以更快地检测和连接到(当前)活动服务器(当前)活动服务器(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
packetSize 用于与服务器实例通信的网络数据包的大小(以字节为单位,由建议的版本使用)。 类型:整数(或包含 resultType 整数的表达式)。 任何
密码 本地 Windows 身份验证密码。 SecretBase
指示每次请求连接时,连接是共用的还是显式打开的,由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
服务器 要连接到的 SQL Server 实例的名称或网络地址,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
trustServerCertificate 指示通道是否在绕过证书链来验证推荐版本使用的信任时是否加密通道。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
userName 本地 Windows 身份验证用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AmazonRedshiftLinkedService

名字 描述 价值
类型 链接服务的类型。 “AmazonRedshift”(必需)
typeProperties Amazon Redshift 链接服务属性。 AmazonRedshiftLinkedServiceTypeProperties(必需)

AmazonRedshiftLinkedServiceTypeProperties

名字 描述 价值
数据库 Amazon Redshift 源的数据库名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 Amazon Redshift 源的密码。 SecretBase
港口 Amazon Redshift 服务器用来侦听客户端连接的 TCP 端口号。 默认值为 5439。 类型:整数(或包含 resultType 整数的表达式)。 任何
服务器 Amazon Redshift 服务器的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
username Amazon Redshift 源的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AmazonS3CompatibleLinkedService

名字 描述 价值
类型 链接服务的类型。 “AmazonS3Compatible”(必需)
typeProperties Amazon S3 兼容链接服务属性。 AmazonS3CompatibleLinkedServiceTypeProperties (必需)

AmazonS3CompatibleLinkedServiceTypeProperties

名字 描述 价值
accessKeyId Amazon S3 兼容标识和访问管理(IAM)用户的访问密钥标识符。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
forcePathStyle 如果为 true,请使用 S3 路径样式访问,而不是虚拟托管样式的访问。 默认值为 false。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
secretAccessKey Amazon S3 兼容标识和访问管理 (IAM) 用户的机密访问密钥。 SecretBase
serviceUrl 此值指定要使用 Amazon S3 兼容连接器访问的终结点。 这是一个可选属性;仅当想要尝试其他服务终结点或想要在 https 和 http 之间切换时更改它。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AmazonS3LinkedService

名字 描述 价值
类型 链接服务的类型。 “AmazonS3”(必需)
typeProperties Amazon S3 链接服务属性。 AmazonS3LinkedServiceTypeProperties(必需)

AmazonS3LinkedServiceTypeProperties

名字 描述 价值
accessKeyId Amazon S3 标识和访问管理(IAM)用户的访问密钥标识符。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType S3 的身份验证类型。 允许的值:AccessKey(默认值)或 TemporarySecurityCredentials。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
secretAccessKey Amazon S3 标识和访问管理(IAM)用户的机密访问密钥。 SecretBase
serviceUrl 此值指定要使用 S3 连接器访问的终结点。 这是一个可选属性;仅当想要尝试其他服务终结点或想要在 https 和 http 之间切换时更改它。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sessionToken S3 临时安全凭据的会话令牌。 SecretBase

AppFiguresLinkedService

名字 描述 价值
类型 链接服务的类型。 “AppFigures”(必需)
typeProperties AppFigures 链接服务属性。 AppFiguresLinkedServiceTypeProperties(必需)

AppFiguresLinkedServiceTypeProperties

名字 描述 价值
clientKey AppFigures 源的客户端密钥。 SecretBase(必需)
密码 AppFigures 源的密码。 SecretBase(必需)
userName Appfigures 源的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

AsanaLinkedService

名字 描述 价值
类型 链接服务的类型。 “Asana”(必需)
typeProperties Asana 链接服务属性。 AsanaLinkedServiceTypeProperties (必需)

AsanaLinkedServiceTypeProperties

名字 描述 价值
apiToken Asana 源的 API 令牌。 SecretBase(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串

AzureBatchLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureBatch”(必需)
typeProperties Azure Batch 链接服务属性。 AzureBatchLinkedServiceTypeProperties (必需)

AzureBatchLinkedServiceTypeProperties

名字 描述 价值
accessKey Azure Batch 帐户访问密钥。 SecretBase
accountName Azure Batch 帐户名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
batchUri Azure Batch URI。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
凭据 包含身份验证信息的凭据引用。 CredentialReference
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
linkedServiceName Azure 存储链接服务参考。 LinkedServiceReference(必需)
poolName Azure Batch 池名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

AzureBlobFSLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureBlobFS”(必需)
typeProperties Azure Data Lake Storage Gen2 链接服务属性。 AzureBlobFSLinkedServiceTypeProperties(必需)

AzureBlobFSLinkedServiceTypeProperties

名字 描述 价值
accountKey Azure Data Lake Storage Gen2 服务的帐户密钥。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
azureCloudType 指示服务主体身份验证的 Azure 云类型。允许的值为 AzurePublic、AzureChina、AzureUsGovernment、AzureGermany。 默认值为数据工厂区域的云类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
sasToken sasToken 的 Azure 密钥保管库机密引用在 sas uri 中。 SecretBase
sasUri Azure Data Lake Storage Gen2 服务的 SAS URI。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId 用于对 Azure Data Lake Storage Gen2 帐户进行身份验证的应用程序的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Azure Data Lake Storage Gen2 帐户进行身份验证的应用程序密钥。 SecretBase
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
url Azure Data Lake Storage Gen2 服务的终结点。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureBlobStorageLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureBlobStorage”(必需)
typeProperties Azure Blob 存储链接服务属性。 AzureBlobStorageLinkedServiceTypeProperties(必需)

AzureBlobStorageLinkedServiceTypeProperties

名字 描述 价值
accountKey 连接字符串中 accountKey 的 Azure 密钥保管库机密引用。 AzureKeyVaultSecretReference
accountKind 指定存储帐户的类型。 允许的值为:存储(常规用途 v1)、StorageV2(常规用途 v2)、BlobStorage 或 BlockBlobStorage。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于身份验证的类型。 类型:字符串。 “AccountKey”
“Anonymous”
“Msi”
“SasUri”
“ServicePrincipal”
azureCloudType 指示服务主体身份验证的 Azure 云类型。允许的值为 AzurePublic、AzureChina、AzureUsGovernment、AzureGermany。 默认值为数据工厂区域的云类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
connectionString 连接字符串。 它与 sasUri、serviceEndpoint 属性互斥。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
containerUri Azure Blob 存储资源的容器 URI 仅支持匿名访问。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
sasToken sasToken 的 Azure 密钥保管库机密引用在 sas uri 中。 AzureKeyVaultSecretReference
sasUri Azure Blob 存储资源的 SAS URI。 它与 connectionString、serviceEndpoint 属性互斥。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
serviceEndpoint Azure Blob 存储资源的 Blob 服务终结点。 它与 connectionString、sasUri 属性互斥。 任何
servicePrincipalId 用于对 Azure SQL 数据仓库进行身份验证的服务主体的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Azure SQL 数据仓库进行身份验证的服务主体的密钥。 SecretBase
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureDatabricksDeltaLakeLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureDatabricksDeltaLake”(必需)
typeProperties Azure Databricks Delta Lake 链接服务属性。 AzureDatabricksDetltaLakeLinkedServiceTypeProperties (必需)

AzureDatabricksDetltaLakeLinkedServiceTypeProperties

名字 描述 价值
accessToken databricks REST API 的访问令牌。 请参阅 https://docs.azuredatabricks.net/api/latest/authentication.html。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 SecretBase
clusterId 将用于此作业的所有运行的现有交互式群集的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
<区域>.azuredatabricks.net,即 Databricks 部署的域名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
workspaceResourceId databricks REST API 的工作区资源 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureDatabricksLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureDatabricks”(必需)
typeProperties Azure Databricks 链接服务属性。 AzureDatabricksLinkedServiceTypeProperties(必需)

AzureDatabricksLinkedServiceTypeProperties

名字 描述 价值
accessToken databricks REST API 的访问令牌。 请参阅 https://docs.azuredatabricks.net/api/latest/authentication.html。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
认证 如果对 databricks REST API 使用工作区资源 ID,则需要指定 MSI。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
<区域>.azuredatabricks.net,即 Databricks 部署的域名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
existingClusterId 将用于此活动的所有运行的现有交互式群集的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
instancePoolId 将用于此活动的所有运行的现有实例池的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
newClusterCustomTags 群集资源的其他标记。 实例池配置中忽略此属性。 AzureDatabricksLinkedServiceTypePropertiesNewClusterCustomTags
newClusterDriverNodeType 新作业群集的驱动程序节点类型。 实例池配置中忽略此属性。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
newClusterEnableElasticDisk 在新群集上启用弹性磁盘。 此属性现已被忽略,并采用 Databricks 中的默认弹性磁盘行为(始终启用弹性磁盘)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
newClusterInitScripts 新群集的用户定义的初始化脚本。 类型:字符串数组(或包含字符串 resultType 数组的表达式)。 任何
newClusterLogDestination 指定用于传送 Spark 驱动程序、辅助角色和事件日志的位置。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
newClusterNodeType 新作业群集的节点类型。 如果指定 newClusterVersion 且未指定 instancePoolId,则此属性是必需的。 如果指定了 instancePoolId,则忽略此属性。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
newClusterNumOfWorker 如果未使用现有的交互式群集,则指定用于新作业群集或实例池的工作器节点数。 对于新的作业群集,此字符串格式的 Int32(如“1”表示 numOfWorker 为 1 或“1:10”表示从 1(最小值)自动缩放到 10(最大值)。 例如,池是字符串格式的 Int32,只能指定固定数量的工作节点,例如“2”。 如果指定 newClusterVersion,则为必需。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
newClusterSparkConf 一组可选的用户指定的 Spark 配置键值对。 AzureDatabricksLinkedServiceTypePropertiesNewClusterSparkConf
newClusterSparkEnvVars 一组可选的用户指定的 Spark 环境变量键值对。 AzureDatabricksLinkedServiceTypePropertiesNewClusterSparkEnvVars
newClusterVersion 如果未使用现有的交互式群集,则指定为此活动的每个运行创建的新作业群集或实例池节点的 Spark 版本。 如果指定了 instancePoolId,则为必需。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
policyId 用于限制基于用户定义的规则集配置群集的功能的策略 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
workspaceResourceId databricks REST API 的工作区资源 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureDatabricksLinkedServiceTypePropertiesNewClusterCustomTags

名字 描述 价值

AzureDatabricksLinkedServiceTypePropertiesNewClusterSparkConf

名字 描述 价值

AzureDatabricksLinkedServiceTypePropertiesNewClusterSparkEnvVars

名字 描述 价值

AzureDataExplorerLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureDataExplorer”(必需)
typeProperties Azure 数据资源管理器(Kusto)链接服务属性。 AzureDataExplorerLinkedServiceTypeProperties(必需)

AzureDataExplorerLinkedServiceTypeProperties

名字 描述 价值
凭据 包含身份验证信息的凭据引用。 CredentialReference
数据库 连接的数据库名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
端点 Azure 数据资源管理器的终结点(引擎的终结点)。 URL 的格式为 clusterName>https://<。<regionName>.kusto.windows.net。 类型:字符串(或带有 resultType 字符串的表达式) 任何(必需)
servicePrincipalId 用于对 Azure 数据资源管理器进行身份验证的服务主体的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Kusto 进行身份验证的服务主体的密钥。 SecretBase
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureDataLakeAnalyticsLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureDataLakeAnalytics”(必需)
typeProperties Azure Data Lake Analytics 链接服务属性。 AzureDataLakeAnalyticsLinkedServiceTypeProperties (必需)

AzureDataLakeAnalyticsLinkedServiceTypeProperties

名字 描述 价值
accountName Azure Data Lake Analytics 帐户名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
dataLakeAnalyticsUri Azure Data Lake Analytics URI 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
resourceGroupName Data Lake Analytics 帐户资源组名称(如果不同于数据工厂帐户)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId 用于对 Azure Data Lake Analytics 帐户进行身份验证的应用程序 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Azure Data Lake Analytics 帐户进行身份验证的应用程序密钥。 SecretBase
subscriptionId Data Lake Analytics 帐户订阅 ID(如果不同于数据工厂帐户)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

AzureDataLakeStoreLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureDataLakeStore”(必需)
typeProperties Azure Data Lake Store 链接服务属性。 AzureDataLakeStoreLinkedServiceTypeProperties(必需)

AzureDataLakeStoreLinkedServiceTypeProperties

名字 描述 价值
accountName Data Lake Store 帐户名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
azureCloudType 指示服务主体身份验证的 Azure 云类型。允许的值为 AzurePublic、AzureChina、AzureUsGovernment、AzureGermany。 默认值为数据工厂区域的云类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
dataLakeStoreUri Data Lake Store 服务 URI。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
resourceGroupName Data Lake Store 帐户资源组名称(如果不同于数据工厂帐户)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId 用于对 Azure Data Lake Store 帐户进行身份验证的应用程序的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Azure Data Lake Store 帐户进行身份验证的应用程序密钥。 SecretBase
subscriptionId Data Lake Store 帐户订阅 ID(如果不同于数据工厂帐户)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureFileStorageLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureFileStorage”(必需)
typeProperties Azure 文件存储链接服务属性。 AzureFileStorageLinkedServiceTypeProperties(必需)

AzureFileStorageLinkedServiceTypeProperties

名字 描述 价值
accountKey 连接字符串中 accountKey 的 Azure 密钥保管库机密引用。 AzureKeyVaultSecretReference
connectionString 连接字符串。 它与 sasUri 属性互斥。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
fileShare Azure 文件共享名称。 使用 accountKey/sasToken 进行身份验证时需要它。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
主机 服务器的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 用于登录服务器的密码。 SecretBase
sasToken sasToken 的 Azure 密钥保管库机密引用在 sas uri 中。 AzureKeyVaultSecretReference
sasUri Azure 文件资源的 SAS URI。 它与 connectionString 属性互斥。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
serviceEndpoint Azure 文件存储资源的文件服务终结点。 它与 connectionString、sasUri 属性互斥。 任何
快照 Azure 文件共享快照版本。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
userId 用于登录服务器的用户 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureFunctionLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureFunction”(必需)
typeProperties Azure Function 链接服务属性。 AzureFunctionLinkedServiceTypeProperties (必需)

AzureFunctionLinkedServiceTypeProperties

名字 描述 价值
认证 用于连接到 AzureFunction 的身份验证类型(需要指定 MSI)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
functionAppUrl Azure Function App 的终结点。 URL 的格式为 https://<accountName>.azurewebsites.net。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
functionKey Azure Function App 的函数或主机密钥。 SecretBase
resourceId Azure 函数的允许令牌访问群体。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureKeyVaultLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureKeyVault”(必需)
typeProperties Azure Key Vault 链接服务属性。 AzureKeyVaultLinkedServiceTypeProperties(必需)

AzureKeyVaultLinkedServiceTypeProperties

名字 描述 价值
baseUrl Azure Key Vault 的基 URL。 例如 https://myakv.vault.azure.net 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
凭据 包含身份验证信息的凭据引用。 CredentialReference

AzureKeyVaultSecretReference

名字 描述 价值
secretName Azure Key Vault 中机密的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
secretVersion Azure Key Vault 中的机密版本。 默认值为最新版本的机密。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
商店 Azure Key Vault 链接服务参考。 LinkedServiceReference(必需)
类型 机密的类型。 string (必需)

AzureKeyVaultSecretReference

名字 描述 价值
secretName Azure Key Vault 中机密的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
secretVersion Azure Key Vault 中的机密版本。 默认值为最新版本的机密。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
商店 Azure Key Vault 链接服务参考。 LinkedServiceReference(必需)
类型 机密的类型。 “AzureKeyVaultSecret”(必需)

AzureMariaDBLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureMariaDB”(必需)
typeProperties Azure Database for MariaDB 链接服务属性。 AzureMariaDBLinkedServiceTypeProperties(必需)

AzureMariaDBLinkedServiceTypeProperties

名字 描述 价值
connectionString ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
pwd 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference

AzureMLLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureML”(必需)
typeProperties Azure ML Studio Web 服务链接服务属性。 AzureMLLinkedServiceTypeProperties (必需)

AzureMLLinkedServiceTypeProperties

名字 描述 价值
apiKey 用于访问 Azure ML 模型终结点的 API 密钥。 SecretBase(必需)
认证 用于连接到 AzureML 的身份验证类型(需要指定 MSI)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
mlEndpoint Azure ML Studio Web 服务终结点的批处理执行 REST URL。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
servicePrincipalId 用于针对 Azure ML Studio Web 服务的基于 ARM 的 updateResourceEndpoint 进行身份验证的服务主体的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于针对 Azure ML Studio Web 服务的基于 ARM 的 updateResourceEndpoint 进行身份验证的服务主体的密钥。 SecretBase
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
updateResourceEndpoint Azure ML Studio Web 服务终结点的更新资源 REST URL。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureMLServiceLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureMLService”(必需)
typeProperties Azure ML 服务链接服务属性。 AzureMLServiceLinkedServiceTypeProperties (必需)

AzureMLServiceLinkedServiceTypeProperties

名字 描述 价值
认证 用于连接到 AzureML 的身份验证类型(需要指定 MSI)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
mlWorkspaceName Azure ML 服务工作区名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
resourceGroupName Azure ML 服务工作区资源组名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
servicePrincipalId 用于针对已发布 Azure ML 服务管道的终结点进行身份验证的服务主体的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于针对已发布 Azure ML 服务管道的终结点进行身份验证的服务主体的密钥。 SecretBase
subscriptionId Azure ML 服务工作区订阅 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureMySqlLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureMySql”(必需)
typeProperties Azure MySQL 数据库链接服务属性。 AzureMySqlLinkedServiceTypeProperties(必需)

AzureMySqlLinkedServiceTypeProperties

名字 描述 价值
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference

AzurePostgreSqlLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzurePostgreSql”(必需)
typeProperties Azure PostgreSQL 链接服务属性。 AzurePostgreSqlLinkedServiceTypeProperties (必需)

AzurePostgreSqlLinkedServiceTypeProperties

名字 描述 价值
commandTimeout 在尝试执行命令之前,等待时间(以秒为单位),然后再终止尝试并生成错误。 对于无穷大,设置为零。 类型:整数。 任何
connectionString ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
数据库 连接的数据库名称。 类型:字符串。 任何
编码 获取或设置用于对 PostgreSQL 字符串数据进行编码/解码的 .NET 编码。 类型:字符串 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference
港口 连接的端口。 类型:整数。 任何
readBufferSize 确定读取时内部缓冲区使用的大小。 如果从数据库传输大型值,则提高性能可能会提高。 类型:整数。 任何
服务器 连接的服务器名称。 类型:字符串。 任何
sslMode 用于连接的 SSL 模式。 类型:整数。 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. 类型:整数。 任何
超时 在终止尝试并生成错误之前,尝试建立连接的时间(以秒为单位)。 类型:整数。 任何
时区 获取或设置会话时区。 类型:字符串。 任何
trustServerCertificate 是否信任服务器证书而不验证它。 类型:布尔值。 任何
username 身份验证的用户名。 类型:字符串。 任何

AzureSearchLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureSearch”(必需)
typeProperties Windows Azure 搜索服务链接服务属性。 AzureSearchLinkedServiceTypeProperties(必需)

AzureSearchLinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
钥匙 Azure 搜索服务的管理密钥 SecretBase
url Azure 搜索服务的 URL。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

AzureSqlDatabaseLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureSqlDatabase”(必需)
typeProperties Azure SQL 数据库链接服务属性。 AzureSqlDatabaseLinkedServiceTypeProperties(必需)

AzureSqlDatabaseLinkedServiceTypeProperties

名字 描述 价值
alwaysEncryptedSettings Sql 始终加密属性。 SqlAlwaysEncryptedProperties
applicationIntent 连接到服务器时的应用程序工作负荷类型,由建议的版本使用。 可能的值为 ReadOnly 和 ReadWrite。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于身份验证的类型。 类型:字符串。 “ServicePrincipal”
“SQL”
“SystemAssignedManagedIdentity”
“UserAssignedManagedIdentity”
azureCloudType 指示服务主体身份验证的 Azure 云类型。允许的值为 AzurePublic、AzureChina、AzureUsGovernment、AzureGermany。 默认值为数据工厂区域的云类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
commandTimeout 在终止尝试执行命令并生成错误之前(以秒为单位)的默认等待时间(以秒为单位),由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
connectRetryCount 确定有空闲连接失败(由建议的版本使用)后尝试的重新连接数。 这必须是介于 0 和 255 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectRetryInterval 确定建议的版本使用空闲连接失败后,每个重新连接尝试之间的时间(以秒为单位)。 这必须是介于 1 和 60 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectTimeout 在终止尝试并生成由建议版本使用的错误之前,等待与服务器的连接的时间长度(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
数据库 建议的版本使用的数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
加密 指示客户端和服务器之间发送的所有数据是否需要 TLS 加密(由建议的版本使用)。 可能的值为 true/yes/mandatory、false/no/optional 和 strict。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
failoverPartner 如果主服务器关闭(由建议的版本使用)连接到的伙伴服务器的名称或地址。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
hostNameInCertificate 验证连接的服务器证书时要使用的主机名。 如果未指定,则数据源中的服务器名称用于证书验证,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
integratedSecurity 指示是否在连接(如果为 false)中指定用户 ID 和密码,或者当前 Windows 帐户凭据是否用于身份验证(如果为 true),由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
loadBalanceTimeout 在被建议的版本使用之前,连接在连接池中生存的最短时间(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
maxPoolSize 此特定连接字符串的连接池中允许的最大连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
minPoolSize 此特定连接字符串的连接池中允许的最小连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
multipleActiveResultSets 如果为 true,应用程序可以维护多个活动结果集(MARS)。 如果为 false,应用程序必须处理或取消一个批处理中的所有结果集,然后才能在该连接上执行任何其他批处理(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
multiSubnetFailover 如果应用程序连接到不同子网上的 AlwaysOn 可用性组(AG),则设置 MultiSubnetFailover=true 可以更快地检测和连接到(当前)活动服务器(当前)活动服务器(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
packetSize 用于与服务器实例通信的网络数据包的大小(以字节为单位,由建议的版本使用)。 类型:整数(或包含 resultType 整数的表达式)。 任何
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference
指示每次请求连接时,连接是共用的还是显式打开的,由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
服务器 要连接到的 SQL Server 实例的名称或网络地址,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId 用于对 Azure SQL 数据库进行身份验证的服务主体的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Azure SQL 数据库进行身份验证的服务主体的密钥。 SecretBase
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
trustServerCertificate 指示通道是否在绕过证书链来验证推荐版本使用的信任时是否加密通道。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
userName 连接到服务器时要使用的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureSqlDWLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureSqlDW”(必需)
typeProperties Azure SQL 数据仓库链接服务属性。 AzureSqlDWLinkedServiceTypeProperties (必需)

AzureSqlDWLinkedServiceTypeProperties

名字 描述 价值
applicationIntent 连接到服务器时的应用程序工作负荷类型,由建议的版本使用。 可能的值为 ReadOnly 和 ReadWrite。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于身份验证的类型。 类型:字符串。 “ServicePrincipal”
“SQL”
“SystemAssignedManagedIdentity”
“UserAssignedManagedIdentity”
azureCloudType 指示服务主体身份验证的 Azure 云类型。允许的值为 AzurePublic、AzureChina、AzureUsGovernment、AzureGermany。 默认值为数据工厂区域的云类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
commandTimeout 在终止尝试执行命令并生成错误之前(以秒为单位)的默认等待时间(以秒为单位),由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
connectRetryCount 确定有空闲连接失败(由建议的版本使用)后尝试的重新连接数。 这必须是介于 0 和 255 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectRetryInterval 确定建议的版本使用空闲连接失败后,每个重新连接尝试之间的时间(以秒为单位)。 这必须是介于 1 和 60 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectTimeout 在终止尝试并生成由建议版本使用的错误之前,等待与服务器的连接的时间长度(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
数据库 建议的版本使用的数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
加密 指示客户端和服务器之间发送的所有数据是否需要 TLS 加密(由建议的版本使用)。 可能的值为 true/yes/mandatory、false/no/optional 和 strict。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
failoverPartner 如果主服务器关闭(由建议的版本使用)连接到的伙伴服务器的名称或地址。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
hostNameInCertificate 验证连接的服务器证书时要使用的主机名。 如果未指定,则数据源中的服务器名称用于证书验证,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
integratedSecurity 指示是否在连接(如果为 false)中指定用户 ID 和密码,或者当前 Windows 帐户凭据是否用于身份验证(如果为 true),由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
loadBalanceTimeout 在被建议的版本使用之前,连接在连接池中生存的最短时间(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
maxPoolSize 此特定连接字符串的连接池中允许的最大连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
minPoolSize 此特定连接字符串的连接池中允许的最小连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
multipleActiveResultSets 如果为 true,应用程序可以维护多个活动结果集(MARS)。 如果为 false,应用程序必须处理或取消一个批处理中的所有结果集,然后才能在该连接上执行任何其他批处理(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
multiSubnetFailover 如果应用程序连接到不同子网上的 AlwaysOn 可用性组(AG),则设置 MultiSubnetFailover=true 可以更快地检测和连接到(当前)活动服务器(当前)活动服务器(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
packetSize 用于与服务器实例通信的网络数据包的大小(以字节为单位,由建议的版本使用)。 类型:整数(或包含 resultType 整数的表达式)。 任何
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference
指示每次请求连接时,连接是共用的还是显式打开的,由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
服务器 要连接到的 SQL Server 实例的名称或网络地址,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId 用于对 Azure SQL 数据仓库进行身份验证的服务主体的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Azure SQL 数据仓库进行身份验证的服务主体的密钥。 SecretBase
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
trustServerCertificate 指示通道是否在绕过证书链来验证推荐版本使用的信任时是否加密通道。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
userName 连接到服务器时要使用的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureSqlMILinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureSqlMI”(必需)
typeProperties Azure SQL 托管实例链接服务属性。 AzureSqlMILinkedServiceTypeProperties(必需)

AzureSqlMILinkedServiceTypeProperties

名字 描述 价值
alwaysEncryptedSettings Sql 始终加密属性。 SqlAlwaysEncryptedProperties
applicationIntent 连接到服务器时的应用程序工作负荷类型,由建议的版本使用。 可能的值为 ReadOnly 和 ReadWrite。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于身份验证的类型。 类型:字符串。 “ServicePrincipal”
“SQL”
“SystemAssignedManagedIdentity”
“UserAssignedManagedIdentity”
azureCloudType 指示服务主体身份验证的 Azure 云类型。允许的值为 AzurePublic、AzureChina、AzureUsGovernment、AzureGermany。 默认值为数据工厂区域的云类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
commandTimeout 在终止尝试执行命令并生成错误之前(以秒为单位)的默认等待时间(以秒为单位),由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
connectRetryCount 确定有空闲连接失败(由建议的版本使用)后尝试的重新连接数。 这必须是介于 0 和 255 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectRetryInterval 确定建议的版本使用空闲连接失败后,每个重新连接尝试之间的时间(以秒为单位)。 这必须是介于 1 和 60 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectTimeout 在终止尝试并生成由建议版本使用的错误之前,等待与服务器的连接的时间长度(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
数据库 建议的版本使用的数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
加密 指示客户端和服务器之间发送的所有数据是否需要 TLS 加密(由建议的版本使用)。 可能的值为 true/yes/mandatory、false/no/optional 和 strict。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
failoverPartner 如果主服务器关闭(由建议的版本使用)连接到的伙伴服务器的名称或地址。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
hostNameInCertificate 验证连接的服务器证书时要使用的主机名。 如果未指定,则数据源中的服务器名称用于证书验证,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
integratedSecurity 指示是否在连接(如果为 false)中指定用户 ID 和密码,或者当前 Windows 帐户凭据是否用于身份验证(如果为 true),由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
loadBalanceTimeout 在被建议的版本使用之前,连接在连接池中生存的最短时间(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
maxPoolSize 此特定连接字符串的连接池中允许的最大连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
minPoolSize 此特定连接字符串的连接池中允许的最小连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
multipleActiveResultSets 如果为 true,应用程序可以维护多个活动结果集(MARS)。 如果为 false,应用程序必须处理或取消一个批处理中的所有结果集,然后才能在该连接上执行任何其他批处理(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
multiSubnetFailover 如果应用程序连接到不同子网上的 AlwaysOn 可用性组(AG),则设置 MultiSubnetFailover=true 可以更快地检测和连接到(当前)活动服务器(当前)活动服务器(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
packetSize 用于与服务器实例通信的网络数据包的大小(以字节为单位,由建议的版本使用)。 类型:整数(或包含 resultType 整数的表达式)。 任何
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference
指示每次请求连接时,连接是共用的还是显式打开的,由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
服务器 要连接到的 SQL Server 实例的名称或网络地址,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId 用于对 Azure SQL 托管实例进行身份验证的服务主体的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Azure SQL 托管实例进行身份验证的服务主体的密钥。 SecretBase
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
trustServerCertificate 指示通道是否在绕过证书链来验证推荐版本使用的信任时是否加密通道。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
userName 连接到服务器时要使用的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureStorageLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureStorage”(必需)
typeProperties Azure 存储链接服务属性。 AzureStorageLinkedServiceTypeProperties(必需)

AzureStorageLinkedServiceTypeProperties

名字 描述 价值
accountKey 连接字符串中 accountKey 的 Azure 密钥保管库机密引用。 AzureKeyVaultSecretReference
connectionString 连接字符串。 它与 sasUri 属性互斥。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
sasToken sasToken 的 Azure 密钥保管库机密引用在 sas uri 中。 AzureKeyVaultSecretReference
sasUri Azure 存储资源的 SAS URI。 它与 connectionString 属性互斥。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何

AzureSynapseArtifactsLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureSynapseArtifacts”(必需)
typeProperties Azure Synapse Analytics (Artifacts) 链接服务属性。 AzureSynapseArtifactsLinkedServiceTypeProperties(必需)

AzureSynapseArtifactsLinkedServiceTypeProperties

名字 描述 价值
认证 如果使用系统分配的托管标识作为身份验证方法,则需要指定 MSI。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
端点 https://<工作区名称>.dev.azuresynapse.net、Azure Synapse Analytics 工作区 URL。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
workspaceResourceId Synapse 工作区的资源 ID。 格式应为:/subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

AzureTableStorageLinkedService

名字 描述 价值
类型 链接服务的类型。 “AzureTableStorage”(必需)
typeProperties Azure 表存储链接服务属性。 AzureTableStorageLinkedServiceTypeProperties(必需)

AzureTableStorageLinkedServiceTypeProperties

名字 描述 价值
accountKey 连接字符串中 accountKey 的 Azure 密钥保管库机密引用。 AzureKeyVaultSecretReference
connectionString 连接字符串。 它与 sasUri 属性互斥。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
sasToken sasToken 的 Azure 密钥保管库机密引用在 sas uri 中。 AzureKeyVaultSecretReference
sasUri Azure 存储资源的 SAS URI。 它与 connectionString 属性互斥。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
serviceEndpoint Azure 表存储资源的表服务终结点。 它与 connectionString、sasUri 属性互斥。 任何

CassandraLinkedService

名字 描述 价值
类型 链接服务的类型。 “Cassandra”(必需)
typeProperties Cassandra 链接服务属性。 CassandraLinkedServiceTypeProperties (必需)

CassandraLinkedServiceTypeProperties

名字 描述 价值
authenticationType 要用于连接的 AuthenticationType。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 连接的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
密码 身份验证密码。 SecretBase
港口 连接的端口。 类型:整数(或包含 resultType 整数的表达式)。 任何
username 身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

CommonDataServiceForAppsLinkedService

名字 描述 价值
类型 链接服务的类型。 “CommonDataServiceForApps”(必需)
typeProperties Common Data Service for Apps 链接服务属性。 CommonDataServiceForAppsLinkedServiceTypeProperties(必需)

CommonDataServiceForAppsLinkedServiceTypeProperties

名字 描述 价值
authenticationType 要连接到 Common Data Service for Apps 服务器的身份验证类型。 联机方案的“Office365”,对于本地使用 Ifd 方案,则为“Ifd”。 联机方案中用于 Server-To-Server 身份验证的“AADServicePrincipal”,适用于具有 IFD 的本地 Dynamics 的“Active Directory”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
deploymentType Common Data Service for Apps 实例的部署类型。 Common Data Service for Apps Online 的“Online”和“OnPremisesWithIfd”,适用于本地具有 Ifd 的 Common Data Service for Apps。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
将验证用户凭据的 Active Directory 域。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
hostName 本地 Common Data Service for Apps 服务器的主机名。 属性是本地所必需的,不允许联机。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
organizationName Common Data Service for Apps 实例的组织名称。 当有多个与用户关联的 Common Data Service for Apps 实例时,本地需要此属性,并且需要联机属性。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 用于访问 Common Data Service for Apps 实例的密码。 SecretBase
港口 本地 Common Data Service for Apps 服务器的端口。 属性是本地所必需的,不允许联机。 默认值为 443。 类型:整数(或包含 resultType 整数的表达式),最小值:0。 任何
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId Azure Active Directory 中用于服务器To-Server 身份验证的应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
serviceUri Microsoft Common Data Service for Apps 服务器的 URL。 该属性对于在线是必需的,不允许本地使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
username 用于访问 Common Data Service for Apps 实例的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

ConcurLinkedService

名字 描述 价值
类型 链接服务的类型。 “Concur”(必需)
typeProperties Concur Service 链接服务属性。 ConcurLinkedServiceTypeProperties(必需)

ConcurLinkedServiceTypeProperties

名字 描述 价值
clientId Concur 应用管理提供的应用程序client_id。 任何(必需)
connectionProperties 用于连接到 Concur 的属性。 它与链接服务中的其他任何属性互斥。 类型:对象。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 与用户名字段中提供的用户名对应的密码。 SecretBase
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何
username 用于访问 Concur 服务的用户名。 任何(必需)

CosmosDbLinkedService

名字 描述 价值
类型 链接服务的类型。 “CosmosDb”(必需)
typeProperties CosmosDB 链接服务属性。 CosmosDbLinkedServiceTypeProperties (必需)

CosmosDbLinkedServiceTypeProperties

名字 描述 价值
accountEndpoint Azure CosmosDB 帐户的终结点。 类型:字符串(或带有 resultType 字符串的表达式) 任何
accountKey Azure CosmosDB 帐户的帐户密钥。 类型:SecureString 或 AzureKeyVaultSecretReference。 SecretBase
azureCloudType 指示服务主体身份验证的 Azure 云类型。允许的值为 AzurePublic、AzureChina、AzureUsGovernment、AzureGermany。 默认值为数据工厂区域的云类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
connectionMode 用于访问 CosmosDB 帐户的连接模式。 类型:字符串。 “Direct”
“Gateway”
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
数据库 数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式) 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串。 任何
servicePrincipalId Azure Active Directory 中用于服务器To-Server 身份验证的应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

CosmosDbMongoDbApiLinkedService

名字 描述 价值
类型 链接服务的类型。 “CosmosDbMongoDbApi”(必需)
typeProperties CosmosDB (MongoDB API) 链接服务属性。 CosmosDbMongoDbApiLinkedServiceTypeProperties (必需)

CosmosDbMongoDbApiLinkedServiceTypeProperties

名字 描述 价值
connectionString CosmosDB (MongoDB API) 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何(必需)
数据库 要访问的 CosmosDB (MongoDB API) 数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
isServerVersionAbove32 CosmosDB (MongoDB API) 服务器版本是否高于 3.2。 默认值为 false。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何

CouchbaseLinkedService

名字 描述 价值
类型 链接服务的类型。 “Couchbase”(必需)
typeProperties Couchbase 服务器链接服务属性。 CouchbaseLinkedServiceTypeProperties(必需)

CouchbaseLinkedServiceTypeProperties

名字 描述 价值
connectionString ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
credString 连接字符串中 credString 的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串

CredentialReference

名字 描述 价值
referenceName 引用凭据名称。 string (必需)
类型 凭据引用类型。 “CredentialReference”(必需)

CustomDataSourceLinkedService

名字 描述 价值
类型 链接服务的类型。 “CustomDataSource”(必需)
typeProperties 自定义链接服务属性。 任何(必需)

DataworldLinkedService

名字 描述 价值
类型 链接服务的类型。 “Dataworld”(必需)
typeProperties Dataworld 链接服务属性。 DataworldLinkedServiceTypeProperties (必需)

DataworldLinkedServiceTypeProperties

名字 描述 价值
apiToken Dataworld 源的 API 令牌。 SecretBase(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串

Db2LinkedService

名字 描述 价值
类型 链接服务的类型。 “Db2”(必需)
typeProperties DB2 链接服务属性。 Db2LinkedServiceTypeProperties(必需)

Db2LinkedServiceTypeProperties

名字 描述 价值
authenticationType 要用于连接的 AuthenticationType。 它与 connectionString 属性互斥。 “Basic”
certificateCommonName 启用 TLS 时证书公用名。 它与 connectionString 属性互斥。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
connectionString 连接字符串。 它与服务器、数据库、authenticationType、userName、packageCollection 和 certificateCommonName 属性互斥。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
数据库 连接的数据库名称。 它与 connectionString 属性互斥。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 它与 connectionString 属性互斥。 类型:字符串。 字符串
packageCollection 在查询数据库时创建包的位置下。 它与 connectionString 属性互斥。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 身份验证密码。 SecretBase
服务器 连接的服务器名称。 它与 connectionString 属性互斥。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
username 身份验证的用户名。 它与 connectionString 属性互斥。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

DrillLinkedService

名字 描述 价值
类型 链接服务的类型。 “钻取”(必需)
typeProperties 钻取服务器链接服务属性。 DrillLinkedServiceTypeProperties (必需)

DrillLinkedServiceTypeProperties

名字 描述 价值
connectionString ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
pwd 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference

DynamicsAXLinkedService

名字 描述 价值
类型 链接服务的类型。 “DynamicsAX”(必需)
typeProperties Dynamics AX 链接服务属性。 DynamicsAXLinkedServiceTypeProperties(必需)

DynamicsAXLinkedServiceTypeProperties

名字 描述 价值
aadResourceId 指定要请求授权的资源。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
servicePrincipalId 指定应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
servicePrincipalKey 指定应用程序的密钥。 将此字段标记为 SecureString 以安全地将其存储在数据工厂中,或引用存储在 Azure Key Vault 中的机密。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase(必需)
房客 指定应用程序所在的租户信息(域名或租户 ID)。 通过将鼠标悬停在 Azure 门户右上角来检索它。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
url Dynamics AX(或 Dynamics 365 Finance and Operations)实例 OData 终结点。 任何(必需)

DynamicsCrmLinkedService

名字 描述 价值
类型 链接服务的类型。 “DynamicsCrm”(必需)
typeProperties Dynamics CRM 链接服务属性。 DynamicsCrmLinkedServiceTypeProperties (必需)

DynamicsCrmLinkedServiceTypeProperties

名字 描述 价值
authenticationType 要连接到 Dynamics CRM 服务器的身份验证类型。 联机方案的“Office365”、“Ifd”(适用于本地 Ifd 方案)的“AADServicePrincipal”,用于联机方案中的服务器To-Server 身份验证的“Active Directory”,适用于具有 IFD 的 Dynamics 本地的“Active Directory”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
凭据 包含身份验证信息的凭据引用。 CredentialReference
deploymentType Dynamics CRM 实例的部署类型。 Dynamics CRM Online 的“Online”和“OnPremisesWithIfd”(适用于具有 Ifd 的本地 Dynamics CRM)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
将验证用户凭据的 Active Directory 域。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
hostName 本地 Dynamics CRM 服务器的主机名。 属性是本地所必需的,不允许联机。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
organizationName Dynamics CRM 实例的组织名称。 当有多个与用户关联的 Dynamics CRM 实例时,本地属性是必需的,并且需要联机属性。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 用于访问 Dynamics CRM 实例的密码。 SecretBase
港口 本地 Dynamics CRM 服务器的端口。 属性是本地所必需的,不允许联机。 默认值为 443。 类型:整数(或包含 resultType 整数的表达式),最小值:0。 任何
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId Azure Active Directory 中用于服务器To-Server 身份验证的应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
serviceUri Microsoft Dynamics CRM 服务器的 URL。 该属性对于在线是必需的,不允许本地使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
username 用于访问 Dynamics CRM 实例的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

DynamicsLinkedService

名字 描述 价值
类型 链接服务的类型。 “Dynamics”(必需)
typeProperties Dynamics 链接服务属性。 DynamicsLinkedServiceTypeProperties(必需)

DynamicsLinkedServiceTypeProperties

名字 描述 价值
authenticationType 要连接到 Dynamics 服务器的身份验证类型。 联机方案的“Office365”、“Ifd”(适用于本地 Ifd 方案)的“AADServicePrincipal”,用于联机方案中的服务器To-Server 身份验证的“Active Directory”,适用于具有 IFD 的 Dynamics 本地的“Active Directory”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
凭据 包含身份验证信息的凭据引用。 CredentialReference
deploymentType Dynamics 实例的部署类型。 Dynamics Online 的“Online”和“OnPremisesWithIfd”(适用于具有 Ifd 的本地 Dynamics)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
将验证用户凭据的 Active Directory 域。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
hostName 本地 Dynamics 服务器的主机名。 属性是本地所必需的,不允许联机。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
organizationName Dynamics 实例的组织名称。 当有多个与用户关联的 Dynamics 实例时,本地需要此属性,并且对于联机是必需的。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 用于访问 Dynamics 实例的密码。 SecretBase
港口 本地 Dynamics 服务器的端口。 属性是本地所必需的,不允许联机。 默认值为 443。 类型:整数(或包含 resultType 整数的表达式),最小值:0。 任何
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId Azure Active Directory 中用于服务器To-Server 身份验证的应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
serviceUri Microsoft Dynamics 服务器的 URL。 该属性对于在线是必需的,不允许本地使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
username 用于访问 Dynamics 实例的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

EloquaLinkedService

名字 描述 价值
类型 链接服务的类型。 “Eloqua”(必需)
typeProperties Eloqua 服务器链接服务属性。 EloquaLinkedServiceTypeProperties(必需)

EloquaLinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
端点 Eloqua 服务器的终结点。 (即 eloqua.example.com) 任何(必需)
密码 与用户名对应的密码。 SecretBase
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何
username Eloqua 帐户的网站名称和用户名,格式为:sitename/username。 (即埃洛夸/爱丽丝) 任何(必需)

FileServerLinkedService

名字 描述 价值
类型 链接服务的类型。 “FileServer”(必需)
typeProperties 文件系统链接服务属性。 FileServerLinkedServiceTypeProperties (必需)

FileServerLinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 服务器的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
密码 用于登录服务器的密码。 SecretBase
userId 用于登录服务器的用户 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

FtpServerLinkedService

名字 描述 价值
类型 链接服务的类型。 “FtpServer”(必需)
typeProperties 特定于此链接服务类型的属性。 FtpServerLinkedServiceTypeProperties (必需)

FtpServerLinkedServiceTypeProperties

名字 描述 价值
authenticationType 用于连接到 FTP 服务器的身份验证类型。 “Anonymous”
“Basic”
enableServerCertificateValidation 如果为 true,则通过 SSL/TLS 通道连接时验证 FTP 服务器 SSL 证书。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
enableSsl 如果为 true,请通过 SSL/TLS 通道连接到 FTP 服务器。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 FTP 服务器的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
密码 用于登录 FTP 服务器的密码。 SecretBase
港口 FTP 服务器用于侦听客户端连接的 TCP 端口号。 默认值为 21。 类型:整数(或包含 resultType 整数的表达式),最小值:0。 任何
userName 用于登录 FTP 服务器的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

GoogleAdWordsLinkedService

名字 描述 价值
类型 链接服务的类型。 “GoogleAdWords”(必需)
typeProperties Google AdWords 服务链接服务属性。 GoogleAdWordsLinkedServiceTypeProperties (必需)

GoogleAdWordsLinkedServiceTypeProperties

名字 描述 价值
authenticationType 用于身份验证的 OAuth 2.0 身份验证机制。 ServiceAuthentication 只能在自承载 IR 上使用。 “ServiceAuthentication”
“UserAuthentication”
clientCustomerID 要为其提取报表数据的 AdWords 帐户的客户端客户 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clientId 用于获取刷新令牌的 google 应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clientSecret 用于获取刷新令牌的 google 应用程序的客户端密码。 SecretBase
connectionProperties (已弃用)用于连接到 GoogleAds 的属性。 它与链接服务中的其他任何属性互斥。 类型:对象。 任何
developerToken 与用于授予 AdWords API 访问权限的经理帐户关联的开发人员令牌。 SecretBase
电子邮件 用于 ServiceAuthentication 的服务帐户电子邮件 ID,只能在自承载 IR 上使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
googleAdsApiVersion Google Ads API 主版本(如 v14)。 可在 https://developers.google.com/google-ads/api/docs/release-notes中找到支持的主要版本。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
keyFilePath (已弃用)用于对服务帐户电子邮件地址进行身份验证的 .p12 密钥文件的完整路径,只能在自承载 IR 上使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
loginCustomerID 要通过该帐户提取特定客户的报表数据的 Google Ads Manager 帐户的客户 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
privateKey 用于对服务帐户电子邮件地址进行身份验证的私钥,只能在自承载 IR 上使用。 SecretBase
refreshToken 从 Google 获取的刷新令牌,用于授权访问 AdWords for UserAuthentication。 SecretBase
supportLegacyDataTypes 指定是否使用旧数据类型映射,这些映射将 float、int32 和 int64 从 Google 映射到字符串。 除非要保持与旧驱动程序数据类型映射的向后兼容性,否则不要将其设置为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
trustedCertPath (已弃用)包含受信任的 CA 证书的 .pem 文件的完整路径,用于通过 SSL 连接时验证服务器。 只能在自承载 IR 上使用 SSL 时设置此属性。 默认值为随 IR 一起安装的 cacerts.pem 文件。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
useSystemTrustStore (已弃用)指定是使用系统信任存储中的 CA 证书还是从指定的 PEM 文件使用 CA 证书。 默认值为 false。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何

GoogleBigQueryLinkedService

名字 描述 价值
类型 链接服务的类型。 “GoogleBigQuery”(必需)
typeProperties Google BigQuery 服务链接服务属性。 GoogleBigQueryLinkedServiceTypeProperties (必需)

GoogleBigQueryLinkedServiceTypeProperties

名字 描述 价值
additionalProjects 要访问的公共 BigQuery 项目的逗号分隔列表。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于身份验证的 OAuth 2.0 身份验证机制。 ServiceAuthentication 只能在自承载 IR 上使用。 “ServiceAuthentication”
“UserAuthentication”(必需)
clientId 用于获取刷新令牌的 google 应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clientSecret 用于获取刷新令牌的 google 应用程序的客户端密码。 SecretBase
电子邮件 用于 ServiceAuthentication 的服务帐户电子邮件 ID,只能在自承载 IR 上使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
keyFilePath 用于对服务帐户电子邮件地址进行身份验证的 .p12 密钥文件的完整路径,只能在自承载 IR 上使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
项目 要查询的默认 BigQuery 项目。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
refreshToken 从 Google 获取的刷新令牌,用于授权访问 BigQuery for UserAuthentication。 SecretBase
requestGoogleDriveScope 是否请求访问 Google Drive。 允许 Google Drive 访问支持将 BigQuery 数据与 Google Drive 中的数据相结合的联合表。 默认值为 false。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
trustedCertPath 包含受信任的 CA 证书的 .pem 文件的完整路径,用于通过 SSL 连接时验证服务器。 只能在自承载 IR 上使用 SSL 时设置此属性。 默认值为随 IR 一起安装的 cacerts.pem 文件。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
useSystemTrustStore 指定是使用系统信任存储中的 CA 证书还是从指定的 PEM 文件使用 CA 证书。 默认值为 false。类型:布尔值(或带有 resultType 布尔值的表达式)。 任何

GoogleBigQueryV2LinkedService

名字 描述 价值
类型 链接服务的类型。 “GoogleBigQueryV2”(必需)
typeProperties Google BigQuery 服务链接服务属性。 GoogleBigQueryV2LinkedServiceTypeProperties (必需)

GoogleBigQueryV2LinkedServiceTypeProperties

名字 描述 价值
authenticationType 用于身份验证的 OAuth 2.0 身份验证机制。 “ServiceAuthentication”
“UserAuthentication”(必需)
clientId 用于获取刷新令牌的 google 应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clientSecret 用于获取刷新令牌的 google 应用程序的客户端密码。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
keyFileContent 用于对服务帐户进行身份验证的 .json 密钥文件的内容。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
projectId 要查询的默认 BigQuery 项目 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
refreshToken 从 Google 获取的刷新令牌,用于授权访问 BigQuery for UserAuthentication。 SecretBase

GoogleCloudStorageLinkedService

名字 描述 价值
类型 链接服务的类型。 “GoogleCloudStorage”(必需)
typeProperties Google Cloud Storage 链接服务属性。 GoogleCloudStorageLinkedServiceTypeProperties(必需)

GoogleCloudStorageLinkedServiceTypeProperties

名字 描述 价值
accessKeyId Google Cloud Storage Identity and Access Management (IAM) 用户的访问密钥标识符。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
secretAccessKey Google Cloud Storage Identity and Access Management (IAM) 用户的机密访问密钥。 SecretBase
serviceUrl 此值指定要使用 Google Cloud Storage Connector 访问的终结点。 这是一个可选属性;仅当想要尝试其他服务终结点或想要在 https 和 http 之间切换时更改它。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

GoogleSheetsLinkedService

名字 描述 价值
类型 链接服务的类型。 “GoogleSheets”(必需)
typeProperties GoogleSheets 链接服务属性。 GoogleSheetsLinkedServiceTypeProperties (必需)

GoogleSheetsLinkedServiceTypeProperties

名字 描述 价值
apiToken GoogleSheets 源的 API 令牌。 SecretBase(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串

GreenplumLinkedService

名字 描述 价值
类型 链接服务的类型。 “Greenplum”(必需)
typeProperties Greenplum 数据库链接服务属性。 GreenplumLinkedServiceTypeProperties(必需)

GreenplumLinkedServiceTypeProperties

名字 描述 价值
connectionString ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
pwd 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference

HBaseLinkedService

名字 描述 价值
类型 链接服务的类型。 “HBase”(必需)
typeProperties HBase 服务器链接服务属性。 HBaseLinkedServiceTypeProperties(必需)

HBaseLinkedServiceTypeProperties

名字 描述 价值
allowHostNameCNMismatch 指定是否要求 CA 颁发的 SSL 证书名称与通过 SSL 连接时服务器的主机名匹配。 默认值为 false。 任何
allowSelfSignedServerCert 指定是否允许来自服务器的自签名证书。 默认值为 false。 任何
authenticationType 用于连接到 HBase 服务器的身份验证机制。 “Anonymous”
“Basic”(必需)
enableSsl 指定是否使用 SSL 加密与服务器的连接。 默认值为 false。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 HBase 服务器的 IP 地址或主机名。 (即 192.168.222.160) 任何(必需)
httpPath 对应于 HBase 服务器的部分 URL。 (即 /gateway/sandbox/hbase/version) 任何
密码 与用户名对应的密码。 SecretBase
港口 HBase 实例用于侦听客户端连接的 TCP 端口。 默认值为 9090。 任何
trustedCertPath 包含受信任的 CA 证书的 .pem 文件的完整路径,用于通过 SSL 连接时验证服务器。 只能在自承载 IR 上使用 SSL 时设置此属性。 默认值为随 IR 一起安装的 cacerts.pem 文件。 任何
username 用于连接到 HBase 实例的用户名。 任何

HdfsLinkedService

名字 描述 价值
类型 链接服务的类型。 “Hdfs”(必需)
typeProperties HDFS 链接服务属性。 HdfsLinkedServiceTypeProperties(必需)

HdfsLinkedServiceTypeProperties

名字 描述 价值
authenticationType 用于连接到 HDFS 的身份验证类型。 可能的值为:Anonymous 和 Windows。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 Windows 身份验证的密码。 SecretBase
url HDFS 服务终结点的 URL,例如 http://myhostname:50070/webhdfs/v1。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
userName Windows 身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

HDInsightLinkedService

名字 描述 价值
类型 链接服务的类型。 “HDInsight”(必需)
typeProperties HDInsight 链接服务属性。 HDInsightLinkedServiceTypeProperties(必需)

HDInsightLinkedServiceTypeProperties

名字 描述 价值
clusterUri HDInsight 群集 URI。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
fileSystem 如果 HDInsight 的主存储为 ADLS Gen2,请指定 FileSystem。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
hcatalogLinkedServiceName 指向 HCatalog 数据库的 Azure SQL 链接服务的引用。 LinkedServiceReference
isEspEnabled 指定是否使用 ESP 创建 HDInsight(企业安全包)。 类型:布尔值。 任何
linkedServiceName Azure 存储链接服务参考。 LinkedServiceReference
密码 HDInsight 群集密码。 SecretBase
userName HDInsight 群集用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

HDInsightOnDemandLinkedService

名字 描述 价值
类型 链接服务的类型。 “HDInsightOnDemand”(必需)
typeProperties HDInsight ondemand 链接服务属性。 HDInsightOnDemandLinkedServiceTypeProperties(必需)

HDInsightOnDemandLinkedServiceTypeProperties

名字 描述 价值
additionalLinkedServiceNames 为 HDInsight 链接服务指定其他存储帐户,以便数据工厂服务可以代表你注册它们。 LinkedServiceReference[]
clusterNamePrefix 群集名称的前缀,后缀将不同于时间戳。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clusterPassword 用于访问群集的密码。 SecretBase
clusterResourceGroup 群集所属的资源组。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
clusterSize 群集中的辅助角色/数据节点数。 建议值:4。 类型:int(或包含 resultType int 的表达式)。 任何(必需)
clusterSshPassword SSH 远程连接群集节点(适用于 Linux)的密码。 SecretBase
clusterSshUserName SSH 的用户名远程连接到群集的节点(适用于 Linux)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clusterType 群集类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clusterUserName 用于访问群集的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
coreConfiguration 指定要创建的 HDInsight 群集的核心配置参数(如 core-site.xml)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
dataNodeSize 指定 HDInsight 群集的数据节点的大小。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
hBaseConfiguration 指定 HDInsight 群集的 HBase 配置参数(hbase-site.xml)。 任何
hcatalogLinkedServiceName 指向 HCatalog 数据库的 Azure SQL 链接服务的名称。 按需 HDInsight 群集是使用 Azure SQL 数据库作为元存储创建的。 LinkedServiceReference
hdfsConfiguration 指定 HDInsight 群集的 HDFS 配置参数(hdfs-site.xml)。 任何
headNodeSize 指定 HDInsight 群集的头节点的大小。 任何
hiveConfiguration 指定 HDInsight 群集的 hive 配置参数(hive-site.xml)。 任何
hostSubscriptionId 用于托管群集的客户订阅。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
linkedServiceName 供按需群集用于存储和处理数据的 Azure 存储链接服务。 LinkedServiceReference(必需)
mapReduceConfiguration 指定 HDInsight 群集的 MapReduce 配置参数(mapred-site.xml)。 任何
oozieConfiguration 指定 HDInsight 群集的 Oozie 配置参数(oozie-site.xml)。 任何
scriptActions 自定义脚本操作,在 HDI ondemand 群集上运行一旦启动。 请参阅 /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。 ScriptAction[]
servicePrincipalId hostSubscriptionId 的服务主体 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 服务主体 ID 的密钥。 SecretBase
sparkVersion 如果群集类型为“spark”,则为 spark 的版本。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
stormConfiguration 指定 HDInsight 群集的 Storm 配置参数(storm-site.xml)。 任何
subnetName vNet 中子网的 ARM 资源 ID。 如果指定了 virtualNetworkId,则需要此属性。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
房客 服务主体所属的租户 ID/名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
timeToLive 按需 HDInsight 群集的允许空闲时间。 指定当群集中没有其他活动作业时,按需 HDInsight 群集在活动运行完成后保持活动运行的时间。 最小值为 5 分钟。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
版本 HDInsight 群集的版本。  类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
virtualNetworkId 创建群集后应加入的 vNet 的 ARM 资源 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
yarnConfiguration 指定 HDInsight 群集的 Yarn 配置参数(yarn-site.xml)。 任何
zookeeperNodeSize 指定 HDInsight 群集的 Zoo Keeper 节点的大小。 任何

HiveLinkedService

名字 描述 价值
类型 链接服务的类型。 “Hive”(必需)
typeProperties Hive Server 链接服务属性。 HiveLinkedServiceTypeProperties(必需)

HiveLinkedServiceTypeProperties

名字 描述 价值
allowHostNameCNMismatch 指定是否要求 CA 颁发的 SSL 证书名称与通过 SSL 连接时服务器的主机名匹配。 默认值为 false。 任何
allowSelfSignedServerCert 指定是否允许来自服务器的自签名证书。 默认值为 false。 任何
authenticationType 用于访问 Hive 服务器的身份验证方法。 “Anonymous”
“Username”
“UsernameAndPassword”
“WindowsAzureHDInsightService”(必需)
enableSsl 指定是否使用 SSL 加密与服务器的连接。 默认值为 false。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Hive 服务器的 IP 地址或主机名,由多个主机的“;”分隔(仅当 serviceDiscoveryMode 启用时)。 任何(必需)
httpPath 与 Hive 服务器对应的部分 URL。 任何
密码 与你在“用户名”字段中提供的用户名对应的密码 SecretBase
港口 Hive 服务器用来侦听客户端连接的 TCP 端口。 任何
serverType Hive 服务器的类型。 “HiveServer1”
“HiveServer2”
“HiveThriftServer”
serviceDiscoveryMode 如果指示使用 ZooKeeper 服务,则为 true,则为 false。 任何
thriftTransportProtocol 在 Thrift 层中使用的传输协议。 “Binary”
“HTTP”
“SASL”
trustedCertPath 包含受信任的 CA 证书的 .pem 文件的完整路径,用于通过 SSL 连接时验证服务器。 只能在自承载 IR 上使用 SSL 时设置此属性。 默认值为随 IR 一起安装的 cacerts.pem 文件。 任何
useNativeQuery 指定驱动程序是使用本机 HiveQL 查询,还是将它们转换为 HiveQL 中的等效形式。 任何
username 用于访问 Hive Server 的用户名。 任何
useSystemTrustStore 指定是使用系统信任存储中的 CA 证书还是从指定的 PEM 文件使用 CA 证书。 默认值为 false。 任何
zooKeeperNameSpace 添加 Hive Server 2 节点的 ZooKeeper 上的命名空间。 任何

HttpLinkedService

名字 描述 价值
类型 链接服务的类型。 “HttpServer”(必需)
typeProperties 特定于此链接服务类型的属性。 HttpLinkedServiceTypeProperties (必需)

HttpLinkedServiceTypeProperties

名字 描述 价值
authenticationType 用于连接到 HTTP 服务器的身份验证类型。 “Anonymous”
“Basic”
“ClientCertificate”
“Digest”
“Windows”
authHeaders 请求中用于授权的 RESTful API 中的其他 HTTP 标头。 类型:键值对(值应为字符串类型)。 任何
certThumbprint ClientCertificate 身份验证的证书指纹。 仅适用于本地复制。 对于使用 ClientCertificate 身份验证的本地复制,应指定 CertThumbprint 或 EmbeddedCertData/Password。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
embeddedCertData 用于 ClientCertificate 身份验证的 Base64 编码证书数据。 对于使用 ClientCertificate 身份验证的本地复制,应指定 CertThumbprint 或 EmbeddedCertData/Password。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
enableServerCertificateValidation 如果为 true,请验证 HTTPS 服务器 SSL 证书。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 使用 EmbeddedCertData 身份验证进行基本、摘要、Windows 或 ClientCertificate 的密码。 SecretBase
url HTTP 终结点的基 URL,例如 https://www.microsoft.com。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
userName 基本、摘要或 Windows 身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

HubspotLinkedService

名字 描述 价值
类型 链接服务的类型。 “Hubspot”(必需)
typeProperties Hubspot Service 链接服务属性。 HubspotLinkedServiceTypeProperties(必需)

HubspotLinkedServiceTypeProperties

名字 描述 价值
accessToken 最初对 OAuth 集成进行身份验证时获取的访问令牌。 SecretBase
clientId 与 Hubspot 应用程序关联的客户端 ID。 任何(必需)
clientSecret 与 Hubspot 应用程序关联的客户端密码。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
refreshToken 最初对 OAuth 集成进行身份验证时获取的刷新令牌。 SecretBase
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何

ImpalaLinkedService

名字 描述 价值
类型 链接服务的类型。 “Impala”(必需)
typeProperties Impala 服务器链接服务属性。 ImpalaLinkedServiceTypeProperties (必需)

ImpalaLinkedServiceTypeProperties

名字 描述 价值
allowHostNameCNMismatch 指定是否要求 CA 颁发的 SSL 证书名称与通过 SSL 连接时服务器的主机名匹配。 默认值为 false。 任何
allowSelfSignedServerCert 指定是否允许来自服务器的自签名证书。 默认值为 false。 任何
authenticationType 要使用的身份验证类型。 “Anonymous”
“SASLUsername”
“UsernameAndPassword”(必需)
enableSsl 指定是否使用 SSL 加密与服务器的连接。 默认值为 false。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Impala 服务器的 IP 地址或主机名。 (即 192.168.222.160) 任何(必需)
密码 使用 UsernameAndPassword 时,与用户名对应的密码。 SecretBase
港口 Impala 服务器用来侦听客户端连接的 TCP 端口。 默认值为 21050。 任何
trustedCertPath 包含受信任的 CA 证书的 .pem 文件的完整路径,用于通过 SSL 连接时验证服务器。 只能在自承载 IR 上使用 SSL 时设置此属性。 默认值为随 IR 一起安装的 cacerts.pem 文件。 任何
username 用于访问 Impala 服务器的用户名。 使用 SASLUsername 时,默认值为匿名。 任何
useSystemTrustStore 指定是使用系统信任存储中的 CA 证书还是从指定的 PEM 文件使用 CA 证书。 默认值为 false。 任何

InformixLinkedService

名字 描述 价值
类型 链接服务的类型。 “Informix”(必需)
typeProperties Informix 链接服务属性。 InformixLinkedServiceTypeProperties(必需)

InformixLinkedServiceTypeProperties

名字 描述 价值
authenticationType 用于作为 ODBC 数据存储连接到 Informix 的身份验证类型。 可能的值为:Anonymous 和 Basic。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
connectionString 连接字符串的非访问凭据部分以及可选的加密凭据。 类型:string、SecureString、AzureKeyVaultSecretReference 或 Expression 和 resultType 字符串。 任何(必需)
凭据 以特定于驱动程序的属性值格式指定的连接字符串的访问凭据部分。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 基本身份验证的密码。 SecretBase
userName 基本身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

IntegrationRuntimeReference

名字 描述 价值
参数 集成运行时的参数。 ParameterValueSpecification
referenceName 引用集成运行时名称。 string (必需)
类型 集成运行时的类型。 “IntegrationRuntimeReference”(必需)

JiraLinkedService

名字 描述 价值
类型 链接服务的类型。 “Jira”(必需)
typeProperties Jira 服务链接服务属性。 JiraLinkedServiceTypeProperties (必需)

JiraLinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Jira 服务的 IP 地址或主机名。 (例如 jira.example.com) 任何(必需)
密码 与用户名字段中提供的用户名对应的密码。 SecretBase
港口 Jira 服务器用于侦听客户端连接的 TCP 端口。 如果通过 HTTPS 进行连接,则默认值为 443;如果通过 HTTP 进行连接,则为 8080。 任何
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何
username 用于访问 Jira 服务的用户名。 任何(必需)

LakeHouseLinkedService

名字 描述 价值
类型 链接服务的类型。 “LakeHouse”(必需)
typeProperties Microsoft Fabric LakeHouse 链接服务属性。 LakeHouseLinkedServiceTypeProperties (必需)

LakeHouseLinkedServiceTypeProperties

名字 描述 价值
artifactId Microsoft Fabric LakeHouse 项目的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId 用于对 Microsoft Fabric LakeHouse 进行身份验证的应用程序 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Microsoft Fabric LakeHouse 进行身份验证的应用程序密钥。 SecretBase
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
workspaceId Microsoft Fabric 工作区的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

LinkedService

名字 描述 价值
附注 可用于描述链接服务的标记列表。 any[]
connectVia 集成运行时参考。 IntegrationRuntimeReference
描述 链接服务说明。 字符串
参数 链接服务的参数。 ParameterDefinitionSpecification
类型 对于 AmazonMWSLinkedService类型,设置为“AmazonMWS”。 对于 AmazonRdsForOracleLinkedService类型,设置为“AmazonRdsForOracle”。 对于 AmazonRdsForSqlServerLinkedService,请设置为“AmazonRdsForSqlServer”。 对于 AmazonRedshiftLinkedService,请设置为“AmazonRedshift”类型。 对于 AmazonS3LinkedService,请设置为“AmazonS3”。 对于 AmazonS3CompatibleLinkedService类型,设置为“AmazonS3Compatible”。 对于 AppFiguresLinkedService,请设置为“AppFigures”。 对于 AsanaLinkedService类型,设置为“Asana”。 对于 AzureBatchLinkedService,请设置为“AzureBatch”。 对于 AzureBlobFSLinkedService,请设置为“AzureBlobFS”。 对于 AzureBlobStorageLinkedService,请设置为“AzureBlobStorage”。 对于 AzureDataExplorerLinkedService,请设置为“AzureDataExplorer”。 对于 AzureDataLakeAnalyticsLinkedService,请设置为“AzureDataLakeAnalytics”。 对于 AzureDataLakeStoreLinkedService,请设置为“AzureDataLakeStore”。 对于 AzureDatabricksLinkedService,请设置为“AzureDatabricks”。 对于 AzureDatabricksDeltaLakeLinkedService,请设置为“AzureDatabricksDeltaLake”。 对于 AzureFileStorageLinkedService,请设置为“AzureFileStorage”类型。 对于 AzureFunctionLinkedService,请设置为“AzureFunction”。 对于 AzureKeyVaultLinkedService,请设置为“AzureKeyVault”类型。 对于 AzureMLLinkedService,请设置为“AzureML”。 对于 AzureMLServiceLinkedService,请设置为“AzureMLService”。 对于 AzureMariaDBLinkedService,请设置为“AzureMariaDB”。 对于 AzureMySqlLinkedService类型,设置为“AzureMySqlSql”。 对于 AzurePostgreSqlLinkedService,请设置为“AzurePostgreSql”。 对于 AzureSearchLinkedService,请设置为“AzureSearch”。 对于 AzureSqlDWLinkedService,请设置为“AzureSqlDWW”。 对于 AzureSqlDatabaseLinkedService,请设置为“AzureSqlDatabase”。 对于 AzureSqlMILinkedService,请设置为“AzureSqlMI”。 对于 AzureStorageLinkedService,请设置为“AzureStorage”。 对于 azureSynapseArtifacts 类型,设置为“AzureSynapseArtifactsLinkedService”。 对于 AzureTableStorageLinkedService类型,设置为“AzureTableStorage”。 对于 CassandraLinkedService类型,设置为“Cassandraandra”。 对于 CommonDataServiceForAppsLinkedService,请设置为“CommonDataServiceForApps”。 对于 ConcurLinkedService类型,设置为“Concur”。 对于 CosmosDbLinkedService,请设置为“CosmosDb”。 对于类型为 CosmosDbMongoDbApiLinkedService,请设置为“CosmosDbMongoDbApi”。 对于 CouchbaseLinkedService类型,设置为“Couchbase”。 对于 customDataSourceLinkedService类型,请设置为“CustomDataSource”。 对于 dataworldLinkedService类型,设置为“Dataworld”。 对于 Db2LinkedService,请设置为“Db2”。 设置为“DrillLinkedService类型 ”钻取”。 对于 dynamicsLinkedService类型,请设置为“Dynamics”。 对于 dynamicsAXLinkedService类型,设置为“DynamicsAXAX”。 对于 dynamicsCrmLinkedService,请设置为 “DynamicsCrm”类型。 对于 EloquaLinkedService,请设置为类型 “Eloqua”。 对于 fileServerLinkedService类型,请设置为“FileServer”。 对于 FtpServerLinkedService,请设置为“FtpServer”。 对于 GoogleAdWordsLinkedService,请设置为“GoogleAdWords”。 对于 GoogleBigQueryLinkedService,请设置为“GoogleBigQuery”。 对于 GoogleBigQueryV2LinkedService,请设置为“GoogleBigQueryV2”。 对于 GoogleCloudStorageLinkedService,请设置为“GoogleCloudStorage”。 对于 GoogleSheetsLinkedService,请设置为“GoogleSheets”。 对于 greenplumLinkedService类型,设置为“Greenplum”类型。 对于 HBaseLinkedService类型,设置为“HBase”。 对于 HDInsightLinkedService,请设置为“HDInsight”。 对于 HDInsightOnDemandLinkedService,请设置为“HDInsightOnDemand”。 对于 HdfsLinkedService类型,设置为“Hdfs”。 对于 hiveLinkedService类型,设置为“Hive” 。 对于 HttpLinkedService类型,设置为“HttpServer”。 对于 HubspotLinkedService类型,设置为“Hubspot”。 对于 impalaLinkedService,请设置为类型 “Impala”。 对于 InformixLinkedService类型,设置为“Informix”。 对于 JiraLinkedService,设置为“Jira”。 对于 LakeHouseLinkedService,请设置为“LakeHouse”。 对于 MagentoLinkedService类型,设置为“Magento”。 对于 mariaDBLinkedService类型,请设置为“MariaDB”。 对于 MarketoLinkedService,请设置为“Marketo”。 对于 microsoftAccessLinkedService,请设置为“MicrosoftAccesss”类型。 对于 MongoDbLinkedService,请设置为“MongoDb”。 对于 MongoDbAtlasLinkedService类型,设置为“MongoDbAtlas”。 对于 MongoDbV2LinkedService,请设置为“MongoDbV2”。 对于 MySqlLinkedService类型,设置为“MySql”。 对于 NetezzaLinkedService,请设置为“Netezza”。 对于 ODataLinkedService类型,设置为“OData”。 对于 OdbcLinkedService,请设置为“Odbc”。 对于 Office365LinkedService,请设置为“Office365”。 对于 OracleLinkedService,请设置为“Oracle”。 对于 OracleCloudStorageLinkedService类型,设置为“OracleCloudStorage”。 对于 OracleServiceCloudLinkedService类型,设置为“OracleServiceCloudCloud”。 对于 paypalLinkedService类型,设置为“PayPal”。 对于 phoenixLinkedService类型,请设置为“Phoenix”。 对于 PostgreSqlLinkedService,请设置为“PostgreSql”。 对于 PostgreSqlV2LinkedService类型,设置为“PostgreSqlV2”。 对于 prestoLinkedService类型,设置为“Presto”。 对于 QuickBooksLinkedService,请设置为“QuickBooks”。 对于 QuickbaseLinkedService,请设置为“Quickbase”。 对于 ResponsysLinkedService类型,设置为“Responsys”。 对于 RestServiceLinkedService,请设置为“RestService”。 对于 SalesforceLinkedService类型,设置为“Salesforce”。 设置为 SalesforceMarketingCloudLinkedService类型的“SalesforceMarketingCloud”。 设置为 SalesforceServiceCloudLinkedService类型的“SalesforceServiceCloud”。 对于 SalesforceServiceCloudV2LinkedService,请设置为“SalesforceServiceCloudV2”。 对于 SalesforceV2LinkedService,请设置为“SalesforceV2”。 对于 SapBWLinkedService,请设置为“SapBWW”。 对于 SapCloudForCustomerLinkedService,请设置为“SapCloudForCustomer”。 对于 SapEccLinkedService类型,请设置为“SapEcc”。 对于 SapHanaLinkedService,请设置为“SapHana”。 对于 SapOdpLinkedService类型,设置为“SapOdpdp”。 对于 SapOpenHubLinkedService类型,设置为“SapOpenHubHub”。 对于 SapTableLinkedService类型,设置为“SapTableTable”。 对于 ServiceNowLinkedService类型,设置为“ServiceNow”。 对于 ServiceNowV2LinkedService,请设置为“ServiceNowV2”。 对于 SftpServerLinkedService类型,设置为“Sftp”。 对于 SharePointOnlineListLinkedService,请设置为“SharePointOnlineList”。 对于 ShopifyLinkedService,请设置为“Shopify”。 对于 SmartsheetLinkedService类型,设置为“Smartsheet”。 对于 SnowflakeLinkedService,请设置为“Snowflake”。 对于 SnowflakeV2LinkedService,请设置为“SnowflakeV2”。 对于 SparkLinkedService类型,设置为“Spark Spark”。 对于 SqlServerLinkedService,请设置为“SqlServer”。 对于 SquareLinkedService类型,设置为“Square”。 对于类型 SybaseLinkedService,设置为“Sybase”。 对于 TeamDeskLinkedService,请设置为“TeamDesk”。 对于类型 TeradataLinkedService,设置为“Teradata”。 对于类型 TwilioLinkedService,设置为“Twilio”。 对于类型 VerticaLinkedService,设置为“Vertica”。 对于 WarehouseLinkedService类型,设置为“Warehouse”。 对于 WebLinkedService类型,设置为“Web”。 对于 XeroLinkedService,请设置为“Xero”。 对于 ZendeskLinkedService,请设置为“Zendesk”。 对于类型 ZohoLinkedService,设置为“Zoho”。 “AmazonMWS”
“AmazonRdsForOracle”
“AmazonRdsForSqlServer”
“AmazonRedshift”
“AmazonS3”
“AmazonS3Compatible”
“AppFigures”
“Asana”
“AzureBatch”
“AzureBlobFS”
“AzureBlobStorage”
“AzureDatabricks”
“AzureDatabricksDeltaLake”
“AzureDataExplorer”
“AzureDataLakeAnalytics”
“AzureDataLakeStore”
“AzureFileStorage”
“AzureFunction”
“AzureKeyVault”
“AzureMariaDB”
“AzureML”
“AzureMLService”
“AzureMySql”
“AzurePostgreSql”
“AzureSearch”
“AzureSqlDatabase”
“AzureSqlDW”
“AzureSqlMI”
“AzureStorage”
“AzureSynapseArtifacts”
“AzureTableStorage”
“Cassandra”
“CommonDataServiceForApps”
“Concur”
“CosmosDb”
“CosmosDbMongoDbApi”
“Couchbase”
“CustomDataSource”
“Dataworld”
“Db2”
“钻取”
“Dynamics”
“DynamicsAX”
“DynamicsCrm”
“Eloqua”
“FileServer”
“FtpServer”
“GoogleAdWords”
“GoogleBigQuery”
“GoogleBigQueryV2”
“GoogleCloudStorage”
“GoogleSheets”
“Greenplum”
“HBase”
“Hdfs”
“HDInsight”
'HDInsightOnDemand'
“Hive”
“HttpServer”
“Hubspot”
“Impala”
“Informix”
“Jira”
“LakeHouse”
“Magento”
“MariaDB”
“Marketo”
“MicrosoftAccess”
“MongoDb”
“MongoDbAtlas”
“MongoDbV2”
“MySql”
“Netezza”
“OData”
“Odbc”
“Office365”
“Oracle”
“OracleCloudStorage”
“OracleServiceCloud”
“PayPal”
“Phoenix”
“PostgreSql”
“PostgreSqlV2”
“Presto”
“Quickbase”
“QuickBooks”
“Responsys”
“RestService”
“Salesforce”
“SalesforceMarketingCloud”
“SalesforceServiceCloud”
'SalesforceServiceCloudV2'
“SalesforceV2”
“SapBW”
“SapCloudForCustomer”
“SapEcc”
“SapHana”
“SapOdp”
“SapOpenHub”
“SapTable”
“ServiceNow”
“ServiceNowV2”
'Sftp'
“SharePointOnlineList”
“Shopify”
“Smartsheet”
“Snowflake”
“SnowflakeV2”
“Spark”
“SqlServer”
“Square”
“Sybase”
“TeamDesk”
'Teradata'
“Twilio”
“Vertica”
“Warehouse”
“Web”
“Xero”
“Zendesk”
“Zoho”(必需)
版本 链接服务的版本。 字符串

LinkedServiceReference

名字 描述 价值
参数 LinkedService 的参数。 ParameterValueSpecification
referenceName 引用 LinkedService 名称。 string (必需)
类型 链接服务引用类型。 “LinkedServiceReference”(必需)

MagentoLinkedService

名字 描述 价值
类型 链接服务的类型。 “Magento”(必需)
typeProperties Magento 服务器链接服务属性。 MagentoLinkedServiceTypeProperties (必需)

MagentoLinkedServiceTypeProperties

名字 描述 价值
accessToken Magento 的访问令牌。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Magento 实例的 URL。 (即 192.168.222.110/magento3) 任何(必需)
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何

MariaDBLinkedService

名字 描述 价值
类型 链接服务的类型。 “MariaDB”(必需)
typeProperties MariaDB 服务器链接服务属性。 MariaDBLinkedServiceTypeProperties (必需)

MariaDBLinkedServiceTypeProperties

名字 描述 价值
connectionString ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
数据库 连接的数据库名称。 类型:字符串。 任何
driverVersion MariaDB 驱动程序的版本。 类型:字符串。 对于旧驱动程序,V1 或为空,V2 用于新驱动程序。 V1 可以支持连接字符串和属性包,V2 只能支持连接字符串。 旧驱动程序计划于 2024 年 10 月弃用。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference
港口 连接的端口。 类型:整数。 任何
服务器 连接的服务器名称。 类型:字符串。 任何
sslMode 此选项指定驱动程序在连接到 MariaDB 时是否使用 TLS 加密和验证。 例如,SSLMode=<0/1/2/3/4>。 选项:DISABLED (0) / PREFERRED (1) /REQUIRED (2) / VERIFY_CA (3) / VERIFY_IDENTITY (4), REQUIRED (2) 建议仅允许使用 SSL/TLS 加密的连接。 任何
username 身份验证的用户名。 类型:字符串。 任何
useSystemTrustStore 此选项指定是使用系统信任存储中的 CA 证书,还是从指定的 PEM 文件使用 CA 证书。 例如 UseSystemTrustStore=<0/1>;选项:已启用 (1) / 禁用 (0) (默认) 任何

MarketoLinkedService

名字 描述 价值
类型 链接服务的类型。 “Marketo”(必需)
typeProperties Marketo 服务器链接服务属性。 MarketoLinkedServiceTypeProperties(必需)

MarketoLinkedServiceTypeProperties

名字 描述 价值
clientId Marketo 服务的客户端 ID。 任何(必需)
clientSecret Marketo 服务的客户端密码。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
端点 Marketo 服务器的终结点。 (即 123-ABC-321.mktorest.com) 任何(必需)
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何

Microsoft.DataFactory/factories/linkedservices

名字 描述 价值
名字 资源名称 字符串

约束:
最小长度 = 1
最大长度 = 1
模式 = ^[A-Za-z0-9_][^<>*#.%&:\\+?/]*$ (必需)
parent_id 此资源的父资源的 ID。 类型资源的 ID:工厂
性能 链接服务的属性。 LinkedService(必需)
类型 资源类型 “Microsoft.DataFactory/factories/linkedservices@2018-06-01”

MicrosoftAccessLinkedService

名字 描述 价值
类型 链接服务的类型。 “MicrosoftAccess”(必需)
typeProperties Microsoft Access 链接服务属性。 MicrosoftAccessLinkedServiceTypeProperties (必需)

MicrosoftAccessLinkedServiceTypeProperties

名字 描述 价值
authenticationType 用于作为 ODBC 数据存储连接到 Microsoft Access 的身份验证类型。 可能的值为:Anonymous 和 Basic。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
connectionString 连接字符串的非访问凭据部分以及可选的加密凭据。 类型:string、SecureString、AzureKeyVaultSecretReference 或 Expression 和 resultType 字符串。 任何(必需)
凭据 以特定于驱动程序的属性值格式指定的连接字符串的访问凭据部分。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 基本身份验证的密码。 SecretBase
userName 基本身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

MongoDbAtlasLinkedService

名字 描述 价值
类型 链接服务的类型。 “MongoDbAtlas”(必需)
typeProperties MongoDB Atlas 链接服务属性。 MongoDbAtlasLinkedServiceTypeProperties (必需)

MongoDbAtlasLinkedServiceTypeProperties

名字 描述 价值
connectionString MongoDB Atlas 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何(必需)
数据库 要访问的 MongoDB Atlas 数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
driverVersion 要选择的驱动程序版本。 允许的值为 v1 和 v2。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

MongoDbLinkedService

名字 描述 价值
类型 链接服务的类型。 “MongoDb”(必需)
typeProperties MongoDB 链接服务属性。 MongoDbLinkedServiceTypeProperties(必需)

MongoDbLinkedServiceTypeProperties

名字 描述 价值
allowSelfSignedServerCert 指定是否允许来自服务器的自签名证书。 默认值为 false。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
authenticationType 用于连接到 MongoDB 数据库的身份验证类型。 “Anonymous”
“Basic”
authSource 用于验证用户名和密码的数据库。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
databaseName 要访问的 MongoDB 数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
enableSsl 指定是否使用 SSL 加密与服务器的连接。 默认值为 false。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 身份验证密码。 SecretBase
港口 MongoDB 服务器用于侦听客户端连接的 TCP 端口号。 默认值为 27017。 类型:整数(或包含 resultType 整数的表达式),最小值:0。 任何
服务器 MongoDB 服务器的 IP 地址或服务器名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
username 身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

MongoDbV2LinkedService

名字 描述 价值
类型 链接服务的类型。 “MongoDbV2”(必需)
typeProperties MongoDB 链接服务属性。 MongoDbV2LinkedServiceTypeProperties(必需)

MongoDbV2LinkedServiceTypeProperties

名字 描述 价值
connectionString MongoDB 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何(必需)
数据库 要访问的 MongoDB 数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

MySqlLinkedService

名字 描述 价值
类型 链接服务的类型。 “MySql”(必需)
typeProperties MySQL 链接服务属性。 MySqlLinkedServiceTypeProperties(必需)

MySqlLinkedServiceTypeProperties

名字 描述 价值
allowZeroDateTime 这允许从数据库检索特殊的“零”日期值 0000-00-00。 类型:布尔值。 任何
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
connectionTimeout 在终止尝试并生成错误之前,等待与服务器的连接的时间长度(以秒为单位)。 类型:整数。 任何
convertZeroDateTime 如果返回日期或日期/时间列的 DateTime.MinValue,则返回不允许的值。 类型:布尔值。 任何
数据库 连接的数据库名称。 类型:字符串。 任何
driverVersion MySQL 驱动程序的版本。 类型:字符串。 对于旧驱动程序,V1 或为空,V2 用于新驱动程序。 V1 可以支持连接字符串和属性包,V2 只能支持连接字符串。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
guidFormat 确定应将哪个列类型(如果有)读取为 GUID。 类型:字符串。 无:不会将列类型作为 Guid 自动读取;Char36:所有 CHAR(36)列都以小写十六进制和连字符(与 UUID 匹配)作为 Guid 读取/写入。 任何
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference
港口 连接的端口。 类型:整数。 任何
服务器 连接的服务器名称。 类型:字符串。 任何
sslCert 客户端 SSL 证书文件的路径(采用 PEM 格式)。 还必须指定 SslKey。 类型:字符串。 任何
sslKey 客户端 SSL 私钥的路径(采用 PEM 格式)。 还必须指定 SslCert。 类型:字符串。 任何
sslMode 用于连接的 SSL 模式。 类型:整数。 0:禁用,1:首选,2:需要,3:verify-ca,4:验证完整。 任何
treatTinyAsBoolean 设置为 true 时,TINYINT(1) 值将作为布尔值返回。 类型:bool。 任何
username 身份验证的用户名。 类型:字符串。 任何
useSystemTrustStore 使用系统信任存储进行连接。 类型:整数。 0:启用,1:禁用。 任何

NetezzaLinkedService

名字 描述 价值
类型 链接服务的类型。 “Netezza”(必需)
typeProperties Netezza 链接服务属性。 NetezzaLinkedServiceTypeProperties (必需)

NetezzaLinkedServiceTypeProperties

名字 描述 价值
connectionString ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
pwd 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference

ODataLinkedService

名字 描述 价值
类型 链接服务的类型。 “OData”(必需)
typeProperties OData 链接服务属性。 ODataLinkedServiceTypeProperties(必需)

ODataLinkedServiceTypeProperties

名字 描述 价值
aadResourceId 指定要请求授权以使用 Directory 的资源。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
aadServicePrincipalCredentialType 指定用于服务主体的凭据类型(密钥或证书)。 “ServicePrincipalCert”
“ServicePrincipalKey”
authenticationType 用于连接到 OData 服务的身份验证类型。 “AadServicePrincipal”
“Anonymous”
“Basic”
“ManagedServiceIdentity”
“Windows”
authHeaders 请求中用于授权的 RESTful API 中的其他 HTTP 标头。 类型:键值对(值应为字符串类型)。 任何
azureCloudType 指示服务主体身份验证的 Azure 云类型。允许的值为 AzurePublic、AzureChina、AzureUsGovernment、AzureGermany。 默认值为数据工厂区域的云类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 OData 服务的密码。 SecretBase
servicePrincipalEmbeddedCert 指定在 Azure Active Directory 中注册的应用程序的 base64 编码证书。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
servicePrincipalEmbeddedCertPassword 如果证书具有密码,并且使用的是 AadServicePrincipal 身份验证,请指定证书的密码。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
servicePrincipalId 指定在 Azure Active Directory 中注册的应用程序的应用程序 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 指定在 Azure Active Directory 中注册的应用程序的机密。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
房客 指定应用程序所在的租户信息(域名或租户 ID)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
url OData 服务终结点的 URL。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
userName OData 服务的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

OdbcLinkedService

名字 描述 价值
类型 链接服务的类型。 “Odbc”(必需)
typeProperties ODBC 链接服务属性。 OdbcLinkedServiceTypeProperties (必需)

OdbcLinkedServiceTypeProperties

名字 描述 价值
authenticationType 用于连接到 ODBC 数据存储的身份验证类型。 可能的值为:Anonymous 和 Basic。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
connectionString 连接字符串的非访问凭据部分以及可选的加密凭据。 类型:string、SecureString、AzureKeyVaultSecretReference 或 Expression 和 resultType 字符串。 任何(必需)
凭据 以特定于驱动程序的属性值格式指定的连接字符串的访问凭据部分。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 基本身份验证的密码。 SecretBase
userName 基本身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

Office365LinkedService

名字 描述 价值
类型 链接服务的类型。 “Office365”(必需)
typeProperties Office365 链接服务属性。 Office365LinkedServiceTypeProperties(必需)

Office365LinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
office365TenantId Office 365 帐户所属的 Azure 租户 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
servicePrincipalId 指定应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
servicePrincipalKey 指定应用程序的密钥。 SecretBase(必需)
servicePrincipalTenantId 指定 Azure AD Web 应用程序所在的租户信息。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

OracleCloudStorageLinkedService

名字 描述 价值
类型 链接服务的类型。 “OracleCloudStorage”(必需)
typeProperties Oracle 云存储链接服务属性。 OracleCloudStorageLinkedServiceTypeProperties (必需)

OracleCloudStorageLinkedServiceTypeProperties

名字 描述 价值
accessKeyId Oracle 云存储标识和访问管理(IAM)用户的访问密钥标识符。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
secretAccessKey Oracle 云存储标识和访问管理 (IAM) 用户的机密访问密钥。 SecretBase
serviceUrl 此值指定要使用 Oracle 云存储连接器访问的终结点。 这是一个可选属性;仅当想要尝试其他服务终结点或想要在 https 和 http 之间切换时更改它。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

OracleLinkedService

名字 描述 价值
类型 链接服务的类型。 “Oracle”(必需)
typeProperties Oracle 数据库链接服务属性。 OracleLinkedServiceTypeProperties(必需)

OracleLinkedServiceTypeProperties

名字 描述 价值
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference

OracleServiceCloudLinkedService

名字 描述 价值
类型 链接服务的类型。 “OracleServiceCloud”(必需)
typeProperties Oracle 服务云链接服务属性。 OracleServiceCloudLinkedServiceTypeProperties(必需)

OracleServiceCloudLinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Oracle 服务云实例的 URL。 任何(必需)
密码 与用户名密钥中提供的用户名对应的密码。 SecretBase(必需)
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
username 用于访问 Oracle 服务云服务器的用户名。 任何(必需)

ParameterDefinitionSpecification

名字 描述 价值

ParameterSpecification

名字 描述 价值
defaultValue 参数的默认值。 任何
类型 参数类型。 “Array”
“Bool”
“Float”
“Int”
“Object”
“SecureString”
“String”(必需)

ParameterValueSpecification

名字 描述 价值

ParameterValueSpecification

名字 描述 价值

PaypalLinkedService

名字 描述 价值
类型 链接服务的类型。 “PayPal”(必需)
typeProperties PayPal服务链接服务属性。 PaypalLinkedServiceTypeProperties (必需)

PaypalLinkedServiceTypeProperties

名字 描述 价值
clientId 与PayPal应用程序关联的客户端 ID。 任何(必需)
clientSecret 与PayPal应用程序关联的客户端密码。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 PayPal实例的 URL。 (即 api.sandbox.paypal.com) 任何(必需)
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何

PhoenixLinkedService

名字 描述 价值
类型 链接服务的类型。 “Phoenix”(必需)
typeProperties Phoenix 服务器链接服务属性。 PhoenixLinkedServiceTypeProperties (必需)

PhoenixLinkedServiceTypeProperties

名字 描述 价值
allowHostNameCNMismatch 指定是否要求 CA 颁发的 SSL 证书名称与通过 SSL 连接时服务器的主机名匹配。 默认值为 false。 任何
allowSelfSignedServerCert 指定是否允许来自服务器的自签名证书。 默认值为 false。 任何
authenticationType 用于连接到 Phoenix 服务器的身份验证机制。 “Anonymous”
“UsernameAndPassword”
“WindowsAzureHDInsightService”(必需)
enableSsl 指定是否使用 SSL 加密与服务器的连接。 默认值为 false。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Phoenix 服务器的 IP 地址或主机名。 (即 192.168.222.160) 任何(必需)
httpPath 对应于 Phoenix 服务器的部分 URL。 (即 /gateway/sandbox/phoenix/version)。 如果使用 WindowsAzureHDInsightService,则默认值为 hbasephoenix。 任何
密码 与用户名对应的密码。 SecretBase
港口 Phoenix 服务器用来侦听客户端连接的 TCP 端口。 默认值为 8765。 任何
trustedCertPath 包含受信任的 CA 证书的 .pem 文件的完整路径,用于通过 SSL 连接时验证服务器。 只能在自承载 IR 上使用 SSL 时设置此属性。 默认值为随 IR 一起安装的 cacerts.pem 文件。 任何
username 用于连接到 Phoenix 服务器的用户名。 任何
useSystemTrustStore 指定是使用系统信任存储中的 CA 证书还是从指定的 PEM 文件使用 CA 证书。 默认值为 false。 任何

PostgreSqlLinkedService

名字 描述 价值
类型 链接服务的类型。 “PostgreSql”(必需)
typeProperties PostgreSQL 链接服务属性。 PostgreSqlLinkedServiceTypeProperties(必需)

PostgreSqlLinkedServiceTypeProperties

名字 描述 价值
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference

PostgreSqlV2LinkedService

名字 描述 价值
类型 链接服务的类型。 “PostgreSqlV2”(必需)
typeProperties PostgreSQLV2 链接服务属性。 PostgreSqlV2LinkedServiceTypeProperties (必需)

PostgreSqlV2LinkedServiceTypeProperties

名字 描述 价值
authenticationType 要使用的身份验证类型。 类型:字符串。 任何(必需)
commandTimeout 在尝试执行命令之前,等待时间(以秒为单位),然后再终止尝试并生成错误。 对于无穷大,设置为零。 类型:整数。 任何
connectionTimeout 在终止尝试并生成错误之前,尝试建立连接的时间(以秒为单位)。 类型:整数。 任何
数据库 连接的数据库名称。 类型:字符串。 任何(必需)
编码 获取或设置用于对 PostgreSQL 字符串数据进行编码/解码的 .NET 编码。 类型:字符串 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
logParameters 启用后,在执行命令时,将记录参数值。 类型:布尔值。 任何
密码 连接字符串中密码的 Azure Key Vault 机密引用。 类型:字符串。 AzureKeyVaultSecretReference
是否应使用连接池。 类型:布尔值。 任何
港口 连接的端口。 类型:整数。 任何
readBufferSize 确定读取时内部缓冲区使用的大小。 如果从数据库传输大型值,则提高性能可能会提高。 类型:整数。 任何
图式 设置架构搜索路径。 类型:字符串。 任何
服务器 连接的服务器名称。 类型:字符串。 任何(必需)
sslCertificate 要发送到服务器的客户端证书的位置。 类型:字符串。 任何
sslKey 要发送到服务器的客户端证书的客户端密钥的位置。 类型:字符串。 任何
sslMode 用于连接的 SSL 模式。 类型:整数。 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. 类型:整数。 任何(必需)
sslPassword 客户端证书密钥的密码。 类型:字符串。 任何
时区 获取或设置会话时区。 类型:字符串。 任何
trustServerCertificate 是否信任服务器证书而不验证它。 类型:布尔值。 任何
username 身份验证的用户名。 类型:字符串。 任何(必需)

PrestoLinkedService

名字 描述 价值
类型 链接服务的类型。 “Presto”(必需)
typeProperties Presto 服务器链接服务属性。 PrestoLinkedServiceTypeProperties(必需)

PrestoLinkedServiceTypeProperties

名字 描述 价值
allowHostNameCNMismatch 指定是否要求 CA 颁发的 SSL 证书名称与通过 SSL 连接时服务器的主机名匹配。 默认值为 false。 任何
allowSelfSignedServerCert 指定是否允许来自服务器的自签名证书。 默认值为 false。 任何
authenticationType 用于连接到 Presto 服务器的身份验证机制。 “Anonymous”
“LDAP”(必需)
目录 针对服务器的所有请求的目录上下文。 任何(必需)
enableSsl 指定是否使用 SSL 加密与服务器的连接。 默认值为 false。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Presto 服务器的 IP 地址或主机名。 (即 192.168.222.160) 任何(必需)
密码 与用户名对应的密码。 SecretBase
港口 Presto 服务器用来侦听客户端连接的 TCP 端口。 默认值为 8080。 任何
serverVersion Presto 服务器的版本。 (即 0.148-t) 任何(必需)
timeZoneID 连接使用的本地时区。 此选项的有效值在 IANA 时区数据库中指定。 默认值为系统时区。 任何
trustedCertPath 包含受信任的 CA 证书的 .pem 文件的完整路径,用于通过 SSL 连接时验证服务器。 只能在自承载 IR 上使用 SSL 时设置此属性。 默认值为随 IR 一起安装的 cacerts.pem 文件。 任何
username 用于连接到 Presto 服务器的用户名。 任何
useSystemTrustStore 指定是使用系统信任存储中的 CA 证书还是从指定的 PEM 文件使用 CA 证书。 默认值为 false。 任何

QuickbaseLinkedService

名字 描述 价值
类型 链接服务的类型。 “Quickbase”(必需)
typeProperties 快速数据库链接服务属性。 QuickbaseLinkedServiceTypeProperties(必需)

QuickbaseLinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
url 用于连接 Quickbase 源的 URL。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
userToken Quickbase 源的用户令牌。 SecretBase(必需)

QuickBooksLinkedService

名字 描述 价值
类型 链接服务的类型。 “QuickBooks”(必需)
typeProperties QuickBooks 服务器链接服务属性。 QuickBooksLinkedServiceTypeProperties(必需)

QuickBooksLinkedServiceTypeProperties

名字 描述 价值
accessToken OAuth 1.0 身份验证的访问令牌。 SecretBase
accessTokenSecret OAuth 1.0 身份验证的访问令牌机密。 SecretBase
companyId 要授权的 QuickBooks 公司的公司 ID。 任何
connectionProperties 用于连接到 QuickBooks 的属性。 它与链接服务中的其他任何属性互斥。 类型:对象。 任何
consumerKey OAuth 1.0 身份验证的使用者密钥。 任何
consumerSecret OAuth 1.0 身份验证的使用者密码。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
端点 QuickBooks 服务器的终结点。 (即 quickbooks.api.intuit.com) 任何
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何

ResponsysLinkedService

名字 描述 价值
类型 链接服务的类型。 “Responsys”(必需)
typeProperties Responsys 链接服务属性。 ResponsysLinkedServiceTypeProperties (必需)

ResponsysLinkedServiceTypeProperties

名字 描述 价值
clientId 与 Responsys 应用程序关联的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
clientSecret 与 Responsys 应用程序关联的客户端密码。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
端点 Responsys 服务器的终结点。 任何(必需)
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何

RestServiceLinkedService

名字 描述 价值
类型 链接服务的类型。 “RestService”(必需)
typeProperties Rest Service 链接服务属性。 RestServiceLinkedServiceTypeProperties(必需)

RestServiceLinkedServiceTypeProperties

名字 描述 价值
aadResourceId 请求使用授权的资源。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于连接到 REST 服务的身份验证类型。 “AadServicePrincipal”
“Anonymous”
“Basic”
“ManagedServiceIdentity”
“OAuth2ClientCredential”(必需)
authHeaders 请求中用于授权的 RESTful API 中的其他 HTTP 标头。 类型:对象(或带有 resultType 对象的表达式)。 任何
azureCloudType 指示服务主体身份验证的 Azure 云类型。允许的值为 AzurePublic、AzureChina、AzureUsGovernment、AzureGermany。 默认值为数据工厂区域的云类型。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clientId 与应用程序关联的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clientSecret 与应用程序关联的客户端密码。 SecretBase
凭据 包含身份验证信息的凭据引用。 CredentialReference
enableServerCertificateValidation 是否在连接到终结点时验证服务器端 SSL 证书。默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 基本身份验证类型中使用的密码。 SecretBase
资源 将向其请求访问权限的目标服务或资源。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
范围 所需的访问范围。 它描述将请求哪种类型的访问。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalEmbeddedCert 指定在 Azure Active Directory 中注册的应用程序的 base64 编码证书。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
servicePrincipalEmbeddedCertPassword 如果证书具有密码,并且使用的是 AadServicePrincipal 身份验证,请指定证书的密码。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
servicePrincipalId AadServicePrincipal 身份验证类型中使用的应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey AadServicePrincipal 身份验证类型中使用的应用程序的密钥。 SecretBase
房客 应用程序所在的 AadServicePrincipal 身份验证类型中使用的租户信息(域名或租户 ID)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
tokenEndpoint 要获取访问令牌的授权服务器的令牌终结点。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
url REST 服务的基 URL。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
userName 基本身份验证类型中使用的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SalesforceLinkedService

名字 描述 价值
类型 链接服务的类型。 “Salesforce”(必需)
typeProperties Salesforce 链接服务属性。 SalesforceLinkedServiceTypeProperties (必需)

SalesforceLinkedServiceTypeProperties

名字 描述 价值
apiVersion ADF 中使用的 Salesforce API 版本。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
environmentUrl Salesforce 实例的 URL。 默认值为“https://login.salesforce.com”。 若要从沙盒复制数据,请指定“https://test.salesforce.com”。 若要从自定义域复制数据,请指定“https://[domain].my.salesforce.com”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 Salesforce 实例的基本身份验证的密码。 SecretBase
securityToken 安全令牌是可选的,用于远程访问 Salesforce 实例。 SecretBase
username Salesforce 实例的基本身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SalesforceMarketingCloudLinkedService

名字 描述 价值
类型 链接服务的类型。 “SalesforceMarketingCloud”(必需)
typeProperties Salesforce Marketing Cloud 链接服务属性。 SalesforceMarketingCloudLinkedServiceTypeProperties(必需)

SalesforceMarketingCloudLinkedServiceTypeProperties

名字 描述 价值
clientId 与 Salesforce Marketing Cloud 应用程序关联的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clientSecret 与 Salesforce Marketing Cloud 应用程序关联的客户端密码。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
connectionProperties 用于连接到 Salesforce Marketing Cloud 的属性。 它与链接服务中的其他任何属性互斥。 类型:对象。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何

SalesforceServiceCloudLinkedService

名字 描述 价值
类型 链接服务的类型。 “SalesforceServiceCloud”(必需)
typeProperties Salesforce Service Cloud 链接服务属性。 SalesforceServiceCloudLinkedServiceTypeProperties(必需)

SalesforceServiceCloudLinkedServiceTypeProperties

名字 描述 价值
apiVersion ADF 中使用的 Salesforce API 版本。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
environmentUrl Salesforce Service Cloud 实例的 URL。 默认值为“https://login.salesforce.com”。 若要从沙盒复制数据,请指定“https://test.salesforce.com”。 若要从自定义域复制数据,请指定“https://[domain].my.salesforce.com”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
extendedProperties 追加到连接字符串的扩展属性。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 Salesforce 实例的基本身份验证的密码。 SecretBase
securityToken 安全令牌是可选的,用于远程访问 Salesforce 实例。 SecretBase
username Salesforce 实例的基本身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SalesforceServiceCloudV2LinkedService

名字 描述 价值
类型 链接服务的类型。 “SalesforceServiceCloudV2”(必需)
typeProperties Salesforce Service Cloud V2 链接服务属性。 SalesforceServiceCloudV2LinkedServiceTypeProperties(必需)

SalesforceServiceCloudV2LinkedServiceTypeProperties

名字 描述 价值
apiVersion ADF 中使用的 Salesforce API 版本。 版本必须大于或等于 Salesforce BULK API 2.0 所需的 47.0。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于连接到 Salesforce 的身份验证类型。 目前,我们仅支持 OAuth2ClientCredentials,这也是默认值 任何
clientId Salesforce 实例的 OAuth 2.0 客户端凭据流身份验证的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clientSecret Salesforce 实例的 OAuth 2.0 客户端凭据流身份验证的客户端密码。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
environmentUrl Salesforce Service Cloud 实例的 URL。 例如,“https://[domain].my.salesforce.com”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SalesforceV2LinkedService

名字 描述 价值
类型 链接服务的类型。 “SalesforceV2”(必需)
typeProperties Salesforce V2 链接服务属性。 SalesforceV2LinkedServiceTypeProperties (必需)

SalesforceV2LinkedServiceTypeProperties

名字 描述 价值
apiVersion ADF 中使用的 Salesforce API 版本。 版本必须大于或等于 Salesforce BULK API 2.0 所需的 47.0。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于连接到 Salesforce 的身份验证类型。 目前,我们仅支持 OAuth2ClientCredentials,这也是默认值 任何
clientId Salesforce 实例的 OAuth 2.0 客户端凭据流身份验证的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
clientSecret Salesforce 实例的 OAuth 2.0 客户端凭据流身份验证的客户端密码。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
environmentUrl Salesforce 实例的 URL。 例如,“https://[domain].my.salesforce.com”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SapBWLinkedService

名字 描述 价值
类型 链接服务的类型。 “SapBW”(必需)
typeProperties 特定于此链接服务类型的属性。 SapBWLinkedServiceTypeProperties(必需)

SapBWLinkedServiceTypeProperties

名字 描述 价值
clientId BW 系统上客户端的客户端 ID。 (通常为表示为字符串的三位数十进制数)类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 用于访问 SAP BW 服务器的密码。 SecretBase
服务器 SAP BW 实例的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
systemNumber BW 系统的系统编号。 (通常为表示为字符串的两位数十进制数字。类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
userName 用于访问 SAP BW 服务器的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SapCloudForCustomerLinkedService

名字 描述 价值
类型 链接服务的类型。 “SapCloudForCustomer”(必需)
typeProperties SAP Cloud for Customer 链接服务属性。 SapCloudForCustomerLinkedServiceTypeProperties(必需)

SapCloudForCustomerLinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 必须提供 encryptedCredential 或用户名/密码。 类型:字符串。 字符串
密码 基本身份验证的密码。 SecretBase
url SAP Cloud for Customer OData API 的 URL。 例如,“[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
username 基本身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SapEccLinkedService

名字 描述 价值
类型 链接服务的类型。 “SapEcc”(必需)
typeProperties SAP ECC 链接服务属性。 SapEccLinkedServiceTypeProperties(必需)

SapEccLinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 必须提供 encryptedCredential 或用户名/密码。 类型:字符串。 字符串
密码 基本身份验证的密码。 SecretBase
url SAP ECC OData API 的 URL。 例如,“[https://hostname:port/sap/opu/odata/sap/servicename/]”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
username 基本身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SapHanaLinkedService

名字 描述 价值
类型 链接服务的类型。 “SapHana”(必需)
typeProperties 特定于此链接服务类型的属性。 SapHanaLinkedServiceProperties (必需)

SapHanaLinkedServiceProperties

名字 描述 价值
authenticationType 用于连接到 SAP HANA 服务器的身份验证类型。 “Basic”
“Windows”
connectionString SAP HANA ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 用于访问 SAP HANA 服务器的密码。 SecretBase
服务器 SAP HANA 服务器的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
userName 用于访问 SAP HANA 服务器的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SapOdpLinkedService

名字 描述 价值
类型 链接服务的类型。 “SapOdp”(必需)
typeProperties 特定于 SAP ODP 链接服务类型的属性。 SapOdpLinkedServiceTypeProperties(必需)

SapOdpLinkedServiceTypeProperties

名字 描述 价值
clientId 表所在的 SAP 系统上客户端的客户端 ID。 (通常为表示为字符串的三位数十进制数)类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
语言 表所在的 SAP 系统的语言。 默认值为 EN。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
logonGroup SAP 系统的登录组。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
messageServer SAP 消息服务器的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
messageServerService 消息服务器的服务名称或端口号。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 用于访问表所在的 SAP 服务器的密码。 SecretBase
服务器 表所在的 SAP 实例的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncLibraryPath 外部安全产品的库,用于访问表所在的 SAP 服务器。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncMode 用于访问表所在的 SAP 服务器的 SNC 激活指示器。 必须是 0(关)或 1(开)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncMyName 发起程序的 SNC 名称,用于访问表所在的 SAP 服务器。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncPartnerName 通信合作伙伴的 SNC 名称,用于访问表所在的 SAP 服务器。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncQop SNC 保护质量。 允许的值包括:1、2、3、8、9。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
subscriberName 订阅者名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
systemId 表所在的 SAP 系统的 SystemID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
systemNumber 表所在的 SAP 系统的系统编号。 (通常为表示为字符串的两位数十进制数字。类型:字符串(或带有 resultType 字符串的表达式)。 任何
userName 用于访问表所在的 SAP 服务器的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
x509CertificatePath SNC X509 证书文件路径。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SapOpenHubLinkedService

名字 描述 价值
类型 链接服务的类型。 “SapOpenHub”(必需)
typeProperties 特定于 SAP Business Warehouse Open Hub 目标链接服务类型的属性。 SapOpenHubLinkedServiceTypeProperties(必需)

SapOpenHubLinkedServiceTypeProperties

名字 描述 价值
clientId 开放中心目标的 BW 系统上的客户端的客户端 ID。 (通常为表示为字符串的三位数十进制数)类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
语言 开放中心目标所在的 BW 系统的语言。 默认值为 EN。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
logonGroup SAP 系统的登录组。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
messageServer SAP 消息服务器的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
messageServerService 消息服务器的服务名称或端口号。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 用于访问开放中心目标所在的 SAP BW 服务器的密码。 SecretBase
服务器 打开中心目标的 SAP BW 实例的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
systemId 表所在的 SAP 系统的 SystemID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
systemNumber 开放中心目标所在的 BW 系统的系统编号。 (通常为表示为字符串的两位数十进制数字。类型:字符串(或带有 resultType 字符串的表达式)。 任何
userName 用于访问打开中心目标的 SAP BW 服务器的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SapTableLinkedService

名字 描述 价值
类型 链接服务的类型。 “SapTable”(必需)
typeProperties 特定于此链接服务类型的属性。 SapTableLinkedServiceTypeProperties(必需)

SapTableLinkedServiceTypeProperties

名字 描述 价值
clientId 表所在的 SAP 系统上客户端的客户端 ID。 (通常为表示为字符串的三位数十进制数)类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
语言 表所在的 SAP 系统的语言。 默认值为 EN。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
logonGroup SAP 系统的登录组。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
messageServer SAP 消息服务器的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
messageServerService 消息服务器的服务名称或端口号。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
密码 用于访问表所在的 SAP 服务器的密码。 SecretBase
服务器 表所在的 SAP 实例的主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncLibraryPath 外部安全产品的库,用于访问表所在的 SAP 服务器。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncMode 用于访问表所在的 SAP 服务器的 SNC 激活指示器。 必须是 0(关)或 1(开)。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncMyName 发起程序的 SNC 名称,用于访问表所在的 SAP 服务器。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncPartnerName 通信合作伙伴的 SNC 名称,用于访问表所在的 SAP 服务器。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
sncQop SNC 保护质量。 允许的值包括:1、2、3、8、9。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
systemId 表所在的 SAP 系统的 SystemID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
systemNumber 表所在的 SAP 系统的系统编号。 (通常为表示为字符串的两位数十进制数字。类型:字符串(或带有 resultType 字符串的表达式)。 任何
userName 用于访问表所在的 SAP 服务器的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

ScriptAction

名字 描述 价值
名字 脚本操作的用户提供的名称。 string (必需)
参数 脚本操作的参数。 字符串
角色 应对其执行脚本操作的节点类型。 任何(必需)
uri 脚本操作的 URI。 string (必需)

SecretBase

名字 描述 价值
类型 对于 AzureKeyVaultSecretReference,请设置为“AzureKeyVaultSecret”。 对于 type SecureString,设置为“SecureString”。 “AzureKeyVaultSecret”
“SecureString”(必需)

SecureString

名字 描述 价值
类型 机密的类型。 “SecureString”(必需)
价值 安全字符串的值。 string (必需)

ServiceNowLinkedService

名字 描述 价值
类型 链接服务的类型。 “ServiceNow”(必需)
typeProperties ServiceNow 服务器链接服务属性。 ServiceNowLinkedServiceTypeProperties (必需)

ServiceNowLinkedServiceTypeProperties

名字 描述 价值
authenticationType 要使用的身份验证类型。 “Basic”
“OAuth2”(必需)
clientId OAuth2 身份验证的客户端 ID。 任何
clientSecret OAuth2 身份验证的客户端密码。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
端点 ServiceNow 服务器的终结点。 (即 <实例>.service-now.com) 任何(必需)
密码 与基本身份验证和 OAuth2 身份验证的用户名对应的密码。 SecretBase
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何
username 用于连接到 ServiceNow 服务器以进行基本身份验证和 OAuth2 身份验证的用户名。 任何

ServiceNowV2LinkedService

名字 描述 价值
类型 链接服务的类型。 “ServiceNowV2”(必需)
typeProperties ServiceNowV2 服务器链接服务属性。 ServiceNowV2LinkedServiceTypeProperties (必需)

ServiceNowV2LinkedServiceTypeProperties

名字 描述 价值
authenticationType 要使用的身份验证类型。 “Basic”
“OAuth2”(必需)
clientId OAuth2 身份验证的客户端 ID。 任何
clientSecret OAuth2 身份验证的客户端密码。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
端点 ServiceNowV2 服务器的终结点。 (即 <实例>.service-now.com) 任何(必需)
grantType 用于 OAuth2 身份验证的 GrantType。 默认值为密码。 任何
密码 与基本身份验证和 OAuth2 身份验证的用户名对应的密码。 SecretBase
username 用于连接到 ServiceNowV2 服务器以进行基本身份验证和 OAuth2 身份验证的用户名。 任何

SftpServerLinkedService

名字 描述 价值
类型 链接服务的类型。 “Sftp”(必需)
typeProperties 特定于此链接服务类型的属性。 SftpServerLinkedServiceTypeProperties (必需)

SftpServerLinkedServiceTypeProperties

名字 描述 价值
authenticationType 用于连接到 FTP 服务器的身份验证类型。 “Basic”
“MultiFactor”
“SshPublicKey”
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 SFTP 服务器主机名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
hostKeyFingerprint SFTP 服务器的主机键指打印。 当 SkipHostKeyValidation 为 false 时,应指定 HostKeyFingerprint。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
passPhrase 如果 SSH 私钥已加密,则解密 SSH 私钥的密码。 SecretBase
密码 用于登录 SFTP 服务器进行基本身份验证的密码。 SecretBase
港口 SFTP 服务器用于侦听客户端连接的 TCP 端口号。 默认值为 22。 类型:整数(或包含 resultType 整数的表达式),最小值:0。 任何
privateKeyContent 用于 SshPublicKey 身份验证的 Base64 编码 SSH 私钥内容。 对于使用 SshPublicKey 身份验证的本地复制,应指定 PrivateKeyPath 或 PrivateKeyContent。 SSH 私钥应为 OpenSSH 格式。 SecretBase
privateKeyPath SshPublicKey 身份验证的 SSH 私钥文件路径。 仅适用于本地复制。 对于使用 SshPublicKey 身份验证的本地复制,应指定 PrivateKeyPath 或 PrivateKeyContent。 SSH 私钥应为 OpenSSH 格式。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
skipHostKeyValidation 如果为 true,请跳过 SSH 主机密钥验证。 默认值为 false。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
userName 用于登录到 SFTP 服务器的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SharePointOnlineListLinkedService

名字 描述 价值
类型 链接服务的类型。 “SharePointOnlineList”(必需)
typeProperties SharePoint Online 列表链接服务属性。 SharePointOnlineListLinkedServiceTypeProperties (必需)

SharePointOnlineListLinkedServiceTypeProperties

名字 描述 价值
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalEmbeddedCert 指定在 Azure Active Directory 中注册的应用程序的 base64 编码证书。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
servicePrincipalEmbeddedCertPassword 如果证书具有密码,并且使用的是 AadServicePrincipal 身份验证,请指定证书的密码。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
servicePrincipalId 在 Azure Active Directory 中注册的应用程序(客户端)ID。 请确保向此应用程序授予 SharePoint 网站权限。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
servicePrincipalKey 在 Azure Active Directory 中注册的应用程序的客户端密码。 类型:字符串(或带有 resultType 字符串的表达式)。 SecretBase
siteUrl SharePoint Online 网站的 URL。 例如,https://contoso.sharepoint.com/sites/siteName。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
tenantId 应用程序所在的租户 ID。 可以从 Azure 门户 Active Directory 概述页找到它。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

ShopifyLinkedService

名字 描述 价值
类型 链接服务的类型。 “Shopify”(必需)
typeProperties Shopify Service 链接服务属性。 ShopifyLinkedServiceTypeProperties(必需)

ShopifyLinkedServiceTypeProperties

名字 描述 价值
accessToken 可用于访问 Shopify 数据的 API 访问令牌。 如果令牌处于脱机模式,则令牌不会过期。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Shopify 服务器的终结点。 (即 mystore.myshopify.com) 任何(必需)
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何

SmartsheetLinkedService

名字 描述 价值
类型 链接服务的类型。 “Smartsheet”(必需)
typeProperties Smartsheet 链接服务属性。 SmartsheetLinkedServiceTypeProperties (必需)

SmartsheetLinkedServiceTypeProperties

名字 描述 价值
apiToken Smartsheet 源的 API 令牌。 SecretBase(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串

SnowflakeLinkedService

名字 描述 价值
类型 链接服务的类型。 “Snowflake”(必需)
typeProperties Snowflake 链接服务属性。 SnowflakeLinkedServiceTypeProperties(必需)

SnowflakeLinkedServiceTypeProperties

名字 描述 价值
connectionString 雪花的连接字符串。 类型:string、SecureString。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference

SnowflakeLinkedV2ServiceTypeProperties

名字 描述 价值
accountIdentifier Snowflake 帐户的帐户标识符,例如 xy12345.east-us-2.azure 任何(必需)
authenticationType 用于身份验证的类型。 类型:字符串。 “AADServicePrincipal”
“Basic”
“KeyPair”
clientId 在 Azure Active Directory 中注册用于 AADServicePrincipal 身份验证的应用程序的客户端 ID。 任何
clientSecret 用于 AADServicePrincipal 身份验证的客户端机密的 Azure 密钥保管库机密参考。 SecretBase
数据库 Snowflake 数据库的名称。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Snowflake 帐户的主机名。 任何
密码 连接字符串中密码的 Azure Key Vault 机密引用。 SecretBase
privateKey 用于 KeyPair 身份验证的 privateKey 的 Azure Key Vault 机密参考。 SecretBase
privateKeyPassphrase 使用加密私钥进行 KeyPair 身份验证的私钥密码的 Azure 密钥保管库机密参考。 SecretBase
范围 在 Azure Active Directory 中注册用于 AADServicePrincipal 身份验证的应用程序的范围。 任何
tenantId 在 Azure Active Directory 中注册用于 AADServicePrincipal 身份验证的应用程序的租户 ID。 任何
用户 Snowflake 用户的名称。 任何
仓库 Snowflake 仓库的名称。 任何(必需)

SnowflakeV2LinkedService

名字 描述 价值
类型 链接服务的类型。 “SnowflakeV2”(必需)
typeProperties Snowflake 链接服务属性。 SnowflakeLinkedV2ServiceTypeProperties (必需)

SparkLinkedService

名字 描述 价值
类型 链接服务的类型。 “Spark”(必需)
typeProperties Spark Server 链接服务属性。 SparkLinkedServiceTypeProperties (必需)

SparkLinkedServiceTypeProperties

名字 描述 价值
allowHostNameCNMismatch 指定是否要求 CA 颁发的 SSL 证书名称与通过 SSL 连接时服务器的主机名匹配。 默认值为 false。 任何
allowSelfSignedServerCert 指定是否允许来自服务器的自签名证书。 默认值为 false。 任何
authenticationType 用于访问 Spark 服务器的身份验证方法。 “Anonymous”
“Username”
“UsernameAndPassword”
“WindowsAzureHDInsightService”(必需)
enableSsl 指定是否使用 SSL 加密与服务器的连接。 默认值为 false。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Spark 服务器的 IP 地址或主机名 任何(必需)
httpPath 与 Spark 服务器对应的部分 URL。 任何
密码 与你在“用户名”字段中提供的用户名对应的密码 SecretBase
港口 Spark 服务器用于侦听客户端连接的 TCP 端口。 任何(必需)
serverType Spark 服务器的类型。 “SharkServer”
“SharkServer2”
“SparkThriftServer”
thriftTransportProtocol 在 Thrift 层中使用的传输协议。 “Binary”
“HTTP”
“SASL”
trustedCertPath 包含受信任的 CA 证书的 .pem 文件的完整路径,用于通过 SSL 连接时验证服务器。 只能在自承载 IR 上使用 SSL 时设置此属性。 默认值为随 IR 一起安装的 cacerts.pem 文件。 任何
username 用于访问 Spark Server 的用户名。 任何
useSystemTrustStore 指定是使用系统信任存储中的 CA 证书还是从指定的 PEM 文件使用 CA 证书。 默认值为 false。 任何

SqlAlwaysEncryptedProperties

名字 描述 价值
alwaysEncryptedAkvAuthType Sql 始终加密 AKV 身份验证类型。 类型:字符串。 “ManagedIdentity”
“ServicePrincipal”
“UserAssignedManagedIdentity”(必需)
凭据 包含身份验证信息的凭据引用。 CredentialReference
servicePrincipalId Azure Active Directory 中用于 Azure Key Vault 身份验证的应用程序的客户端 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Azure Key Vault 进行身份验证的服务主体的密钥。 SecretBase

SqlServerLinkedService

名字 描述 价值
类型 链接服务的类型。 “SqlServer”(必需)
typeProperties SQL Server 链接服务属性。 SqlServerLinkedServiceTypeProperties(必需)

SqlServerLinkedServiceTypeProperties

名字 描述 价值
alwaysEncryptedSettings Sql 始终加密属性。 SqlAlwaysEncryptedProperties
applicationIntent 连接到服务器时的应用程序工作负荷类型,由建议的版本使用。 可能的值为 ReadOnly 和 ReadWrite。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
authenticationType 用于身份验证的类型。 类型:字符串。 “SQL”
“UserAssignedManagedIdentity”
“Windows”
commandTimeout 在终止尝试执行命令并生成错误之前(以秒为单位)的默认等待时间(以秒为单位),由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectionString 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
connectRetryCount 确定有空闲连接失败(由建议的版本使用)后尝试的重新连接数。 这必须是介于 0 和 255 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectRetryInterval 确定建议的版本使用空闲连接失败后,每个重新连接尝试之间的时间(以秒为单位)。 这必须是介于 1 和 60 之间的整数。 类型:整数(或包含 resultType 整数的表达式)。 任何
connectTimeout 在终止尝试并生成由建议版本使用的错误之前,等待与服务器的连接的时间长度(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
凭据 包含身份验证信息的凭据引用。 CredentialReference
数据库 建议的版本使用的数据库的名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
加密 指示客户端和服务器之间发送的所有数据是否需要 TLS 加密(由建议的版本使用)。 可能的值为 true/yes/mandatory、false/no/optional 和 strict。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
failoverPartner 如果主服务器关闭(由建议的版本使用)连接到的伙伴服务器的名称或地址。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
hostNameInCertificate 验证连接的服务器证书时要使用的主机名。 如果未指定,则数据源中的服务器名称用于证书验证,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
integratedSecurity 指示是否在连接(如果为 false)中指定用户 ID 和密码,或者当前 Windows 帐户凭据是否用于身份验证(如果为 true),由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
loadBalanceTimeout 在被建议的版本使用之前,连接在连接池中生存的最短时间(以秒为单位)。 类型:整数(或包含 resultType 整数的表达式)。 任何
maxPoolSize 此特定连接字符串的连接池中允许的最大连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
minPoolSize 此特定连接字符串的连接池中允许的最小连接数,由建议的版本使用。 类型:整数(或包含 resultType 整数的表达式)。 任何
multipleActiveResultSets 如果为 true,应用程序可以维护多个活动结果集(MARS)。 如果为 false,应用程序必须处理或取消一个批处理中的所有结果集,然后才能在该连接上执行任何其他批处理(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
multiSubnetFailover 如果应用程序连接到不同子网上的 AlwaysOn 可用性组(AG),则设置 MultiSubnetFailover=true 可以更快地检测和连接到(当前)活动服务器(当前)活动服务器(由建议的版本使用)。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
packetSize 用于与服务器实例通信的网络数据包的大小(以字节为单位,由建议的版本使用)。 类型:整数(或包含 resultType 整数的表达式)。 任何
密码 本地 Windows 身份验证密码。 SecretBase
指示每次请求连接时,连接是共用的还是显式打开的,由建议的版本使用。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
服务器 要连接到的 SQL Server 实例的名称或网络地址,由建议的版本使用。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
trustServerCertificate 指示通道是否在绕过证书链来验证推荐版本使用的信任时是否加密通道。 类型:布尔值(或带有 resultType 布尔值的表达式)。 任何
userName 本地 Windows 身份验证用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

SquareLinkedService

名字 描述 价值
类型 链接服务的类型。 “Square”(必需)
typeProperties 方块服务链接服务属性。 SquareLinkedServiceTypeProperties(必需)

SquareLinkedServiceTypeProperties

名字 描述 价值
clientId 与 Square 应用程序关联的客户端 ID。 任何
clientSecret 与 Square 应用程序关联的客户端密码。 SecretBase
connectionProperties 用于连接到 Square 的属性。 它与链接服务中的其他任何属性互斥。 类型:对象。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Square 实例的 URL。 (即 mystore.mysquare.com) 任何
redirectUri 在 Square 应用程序仪表板中分配的重定向 URL。 (即 http://localhost:2500) 任何
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何

SybaseLinkedService

名字 描述 价值
类型 链接服务的类型。 “Sybase”(必需)
typeProperties Sybase 链接服务属性。 SybaseLinkedServiceTypeProperties (必需)

SybaseLinkedServiceTypeProperties

名字 描述 价值
authenticationType 要用于连接的 AuthenticationType。 “Basic”
“Windows”
数据库 连接的数据库名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 身份验证密码。 SecretBase
图式 连接的架构名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
服务器 连接的服务器名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
username 身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

TeamDeskLinkedService

名字 描述 价值
类型 链接服务的类型。 “TeamDesk”(必需)
typeProperties TeamDesk 链接服务属性。 TeamDeskLinkedServiceTypeProperties(必需)

TeamDeskLinkedServiceTypeProperties

名字 描述 价值
apiToken TeamDesk 源的 API 令牌。 SecretBase
authenticationType 要使用的身份验证类型。 “Basic”
“Token”(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 TeamDesk 源的密码。 SecretBase
url 用于连接 TeamDesk 源的 URL。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
userName TeamDesk 源的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

TeradataLinkedService

名字 描述 价值
类型 链接服务的类型。 “Teradata”(必需)
typeProperties Teradata 链接服务属性。 TeradataLinkedServiceTypeProperties(必需)

TeradataLinkedServiceTypeProperties

名字 描述 价值
authenticationType 要用于连接的 AuthenticationType。 “Basic”
“Windows”
connectionString Teradata ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 身份验证密码。 SecretBase
服务器 连接的服务器名称。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
username 身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

TwilioLinkedService

名字 描述 价值
类型 链接服务的类型。 “Twilio”(必需)
typeProperties Twilio 链接服务属性。 TwilioLinkedServiceTypeProperties(必需)

TwilioLinkedServiceTypeProperties

名字 描述 价值
密码 Twilio 服务的身份验证令牌。 SecretBase(必需)
userName Twilio 服务的帐户 SID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

VerticaLinkedService

名字 描述 价值
类型 链接服务的类型。 “Vertica”(必需)
typeProperties Vertica 链接服务属性。 VerticaLinkedServiceTypeProperties (必需)

VerticaLinkedServiceTypeProperties

名字 描述 价值
connectionString ODBC 连接字符串。 类型:string、SecureString 或 AzureKeyVaultSecretReference。 任何
数据库 连接的数据库名称。 类型:字符串。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
港口 连接的端口。 类型:整数。 任何
pwd 连接字符串中密码的 Azure Key Vault 机密引用。 AzureKeyVaultSecretReference
服务器 连接的服务器名称。 类型:字符串。 任何
uid 身份验证的用户名。 类型:字符串。 任何

WarehouseLinkedService

名字 描述 价值
类型 链接服务的类型。 “仓库”(必需)
typeProperties Microsoft Fabric Warehouse 链接服务属性。 WarehouseLinkedServiceTypeProperties(必需)

WarehouseLinkedServiceTypeProperties

名字 描述 价值
artifactId Microsoft Fabric Warehouse 项目的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
端点 Microsoft Fabric Warehouse 服务器的终结点。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
servicePrincipalCredential Azure Active Directory 中服务主体对象的凭据。 如果 servicePrincipalCredentialType 为“ServicePrincipalKey”,servicePrincipalCredential 可以是 SecureString 或 AzureKeyVaultSecretReference。 如果 servicePrincipalCredentialType 为“ServicePrincipalCert”,servicePrincipalCredential 只能是 AzureKeyVaultSecretReference。 SecretBase
servicePrincipalCredentialType 在服务器To-Server 身份验证中使用的服务主体凭据类型。 密钥/机密的“ServicePrincipalKey”,证书的“ServicePrincipalCert”。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalId 用于对 Microsoft Fabric Warehouse 进行身份验证的应用程序的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
servicePrincipalKey 用于对 Microsoft Fabric Warehouse 进行身份验证的应用程序密钥。 SecretBase
房客 服务主体所属的租户的名称或 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何
workspaceId Microsoft Fabric 工作区的 ID。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

WebAnonymousAuthentication

名字 描述 价值
authenticationType 用于连接到 Web 表源的身份验证类型。 “Anonymous”(必需)

WebBasicAuthentication

名字 描述 价值
authenticationType 用于连接到 Web 表源的身份验证类型。 “Basic”(必需)
密码 基本身份验证的密码。 SecretBase(必需)
username 基本身份验证的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

WebClientCertificateAuthentication

名字 描述 价值
authenticationType 用于连接到 Web 表源的身份验证类型。 “ClientCertificate”(必需)
密码 PFX 文件的密码。 SecretBase(必需)
pfx PFX 文件的 Base64 编码内容。 SecretBase(必需)

WebLinkedService

名字 描述 价值
类型 链接服务的类型。 “Web”(必需)
typeProperties Web 链接服务属性。 WebLinkedServiceTypeProperties(必需)

WebLinkedServiceTypeProperties

名字 描述 价值
authenticationType 对于 WebAnonymousAuthentication类型,设置为“Anonymous”。 对于 WebBasicAuthentication,请设置为“基本”。 对于 WebClientCertificateAuthentication,请设置为“ClientCertificate”。 “Anonymous”
“Basic”
“ClientCertificate”(必需)
url Web 服务终结点的 URL,例如 https://www.microsoft.com。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)

XeroLinkedService

名字 描述 价值
类型 链接服务的类型。 “Xero”(必需)
typeProperties Xero 服务链接服务属性。 XeroLinkedServiceTypeProperties(必需)

XeroLinkedServiceTypeProperties

名字 描述 价值
connectionProperties 用于连接到 Xero 的属性。 它与链接服务中的其他任何属性互斥。 类型:对象。 任何
consumerKey 与 Xero 应用程序关联的使用者密钥。 SecretBase
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
主机 Xero 服务器的终结点。 (即 api.xero.com) 任何
privateKey 为 Xero 专用应用程序生成的 .pem 文件中的私钥。 必须包括 .pem 文件中的所有文本,包括 Unix 行结尾(
).
SecretBase
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何

ZendeskLinkedService

名字 描述 价值
类型 链接服务的类型。 “Zendesk”(必需)
typeProperties Zendesk 链接服务属性。 ZendeskLinkedServiceTypeProperties (必需)

ZendeskLinkedServiceTypeProperties

名字 描述 价值
apiToken Zendesk 源的 API 令牌。 SecretBase
authenticationType 要使用的身份验证类型。 “Basic”
“Token”(必需)
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
密码 Zendesk 源的密码。 SecretBase
url 用于连接 Zendesk 源的 URL。 类型:字符串(或带有 resultType 字符串的表达式)。 任何(必需)
userName Zendesk 源的用户名。 类型:字符串(或带有 resultType 字符串的表达式)。 任何

ZohoLinkedService

名字 描述 价值
类型 链接服务的类型。 “Zoho”(必需)
typeProperties Zoho 服务器链接服务属性。 ZohoLinkedServiceTypeProperties(必需)

ZohoLinkedServiceTypeProperties

名字 描述 价值
accessToken Zoho 身份验证的访问令牌。 SecretBase
connectionProperties 用于连接到 Zoho 的属性。 它与链接服务中的其他任何属性互斥。 类型:对象。 任何
encryptedCredential 用于身份验证的加密凭据。 凭据使用集成运行时凭据管理器进行加密。 类型:字符串。 字符串
端点 Zoho 服务器的终结点。 (即 crm.zoho.com/crm/private) 任何
useEncryptedEndpoints 指定是否使用 HTTPS 加密数据源终结点。 默认值为 true。 任何
useHostVerification 指定是否要求服务器证书中的主机名与通过 SSL 连接时服务器的主机名匹配。 默认值为 true。 任何
usePeerVerification 指定是否通过 SSL 连接时验证服务器的标识。 默认值为 true。 任何