< Summary

Class:Azure.ResourceManager.Resources.Models.GenericResourceFilter
Assembly:Azure.ResourceManager.Resources
File(s):C:\Git\azure-sdk-for-net\sdk\resources\Azure.ResourceManager.Resources\src\Generated\Models\GenericResourceFilter.cs
Covered lines:0
Uncovered lines:10
Coverable lines:10
Total lines:36
Line coverage:0% (0 of 10)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_ResourceType()-0%100%
get_Tagname()-0%100%
get_Tagvalue()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\resources\Azure.ResourceManager.Resources\src\Generated\Models\GenericResourceFilter.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.Resources.Models
 9{
 10    /// <summary> Resource filter. </summary>
 11    internal partial class GenericResourceFilter
 12    {
 13        /// <summary> Initializes a new instance of GenericResourceFilter. </summary>
 014        internal GenericResourceFilter()
 15        {
 016        }
 17
 18        /// <summary> Initializes a new instance of GenericResourceFilter. </summary>
 19        /// <param name="resourceType"> The resource type. </param>
 20        /// <param name="tagname"> The tag name. </param>
 21        /// <param name="tagvalue"> The tag value. </param>
 022        internal GenericResourceFilter(string resourceType, string tagname, string tagvalue)
 23        {
 024            ResourceType = resourceType;
 025            Tagname = tagname;
 026            Tagvalue = tagvalue;
 027        }
 28
 29        /// <summary> The resource type. </summary>
 030        public string ResourceType { get; }
 31        /// <summary> The tag name. </summary>
 032        public string Tagname { get; }
 33        /// <summary> The tag value. </summary>
 034        public string Tagvalue { get; }
 35    }
 36}