< Summary

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

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\P2SVpnProfileParameters.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> Vpn Client Parameters for package generation. </summary>
 11    public partial class P2SVpnProfileParameters
 12    {
 13        /// <summary> Initializes a new instance of P2SVpnProfileParameters. </summary>
 014        public P2SVpnProfileParameters()
 15        {
 016        }
 17
 18        /// <summary> Initializes a new instance of P2SVpnProfileParameters. </summary>
 19        /// <param name="authenticationMethod"> VPN client authentication method. </param>
 020        internal P2SVpnProfileParameters(AuthenticationMethod? authenticationMethod)
 21        {
 022            AuthenticationMethod = authenticationMethod;
 023        }
 24
 25        /// <summary> VPN client authentication method. </summary>
 026        public AuthenticationMethod? AuthenticationMethod { get; set; }
 27    }
 28}

C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\P2SVpnProfileParameters.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 P2SVpnProfileParameters : IUtf8JsonSerializable
 14    {
 15        void IUtf8JsonSerializable.Write(Utf8JsonWriter writer)
 16        {
 017            writer.WriteStartObject();
 018            if (AuthenticationMethod != null)
 19            {
 020                writer.WritePropertyName("authenticationMethod");
 021                writer.WriteStringValue(AuthenticationMethod.Value.ToString());
 22            }
 023            writer.WriteEndObject();
 024        }
 25    }
 26}