< Summary

Class:Azure.Analytics.Synapse.Spark.Models.PluginCurrentState
Assembly:Azure.Analytics.Synapse.Spark
File(s):C:\Git\azure-sdk-for-net\sdk\synapse\Azure.Analytics.Synapse.Spark\src\Generated\Models\PluginCurrentState.cs
Covered lines:0
Uncovered lines:16
Coverable lines:16
Total lines:66
Line coverage:0% (0 of 16)
Covered branches:0
Total branches:6
Branch coverage:0% (0 of 6)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-0%0%
get_Preparation()-0%100%
get_ResourceAcquisition()-0%100%
get_Queued()-0%100%
get_Submission()-0%100%
get_Monitoring()-0%100%
get_Cleanup()-0%100%
get_Ended()-0%100%
op_Equality(...)-0%100%
op_Inequality(...)-0%100%
op_Implicit(...)-0%100%
Equals(...)-0%0%
Equals(...)-0%100%
GetHashCode()-0%0%
ToString()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\synapse\Azure.Analytics.Synapse.Spark\src\Generated\Models\PluginCurrentState.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.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        {
 022            _value = value ?? throw new ArgumentNullException(nameof(value));
 023        }
 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>
 034        public static PluginCurrentState Preparation { get; } = new PluginCurrentState(PreparationValue);
 35        /// <summary> ResourceAcquisition. </summary>
 036        public static PluginCurrentState ResourceAcquisition { get; } = new PluginCurrentState(ResourceAcquisitionValue)
 37        /// <summary> Queued. </summary>
 038        public static PluginCurrentState Queued { get; } = new PluginCurrentState(QueuedValue);
 39        /// <summary> Submission. </summary>
 040        public static PluginCurrentState Submission { get; } = new PluginCurrentState(SubmissionValue);
 41        /// <summary> Monitoring. </summary>
 042        public static PluginCurrentState Monitoring { get; } = new PluginCurrentState(MonitoringValue);
 43        /// <summary> Cleanup. </summary>
 044        public static PluginCurrentState Cleanup { get; } = new PluginCurrentState(CleanupValue);
 45        /// <summary> Ended. </summary>
 046        public static PluginCurrentState Ended { get; } = new PluginCurrentState(EndedValue);
 47        /// <summary> Determines if two <see cref="PluginCurrentState"/> values are the same. </summary>
 048        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>
 050        public static bool operator !=(PluginCurrentState left, PluginCurrentState right) => !left.Equals(right);
 51        /// <summary> Converts a string to a <see cref="PluginCurrentState"/>. </summary>
 052        public static implicit operator PluginCurrentState(string value) => new PluginCurrentState(value);
 53
 54        /// <inheritdoc />
 55        [EditorBrowsable(EditorBrowsableState.Never)]
 056        public override bool Equals(object obj) => obj is PluginCurrentState other && Equals(other);
 57        /// <inheritdoc />
 058        public bool Equals(PluginCurrentState other) => string.Equals(_value, other._value, StringComparison.InvariantCu
 59
 60        /// <inheritdoc />
 61        [EditorBrowsable(EditorBrowsableState.Never)]
 062        public override int GetHashCode() => _value?.GetHashCode() ?? 0;
 63        /// <inheritdoc />
 064        public override string ToString() => _value;
 65    }
 66}