| | 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 starting data flow debug session. </summary> |
| | 14 | | internal partial class StartDataFlowDebugSessionRequest |
| | 15 | | { |
| | 16 | | /// <summary> Initializes a new instance of StartDataFlowDebugSessionRequest. </summary> |
| 0 | 17 | | internal StartDataFlowDebugSessionRequest() |
| | 18 | | { |
| 0 | 19 | | Datasets = new ChangeTrackingList<DatasetResource>(); |
| 0 | 20 | | LinkedServices = new ChangeTrackingList<LinkedServiceResource>(); |
| 0 | 21 | | } |
| | 22 | |
|
| | 23 | | /// <summary> The ID of data flow debug session. </summary> |
| 0 | 24 | | public string SessionId { get; } |
| | 25 | | /// <summary> Data flow instance. </summary> |
| 0 | 26 | | public DataFlowResource DataFlow { get; } |
| | 27 | | /// <summary> List of datasets. </summary> |
| 0 | 28 | | public IReadOnlyList<DatasetResource> Datasets { get; } |
| | 29 | | /// <summary> List of linked services. </summary> |
| 0 | 30 | | public IReadOnlyList<LinkedServiceResource> LinkedServices { get; } |
| | 31 | | /// <summary> Staging info for debug session. </summary> |
| 0 | 32 | | public object Staging { get; } |
| | 33 | | /// <summary> Data flow debug settings. </summary> |
| 0 | 34 | | public object DebugSettings { get; } |
| | 35 | | /// <summary> The type of new Databricks cluster. </summary> |
| 0 | 36 | | public bool? IncrementalDebug { get; } |
| | 37 | | } |
| | 38 | | } |