< Summary

Class:Azure.Analytics.Synapse.Artifacts.Models.StartDataFlowDebugSessionRequest
Assembly:Azure.Analytics.Synapse.Artifacts
File(s):C:\Git\azure-sdk-for-net\sdk\synapse\Azure.Analytics.Synapse.Artifacts\src\Generated\Models\StartDataFlowDebugSessionRequest.cs
Covered lines:0
Uncovered lines:11
Coverable lines:11
Total lines:38
Line coverage:0% (0 of 11)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
get_SessionId()-0%100%
get_DataFlow()-0%100%
get_Datasets()-0%100%
get_LinkedServices()-0%100%
get_Staging()-0%100%
get_DebugSettings()-0%100%
get_IncrementalDebug()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\synapse\Azure.Analytics.Synapse.Artifacts\src\Generated\Models\StartDataFlowDebugSessionRequest.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4// <auto-generated/>
 5
 6#nullable disable
 7
 8using System.Collections.Generic;
 9using Azure.Core;
 10
 11namespace 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>
 017        internal StartDataFlowDebugSessionRequest()
 18        {
 019            Datasets = new ChangeTrackingList<DatasetResource>();
 020            LinkedServices = new ChangeTrackingList<LinkedServiceResource>();
 021        }
 22
 23        /// <summary> The ID of data flow debug session. </summary>
 024        public string SessionId { get; }
 25        /// <summary> Data flow instance. </summary>
 026        public DataFlowResource DataFlow { get; }
 27        /// <summary> List of datasets. </summary>
 028        public IReadOnlyList<DatasetResource> Datasets { get; }
 29        /// <summary> List of linked services. </summary>
 030        public IReadOnlyList<LinkedServiceResource> LinkedServices { get; }
 31        /// <summary> Staging info for debug session. </summary>
 032        public object Staging { get; }
 33        /// <summary> Data flow debug settings. </summary>
 034        public object DebugSettings { get; }
 35        /// <summary> The type of new Databricks cluster. </summary>
 036        public bool? IncrementalDebug { get; }
 37    }
 38}