| | | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | | 2 | | // Licensed under the MIT License. |
| | | 3 | | |
| | | 4 | | // <auto-generated/> |
| | | 5 | | |
| | | 6 | | #nullable disable |
| | | 7 | | |
| | | 8 | | using System; |
| | | 9 | | using System.ComponentModel; |
| | | 10 | | |
| | | 11 | | namespace Azure.ResourceManager.Compute.Models |
| | | 12 | | { |
| | | 13 | | /// <summary> The provisioning state, which only appears in the response. </summary> |
| | | 14 | | public readonly partial struct GalleryImagePropertiesProvisioningState : IEquatable<GalleryImagePropertiesProvisioni |
| | | 15 | | { |
| | | 16 | | private readonly string _value; |
| | | 17 | | |
| | | 18 | | /// <summary> Determines if two <see cref="GalleryImagePropertiesProvisioningState"/> values are the same. </sum |
| | | 19 | | public GalleryImagePropertiesProvisioningState(string value) |
| | | 20 | | { |
| | 24 | 21 | | _value = value ?? throw new ArgumentNullException(nameof(value)); |
| | 24 | 22 | | } |
| | | 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> |
| | 0 | 32 | | public static GalleryImagePropertiesProvisioningState Creating { get; } = new GalleryImagePropertiesProvisioning |
| | | 33 | | /// <summary> Updating. </summary> |
| | 0 | 34 | | public static GalleryImagePropertiesProvisioningState Updating { get; } = new GalleryImagePropertiesProvisioning |
| | | 35 | | /// <summary> Failed. </summary> |
| | 0 | 36 | | public static GalleryImagePropertiesProvisioningState Failed { get; } = new GalleryImagePropertiesProvisioningSt |
| | | 37 | | /// <summary> Succeeded. </summary> |
| | 0 | 38 | | public static GalleryImagePropertiesProvisioningState Succeeded { get; } = new GalleryImagePropertiesProvisionin |
| | | 39 | | /// <summary> Deleting. </summary> |
| | 0 | 40 | | public static GalleryImagePropertiesProvisioningState Deleting { get; } = new GalleryImagePropertiesProvisioning |
| | | 41 | | /// <summary> Migrating. </summary> |
| | 0 | 42 | | public static GalleryImagePropertiesProvisioningState Migrating { get; } = new GalleryImagePropertiesProvisionin |
| | | 43 | | /// <summary> Determines if two <see cref="GalleryImagePropertiesProvisioningState"/> values are the same. </sum |
| | 0 | 44 | | public static bool operator ==(GalleryImagePropertiesProvisioningState left, GalleryImagePropertiesProvisioningS |
| | | 45 | | /// <summary> Determines if two <see cref="GalleryImagePropertiesProvisioningState"/> values are not the same. < |
| | 0 | 46 | | public static bool operator !=(GalleryImagePropertiesProvisioningState left, GalleryImagePropertiesProvisioningS |
| | | 47 | | /// <summary> Converts a string to a <see cref="GalleryImagePropertiesProvisioningState"/>. </summary> |
| | 0 | 48 | | public static implicit operator GalleryImagePropertiesProvisioningState(string value) => new GalleryImagePropert |
| | | 49 | | |
| | | 50 | | /// <inheritdoc /> |
| | | 51 | | [EditorBrowsable(EditorBrowsableState.Never)] |
| | 0 | 52 | | public override bool Equals(object obj) => obj is GalleryImagePropertiesProvisioningState other && Equals(other) |
| | | 53 | | /// <inheritdoc /> |
| | 0 | 54 | | public bool Equals(GalleryImagePropertiesProvisioningState other) => string.Equals(_value, other._value, StringC |
| | | 55 | | |
| | | 56 | | /// <inheritdoc /> |
| | | 57 | | [EditorBrowsable(EditorBrowsableState.Never)] |
| | 0 | 58 | | public override int GetHashCode() => _value?.GetHashCode() ?? 0; |
| | | 59 | | /// <inheritdoc /> |
| | 8 | 60 | | public override string ToString() => _value; |
| | | 61 | | } |
| | | 62 | | } |