< Summary

Class:Azure.ResourceManager.Network.Models.VpnPacketCaptureStopParameters
Assembly:Azure.ResourceManager.Network
File(s):C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\VpnPacketCaptureStopParameters.cs
C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\VpnPacketCaptureStopParameters.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_SasUrl()-0%100%
Azure.Core.IUtf8JsonSerializable.Write(...)-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\VpnPacketCaptureStopParameters.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> Stop packet capture parameters. </summary>
 11    public partial class VpnPacketCaptureStopParameters
 12    {
 13        /// <summary> Initializes a new instance of VpnPacketCaptureStopParameters. </summary>
 014        public VpnPacketCaptureStopParameters()
 15        {
 016        }
 17
 18        /// <summary> Initializes a new instance of VpnPacketCaptureStopParameters. </summary>
 19        /// <param name="sasUrl"> SAS url for packet capture on virtual network gateway. </param>
 020        internal VpnPacketCaptureStopParameters(string sasUrl)
 21        {
 022            SasUrl = sasUrl;
 023        }
 24
 25        /// <summary> SAS url for packet capture on virtual network gateway. </summary>
 026        public string SasUrl { get; set; }
 27    }
 28}

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