< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
get_SessionId()-0%100%
get_DataFlowName()-0%100%
get_StreamName()-0%100%
get_Columns()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\synapse\Azure.Analytics.Synapse.Artifacts\src\Generated\Models\DataFlowDebugStatisticsRequest.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 data flow statistics. </summary>
 14    internal partial class DataFlowDebugStatisticsRequest
 15    {
 16        /// <summary> Initializes a new instance of DataFlowDebugStatisticsRequest. </summary>
 017        internal DataFlowDebugStatisticsRequest()
 18        {
 019            Columns = new ChangeTrackingList<string>();
 020        }
 21
 22        /// <summary> The ID of data flow debug session. </summary>
 023        public string SessionId { get; }
 24        /// <summary> The data flow which contains the debug session. </summary>
 025        public string DataFlowName { get; }
 26        /// <summary> The output stream name. </summary>
 027        public string StreamName { get; }
 28        /// <summary> List of column names. </summary>
 029        public IReadOnlyList<string> Columns { get; }
 30    }
 31}