< Summary

Class:Azure.ResourceManager.Compute.Models.ResourceIdentityTypeExtensions
Assembly:Azure.ResourceManager.Compute
File(s):C:\Git\azure-sdk-for-net\sdk\compute\Azure.ResourceManager.Compute\src\Generated\Models\ResourceIdentityType.Serialization.cs
Covered lines:0
Uncovered lines:13
Coverable lines:13
Total lines:32
Line coverage:0% (0 of 13)
Covered branches:0
Total branches:13
Branch coverage:0% (0 of 13)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
ToSerialString(...)-0%0%
ToResourceIdentityType(...)-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\compute\Azure.ResourceManager.Compute\src\Generated\Models\ResourceIdentityType.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;
 9
 10namespace Azure.ResourceManager.Compute.Models
 11{
 12    internal static class ResourceIdentityTypeExtensions
 13    {
 014        public static string ToSerialString(this ResourceIdentityType value) => value switch
 015        {
 016            ResourceIdentityType.SystemAssigned => "SystemAssigned",
 017            ResourceIdentityType.UserAssigned => "UserAssigned",
 018            ResourceIdentityType.SystemAssignedUserAssigned => "SystemAssigned, UserAssigned",
 019            ResourceIdentityType.None => "None",
 020            _ => throw new ArgumentOutOfRangeException(nameof(value), value, "Unknown ResourceIdentityType value.")
 021        };
 22
 23        public static ResourceIdentityType ToResourceIdentityType(this string value)
 24        {
 025            if (string.Equals(value, "SystemAssigned", StringComparison.InvariantCultureIgnoreCase)) return ResourceIden
 026            if (string.Equals(value, "UserAssigned", StringComparison.InvariantCultureIgnoreCase)) return ResourceIdenti
 027            if (string.Equals(value, "SystemAssigned, UserAssigned", StringComparison.InvariantCultureIgnoreCase)) retur
 028            if (string.Equals(value, "None", StringComparison.InvariantCultureIgnoreCase)) return ResourceIdentityType.N
 029            throw new ArgumentOutOfRangeException(nameof(value), value, "Unknown ResourceIdentityType value.");
 30        }
 31    }
 32}