< Summary

Class:Azure.ResourceManager.Network.Models.ServiceTagInformation
Assembly:Azure.ResourceManager.Network
File(s):C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\ServiceTagInformation.cs
C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\ServiceTagInformation.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_Properties()-0%100%
get_Name()-0%100%
get_Id()-0%100%
DeserializeServiceTagInformation(...)-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\ServiceTagInformation.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> The service tag information. </summary>
 11    public partial class ServiceTagInformation
 12    {
 13        /// <summary> Initializes a new instance of ServiceTagInformation. </summary>
 014        internal ServiceTagInformation()
 15        {
 016        }
 17
 18        /// <summary> Initializes a new instance of ServiceTagInformation. </summary>
 19        /// <param name="properties"> Properties of the service tag information. </param>
 20        /// <param name="name"> The name of service tag. </param>
 21        /// <param name="id"> The ID of service tag. </param>
 022        internal ServiceTagInformation(ServiceTagInformationPropertiesFormat properties, string name, string id)
 23        {
 024            Properties = properties;
 025            Name = name;
 026            Id = id;
 027        }
 28
 29        /// <summary> Properties of the service tag information. </summary>
 030        public ServiceTagInformationPropertiesFormat Properties { get; }
 31        /// <summary> The name of service tag. </summary>
 032        public string Name { get; }
 33        /// <summary> The ID of service tag. </summary>
 034        public string Id { get; }
 35    }
 36}

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