< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_Value()-0%100%
get_NextLink()-0%100%
DeserializeQueryDataFlowDebugSessionsResponse(...)-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\synapse\Azure.Analytics.Synapse.Artifacts\src\Generated\Models\QueryDataFlowDebugSessionsResponse.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> A list of active debug sessions. </summary>
 14    public partial class QueryDataFlowDebugSessionsResponse
 15    {
 16        /// <summary> Initializes a new instance of QueryDataFlowDebugSessionsResponse. </summary>
 017        internal QueryDataFlowDebugSessionsResponse()
 18        {
 019            Value = new ChangeTrackingList<DataFlowDebugSessionInfo>();
 020        }
 21
 22        /// <summary> Initializes a new instance of QueryDataFlowDebugSessionsResponse. </summary>
 23        /// <param name="value"> Array with all active debug sessions. </param>
 24        /// <param name="nextLink"> The link to the next page of results, if any remaining results exist. </param>
 025        internal QueryDataFlowDebugSessionsResponse(IReadOnlyList<DataFlowDebugSessionInfo> value, string nextLink)
 26        {
 027            Value = value;
 028            NextLink = nextLink;
 029        }
 30
 31        /// <summary> Array with all active debug sessions. </summary>
 032        public IReadOnlyList<DataFlowDebugSessionInfo> Value { get; }
 33        /// <summary> The link to the next page of results, if any remaining results exist. </summary>
 034        public string NextLink { get; }
 35    }
 36}

C:\Git\azure-sdk-for-net\sdk\synapse\Azure.Analytics.Synapse.Artifacts\src\Generated\Models\QueryDataFlowDebugSessionsResponse.Serialization.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 System.Text.Json;
 10using Azure.Core;
 11
 12namespace Azure.Analytics.Synapse.Artifacts.Models
 13{
 14    public partial class QueryDataFlowDebugSessionsResponse
 15    {
 16        internal static QueryDataFlowDebugSessionsResponse DeserializeQueryDataFlowDebugSessionsResponse(JsonElement ele
 17        {
 018            Optional<IReadOnlyList<DataFlowDebugSessionInfo>> value = default;
 019            Optional<string> nextLink = default;
 020            foreach (var property in element.EnumerateObject())
 21            {
 022                if (property.NameEquals("value"))
 23                {
 024                    List<DataFlowDebugSessionInfo> array = new List<DataFlowDebugSessionInfo>();
 025                    foreach (var item in property.Value.EnumerateArray())
 26                    {
 027                        array.Add(DataFlowDebugSessionInfo.DeserializeDataFlowDebugSessionInfo(item));
 28                    }
 029                    value = array;
 030                    continue;
 31                }
 032                if (property.NameEquals("nextLink"))
 33                {
 034                    nextLink = property.Value.GetString();
 35                    continue;
 36                }
 37            }
 038            return new QueryDataFlowDebugSessionsResponse(Optional.ToList(value), nextLink.Value);
 39        }
 40    }
 41}