-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
AcsRouterLabelOperator.cs
63 lines (54 loc) · 3.42 KB
/
AcsRouterLabelOperator.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
using System.ComponentModel;
namespace Azure.Messaging.EventGrid.SystemEvents
{
/// <summary> Router Job Worker Selector Label Operator. </summary>
public readonly partial struct AcsRouterLabelOperator : IEquatable<AcsRouterLabelOperator>
{
private readonly string _value;
/// <summary> Initializes a new instance of <see cref="AcsRouterLabelOperator"/>. </summary>
/// <exception cref="ArgumentNullException"> <paramref name="value"/> is null. </exception>
public AcsRouterLabelOperator(string value)
{
_value = value ?? throw new ArgumentNullException(nameof(value));
}
private const string EqualValue = "Equal";
private const string NotEqualValue = "NotEqual";
private const string GreaterValue = "Greater";
private const string LessValue = "Less";
private const string GreaterThanOrEqualValue = "GreaterThanOrEqual";
private const string LessThanOrEqualValue = "LessThanOrEqual";
/// <summary> Router Label Operator Equal. </summary>
public static AcsRouterLabelOperator Equal { get; } = new AcsRouterLabelOperator(EqualValue);
/// <summary> Router Label Operator Not Equal. </summary>
public static AcsRouterLabelOperator NotEqual { get; } = new AcsRouterLabelOperator(NotEqualValue);
/// <summary> Router Label Operator Greater. </summary>
public static AcsRouterLabelOperator Greater { get; } = new AcsRouterLabelOperator(GreaterValue);
/// <summary> Router Label Operator Less. </summary>
public static AcsRouterLabelOperator Less { get; } = new AcsRouterLabelOperator(LessValue);
/// <summary> Router Label Operator Greater than or equal. </summary>
public static AcsRouterLabelOperator GreaterThanOrEqual { get; } = new AcsRouterLabelOperator(GreaterThanOrEqualValue);
/// <summary> Router Label Operator Less than or equal. </summary>
public static AcsRouterLabelOperator LessThanOrEqual { get; } = new AcsRouterLabelOperator(LessThanOrEqualValue);
/// <summary> Determines if two <see cref="AcsRouterLabelOperator"/> values are the same. </summary>
public static bool operator ==(AcsRouterLabelOperator left, AcsRouterLabelOperator right) => left.Equals(right);
/// <summary> Determines if two <see cref="AcsRouterLabelOperator"/> values are not the same. </summary>
public static bool operator !=(AcsRouterLabelOperator left, AcsRouterLabelOperator right) => !left.Equals(right);
/// <summary> Converts a string to a <see cref="AcsRouterLabelOperator"/>. </summary>
public static implicit operator AcsRouterLabelOperator(string value) => new AcsRouterLabelOperator(value);
/// <inheritdoc />
[EditorBrowsable(EditorBrowsableState.Never)]
public override bool Equals(object obj) => obj is AcsRouterLabelOperator other && Equals(other);
/// <inheritdoc />
public bool Equals(AcsRouterLabelOperator other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgnoreCase);
/// <inheritdoc />
[EditorBrowsable(EditorBrowsableState.Never)]
public override int GetHashCode() => _value?.GetHashCode() ?? 0;
/// <inheritdoc />
public override string ToString() => _value;
}
}