< Summary

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

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\VpnSiteId.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> VpnSite Resource. </summary>
 11    internal partial class VpnSiteId
 12    {
 13        /// <summary> Initializes a new instance of VpnSiteId. </summary>
 014        internal VpnSiteId()
 15        {
 016        }
 17
 18        /// <summary> Initializes a new instance of VpnSiteId. </summary>
 19        /// <param name="vpnSite"> The resource-uri of the vpn-site for which config is to be fetched. </param>
 020        internal VpnSiteId(string vpnSite)
 21        {
 022            VpnSite = vpnSite;
 023        }
 24
 25        /// <summary> The resource-uri of the vpn-site for which config is to be fetched. </summary>
 026        public string VpnSite { get; }
 27    }
 28}

Methods/Properties

.ctor()
.ctor(...)
get_VpnSite()