-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
SapHanaTableDataset.cs
52 lines (45 loc) · 3.43 KB
/
SapHanaTableDataset.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;
using Azure.Core.Expressions.DataFactory;
namespace Azure.ResourceManager.DataFactory.Models
{
/// <summary> SAP HANA Table properties. </summary>
public partial class SapHanaTableDataset : DataFactoryDatasetProperties
{
/// <summary> Initializes a new instance of <see cref="SapHanaTableDataset"/>. </summary>
/// <param name="linkedServiceName"> Linked service reference. </param>
/// <exception cref="ArgumentNullException"> <paramref name="linkedServiceName"/> is null. </exception>
public SapHanaTableDataset(DataFactoryLinkedServiceReference linkedServiceName) : base(linkedServiceName)
{
Argument.AssertNotNull(linkedServiceName, nameof(linkedServiceName));
DatasetType = "SapHanaTable";
}
/// <summary> Initializes a new instance of <see cref="SapHanaTableDataset"/>. </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="schemaTypePropertiesSchema"> The schema name of SAP HANA. Type: string (or Expression with resultType string). </param>
/// <param name="table"> The table name of SAP HANA. Type: string (or Expression with resultType string). </param>
internal SapHanaTableDataset(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> schemaTypePropertiesSchema, DataFactoryElement<string> table) : base(datasetType, description, structure, schema, linkedServiceName, parameters, annotations, folder, additionalProperties)
{
SchemaTypePropertiesSchema = schemaTypePropertiesSchema;
Table = table;
DatasetType = datasetType ?? "SapHanaTable";
}
/// <summary> The schema name of SAP HANA. Type: string (or Expression with resultType string). </summary>
public DataFactoryElement<string> SchemaTypePropertiesSchema { get; set; }
/// <summary> The table name of SAP HANA. Type: string (or Expression with resultType string). </summary>
public DataFactoryElement<string> Table { get; set; }
}
}