< Summary

Class:Azure.ResourceManager.Compute.Models.GalleryPropertiesProvisioningState
Assembly:Azure.ResourceManager.Compute
File(s):C:\Git\azure-sdk-for-net\sdk\compute\Azure.ResourceManager.Compute\src\Generated\Models\GalleryPropertiesProvisioningState.cs
Covered lines:3
Uncovered lines:12
Coverable lines:15
Total lines:62
Line coverage:20% (3 of 15)
Covered branches:1
Total branches:6
Branch coverage:16.6% (1 of 6)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-100%50%
get_Creating()-0%100%
get_Updating()-0%100%
get_Failed()-0%100%
get_Succeeded()-0%100%
get_Deleting()-0%100%
get_Migrating()-0%100%
op_Equality(...)-0%100%
op_Inequality(...)-0%100%
op_Implicit(...)-0%100%
Equals(...)-0%0%
Equals(...)-0%100%
GetHashCode()-0%0%
ToString()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\compute\Azure.ResourceManager.Compute\src\Generated\Models\GalleryPropertiesProvisioningState.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;
 9using System.ComponentModel;
 10
 11namespace Azure.ResourceManager.Compute.Models
 12{
 13    /// <summary> The provisioning state, which only appears in the response. </summary>
 14    public readonly partial struct GalleryPropertiesProvisioningState : IEquatable<GalleryPropertiesProvisioningState>
 15    {
 16        private readonly string _value;
 17
 18        /// <summary> Determines if two <see cref="GalleryPropertiesProvisioningState"/> values are the same. </summary>
 19        public GalleryPropertiesProvisioningState(string value)
 20        {
 5421            _value = value ?? throw new ArgumentNullException(nameof(value));
 5422        }
 23
 24        private const string CreatingValue = "Creating";
 25        private const string UpdatingValue = "Updating";
 26        private const string FailedValue = "Failed";
 27        private const string SucceededValue = "Succeeded";
 28        private const string DeletingValue = "Deleting";
 29        private const string MigratingValue = "Migrating";
 30
 31        /// <summary> Creating. </summary>
 032        public static GalleryPropertiesProvisioningState Creating { get; } = new GalleryPropertiesProvisioningState(Crea
 33        /// <summary> Updating. </summary>
 034        public static GalleryPropertiesProvisioningState Updating { get; } = new GalleryPropertiesProvisioningState(Upda
 35        /// <summary> Failed. </summary>
 036        public static GalleryPropertiesProvisioningState Failed { get; } = new GalleryPropertiesProvisioningState(Failed
 37        /// <summary> Succeeded. </summary>
 038        public static GalleryPropertiesProvisioningState Succeeded { get; } = new GalleryPropertiesProvisioningState(Suc
 39        /// <summary> Deleting. </summary>
 040        public static GalleryPropertiesProvisioningState Deleting { get; } = new GalleryPropertiesProvisioningState(Dele
 41        /// <summary> Migrating. </summary>
 042        public static GalleryPropertiesProvisioningState Migrating { get; } = new GalleryPropertiesProvisioningState(Mig
 43        /// <summary> Determines if two <see cref="GalleryPropertiesProvisioningState"/> values are the same. </summary>
 044        public static bool operator ==(GalleryPropertiesProvisioningState left, GalleryPropertiesProvisioningState right
 45        /// <summary> Determines if two <see cref="GalleryPropertiesProvisioningState"/> values are not the same. </summ
 046        public static bool operator !=(GalleryPropertiesProvisioningState left, GalleryPropertiesProvisioningState right
 47        /// <summary> Converts a string to a <see cref="GalleryPropertiesProvisioningState"/>. </summary>
 048        public static implicit operator GalleryPropertiesProvisioningState(string value) => new GalleryPropertiesProvisi
 49
 50        /// <inheritdoc />
 51        [EditorBrowsable(EditorBrowsableState.Never)]
 052        public override bool Equals(object obj) => obj is GalleryPropertiesProvisioningState other && Equals(other);
 53        /// <inheritdoc />
 054        public bool Equals(GalleryPropertiesProvisioningState other) => string.Equals(_value, other._value, StringCompar
 55
 56        /// <inheritdoc />
 57        [EditorBrowsable(EditorBrowsableState.Never)]
 058        public override int GetHashCode() => _value?.GetHashCode() ?? 0;
 59        /// <inheritdoc />
 860        public override string ToString() => _value;
 61    }
 62}