< Summary

Class:Azure.ResourceManager.AppConfiguration.Models.ApiKeyListResult
Assembly:Azure.ResourceManager.AppConfiguration
File(s):C:\Git\azure-sdk-for-net\sdk\appconfiguration\Azure.ResourceManager.AppConfiguration\src\Generated\Models\ApiKeyListResult.cs
C:\Git\azure-sdk-for-net\sdk\appconfiguration\Azure.ResourceManager.AppConfiguration\src\Generated\Models\ApiKeyListResult.Serialization.cs
Covered lines:20
Uncovered lines:4
Coverable lines:24
Total lines:90
Line coverage:83.3% (20 of 24)
Covered branches:12
Total branches:14
Branch coverage:85.7% (12 of 14)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-100%100%
get_Value()-100%100%
get_NextLink()-100%100%
DeserializeApiKeyListResult(...)-87.5%85.71%

File(s)

C:\Git\azure-sdk-for-net\sdk\appconfiguration\Azure.ResourceManager.AppConfiguration\src\Generated\Models\ApiKeyListResult.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.AppConfiguration.Models
 11{
 12    /// <summary> The result of a request to list API keys. </summary>
 13    public partial class ApiKeyListResult
 14    {
 15        /// <summary> Initializes a new instance of ApiKeyListResult. </summary>
 016        internal ApiKeyListResult()
 17        {
 018        }
 19
 20        /// <summary> Initializes a new instance of ApiKeyListResult. </summary>
 21        /// <param name="value"> The collection value. </param>
 22        /// <param name="nextLink"> The URI that can be used to request the next set of paged results. </param>
 423        internal ApiKeyListResult(IReadOnlyList<ApiKey> value, string nextLink)
 24        {
 425            Value = value;
 426            NextLink = nextLink;
 427        }
 28
 29        /// <summary> The collection value. </summary>
 430        public IReadOnlyList<ApiKey> Value { get; }
 31        /// <summary> The URI that can be used to request the next set of paged results. </summary>
 432        public string NextLink { get; }
 33    }
 34}

C:\Git\azure-sdk-for-net\sdk\appconfiguration\Azure.ResourceManager.AppConfiguration\src\Generated\Models\ApiKeyListResult.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.AppConfiguration.Models
 13{
 14    public partial class ApiKeyListResult
 15    {
 16        internal static ApiKeyListResult DeserializeApiKeyListResult(JsonElement element)
 17        {
 418            IReadOnlyList<ApiKey> value = default;
 419            string nextLink = default;
 2420            foreach (var property in element.EnumerateObject())
 21            {
 822                if (property.NameEquals("value"))
 23                {
 424                    if (property.Value.ValueKind == JsonValueKind.Null)
 25                    {
 26                        continue;
 27                    }
 428                    List<ApiKey> array = new List<ApiKey>();
 4029                    foreach (var item in property.Value.EnumerateArray())
 30                    {
 1631                        if (item.ValueKind == JsonValueKind.Null)
 32                        {
 033                            array.Add(null);
 34                        }
 35                        else
 36                        {
 1637                            array.Add(ApiKey.DeserializeApiKey(item));
 38                        }
 39                    }
 440                    value = array;
 441                    continue;
 42                }
 443                if (property.NameEquals("nextLink"))
 44                {
 445                    if (property.Value.ValueKind == JsonValueKind.Null)
 46                    {
 47                        continue;
 48                    }
 049                    nextLink = property.Value.GetString();
 50                    continue;
 51                }
 52            }
 453            return new ApiKeyListResult(value, nextLink);
 54        }
 55    }
 56}