| | 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> Data flow debug resource. </summary> |
| | 13 | | public partial class DataFlowDebugResource : SubResourceDebugResource |
| | 14 | | { |
| | 15 | | /// <summary> Initializes a new instance of DataFlowDebugResource. </summary> |
| | 16 | | /// <param name="properties"> Data flow properties. </param> |
| | 17 | | /// <exception cref="ArgumentNullException"> <paramref name="properties"/> is null. </exception> |
| 0 | 18 | | public DataFlowDebugResource(DataFlow properties) |
| | 19 | | { |
| 0 | 20 | | if (properties == null) |
| | 21 | | { |
| 0 | 22 | | throw new ArgumentNullException(nameof(properties)); |
| | 23 | | } |
| | 24 | |
|
| 0 | 25 | | Properties = properties; |
| 0 | 26 | | } |
| | 27 | |
|
| | 28 | | /// <summary> Data flow properties. </summary> |
| 0 | 29 | | public DataFlow Properties { get; } |
| | 30 | | } |
| | 31 | | } |