< Summary

Class:Azure.ResourceManager.Network.Models.LogSpecification
Assembly:Azure.ResourceManager.Network
File(s):C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\LogSpecification.cs
C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\LogSpecification.Serialization.cs
Covered lines:0
Uncovered lines:26
Coverable lines:26
Total lines:89
Line coverage:0% (0 of 26)
Covered branches:0
Total branches:14
Branch coverage:0% (0 of 14)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_Name()-0%100%
get_DisplayName()-0%100%
get_BlobDuration()-0%100%
DeserializeLogSpecification(...)-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\LogSpecification.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
 8namespace Azure.ResourceManager.Network.Models
 9{
 10    /// <summary> Description of logging specification. </summary>
 11    public partial class LogSpecification
 12    {
 13        /// <summary> Initializes a new instance of LogSpecification. </summary>
 014        internal LogSpecification()
 15        {
 016        }
 17
 18        /// <summary> Initializes a new instance of LogSpecification. </summary>
 19        /// <param name="name"> The name of the specification. </param>
 20        /// <param name="displayName"> The display name of the specification. </param>
 21        /// <param name="blobDuration"> Duration of the blob. </param>
 022        internal LogSpecification(string name, string displayName, string blobDuration)
 23        {
 024            Name = name;
 025            DisplayName = displayName;
 026            BlobDuration = blobDuration;
 027        }
 28
 29        /// <summary> The name of the specification. </summary>
 030        public string Name { get; }
 31        /// <summary> The display name of the specification. </summary>
 032        public string DisplayName { get; }
 33        /// <summary> Duration of the blob. </summary>
 034        public string BlobDuration { get; }
 35    }
 36}

C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\LogSpecification.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.Text.Json;
 9using Azure.Core;
 10
 11namespace Azure.ResourceManager.Network.Models
 12{
 13    public partial class LogSpecification
 14    {
 15        internal static LogSpecification DeserializeLogSpecification(JsonElement element)
 16        {
 017            string name = default;
 018            string displayName = default;
 019            string blobDuration = default;
 020            foreach (var property in element.EnumerateObject())
 21            {
 022                if (property.NameEquals("name"))
 23                {
 024                    if (property.Value.ValueKind == JsonValueKind.Null)
 25                    {
 26                        continue;
 27                    }
 028                    name = property.Value.GetString();
 029                    continue;
 30                }
 031                if (property.NameEquals("displayName"))
 32                {
 033                    if (property.Value.ValueKind == JsonValueKind.Null)
 34                    {
 35                        continue;
 36                    }
 037                    displayName = property.Value.GetString();
 038                    continue;
 39                }
 040                if (property.NameEquals("blobDuration"))
 41                {
 042                    if (property.Value.ValueKind == JsonValueKind.Null)
 43                    {
 44                        continue;
 45                    }
 046                    blobDuration = property.Value.GetString();
 47                    continue;
 48                }
 49            }
 050            return new LogSpecification(name, displayName, blobDuration);
 51        }
 52    }
 53}