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

JsonDataset 构造函数

定义

重载

JsonDataset()

初始化 JsonDataset 类的新实例。

JsonDataset(LinkedServiceReference, DatasetLocation, IDictionary<String, Object>, String, Object, Object, IDictionary<String,ParameterSpecification>, IList<Object>, DatasetFolder, Object, DatasetCompression)

初始化 JsonDataset 类的新实例。

JsonDataset()

初始化 JsonDataset 类的新实例。

public JsonDataset ();
Public Sub New ()

适用于

JsonDataset(LinkedServiceReference, DatasetLocation, IDictionary<String, Object>, String, Object, Object, IDictionary<String,ParameterSpecification>, IList<Object>, DatasetFolder, Object, DatasetCompression)

初始化 JsonDataset 类的新实例。

public JsonDataset (Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference linkedServiceName, Microsoft.Azure.Management.DataFactory.Models.DatasetLocation location, System.Collections.Generic.IDictionary<string,object> additionalProperties = default, string description = default, object structure = default, object schema = default, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification> parameters = default, System.Collections.Generic.IList<object> annotations = default, Microsoft.Azure.Management.DataFactory.Models.DatasetFolder folder = default, object encodingName = default, Microsoft.Azure.Management.DataFactory.Models.DatasetCompression compression = default);
new Microsoft.Azure.Management.DataFactory.Models.JsonDataset : Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference * Microsoft.Azure.Management.DataFactory.Models.DatasetLocation * System.Collections.Generic.IDictionary<string, obj> * string * obj * obj * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification> * System.Collections.Generic.IList<obj> * Microsoft.Azure.Management.DataFactory.Models.DatasetFolder * obj * Microsoft.Azure.Management.DataFactory.Models.DatasetCompression -> Microsoft.Azure.Management.DataFactory.Models.JsonDataset
Public Sub New (linkedServiceName As LinkedServiceReference, location As DatasetLocation, Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional description As String = Nothing, Optional structure As Object = Nothing, Optional schema As Object = Nothing, Optional parameters As IDictionary(Of String, ParameterSpecification) = Nothing, Optional annotations As IList(Of Object) = Nothing, Optional folder As DatasetFolder = Nothing, Optional encodingName As Object = Nothing, Optional compression As DatasetCompression = Nothing)

参数

linkedServiceName
LinkedServiceReference

链接服务引用。

location
DatasetLocation

json 数据存储的位置。

additionalProperties
IDictionary<String,Object>

此集合反序列化消息中的不匹配属性

description
String

数据集说明。

structure
Object

定义数据集结构的列。 类型:array (或 expression with resultType array) , itemType: DatasetDataElement。

schema
Object

定义数据集的物理类型架构的列。 Type: array (或 Expression with resultType array) , itemType: DatasetSchemaDataElement.

parameters
IDictionary<String,ParameterSpecification>

数据集的参数。

annotations
IList<Object>

可用于描述数据集的标记列表。

folder
DatasetFolder

此数据集位于的文件夹。 如果未指定,数据集将显示在根级别。

encodingName
Object

首选编码的代码页名称。 如果未指定,则默认值为 UTF-8,除非 BOM 表示另一个 Unicode 编码。 请参阅以下链接中表的名称列以设置支持的值: https://msdn.microsoft.com/library/system.text.encoding.aspx。 类型:字符串 (或带有 resultType 字符串) 的表达式。

compression
DatasetCompression

用于 json 数据集的数据压缩方法。

适用于