< Summary

Class:Azure.ResourceManager.Storage.Models.PrivateEndpoint
Assembly:Azure.ResourceManager.Storage
File(s):C:\Git\azure-sdk-for-net\sdk\storage\Azure.ResourceManager.Storage\src\Generated\Models\PrivateEndpoint.cs
C:\Git\azure-sdk-for-net\sdk\storage\Azure.ResourceManager.Storage\src\Generated\Models\PrivateEndpoint.Serialization.cs
Covered lines:0
Uncovered lines:18
Coverable lines:18
Total lines:72
Line coverage:0% (0 of 18)
Covered branches:0
Total branches:8
Branch coverage:0% (0 of 8)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_Id()-0%100%
Azure.Core.IUtf8JsonSerializable.Write(...)-0%0%
DeserializePrivateEndpoint(...)-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\storage\Azure.ResourceManager.Storage\src\Generated\Models\PrivateEndpoint.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.Storage.Models
 9{
 10    /// <summary> The Private Endpoint resource. </summary>
 11    public partial class PrivateEndpoint
 12    {
 13        /// <summary> Initializes a new instance of PrivateEndpoint. </summary>
 014        public PrivateEndpoint()
 15        {
 016        }
 17
 18        /// <summary> Initializes a new instance of PrivateEndpoint. </summary>
 19        /// <param name="id"> The ARM identifier for Private Endpoint. </param>
 020        internal PrivateEndpoint(string id)
 21        {
 022            Id = id;
 023        }
 24
 25        /// <summary> The ARM identifier for Private Endpoint. </summary>
 026        public string Id { get; }
 27    }
 28}

C:\Git\azure-sdk-for-net\sdk\storage\Azure.ResourceManager.Storage\src\Generated\Models\PrivateEndpoint.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.Storage.Models
 12{
 13    public partial class PrivateEndpoint : IUtf8JsonSerializable
 14    {
 15        void IUtf8JsonSerializable.Write(Utf8JsonWriter writer)
 16        {
 017            writer.WriteStartObject();
 018            if (Id != null)
 19            {
 020                writer.WritePropertyName("id");
 021                writer.WriteStringValue(Id);
 22            }
 023            writer.WriteEndObject();
 024        }
 25
 26        internal static PrivateEndpoint DeserializePrivateEndpoint(JsonElement element)
 27        {
 028            string id = default;
 029            foreach (var property in element.EnumerateObject())
 30            {
 031                if (property.NameEquals("id"))
 32                {
 033                    if (property.Value.ValueKind == JsonValueKind.Null)
 34                    {
 35                        continue;
 36                    }
 037                    id = property.Value.GetString();
 38                    continue;
 39                }
 40            }
 041            return new PrivateEndpoint(id);
 42        }
 43    }
 44}