< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_PrivateLinkService()-0%100%
DeserializeAutoApprovedPrivateLinkService(...)-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\AutoApprovedPrivateLinkService.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 information of an AutoApprovedPrivateLinkService. </summary>
 11    public partial class AutoApprovedPrivateLinkService
 12    {
 13        /// <summary> Initializes a new instance of AutoApprovedPrivateLinkService. </summary>
 014        internal AutoApprovedPrivateLinkService()
 15        {
 016        }
 17
 18        /// <summary> Initializes a new instance of AutoApprovedPrivateLinkService. </summary>
 19        /// <param name="privateLinkService"> The id of the private link service resource. </param>
 020        internal AutoApprovedPrivateLinkService(string privateLinkService)
 21        {
 022            PrivateLinkService = privateLinkService;
 023        }
 24
 25        /// <summary> The id of the private link service resource. </summary>
 026        public string PrivateLinkService { get; }
 27    }
 28}

C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\AutoApprovedPrivateLinkService.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 AutoApprovedPrivateLinkService
 14    {
 15        internal static AutoApprovedPrivateLinkService DeserializeAutoApprovedPrivateLinkService(JsonElement element)
 16        {
 017            string privateLinkService = default;
 018            foreach (var property in element.EnumerateObject())
 19            {
 020                if (property.NameEquals("privateLinkService"))
 21                {
 022                    if (property.Value.ValueKind == JsonValueKind.Null)
 23                    {
 24                        continue;
 25                    }
 026                    privateLinkService = property.Value.GetString();
 27                    continue;
 28                }
 29            }
 030            return new AutoApprovedPrivateLinkService(privateLinkService);
 31        }
 32    }
 33}