Class HttpDataset
A file in an HTTP web server.
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Analytics.Synapse.Artifacts.dll
Syntax
[System.Text.Json.Serialization.JsonConverter(typeof(Azure.Analytics.Synapse.Artifacts.Models.HttpDataset/HttpDatasetConverter))]
public class HttpDataset : Azure.Analytics.Synapse.Artifacts.Models.Dataset
Constructors
HttpDataset(LinkedServiceReference)
Initializes a new instance of HttpDataset.
Declaration
public HttpDataset (Azure.Analytics.Synapse.Artifacts.Models.LinkedServiceReference linkedServiceName);
Parameters
|
LinkedServiceReference
linkedServiceName
Linked service reference. |
Exceptions
|
System.ArgumentNullException
|
Properties
AdditionalHeaders
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).
Declaration
public object AdditionalHeaders { get; set; }
Property Value
|
System.Object
|
Compression
The data compression method used on files.
Declaration
public Azure.Analytics.Synapse.Artifacts.Models.DatasetCompression Compression { get; set; }
Property Value
|
DatasetCompression
|
Format
The format of files. Please note DatasetStorageFormat is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include AvroFormat, JsonFormat, OrcFormat, ParquetFormat and TextFormat.
Declaration
public Azure.Analytics.Synapse.Artifacts.Models.DatasetStorageFormat Format { get; set; }
Property Value
|
DatasetStorageFormat
|
RelativeUrl
The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).
Declaration
public object RelativeUrl { get; set; }
Property Value
|
System.Object
|
RequestBody
The body for the HTTP request. Type: string (or Expression with resultType string).
Declaration
public object RequestBody { get; set; }
Property Value
|
System.Object
|
RequestMethod
The HTTP method for the HTTP request. Type: string (or Expression with resultType string).
Declaration
public object RequestMethod { get; set; }
Property Value
|
System.Object
|