| | 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.Collections.Generic; |
| | 9 | | using Azure.Core; |
| | 10 | |
|
| | 11 | | namespace Azure.Analytics.Synapse.Artifacts.Models |
| | 12 | | { |
| | 13 | | /// <summary> Request body structure for data flow statistics. </summary> |
| | 14 | | internal partial class DataFlowDebugStatisticsRequest |
| | 15 | | { |
| | 16 | | /// <summary> Initializes a new instance of DataFlowDebugStatisticsRequest. </summary> |
| 0 | 17 | | internal DataFlowDebugStatisticsRequest() |
| | 18 | | { |
| 0 | 19 | | Columns = new ChangeTrackingList<string>(); |
| 0 | 20 | | } |
| | 21 | |
|
| | 22 | | /// <summary> The ID of data flow debug session. </summary> |
| 0 | 23 | | public string SessionId { get; } |
| | 24 | | /// <summary> The data flow which contains the debug session. </summary> |
| 0 | 25 | | public string DataFlowName { get; } |
| | 26 | | /// <summary> The output stream name. </summary> |
| 0 | 27 | | public string StreamName { get; } |
| | 28 | | /// <summary> List of column names. </summary> |
| 0 | 29 | | public IReadOnlyList<string> Columns { get; } |
| | 30 | | } |
| | 31 | | } |