< Summary

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

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\resources\Azure.ResourceManager.Resources\src\Generated\Models\OperationAutoGenerated3.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> Microsoft.Resources operation. </summary>
 11    internal partial class OperationAutoGenerated3
 12    {
 13        /// <summary> Initializes a new instance of OperationAutoGenerated3. </summary>
 014        internal OperationAutoGenerated3()
 15        {
 016        }
 17
 18        /// <summary> Initializes a new instance of OperationAutoGenerated3. </summary>
 19        /// <param name="name"> Operation name: {provider}/{resource}/{operation}. </param>
 20        /// <param name="display"> The object that represents the operation. </param>
 021        internal OperationAutoGenerated3(string name, OperationDisplayAutoGenerated3 display)
 22        {
 023            Name = name;
 024            Display = display;
 025        }
 26
 27        /// <summary> Operation name: {provider}/{resource}/{operation}. </summary>
 028        public string Name { get; }
 29        /// <summary> The object that represents the operation. </summary>
 030        public OperationDisplayAutoGenerated3 Display { get; }
 31    }
 32}