-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
ODataResourceDataset.cs
52 lines (44 loc) · 3.15 KB
/
ODataResourceDataset.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
using System.Collections.Generic;
using Azure.Core.Expressions.DataFactory;
namespace Azure.ResourceManager.DataFactory.Models
{
/// <summary> The Open Data Protocol (OData) resource dataset. </summary>
public partial class ODataResourceDataset : DataFactoryDatasetProperties
{
/// <summary> Initializes a new instance of <see cref="ODataResourceDataset"/>. </summary>
/// <param name="linkedServiceName"> Linked service reference. </param>
/// <exception cref="ArgumentNullException"> <paramref name="linkedServiceName"/> is null. </exception>
public ODataResourceDataset(DataFactoryLinkedServiceReference linkedServiceName) : base(linkedServiceName)
{
Argument.AssertNotNull(linkedServiceName, nameof(linkedServiceName));
DatasetType = "ODataResource";
}
/// <summary> Initializes a new instance of <see cref="ODataResourceDataset"/>. </summary>
/// <param name="datasetType"> Type of dataset. </param>
/// <param name="description"> Dataset description. </param>
/// <param name="structure"> Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement. </param>
/// <param name="schema"> Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement. </param>
/// <param name="linkedServiceName"> Linked service reference. </param>
/// <param name="parameters"> Parameters for dataset. </param>
/// <param name="annotations"> List of tags that can be used for describing the Dataset. </param>
/// <param name="folder"> The folder that this Dataset is in. If not specified, Dataset will appear at the root level. </param>
/// <param name="additionalProperties"> Additional Properties. </param>
/// <param name="path"> The OData resource path. Type: string (or Expression with resultType string). </param>
internal ODataResourceDataset(string datasetType, string description, DataFactoryElement<IList<DatasetDataElement>> structure, DataFactoryElement<IList<DatasetSchemaDataElement>> schema, DataFactoryLinkedServiceReference linkedServiceName, IDictionary<string, EntityParameterSpecification> parameters, IList<BinaryData> annotations, DatasetFolder folder, IDictionary<string, BinaryData> additionalProperties, DataFactoryElement<string> path) : base(datasetType, description, structure, schema, linkedServiceName, parameters, annotations, folder, additionalProperties)
{
Path = path;
DatasetType = datasetType ?? "ODataResource";
}
/// <summary> Initializes a new instance of <see cref="ODataResourceDataset"/> for deserialization. </summary>
internal ODataResourceDataset()
{
}
/// <summary> The OData resource path. Type: string (or Expression with resultType string). </summary>
public DataFactoryElement<string> Path { get; set; }
}
}