| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | using System; |
| | 9 | |
|
| | 10 | | namespace Azure.Analytics.Synapse.Artifacts.Models |
| | 11 | | { |
| | 12 | | /// <summary> A data flow transformation. </summary> |
| | 13 | | public partial class Transformation |
| | 14 | | { |
| | 15 | | /// <summary> Initializes a new instance of Transformation. </summary> |
| | 16 | | /// <param name="name"> Transformation name. </param> |
| | 17 | | /// <exception cref="ArgumentNullException"> <paramref name="name"/> is null. </exception> |
| 0 | 18 | | public Transformation(string name) |
| | 19 | | { |
| 0 | 20 | | if (name == null) |
| | 21 | | { |
| 0 | 22 | | throw new ArgumentNullException(nameof(name)); |
| | 23 | | } |
| | 24 | |
|
| 0 | 25 | | Name = name; |
| 0 | 26 | | } |
| | 27 | |
|
| | 28 | | /// <summary> Initializes a new instance of Transformation. </summary> |
| | 29 | | /// <param name="name"> Transformation name. </param> |
| | 30 | | /// <param name="description"> Transformation description. </param> |
| 0 | 31 | | internal Transformation(string name, string description) |
| | 32 | | { |
| 0 | 33 | | Name = name; |
| 0 | 34 | | Description = description; |
| 0 | 35 | | } |
| | 36 | |
|
| | 37 | | /// <summary> Transformation name. </summary> |
| 0 | 38 | | public string Name { get; set; } |
| | 39 | | /// <summary> Transformation description. </summary> |
| 0 | 40 | | public string Description { get; set; } |
| | 41 | | } |
| | 42 | | } |