| | 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.Artifacts.Models |
| | 12 | | { |
| | 13 | | /// <summary> The list of HTTP methods supported by a AzureFunctionActivity. </summary> |
| | 14 | | public readonly partial struct AzureFunctionActivityMethod : IEquatable<AzureFunctionActivityMethod> |
| | 15 | | { |
| | 16 | | private readonly string _value; |
| | 17 | |
|
| | 18 | | /// <summary> Determines if two <see cref="AzureFunctionActivityMethod"/> values are the same. </summary> |
| | 19 | | /// <exception cref="ArgumentNullException"> <paramref name="value"/> is null. </exception> |
| | 20 | | public AzureFunctionActivityMethod(string value) |
| | 21 | | { |
| 0 | 22 | | _value = value ?? throw new ArgumentNullException(nameof(value)); |
| 0 | 23 | | } |
| | 24 | |
|
| | 25 | | private const string GETValue = "GET"; |
| | 26 | | private const string PostValue = "POST"; |
| | 27 | | private const string PUTValue = "PUT"; |
| | 28 | | private const string DeleteValue = "DELETE"; |
| | 29 | | private const string OptionsValue = "OPTIONS"; |
| | 30 | | private const string HeadValue = "HEAD"; |
| | 31 | | private const string TraceValue = "TRACE"; |
| | 32 | |
|
| | 33 | | /// <summary> GET. </summary> |
| 0 | 34 | | public static AzureFunctionActivityMethod GET { get; } = new AzureFunctionActivityMethod(GETValue); |
| | 35 | | /// <summary> POST. </summary> |
| 0 | 36 | | public static AzureFunctionActivityMethod Post { get; } = new AzureFunctionActivityMethod(PostValue); |
| | 37 | | /// <summary> PUT. </summary> |
| 0 | 38 | | public static AzureFunctionActivityMethod PUT { get; } = new AzureFunctionActivityMethod(PUTValue); |
| | 39 | | /// <summary> DELETE. </summary> |
| 0 | 40 | | public static AzureFunctionActivityMethod Delete { get; } = new AzureFunctionActivityMethod(DeleteValue); |
| | 41 | | /// <summary> OPTIONS. </summary> |
| 0 | 42 | | public static AzureFunctionActivityMethod Options { get; } = new AzureFunctionActivityMethod(OptionsValue); |
| | 43 | | /// <summary> HEAD. </summary> |
| 0 | 44 | | public static AzureFunctionActivityMethod Head { get; } = new AzureFunctionActivityMethod(HeadValue); |
| | 45 | | /// <summary> TRACE. </summary> |
| 0 | 46 | | public static AzureFunctionActivityMethod Trace { get; } = new AzureFunctionActivityMethod(TraceValue); |
| | 47 | | /// <summary> Determines if two <see cref="AzureFunctionActivityMethod"/> values are the same. </summary> |
| 0 | 48 | | public static bool operator ==(AzureFunctionActivityMethod left, AzureFunctionActivityMethod right) => left.Equa |
| | 49 | | /// <summary> Determines if two <see cref="AzureFunctionActivityMethod"/> values are not the same. </summary> |
| 0 | 50 | | public static bool operator !=(AzureFunctionActivityMethod left, AzureFunctionActivityMethod right) => !left.Equ |
| | 51 | | /// <summary> Converts a string to a <see cref="AzureFunctionActivityMethod"/>. </summary> |
| 0 | 52 | | public static implicit operator AzureFunctionActivityMethod(string value) => new AzureFunctionActivityMethod(val |
| | 53 | |
|
| | 54 | | /// <inheritdoc /> |
| | 55 | | [EditorBrowsable(EditorBrowsableState.Never)] |
| 0 | 56 | | public override bool Equals(object obj) => obj is AzureFunctionActivityMethod other && Equals(other); |
| | 57 | | /// <inheritdoc /> |
| 0 | 58 | | public bool Equals(AzureFunctionActivityMethod other) => string.Equals(_value, other._value, StringComparison.In |
| | 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 | | } |