| | 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.Analytics.Synapse.Spark.Models |
| | 12 | | { |
| | 13 | | /// <summary> The PluginCurrentState. </summary> |
| | 14 | | public readonly partial struct PluginCurrentState : IEquatable<PluginCurrentState> |
| | 15 | | { |
| | 16 | | private readonly string _value; |
| | 17 | |
|
| | 18 | | /// <summary> Determines if two <see cref="PluginCurrentState"/> values are the same. </summary> |
| | 19 | | /// <exception cref="ArgumentNullException"> <paramref name="value"/> is null. </exception> |
| | 20 | | public PluginCurrentState(string value) |
| | 21 | | { |
| 0 | 22 | | _value = value ?? throw new ArgumentNullException(nameof(value)); |
| 0 | 23 | | } |
| | 24 | |
|
| | 25 | | private const string PreparationValue = "Preparation"; |
| | 26 | | private const string ResourceAcquisitionValue = "ResourceAcquisition"; |
| | 27 | | private const string QueuedValue = "Queued"; |
| | 28 | | private const string SubmissionValue = "Submission"; |
| | 29 | | private const string MonitoringValue = "Monitoring"; |
| | 30 | | private const string CleanupValue = "Cleanup"; |
| | 31 | | private const string EndedValue = "Ended"; |
| | 32 | |
|
| | 33 | | /// <summary> Preparation. </summary> |
| 0 | 34 | | public static PluginCurrentState Preparation { get; } = new PluginCurrentState(PreparationValue); |
| | 35 | | /// <summary> ResourceAcquisition. </summary> |
| 0 | 36 | | public static PluginCurrentState ResourceAcquisition { get; } = new PluginCurrentState(ResourceAcquisitionValue) |
| | 37 | | /// <summary> Queued. </summary> |
| 0 | 38 | | public static PluginCurrentState Queued { get; } = new PluginCurrentState(QueuedValue); |
| | 39 | | /// <summary> Submission. </summary> |
| 0 | 40 | | public static PluginCurrentState Submission { get; } = new PluginCurrentState(SubmissionValue); |
| | 41 | | /// <summary> Monitoring. </summary> |
| 0 | 42 | | public static PluginCurrentState Monitoring { get; } = new PluginCurrentState(MonitoringValue); |
| | 43 | | /// <summary> Cleanup. </summary> |
| 0 | 44 | | public static PluginCurrentState Cleanup { get; } = new PluginCurrentState(CleanupValue); |
| | 45 | | /// <summary> Ended. </summary> |
| 0 | 46 | | public static PluginCurrentState Ended { get; } = new PluginCurrentState(EndedValue); |
| | 47 | | /// <summary> Determines if two <see cref="PluginCurrentState"/> values are the same. </summary> |
| 0 | 48 | | public static bool operator ==(PluginCurrentState left, PluginCurrentState right) => left.Equals(right); |
| | 49 | | /// <summary> Determines if two <see cref="PluginCurrentState"/> values are not the same. </summary> |
| 0 | 50 | | public static bool operator !=(PluginCurrentState left, PluginCurrentState right) => !left.Equals(right); |
| | 51 | | /// <summary> Converts a string to a <see cref="PluginCurrentState"/>. </summary> |
| 0 | 52 | | public static implicit operator PluginCurrentState(string value) => new PluginCurrentState(value); |
| | 53 | |
|
| | 54 | | /// <inheritdoc /> |
| | 55 | | [EditorBrowsable(EditorBrowsableState.Never)] |
| 0 | 56 | | public override bool Equals(object obj) => obj is PluginCurrentState other && Equals(other); |
| | 57 | | /// <inheritdoc /> |
| 0 | 58 | | public bool Equals(PluginCurrentState other) => string.Equals(_value, other._value, StringComparison.InvariantCu |
| | 59 | |
|
| | 60 | | /// <inheritdoc /> |
| | 61 | | [EditorBrowsable(EditorBrowsableState.Never)] |
| 0 | 62 | | public override int GetHashCode() => _value?.GetHashCode() ?? 0; |
| | 63 | | /// <inheritdoc /> |
| 0 | 64 | | public override string ToString() => _value; |
| | 65 | | } |
| | 66 | | } |