Bagikan melalui


HttpDataset Constructors

Definition

Overloads

HttpDataset()

Initializes a new instance of the HttpDataset class.

HttpDataset(LinkedServiceReference, IDictionary<String,Object>, String, Object, Object, IDictionary<String,ParameterSpecification>, IList<Object>, DatasetFolder, Object, Object, Object, Object, DatasetStorageFormat, DatasetCompression)

Initializes a new instance of the HttpDataset class.

HttpDataset()

Initializes a new instance of the HttpDataset class.

public HttpDataset ();
Public Sub New ()

Applies to

HttpDataset(LinkedServiceReference, IDictionary<String,Object>, String, Object, Object, IDictionary<String,ParameterSpecification>, IList<Object>, DatasetFolder, Object, Object, Object, Object, DatasetStorageFormat, DatasetCompression)

Initializes a new instance of the HttpDataset class.

public HttpDataset (Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference linkedServiceName, 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 relativeUrl = default, object requestMethod = default, object requestBody = default, object additionalHeaders = default, Microsoft.Azure.Management.DataFactory.Models.DatasetStorageFormat format = default, Microsoft.Azure.Management.DataFactory.Models.DatasetCompression compression = default);
new Microsoft.Azure.Management.DataFactory.Models.HttpDataset : Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference * 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 * obj * obj * obj * Microsoft.Azure.Management.DataFactory.Models.DatasetStorageFormat * Microsoft.Azure.Management.DataFactory.Models.DatasetCompression -> Microsoft.Azure.Management.DataFactory.Models.HttpDataset
Public Sub New (linkedServiceName As LinkedServiceReference, 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 relativeUrl As Object = Nothing, Optional requestMethod As Object = Nothing, Optional requestBody As Object = Nothing, Optional additionalHeaders As Object = Nothing, Optional format As DatasetStorageFormat = Nothing, Optional compression As DatasetCompression = Nothing)

Parameters

linkedServiceName
LinkedServiceReference

Linked service reference.

additionalProperties
IDictionary<String,Object>

Unmatched properties from the message are deserialized this collection

description
String

Dataset description.

structure
Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

schema
Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

parameters
IDictionary<String,ParameterSpecification>

Parameters for dataset.

annotations
IList<Object>

List of tags that can be used for describing the Dataset.

folder
DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

relativeUrl
Object

The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).

requestMethod
Object

The HTTP method for the HTTP request. Type: string (or Expression with resultType string).

requestBody
Object

The body for the HTTP request. Type: string (or Expression with resultType string).

additionalHeaders
Object

The headers for the HTTP Request. e.g. request-header-name-1:request-header-value-1 ... request-header-name-n:request-header-value-n Type: string (or Expression with resultType string).

format
DatasetStorageFormat

The format of files.

compression
DatasetCompression

The data compression method used on files.

Applies to