< Summary

Class:Azure.ResourceManager.Resources.Models.CleanupOptions
Assembly:Azure.ResourceManager.Resources
File(s):C:\Git\azure-sdk-for-net\sdk\resources\Azure.ResourceManager.Resources\src\Generated\Models\CleanupOptions.cs
Covered lines:2
Uncovered lines:10
Coverable lines:12
Total lines:53
Line coverage:16.6% (2 of 12)
Covered branches:1
Total branches:6
Branch coverage:16.6% (1 of 6)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-100%50%
get_Always()-0%100%
get_OnSuccess()-0%100%
get_OnExpiration()-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\resources\Azure.ResourceManager.Resources\src\Generated\Models\CleanupOptions.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.Resources.Models
 12{
 13    /// <summary> The clean up preference when the script execution gets in a terminal state. Default setting is &apos;A
 14    public readonly partial struct CleanupOptions : IEquatable<CleanupOptions>
 15    {
 16        private readonly string _value;
 17
 18        /// <summary> Determines if two <see cref="CleanupOptions"/> values are the same. </summary>
 19        public CleanupOptions(string value)
 20        {
 7421            _value = value ?? throw new ArgumentNullException(nameof(value));
 7422        }
 23
 24        private const string AlwaysValue = "Always";
 25        private const string OnSuccessValue = "OnSuccess";
 26        private const string OnExpirationValue = "OnExpiration";
 27
 28        /// <summary> Always. </summary>
 029        public static CleanupOptions Always { get; } = new CleanupOptions(AlwaysValue);
 30        /// <summary> OnSuccess. </summary>
 031        public static CleanupOptions OnSuccess { get; } = new CleanupOptions(OnSuccessValue);
 32        /// <summary> OnExpiration. </summary>
 033        public static CleanupOptions OnExpiration { get; } = new CleanupOptions(OnExpirationValue);
 34        /// <summary> Determines if two <see cref="CleanupOptions"/> values are the same. </summary>
 035        public static bool operator ==(CleanupOptions left, CleanupOptions right) => left.Equals(right);
 36        /// <summary> Determines if two <see cref="CleanupOptions"/> values are not the same. </summary>
 037        public static bool operator !=(CleanupOptions left, CleanupOptions right) => !left.Equals(right);
 38        /// <summary> Converts a string to a <see cref="CleanupOptions"/>. </summary>
 039        public static implicit operator CleanupOptions(string value) => new CleanupOptions(value);
 40
 41        /// <inheritdoc />
 42        [EditorBrowsable(EditorBrowsableState.Never)]
 043        public override bool Equals(object obj) => obj is CleanupOptions other && Equals(other);
 44        /// <inheritdoc />
 045        public bool Equals(CleanupOptions other) => string.Equals(_value, other._value, StringComparison.InvariantCultur
 46
 47        /// <inheritdoc />
 48        [EditorBrowsable(EditorBrowsableState.Never)]
 049        public override int GetHashCode() => _value?.GetHashCode() ?? 0;
 50        /// <inheritdoc />
 051        public override string ToString() => _value;
 52    }
 53}