< Summary

Class:Azure.ResourceManager.EventHubs.Models.AvailableClustersList
Assembly:Azure.ResourceManager.EventHubs
File(s):C:\Git\azure-sdk-for-net\sdk\eventhub\Azure.ResourceManager.EventHubs\src\Generated\Models\AvailableClustersList.cs
C:\Git\azure-sdk-for-net\sdk\eventhub\Azure.ResourceManager.EventHubs\src\Generated\Models\AvailableClustersList.Serialization.cs
Covered lines:0
Uncovered lines:17
Coverable lines:17
Total lines:76
Line coverage:0% (0 of 17)
Covered branches:0
Total branches:10
Branch coverage:0% (0 of 10)

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\eventhub\Azure.ResourceManager.EventHubs\src\Generated\Models\AvailableClustersList.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;
 9
 10namespace Azure.ResourceManager.EventHubs.Models
 11{
 12    /// <summary> The response of the List Available Clusters operation. </summary>
 13    public partial class AvailableClustersList
 14    {
 15        /// <summary> Initializes a new instance of AvailableClustersList. </summary>
 016        internal AvailableClustersList()
 17        {
 018        }
 19
 20        /// <summary> Initializes a new instance of AvailableClustersList. </summary>
 21        /// <param name="value"> The count of readily available and pre-provisioned Event Hubs Clusters per region. </pa
 022        internal AvailableClustersList(IReadOnlyList<AvailableCluster> value)
 23        {
 024            Value = value;
 025        }
 26
 27        /// <summary> The count of readily available and pre-provisioned Event Hubs Clusters per region. </summary>
 028        public IReadOnlyList<AvailableCluster> Value { get; }
 29    }
 30}

C:\Git\azure-sdk-for-net\sdk\eventhub\Azure.ResourceManager.EventHubs\src\Generated\Models\AvailableClustersList.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.EventHubs.Models
 13{
 14    public partial class AvailableClustersList
 15    {
 16        internal static AvailableClustersList DeserializeAvailableClustersList(JsonElement element)
 17        {
 018            IReadOnlyList<AvailableCluster> value = default;
 019            foreach (var property in element.EnumerateObject())
 20            {
 021                if (property.NameEquals("value"))
 22                {
 023                    if (property.Value.ValueKind == JsonValueKind.Null)
 24                    {
 25                        continue;
 26                    }
 027                    List<AvailableCluster> array = new List<AvailableCluster>();
 028                    foreach (var item in property.Value.EnumerateArray())
 29                    {
 030                        if (item.ValueKind == JsonValueKind.Null)
 31                        {
 032                            array.Add(null);
 33                        }
 34                        else
 35                        {
 036                            array.Add(AvailableCluster.DeserializeAvailableCluster(item));
 37                        }
 38                    }
 039                    value = array;
 40                    continue;
 41                }
 42            }
 043            return new AvailableClustersList(value);
 44        }
 45    }
 46}