< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_Provider()-0%100%
get_Resource()-0%100%
get_Operation()-0%100%
get_Description()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\resources\Azure.ResourceManager.Resources\src\Generated\Models\OperationDisplayAutoGenerated3.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> The object that represents the operation. </summary>
 11    internal partial class OperationDisplayAutoGenerated3
 12    {
 13        /// <summary> Initializes a new instance of OperationDisplayAutoGenerated3. </summary>
 014        internal OperationDisplayAutoGenerated3()
 15        {
 016        }
 17
 18        /// <summary> Initializes a new instance of OperationDisplayAutoGenerated3. </summary>
 19        /// <param name="provider"> Service provider: Microsoft.Resources. </param>
 20        /// <param name="resource"> Resource on which the operation is performed: Profile, endpoint, etc. </param>
 21        /// <param name="operation"> Operation type: Read, write, delete, etc. </param>
 22        /// <param name="description"> Description of the operation. </param>
 023        internal OperationDisplayAutoGenerated3(string provider, string resource, string operation, string description)
 24        {
 025            Provider = provider;
 026            Resource = resource;
 027            Operation = operation;
 028            Description = description;
 029        }
 30
 31        /// <summary> Service provider: Microsoft.Resources. </summary>
 032        public string Provider { get; }
 33        /// <summary> Resource on which the operation is performed: Profile, endpoint, etc. </summary>
 034        public string Resource { get; }
 35        /// <summary> Operation type: Read, write, delete, etc. </summary>
 036        public string Operation { get; }
 37        /// <summary> Description of the operation. </summary>
 038        public string Description { get; }
 39    }
 40}