共用方式為


Datasets - Create Or Update

建立或更新數據集。

PUT https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/datasets/{datasetName}?api-version=2018-06-01

URI 參數

名稱 位於 必要 類型 Description
datasetName
path True

string

數據集名稱。

Regex 模式: ^[A-Za-z0-9_][^<>*#.%&:\\+?/]*$

factoryName
path True

string

Factory 名稱。

Regex 模式: ^[A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$

resourceGroupName
path True

string

資源組名。

Regex 模式: ^[-\w\._\(\)]+$

subscriptionId
path True

string

訂用帳戶標識碼。

api-version
query True

string

API 版本。

要求標頭

名稱 必要 類型 Description
If-Match

string

數據集實體的 ETag。 應該只針對更新指定,而更新應該符合現有的實體,也可以為 * 進行無條件更新。

要求本文

名稱 必要 類型 Description
properties True Dataset:

數據集屬性。

回應

名稱 類型 Description
200 OK

DatasetResource

還行。

Other Status Codes

CloudError

從 Azure Data Factory 服務收到的錯誤回應。

安全性

azure_auth

Azure Active Directory OAuth2 Flow。

類型: oauth2
Flow: implicit
授權 URL: https://login.microsoftonline.com/common/oauth2/authorize

範圍

名稱 Description
user_impersonation 模擬您的用戶帳戶

範例

Datasets_Create
Datasets_Update

Datasets_Create

範例要求

PUT https://management.azure.com/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/datasets/exampleDataset?api-version=2018-06-01

{
  "properties": {
    "type": "AzureBlob",
    "typeProperties": {
      "folderPath": {
        "value": "@dataset().MyFolderPath",
        "type": "Expression"
      },
      "fileName": {
        "value": "@dataset().MyFileName",
        "type": "Expression"
      },
      "format": {
        "type": "TextFormat"
      }
    },
    "linkedServiceName": {
      "referenceName": "exampleLinkedService",
      "type": "LinkedServiceReference"
    },
    "parameters": {
      "MyFolderPath": {
        "type": "String"
      },
      "MyFileName": {
        "type": "String"
      }
    }
  }
}

範例回覆

Date: Sat, 16 Jun 2018 00:37:38 GMT
X-Content-Type-Options: nosniff
x-ms-ratelimit-remaining-subscription-writes: 1194
x-ms-request-id: ce95d6dd-c04d-4b02-b7ad-fe79c9b26df0
x-ms-correlation-request-id: ce95d6dd-c04d-4b02-b7ad-fe79c9b26df0
{
  "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/datasets/exampleDataset",
  "name": "exampleDataset",
  "type": "Microsoft.DataFactory/factories/datasets",
  "properties": {
    "type": "AzureBlob",
    "schema": [
      {
        "name": "col1",
        "type": "INT_32"
      },
      {
        "name": "col2",
        "type": "Decimal",
        "precision": "38",
        "scale": "2"
      }
    ],
    "typeProperties": {
      "folderPath": {
        "value": "@dataset().MyFolderPath",
        "type": "Expression"
      },
      "fileName": {
        "value": "@dataset().MyFileName",
        "type": "Expression"
      },
      "format": {
        "type": "TextFormat"
      }
    },
    "linkedServiceName": {
      "referenceName": "exampleLinkedService",
      "type": "LinkedServiceReference"
    },
    "parameters": {
      "MyFolderPath": {
        "type": "String"
      },
      "MyFileName": {
        "type": "String"
      }
    }
  },
  "etag": "0a0066d4-0000-0000-0000-5b245bd20000"
}

Datasets_Update

範例要求

PUT https://management.azure.com/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/datasets/exampleDataset?api-version=2018-06-01

{
  "properties": {
    "type": "AzureBlob",
    "typeProperties": {
      "folderPath": {
        "value": "@dataset().MyFolderPath",
        "type": "Expression"
      },
      "fileName": {
        "value": "@dataset().MyFileName",
        "type": "Expression"
      },
      "format": {
        "type": "TextFormat"
      }
    },
    "description": "Example description",
    "linkedServiceName": {
      "referenceName": "exampleLinkedService",
      "type": "LinkedServiceReference"
    },
    "parameters": {
      "MyFolderPath": {
        "type": "String"
      },
      "MyFileName": {
        "type": "String"
      }
    }
  }
}

範例回覆

Date: Sat, 16 Jun 2018 00:37:39 GMT
X-Content-Type-Options: nosniff
x-ms-ratelimit-remaining-subscription-writes: 1193
x-ms-request-id: e2e7f6be-e7ee-4aae-943f-6ff799e034f2
x-ms-correlation-request-id: e2e7f6be-e7ee-4aae-943f-6ff799e034f2
{
  "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/datasets/exampleDataset",
  "name": "exampleDataset",
  "type": "Microsoft.DataFactory/factories/datasets",
  "properties": {
    "type": "AzureBlob",
    "typeProperties": {
      "folderPath": {
        "value": "@dataset().MyFolderPath",
        "type": "Expression"
      },
      "fileName": {
        "value": "@dataset().MyFileName",
        "type": "Expression"
      },
      "format": {
        "type": "TextFormat"
      }
    },
    "description": "Example description",
    "linkedServiceName": {
      "referenceName": "exampleLinkedService",
      "type": "LinkedServiceReference"
    },
    "parameters": {
      "MyFolderPath": {
        "type": "String"
      },
      "MyFileName": {
        "type": "String"
      }
    }
  },
  "etag": "0a0068d4-0000-0000-0000-5b245bd30000"
}

定義

名稱 Description
AmazonMWSObjectDataset

Amazon Marketplace Web 服務數據集。

AmazonRdsForOracleTableDataset

AmazonRdsForOracle 資料庫數據集。

AmazonRdsForSqlServerTableDataset

適用於 SQL Server 數據集的 Amazon RDS。

AmazonRedshiftTableDataset

Amazon Redshift 數據表數據集。

AmazonS3Dataset

單一 Amazon Simple Storage Service (S3) 物件或一組 S3 物件。

AvroDataset

Avro 數據集。

AzureBlobDataset

Azure Blob 記憶體。

AzureBlobFSDataset

Azure Data Lake Storage Gen2 記憶體。

AzureDatabricksDeltaLakeDataset

Azure Databricks Delta Lake 數據集。

AzureDataExplorerTableDataset

Azure 資料總管 (Kusto) 數據集。

AzureDataLakeStoreDataset

Azure Data Lake Store 數據集。

AzureMariaDBTableDataset

適用於 MariaDB 的 Azure 資料庫數據集。

AzureMySqlTableDataset

Azure MySQL 資料庫數據集。

AzurePostgreSqlTableDataset

Azure PostgreSQL 數據集。

AzureSearchIndexDataset

Azure 搜尋服務索引。

AzureSqlDWTableDataset

Azure SQL 數據倉儲數據集。

AzureSqlMITableDataset

Azure SQL 受控實例數據集。

AzureSqlTableDataset

Azure SQL Server 資料庫數據集。

AzureTableDataset

Azure 資料表記憶體數據集。

BinaryDataset

二進位數據集。

CassandraTableDataset

Cassandra 資料庫數據集。

CloudError

對象,定義 Azure Data Factory 錯誤響應的結構。

CommonDataServiceForAppsEntityDataset

Common Data Service for Apps 實體數據集。

ConcurObjectDataset

Concur Service 數據集。

CosmosDbMongoDbApiCollectionDataset

CosmosDB (MongoDB API) 資料庫數據集。

CosmosDbSqlApiCollectionDataset

Microsoft Azure CosmosDB (SQL API) 集合數據集。

CouchbaseTableDataset

Couchbase 伺服器數據集。

DatasetCompression

數據集上使用的壓縮方法。

DatasetResource

數據集資源類型。

Db2TableDataset

Db2 數據表數據集。

DelimitedTextDataset

分隔文字數據集。

DocumentDbCollectionDataset

Microsoft Azure 檔資料庫集合數據集。

DrillTableDataset

鑽研伺服器數據集。

DynamicsAXResourceDataset

Dynamics AX OData 實體的路徑。

DynamicsCrmEntityDataset

Dynamics CRM 實體數據集。

DynamicsEntityDataset

Dynamics 實體數據集。

EloquaObjectDataset

Eloqua 伺服器數據集。

ExcelDataset

Excel 數據集。

FileShareDataset

內部部署檔案系統數據集。

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

GoogleAdWordsObjectDataset

Google AdWords 服務數據集。

GoogleBigQueryObjectDataset

Google BigQuery 服務數據集。

GoogleBigQueryV2ObjectDataset

Google BigQuery 服務數據集。

GreenplumTableDataset

Greenplum 資料庫數據集。

HBaseObjectDataset

HBase 伺服器數據集。

HiveObjectDataset

Hive 伺服器數據集。

HttpDataset

HTTP 網頁伺服器中的檔案。

HubspotObjectDataset

Hubspot Service 數據集。

IcebergDataset

Iceberg 數據集。

ImpalaObjectDataset

Impala 伺服器數據集。

InformixTableDataset

Informix 數據表數據集。

JiraObjectDataset

Jira 服務數據集。

JsonDataset

Json 數據集。

LakeHouseTableDataset

Microsoft Fabric Lakehouse 數據表。

LinkedServiceReference

連結服務參考類型。

MagentoObjectDataset

Magento 伺服器數據集。

MariaDBTableDataset

MariaDB 伺服器數據集。

MarketoObjectDataset

Marketo 伺服器數據集。

MicrosoftAccessTableDataset

Microsoft Access 數據表數據集。

MongoDbAtlasCollectionDataset

MongoDB Atlas 資料庫數據集。

MongoDbCollectionDataset

MongoDB 資料庫數據集。

MongoDbV2CollectionDataset

MongoDB 資料庫數據集。

MySqlTableDataset

MySQL 數據表數據集。

NetezzaTableDataset

Netezza 數據集。

ODataResourceDataset

Open Data Protocol (OData) 資源數據集。

OdbcTableDataset

ODBC 數據表數據集。

Office365Dataset

Office365 帳戶。

OracleServiceCloudObjectDataset

Oracle 服務雲端數據集。

OracleTableDataset

內部部署 Oracle 資料庫數據集。

OrcDataset

ORC 數據集。

ParameterSpecification

實體的單一參數定義。

ParameterType

參數類型。

ParquetDataset

Parquet 數據集。

PaypalObjectDataset

PayPal服務數據集。

PhoenixObjectDataset

Phoenix 伺服器數據集。

PostgreSqlTableDataset

PostgreSQL 數據表數據集。

PostgreSqlV2TableDataset

PostgreSQLV2 數據表數據集。

PrestoObjectDataset

Presto 伺服器數據集。

QuickBooksObjectDataset

QuickBooks 伺服器數據集。

RelationalTableDataset

關係型數據表數據集。

ResponsysObjectDataset

Responsys 數據集。

RestResourceDataset

Rest 服務數據集。

SalesforceMarketingCloudObjectDataset

Salesforce Marketing Cloud 數據集。

SalesforceObjectDataset

Salesforce 對象數據集。

SalesforceServiceCloudObjectDataset

Salesforce Service Cloud 對象數據集。

SalesforceServiceCloudV2ObjectDataset

Salesforce Service Cloud V2 對象數據集。

SalesforceV2ObjectDataset

Salesforce V2 對象數據集。

SapBwCubeDataset

SAP BW Cube 數據集。

SapCloudForCustomerResourceDataset

SAP Cloud for Customer OData 實體的路徑。

SapEccResourceDataset

SAP ECC OData 實體的路徑。

SapHanaTableDataset

SAP HANA 資料表屬性。

SapOdpResourceDataset

SAP ODP 資源屬性。

SapOpenHubTableDataset

Sap Business Warehouse Open Hub 目的地數據表屬性。

SapTableResourceDataset

SAP 資料表資源屬性。

ServiceNowObjectDataset

ServiceNow 伺服器數據集。

ServiceNowV2ObjectDataset

ServiceNowV2 伺服器數據集。

SharePointOnlineListResourceDataset

Sharepoint Online 列表資源數據集。

ShopifyObjectDataset

Shopify 服務數據集。

SnowflakeDataset

雪花數據集。

SnowflakeV2Dataset

雪花數據集。

SparkObjectDataset

Spark 伺服器數據集。

SqlServerTableDataset

內部部署 SQL Server 數據集。

SquareObjectDataset

Square Service 數據集。

SybaseTableDataset

Sybase 數據表數據集。

TeradataTableDataset

Teradata 資料庫數據集。

Type

連結服務參考類型。

VerticaTableDataset

Vertica 數據集。

WarehouseTableDataset

Microsoft網狀架構倉儲數據集。

WebTableDataset

數據集會指向網頁中的 HTML 數據表。

XeroObjectDataset

Xero 服務數據集。

XmlDataset

Xml 資料集。

ZohoObjectDataset

Zoho 伺服器數據集。

AmazonMWSObjectDataset

Amazon Marketplace Web 服務數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

AmazonMWSObject

數據集的類型。

typeProperties.tableName

object

數據表名稱。 Type:string (或 expression with resultType string) 。

AmazonRdsForOracleTableDataset

AmazonRdsForOracle 資料庫數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

AmazonRdsForOracleTable

數據集的類型。

typeProperties.schema

object

AmazonRdsForOracle 資料庫的架構名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

AmazonRdsForOracle 資料庫的數據表名稱。 Type:string (或 expression with resultType string) 。

AmazonRdsForSqlServerTableDataset

適用於 SQL Server 數據集的 Amazon RDS。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

AmazonRdsForSqlServerTable

數據集的類型。

typeProperties.schema

object

SQL Server 資料集的架構名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

SQL Server 資料集的數據表名稱。 Type:string (或 expression with resultType string) 。

AmazonRedshiftTableDataset

Amazon Redshift 數據表數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

AmazonRedshiftTable

數據集的類型。

typeProperties.schema

object

Amazon Redshift 架構名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

Amazon Redshift 數據表名稱。 Type:string (或 expression with resultType string) 。

typeProperties.tableName

object

這個屬性將會淘汰。 請考慮改用架構 + 資料表屬性。

AmazonS3Dataset

單一 Amazon Simple Storage Service (S3) 物件或一組 S3 物件。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

AmazonS3Object

數據集的類型。

typeProperties.bucketName

object

Amazon S3 貯體的名稱。 Type:string (或 expression with resultType string) 。

typeProperties.compression

DatasetCompression

用於 Amazon S3 物件的數據壓縮方法。

typeProperties.format

DatasetStorageFormat

檔案格式。

typeProperties.key

object

Amazon S3 物件的索引鍵。 Type:string (或 expression with resultType string) 。

typeProperties.modifiedDatetimeEnd

object

S3 物件的修改日期時間結束。 Type:string (或 expression with resultType string) 。

typeProperties.modifiedDatetimeStart

object

S3 物件的修改日期時間的開頭。 Type:string (或 expression with resultType string) 。

typeProperties.prefix

object

S3 物件名稱的前置詞篩選。 Type:string (或 expression with resultType string) 。

typeProperties.version

object

S3 物件的版本。 Type:string (或 expression with resultType string) 。

AvroDataset

Avro 數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

Avro

數據集的類型。

typeProperties.avroCompressionCodec

object

data avroCompressionCodec。 Type:string (或 expression with resultType string) 。

typeProperties.avroCompressionLevel

integer

typeProperties.location

DatasetLocation

avro 記憶體的位置。

AzureBlobDataset

Azure Blob 記憶體。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

AzureBlob

數據集的類型。

typeProperties.compression

DatasetCompression

用於 Blob 記憶體的數據壓縮方法。

typeProperties.fileName

object

Azure Blob 的名稱。 Type:string (或 expression with resultType string) 。

typeProperties.folderPath

object

Azure Blob 記憶體的路徑。 Type:string (或 expression with resultType string) 。

typeProperties.format

DatasetStorageFormat

Azure Blob 記憶體的格式。

typeProperties.modifiedDatetimeEnd

object

Azure Blob 修改日期時間的結尾。 Type:string (或 expression with resultType string) 。

typeProperties.modifiedDatetimeStart

object

Azure Blob 修改日期時間的開頭。 Type:string (或 expression with resultType string) 。

typeProperties.tableRootLocation

object

Blob 路徑的根目錄。 Type:string (或 expression with resultType string) 。

AzureBlobFSDataset

Azure Data Lake Storage Gen2 記憶體。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

AzureBlobFSFile

數據集的類型。

typeProperties.compression

DatasetCompression

用於 Blob 記憶體的數據壓縮方法。

typeProperties.fileName

object

Azure Data Lake Storage Gen2 的名稱。 Type:string (或 expression with resultType string) 。

typeProperties.folderPath

object

Azure Data Lake Storage Gen2 記憶體的路徑。 Type:string (或 expression with resultType string) 。

typeProperties.format

DatasetStorageFormat

Azure Data Lake Storage Gen2 記憶體的格式。

AzureDatabricksDeltaLakeDataset

Azure Databricks Delta Lake 數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

AzureDatabricksDeltaLakeDataset

數據集的類型。

typeProperties.database

object

差異數據表的資料庫名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

差異數據表的名稱。 Type:string (或 expression with resultType string) 。

AzureDataExplorerTableDataset

Azure 資料總管 (Kusto) 數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

AzureDataExplorerTable

數據集的類型。

typeProperties.table

object

Azure 數據總管資料庫的數據表名稱。 Type:string (或 expression with resultType string) 。

AzureDataLakeStoreDataset

Azure Data Lake Store 數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

AzureDataLakeStoreFile

數據集的類型。

typeProperties.compression

DatasetCompression

Azure Data Lake Store 中用於專案的數據壓縮方法。

typeProperties.fileName

object

Azure Data Lake Store 中的檔名。 Type:string (或 expression with resultType string) 。

typeProperties.folderPath

object

Azure Data Lake Store 中資料夾的路徑。 Type:string (或 expression with resultType string) 。

typeProperties.format

DatasetStorageFormat

Data Lake Store 的格式。

AzureMariaDBTableDataset

適用於 MariaDB 的 Azure 資料庫數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

AzureMariaDBTable

數據集的類型。

typeProperties.tableName

object

數據表名稱。 Type:string (或 expression with resultType string) 。

AzureMySqlTableDataset

Azure MySQL 資料庫數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

AzureMySqlTable

數據集的類型。

typeProperties.table

object

Azure MySQL 資料庫數據表的名稱。 Type:string (或 expression with resultType string) 。

typeProperties.tableName

object

Azure MySQL 資料庫數據表名稱。 Type:string (或 expression with resultType string) 。

AzurePostgreSqlTableDataset

Azure PostgreSQL 數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

AzurePostgreSqlTable

數據集的類型。

typeProperties.schema

object

Azure PostgreSQL 資料庫的架構名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

Azure PostgreSQL 資料庫的數據表名稱。 Type:string (或 expression with resultType string) 。

typeProperties.tableName

object

Azure PostgreSQL 資料庫的數據表名稱,其中包含架構和數據表。 Type:string (或 expression with resultType string) 。

AzureSearchIndexDataset

Azure 搜尋服務索引。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

AzureSearchIndex

數據集的類型。

typeProperties.indexName

object

Azure 搜尋服務索引的名稱。 Type:string (或 expression with resultType string) 。

AzureSqlDWTableDataset

Azure SQL 數據倉儲數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

AzureSqlDWTable

數據集的類型。

typeProperties.schema

object

Azure SQL 數據倉儲的架構名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

Azure SQL 數據倉儲的數據表名稱。 Type:string (或 expression with resultType string) 。

typeProperties.tableName

object

這個屬性將會淘汰。 請考慮改用架構 + 資料表屬性。

AzureSqlMITableDataset

Azure SQL 受控實例數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

AzureSqlMITable

數據集的類型。

typeProperties.schema

object

Azure SQL 受控實例的架構名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

Azure SQL 受控實例數據集的數據表名稱。 Type:string (或 expression with resultType string) 。

typeProperties.tableName

object

這個屬性將會淘汰。 請考慮改用架構 + 資料表屬性。

AzureSqlTableDataset

Azure SQL Server 資料庫數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

AzureSqlTable

數據集的類型。

typeProperties.schema

object

Azure SQL 資料庫的架構名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

Azure SQL 資料庫的數據表名稱。 Type:string (或 expression with resultType string) 。

typeProperties.tableName

object

這個屬性將會淘汰。 請考慮改用架構 + 資料表屬性。

AzureTableDataset

Azure 資料表記憶體數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

AzureTable

數據集的類型。

typeProperties.tableName

object

Azure 資料表記憶體的數據表名稱。 Type:string (或 expression with resultType string) 。

BinaryDataset

二進位數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

Binary

數據集的類型。

typeProperties.compression

DatasetCompression

用於二進位數據集的數據壓縮方法。

typeProperties.location

DatasetLocation

二進位記憶體的位置。

CassandraTableDataset

Cassandra 資料庫數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

CassandraTable

數據集的類型。

typeProperties.keyspace

object

Cassandra 資料庫的索引鍵空間。 Type:string (或 expression with resultType string) 。

typeProperties.tableName

object

Cassandra 資料庫的數據表名稱。 Type:string (或 expression with resultType string) 。

CloudError

對象,定義 Azure Data Factory 錯誤響應的結構。

名稱 類型 Description
error.code

string

錯誤碼。

error.details

CloudError[]

具有其他錯誤詳細數據的陣列。

error.message

string

錯誤資訊。

error.target

string

與錯誤相關聯之要求中的屬性名稱/路徑。

CommonDataServiceForAppsEntityDataset

Common Data Service for Apps 實體數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

CommonDataServiceForAppsEntity

數據集的類型。

typeProperties.entityName

object

實體的邏輯名稱。 Type:string (或 expression with resultType string) 。

ConcurObjectDataset

Concur Service 數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

ConcurObject

數據集的類型。

typeProperties.tableName

object

數據表名稱。 Type:string (或 expression with resultType string) 。

CosmosDbMongoDbApiCollectionDataset

CosmosDB (MongoDB API) 資料庫數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

CosmosDbMongoDbApiCollection

數據集的類型。

typeProperties.collection

object

CosmosDB (MongoDB API) 資料庫的集合名稱。 Type:string (或 expression with resultType string) 。

CosmosDbSqlApiCollectionDataset

Microsoft Azure CosmosDB (SQL API) 集合數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

CosmosDbSqlApiCollection

數據集的類型。

typeProperties.collectionName

object

CosmosDB (SQL API) 集合名稱。 Type:string (或 expression with resultType string) 。

CouchbaseTableDataset

Couchbase 伺服器數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

CouchbaseTable

數據集的類型。

typeProperties.tableName

object

數據表名稱。 Type:string (或 expression with resultType string) 。

DatasetCompression

數據集上使用的壓縮方法。

名稱 類型 Description
level

object

數據集壓縮層級。 Type:string (或 expression with resultType string) 。

type

object

數據集壓縮的類型。 Type:string (或 expression with resultType string) 。

DatasetResource

數據集資源類型。

名稱 類型 Description
etag

string

Etag 會識別資源中的變更。

id

string

資源標識碼。

name

string

資源名稱。

properties Dataset:

數據集屬性。

type

string

資源類型。

Db2TableDataset

Db2 數據表數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

Db2Table

數據集的類型。

typeProperties.schema

object

Db2 架構名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

Db2 資料表名稱。 Type:string (或 expression with resultType string) 。

typeProperties.tableName

object

這個屬性將會淘汰。 請考慮改用架構 + 資料表屬性。

DelimitedTextDataset

分隔文字數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

DelimitedText

數據集的類型。

typeProperties.columnDelimiter

object

數據行分隔符。 Type:string (或 expression with resultType string) 。

typeProperties.compressionCodec

object

數據壓縮Codec。 Type:string (或 expression with resultType string) 。

typeProperties.compressionLevel

object

用於 DelimitedText 的數據壓縮方法。

typeProperties.encodingName

object

慣用編碼的代碼頁名稱。 如果遺漏,則預設值為UTF-8,除非BOM表示另一個 Unicode 編碼。 請參閱下列連結中資料表的名稱資料列,以設定支援的值:https://msdn.microsoft.com/library/system.text.encoding.aspx。 Type:string (或 expression with resultType string) 。

typeProperties.escapeChar

object

逸出字元。 Type:string (或 expression with resultType string) 。

typeProperties.firstRowAsHeader

object

當做輸入使用時,請將第一個數據列視為標頭。 當做輸出使用時,請將標頭寫入輸出中作為第一個數據列。 默認值為 false。 類型:布爾值(或 expression 含 resultType 布爾值的表達式)。

typeProperties.location

DatasetLocation

分隔文字儲存區的位置。

typeProperties.nullValue

object

Null 值字串。 Type:string (或 expression with resultType string) 。

typeProperties.quoteChar

object

引號字元。 Type:string (或 expression with resultType string) 。

typeProperties.rowDelimiter

object

數據列分隔符。 Type:string (或 expression with resultType string) 。

DocumentDbCollectionDataset

Microsoft Azure 檔資料庫集合數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

DocumentDbCollection

數據集的類型。

typeProperties.collectionName

object

Document Database 集合名稱。 Type:string (或 expression with resultType string) 。

DrillTableDataset

鑽研伺服器數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

DrillTable

數據集的類型。

typeProperties.schema

object

Drill 的架構名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

Drill 的數據表名稱。 Type:string (或 expression with resultType string) 。

typeProperties.tableName

object

這個屬性將會淘汰。 請考慮改用架構 + 資料表屬性。

DynamicsAXResourceDataset

Dynamics AX OData 實體的路徑。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

DynamicsAXResource

數據集的類型。

typeProperties.path

object

Dynamics AX OData 實體的路徑。 Type:string (或 expression with resultType string) 。

DynamicsCrmEntityDataset

Dynamics CRM 實體數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

DynamicsCrmEntity

數據集的類型。

typeProperties.entityName

object

實體的邏輯名稱。 Type:string (或 expression with resultType string) 。

DynamicsEntityDataset

Dynamics 實體數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

DynamicsEntity

數據集的類型。

typeProperties.entityName

object

實體的邏輯名稱。 Type:string (或 expression with resultType string) 。

EloquaObjectDataset

Eloqua 伺服器數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

EloquaObject

數據集的類型。

typeProperties.tableName

object

數據表名稱。 Type:string (或 expression with resultType string) 。

ExcelDataset

Excel 數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

Excel

數據集的類型。

typeProperties.compression

DatasetCompression

用於 json 數據集的數據壓縮方法。

typeProperties.firstRowAsHeader

object

當做輸入使用時,請將第一個數據列視為標頭。 當做輸出使用時,請將標頭寫入輸出中作為第一個數據列。 默認值為 false。 類型:布爾值(或 expression 含 resultType 布爾值的表達式)。

typeProperties.location

DatasetLocation

Excel 記憶體的位置。

typeProperties.nullValue

object

Null 值字串。 Type:string (或 expression with resultType string) 。

typeProperties.range

object

一張工作表的部分數據。 Type:string (或 expression with resultType string) 。

typeProperties.sheetIndex

object

excel 檔案和預設值的工作表索引為 0。 類型:integer(或 expression 含 resultType 整數的運算式)

typeProperties.sheetName

object

Excel 檔案的工作表名稱。 Type:string (或 expression with resultType string) 。

FileShareDataset

內部部署檔案系統數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

FileShare

數據集的類型。

typeProperties.compression

DatasetCompression

用於檔案系統的數據壓縮方法。

typeProperties.fileFilter

object

指定篩選條件,以用來選取 folderPath 中的檔案子集,而不是所有檔案。 Type:string (或 expression with resultType string) 。

typeProperties.fileName

object

內部部署檔案系統的名稱。 Type:string (或 expression with resultType string) 。

typeProperties.folderPath

object

內部部署檔案系統的路徑。 Type:string (或 expression with resultType string) 。

typeProperties.format

DatasetStorageFormat

檔案格式。

typeProperties.modifiedDatetimeEnd

object

檔案修改日期時間的結尾。 Type:string (或 expression with resultType string) 。

typeProperties.modifiedDatetimeStart

object

檔案修改日期時間的開始。 Type:string (或 expression with resultType string) 。

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

名稱 類型 Description
name

string

此數據集位於的資料夾名稱。

GoogleAdWordsObjectDataset

Google AdWords 服務數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

GoogleAdWordsObject

數據集的類型。

typeProperties.tableName

object

數據表名稱。 Type:string (或 expression with resultType string) 。

GoogleBigQueryObjectDataset

Google BigQuery 服務數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

GoogleBigQueryObject

數據集的類型。

typeProperties.dataset

object

Google BigQuery 的資料庫名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

Google BigQuery 的數據表名稱。 Type:string (或 expression with resultType string) 。

typeProperties.tableName

object

這個屬性將會淘汰。 請考慮改用資料庫 + 資料表屬性。

GoogleBigQueryV2ObjectDataset

Google BigQuery 服務數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

GoogleBigQueryV2Object

數據集的類型。

typeProperties.dataset

object

Google BigQuery 的資料庫名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

Google BigQuery 的數據表名稱。 Type:string (或 expression with resultType string) 。

GreenplumTableDataset

Greenplum 資料庫數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

GreenplumTable

數據集的類型。

typeProperties.schema

object

Greenplum 的架構名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

Greenplum 的數據表名稱。 Type:string (或 expression with resultType string) 。

typeProperties.tableName

object

這個屬性將會淘汰。 請考慮改用架構 + 資料表屬性。

HBaseObjectDataset

HBase 伺服器數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

HBaseObject

數據集的類型。

typeProperties.tableName

object

數據表名稱。 Type:string (或 expression with resultType string) 。

HiveObjectDataset

Hive 伺服器數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

HiveObject

數據集的類型。

typeProperties.schema

object

Hive 的架構名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

Hive 的數據表名稱。 Type:string (或 expression with resultType string) 。

typeProperties.tableName

object

這個屬性將會淘汰。 請考慮改用架構 + 資料表屬性。

HttpDataset

HTTP 網頁伺服器中的檔案。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

HttpFile

數據集的類型。

typeProperties.additionalHeaders

object

HTTP 要求的標頭。 例如 request-header-name-1:request-header-value-1 ...request-header-name-n:request-header-value-n 類型:string(或 expression with resultType string)。

typeProperties.compression

DatasetCompression

檔案上使用的數據壓縮方法。

typeProperties.format

DatasetStorageFormat

檔案格式。

typeProperties.relativeUrl

object

根據 HttpLinkedService 中 URL 的相對 URL 會參考 HTTP 檔類型:字串(或具有 resultType 字串串的表達式)。

typeProperties.requestBody

object

HTTP 要求的本文。 Type:string (或 expression with resultType string) 。

typeProperties.requestMethod

object

HTTP 要求的 HTTP 方法。 Type:string (或 expression with resultType string) 。

HubspotObjectDataset

Hubspot Service 數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

HubspotObject

數據集的類型。

typeProperties.tableName

object

數據表名稱。 Type:string (或 expression with resultType string) 。

IcebergDataset

Iceberg 數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

Iceberg

數據集的類型。

typeProperties.location

DatasetLocation

冰山儲存區的位置。 冰山格式不允許設定檔名。

ImpalaObjectDataset

Impala 伺服器數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

ImpalaObject

數據集的類型。

typeProperties.schema

object

Impala 的架構名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

Impala 的數據表名稱。 Type:string (或 expression with resultType string) 。

typeProperties.tableName

object

這個屬性將會淘汰。 請考慮改用架構 + 資料表屬性。

InformixTableDataset

Informix 數據表數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

InformixTable

數據集的類型。

typeProperties.tableName

object

Informix 資料表名稱。 Type:string (或 expression with resultType string) 。

JiraObjectDataset

Jira 服務數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

JiraObject

數據集的類型。

typeProperties.tableName

object

數據表名稱。 Type:string (或 expression with resultType string) 。

JsonDataset

Json 數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

Json

數據集的類型。

typeProperties.compression

DatasetCompression

用於 json 數據集的數據壓縮方法。

typeProperties.encodingName

object

慣用編碼的代碼頁名稱。 如果未指定,則預設值為UTF-8,除非 BOM 表示另一個 Unicode 編碼。 請參閱下列連結中資料表的名稱資料列,以設定支援的值:https://msdn.microsoft.com/library/system.text.encoding.aspx。 Type:string (或 expression with resultType string) 。

typeProperties.location

DatasetLocation

json 數據記憶體的位置。

LakeHouseTableDataset

Microsoft Fabric Lakehouse 數據表。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

LakehouseTable

數據集的類型。

typeProperties.schema

object

Microsoft Fabric Lakehouse 數據表的架構名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

Microsoft Fabric Lakehouse 數據表的名稱。 Type:string (或 expression with resultType string) 。

LinkedServiceReference

連結服務參考類型。

名稱 類型 Description
parameters

object

LinkedService 的自變數。

referenceName

string

參考 LinkedService 名稱。

type

Type

連結服務參考類型。

MagentoObjectDataset

Magento 伺服器數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

MagentoObject

數據集的類型。

typeProperties.tableName

object

數據表名稱。 Type:string (或 expression with resultType string) 。

MariaDBTableDataset

MariaDB 伺服器數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

MariaDBTable

數據集的類型。

typeProperties.tableName

object

數據表名稱。 Type:string (或 expression with resultType string) 。

MarketoObjectDataset

Marketo 伺服器數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

MarketoObject

數據集的類型。

typeProperties.tableName

object

數據表名稱。 Type:string (或 expression with resultType string) 。

MicrosoftAccessTableDataset

Microsoft Access 數據表數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

MicrosoftAccessTable

數據集的類型。

typeProperties.tableName

object

Microsoft Access 數據表名稱。 Type:string (或 expression with resultType string) 。

MongoDbAtlasCollectionDataset

MongoDB Atlas 資料庫數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

MongoDbAtlasCollection

數據集的類型。

typeProperties.collection

object

MongoDB Atlas 資料庫的集合名稱。 Type:string (或 expression with resultType string) 。

MongoDbCollectionDataset

MongoDB 資料庫數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

MongoDbCollection

數據集的類型。

typeProperties.collectionName

object

MongoDB 資料庫的數據表名稱。 Type:string (或 expression with resultType string) 。

MongoDbV2CollectionDataset

MongoDB 資料庫數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

MongoDbV2Collection

數據集的類型。

typeProperties.collection

object

MongoDB 資料庫的集合名稱。 Type:string (或 expression with resultType string) 。

MySqlTableDataset

MySQL 數據表數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

MySqlTable

數據集的類型。

typeProperties.tableName

object

MySQL 資料表名稱。 Type:string (或 expression with resultType string) 。

NetezzaTableDataset

Netezza 數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

NetezzaTable

數據集的類型。

typeProperties.schema

object

Netezza 的架構名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

Netezza 的數據表名稱。 Type:string (或 expression with resultType string) 。

typeProperties.tableName

object

這個屬性將會淘汰。 請考慮改用架構 + 資料表屬性。

ODataResourceDataset

Open Data Protocol (OData) 資源數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

ODataResource

數據集的類型。

typeProperties.path

object

OData 資源路徑。 Type:string (或 expression with resultType string) 。

OdbcTableDataset

ODBC 數據表數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

OdbcTable

數據集的類型。

typeProperties.tableName

object

ODBC 資料表名稱。 Type:string (或 expression with resultType string) 。

Office365Dataset

Office365 帳戶。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

Office365Table

數據集的類型。

typeProperties.predicate

object

述詞表達式,可用來篩選要從 Office 365 擷取的特定數據列。 Type:string (或 expression with resultType string) 。

typeProperties.tableName

object

要從 Office 365 擷取的數據集名稱。 Type:string (或 expression with resultType string) 。

OracleServiceCloudObjectDataset

Oracle 服務雲端數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

OracleServiceCloudObject

數據集的類型。

typeProperties.tableName

object

數據表名稱。 Type:string (或 expression with resultType string) 。

OracleTableDataset

內部部署 Oracle 資料庫數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

OracleTable

數據集的類型。

typeProperties.schema

object

內部部署 Oracle 資料庫的架構名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

內部部署 Oracle 資料庫的數據表名稱。 Type:string (或 expression with resultType string) 。

typeProperties.tableName

object

這個屬性將會淘汰。 請考慮改用架構 + 資料表屬性。

OrcDataset

ORC 數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

Orc

數據集的類型。

typeProperties.location

DatasetLocation

ORC 數據記憶體的位置。

typeProperties.orcCompressionCodec

object

data orcCompressionCodec。 Type:string (或 expression with resultType string) 。

ParameterSpecification

實體的單一參數定義。

名稱 類型 Description
defaultValue

object

參數的預設值。

type

ParameterType

參數類型。

ParameterType

參數類型。

Description
Array
Bool
Float
Int
Object
SecureString
String

ParquetDataset

Parquet 數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

Parquet

數據集的類型。

typeProperties.compressionCodec

object

數據壓縮Codec。 Type:string (或 expression with resultType string) 。

typeProperties.location

DatasetLocation

parquet 記憶體的位置。

PaypalObjectDataset

PayPal服務數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

PaypalObject

數據集的類型。

typeProperties.tableName

object

數據表名稱。 Type:string (或 expression with resultType string) 。

PhoenixObjectDataset

Phoenix 伺服器數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

PhoenixObject

數據集的類型。

typeProperties.schema

object

Phoenix 的架構名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

Phoenix 的數據表名稱。 Type:string (或 expression with resultType string) 。

typeProperties.tableName

object

這個屬性將會淘汰。 請考慮改用架構 + 資料表屬性。

PostgreSqlTableDataset

PostgreSQL 數據表數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

PostgreSqlTable

數據集的類型。

typeProperties.schema

object

PostgreSQL 架構名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

PostgreSQL 資料表名稱。 Type:string (或 expression with resultType string) 。

typeProperties.tableName

object

這個屬性將會淘汰。 請考慮改用架構 + 資料表屬性。

PostgreSqlV2TableDataset

PostgreSQLV2 數據表數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

PostgreSqlV2Table

數據集的類型。

typeProperties.schema

object

PostgreSQL 架構名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

PostgreSQL 資料表名稱。 Type:string (或 expression with resultType string) 。

PrestoObjectDataset

Presto 伺服器數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

PrestoObject

數據集的類型。

typeProperties.schema

object

Presto 的架構名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

Presto 的數據表名稱。 Type:string (或 expression with resultType string) 。

typeProperties.tableName

object

這個屬性將會淘汰。 請考慮改用架構 + 資料表屬性。

QuickBooksObjectDataset

QuickBooks 伺服器數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

QuickBooksObject

數據集的類型。

typeProperties.tableName

object

數據表名稱。 Type:string (或 expression with resultType string) 。

RelationalTableDataset

關係型數據表數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

RelationalTable

數據集的類型。

typeProperties.tableName

object

關係型數據表名稱。 Type:string (或 expression with resultType string) 。

ResponsysObjectDataset

Responsys 數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

ResponsysObject

數據集的類型。

typeProperties.tableName

object

數據表名稱。 Type:string (或 expression with resultType string) 。

RestResourceDataset

Rest 服務數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

RestResource

數據集的類型。

typeProperties.additionalHeaders

object

要求中對 RESTful API 的其他 HTTP 標頭。

typeProperties.paginationRules

object

撰寫下一頁要求的分頁規則。

typeProperties.relativeUrl

object

RESTful API 所提供資源的相對 URL。 Type:string (或 expression with resultType string) 。

typeProperties.requestBody

object

如果 requestMethod 為 POST,則為 RESTful API 的 HTTP 要求本文。 Type:string (或 expression with resultType string) 。

typeProperties.requestMethod

object

用來呼叫 RESTful API 的 HTTP 方法。 預設值為 GET。 Type:string (或 expression with resultType string) 。

SalesforceMarketingCloudObjectDataset

Salesforce Marketing Cloud 數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

SalesforceMarketingCloudObject

數據集的類型。

typeProperties.tableName

object

數據表名稱。 Type:string (或 expression with resultType string) 。

SalesforceObjectDataset

Salesforce 對象數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

SalesforceObject

數據集的類型。

typeProperties.objectApiName

object

Salesforce 物件 API 名稱。 Type:string (或 expression with resultType string) 。

SalesforceServiceCloudObjectDataset

Salesforce Service Cloud 對象數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

SalesforceServiceCloudObject

數據集的類型。

typeProperties.objectApiName

object

Salesforce Service Cloud 物件 API 名稱。 Type:string (或 expression with resultType string) 。

SalesforceServiceCloudV2ObjectDataset

Salesforce Service Cloud V2 對象數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

SalesforceServiceCloudV2Object

數據集的類型。

typeProperties.objectApiName

object

Salesforce Service Cloud V2 物件 API 名稱。 Type:string (或 expression with resultType string) 。

typeProperties.reportId

object

Salesforce Service Cloud V2 reportId。 Type:string (或 expression with resultType string) 。

SalesforceV2ObjectDataset

Salesforce V2 對象數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

SalesforceV2Object

數據集的類型。

typeProperties.objectApiName

object

Salesforce V2 物件 API 名稱。 Type:string (或 expression with resultType string) 。

typeProperties.reportId

object

Salesforce V2 報表標識符。類型:string (或 Expression with resultType string)。

SapBwCubeDataset

SAP BW Cube 數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

SapBwCube

數據集的類型。

SapCloudForCustomerResourceDataset

SAP Cloud for Customer OData 實體的路徑。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

SapCloudForCustomerResource

數據集的類型。

typeProperties.path

object

SAP Cloud for Customer OData 實體的路徑。 Type:string (或 expression with resultType string) 。

SapEccResourceDataset

SAP ECC OData 實體的路徑。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

SapEccResource

數據集的類型。

typeProperties.path

object

SAP ECC OData 實體的路徑。 Type:string (或 expression with resultType string) 。

SapHanaTableDataset

SAP HANA 資料表屬性。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

SapHanaTable

數據集的類型。

typeProperties.schema

object

SAP HANA 的架構名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

SAP HANA 的數據表名稱。 Type:string (或 expression with resultType string) 。

SapOdpResourceDataset

SAP ODP 資源屬性。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

SapOdpResource

數據集的類型。

typeProperties.context

object

SAP ODP 對象的內容。 Type:string (或 expression with resultType string) 。

typeProperties.objectName

object

SAP ODP 物件的名稱。 Type:string (或 expression with resultType string) 。

SapOpenHubTableDataset

Sap Business Warehouse Open Hub 目的地數據表屬性。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

SapOpenHubTable

數據集的類型。

typeProperties.baseRequestId

object

要求差異載入的標識碼。 設定之後,只會擷取 requestId 大於此屬性的值的數據。 預設值為 0。 類型:integer (或 expression with resultType integer 的運算式 )。

typeProperties.excludeLastRequest

object

是否要排除最後一個要求的記錄。 默認值為 true。 類型:布爾值(或 expression 含 resultType 布爾值的表達式)。

typeProperties.openHubDestinationName

object

[開啟中樞目的地] 的名稱,其目的地類型為Database Table。 Type:string (或 expression with resultType string) 。

SapTableResourceDataset

SAP 資料表資源屬性。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

SapTableResource

數據集的類型。

typeProperties.tableName

object

SAP 資料表的名稱。 Type:string (或 expression with resultType string) 。

ServiceNowObjectDataset

ServiceNow 伺服器數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

ServiceNowObject

數據集的類型。

typeProperties.tableName

object

數據表名稱。 Type:string (或 expression with resultType string) 。

ServiceNowV2ObjectDataset

ServiceNowV2 伺服器數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

ServiceNowV2Object

數據集的類型。

typeProperties.tableName

object

數據表名稱。 Type:string (或 expression with resultType string) 。

SharePointOnlineListResourceDataset

Sharepoint Online 列表資源數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

SharePointOnlineListResource

數據集的類型。

typeProperties.listName

object

SharePoint Online 列表的名稱。 Type:string (或 expression with resultType string) 。

ShopifyObjectDataset

Shopify 服務數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

ShopifyObject

數據集的類型。

typeProperties.tableName

object

數據表名稱。 Type:string (或 expression with resultType string) 。

SnowflakeDataset

雪花數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

SnowflakeTable

數據集的類型。

typeProperties.schema

object

Snowflake 資料庫的架構名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

Snowflake 資料庫的數據表名稱。 Type:string (或 expression with resultType string) 。

SnowflakeV2Dataset

雪花數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

SnowflakeV2Table

數據集的類型。

typeProperties.schema

object

Snowflake 資料庫的架構名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

Snowflake 資料庫的數據表名稱。 Type:string (或 expression with resultType string) 。

SparkObjectDataset

Spark 伺服器數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

SparkObject

數據集的類型。

typeProperties.schema

object

Spark 的架構名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

Spark 的數據表名稱。 Type:string (或 expression with resultType string) 。

typeProperties.tableName

object

這個屬性將會淘汰。 請考慮改用架構 + 資料表屬性。

SqlServerTableDataset

內部部署 SQL Server 數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

SqlServerTable

數據集的類型。

typeProperties.schema

object

SQL Server 資料集的架構名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

SQL Server 資料集的數據表名稱。 Type:string (或 expression with resultType string) 。

typeProperties.tableName

object

這個屬性將會淘汰。 請考慮改用架構 + 資料表屬性。

SquareObjectDataset

Square Service 數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

SquareObject

數據集的類型。

typeProperties.tableName

object

數據表名稱。 Type:string (或 expression with resultType string) 。

SybaseTableDataset

Sybase 數據表數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

SybaseTable

數據集的類型。

typeProperties.tableName

object

Sybase 數據表名稱。 Type:string (或 expression with resultType string) 。

TeradataTableDataset

Teradata 資料庫數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

TeradataTable

數據集的類型。

typeProperties.database

object

Teradata 的資料庫名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

Teradata 的數據表名稱。 Type:string (或 expression with resultType string) 。

Type

連結服務參考類型。

Description
LinkedServiceReference

VerticaTableDataset

Vertica 數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

VerticaTable

數據集的類型。

typeProperties.schema

object

Vertica 的架構名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

Vertica 的數據表名稱。 Type:string (或 expression with resultType string) 。

typeProperties.tableName

object

這個屬性將會淘汰。 請考慮改用架構 + 資料表屬性。

WarehouseTableDataset

Microsoft網狀架構倉儲數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

WarehouseTable

數據集的類型。

typeProperties.schema

object

Microsoft網狀架構倉儲的架構名稱。 Type:string (或 expression with resultType string) 。

typeProperties.table

object

Microsoft網狀架構倉儲的數據表名稱。 Type:string (或 expression with resultType string) 。

WebTableDataset

數據集會指向網頁中的 HTML 數據表。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

WebTable

數據集的類型。

typeProperties.index

object

網頁中數據表以零起始的索引。 類型:integer (或 expression with resultType integer), minimum: 0。

typeProperties.path

object

鏈接服務 URL 中網頁的相對 URL。 Type:string (或 expression with resultType string) 。

XeroObjectDataset

Xero 服務數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

XeroObject

數據集的類型。

typeProperties.tableName

object

數據表名稱。 Type:string (或 expression with resultType string) 。

XmlDataset

Xml 資料集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

Xml

數據集的類型。

typeProperties.compression

DatasetCompression

用於 json 數據集的數據壓縮方法。

typeProperties.encodingName

object

慣用編碼的代碼頁名稱。 如果未指定,則預設值為UTF-8,除非 BOM 表示另一個 Unicode 編碼。 請參閱下列連結中資料表的名稱資料列,以設定支援的值:https://msdn.microsoft.com/library/system.text.encoding.aspx。 Type:string (或 expression with resultType string) 。

typeProperties.location

DatasetLocation

json 數據記憶體的位置。

typeProperties.nullValue

object

Null 值字串。 Type:string (或 expression with resultType string) 。

ZohoObjectDataset

Zoho 伺服器數據集。

名稱 類型 Description
annotations

object[]

可用於描述數據集的標記清單。

description

string

數據集描述。

folder

Folder

此數據集位於的資料夾。 如果未指定,數據集將會出現在根層級。

linkedServiceName

LinkedServiceReference

鏈接的服務參考。

parameters

<string,  ParameterSpecification>

數據集的參數。

schema

object

定義數據集實體類型架構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetSchemaDataElement。

structure

object

定義數據集結構的數據行。 Type: array (或 Expression with resultType array), itemType: DatasetDataElement。

type string:

ZohoObject

數據集的類型。

typeProperties.tableName

object

數據表名稱。 Type:string (或 expression with resultType string) 。