< Summary

Class:Azure.ResourceManager.Compute.Models.ProximityPlacementGroupListResult
Assembly:Azure.ResourceManager.Compute
File(s):C:\Git\azure-sdk-for-net\sdk\compute\Azure.ResourceManager.Compute\src\Generated\Models\ProximityPlacementGroupListResult.cs
C:\Git\azure-sdk-for-net\sdk\compute\Azure.ResourceManager.Compute\src\Generated\Models\ProximityPlacementGroupListResult.Serialization.cs
Covered lines:0
Uncovered lines:26
Coverable lines:26
Total lines:95
Line coverage:0% (0 of 26)
Covered branches:0
Total branches:16
Branch coverage:0% (0 of 16)

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\compute\Azure.ResourceManager.Compute\src\Generated\Models\ProximityPlacementGroupListResult.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;
 9using System.Collections.Generic;
 10using System.Linq;
 11
 12namespace Azure.ResourceManager.Compute.Models
 13{
 14    /// <summary> The List Proximity Placement Group operation response. </summary>
 15    public partial class ProximityPlacementGroupListResult
 16    {
 17        /// <summary> Initializes a new instance of ProximityPlacementGroupListResult. </summary>
 18        /// <param name="value"> The list of proximity placement groups. </param>
 019        internal ProximityPlacementGroupListResult(IEnumerable<ProximityPlacementGroup> value)
 20        {
 021            if (value == null)
 22            {
 023                throw new ArgumentNullException(nameof(value));
 24            }
 25
 026            Value = value.ToArray();
 027        }
 28
 29        /// <summary> Initializes a new instance of ProximityPlacementGroupListResult. </summary>
 30        /// <param name="value"> The list of proximity placement groups. </param>
 31        /// <param name="nextLink"> The URI to fetch the next page of proximity placement groups. </param>
 032        internal ProximityPlacementGroupListResult(IReadOnlyList<ProximityPlacementGroup> value, string nextLink)
 33        {
 034            Value = value ?? new List<ProximityPlacementGroup>();
 035            NextLink = nextLink;
 036        }
 37
 38        /// <summary> The list of proximity placement groups. </summary>
 039        public IReadOnlyList<ProximityPlacementGroup> Value { get; }
 40        /// <summary> The URI to fetch the next page of proximity placement groups. </summary>
 041        public string NextLink { get; }
 42    }
 43}

C:\Git\azure-sdk-for-net\sdk\compute\Azure.ResourceManager.Compute\src\Generated\Models\ProximityPlacementGroupListResult.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.ResourceManager.Compute.Models
 13{
 14    public partial class ProximityPlacementGroupListResult
 15    {
 16        internal static ProximityPlacementGroupListResult DeserializeProximityPlacementGroupListResult(JsonElement eleme
 17        {
 018            IReadOnlyList<ProximityPlacementGroup> value = default;
 019            string nextLink = default;
 020            foreach (var property in element.EnumerateObject())
 21            {
 022                if (property.NameEquals("value"))
 23                {
 024                    List<ProximityPlacementGroup> array = new List<ProximityPlacementGroup>();
 025                    foreach (var item in property.Value.EnumerateArray())
 26                    {
 027                        if (item.ValueKind == JsonValueKind.Null)
 28                        {
 029                            array.Add(null);
 30                        }
 31                        else
 32                        {
 033                            array.Add(ProximityPlacementGroup.DeserializeProximityPlacementGroup(item));
 34                        }
 35                    }
 036                    value = array;
 037                    continue;
 38                }
 039                if (property.NameEquals("nextLink"))
 40                {
 041                    if (property.Value.ValueKind == JsonValueKind.Null)
 42                    {
 43                        continue;
 44                    }
 045                    nextLink = property.Value.GetString();
 46                    continue;
 47                }
 48            }
 049            return new ProximityPlacementGroupListResult(value, nextLink);
 50        }
 51    }
 52}