-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
AzureFunctionActivityMethod.cs
66 lines (57 loc) · 3.49 KB
/
AzureFunctionActivityMethod.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
64
65
66
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
using System.ComponentModel;
namespace Azure.ResourceManager.DataFactory.Models
{
/// <summary> The list of HTTP methods supported by a AzureFunctionActivity. </summary>
public readonly partial struct AzureFunctionActivityMethod : IEquatable<AzureFunctionActivityMethod>
{
private readonly string _value;
/// <summary> Initializes a new instance of <see cref="AzureFunctionActivityMethod"/>. </summary>
/// <exception cref="ArgumentNullException"> <paramref name="value"/> is null. </exception>
public AzureFunctionActivityMethod(string value)
{
_value = value ?? throw new ArgumentNullException(nameof(value));
}
private const string GetValue = "GET";
private const string PostValue = "POST";
private const string PutValue = "PUT";
private const string DeleteValue = "DELETE";
private const string OptionsValue = "OPTIONS";
private const string HeadValue = "HEAD";
private const string TraceValue = "TRACE";
/// <summary> GET. </summary>
public static AzureFunctionActivityMethod Get { get; } = new AzureFunctionActivityMethod(GetValue);
/// <summary> POST. </summary>
public static AzureFunctionActivityMethod Post { get; } = new AzureFunctionActivityMethod(PostValue);
/// <summary> PUT. </summary>
public static AzureFunctionActivityMethod Put { get; } = new AzureFunctionActivityMethod(PutValue);
/// <summary> DELETE. </summary>
public static AzureFunctionActivityMethod Delete { get; } = new AzureFunctionActivityMethod(DeleteValue);
/// <summary> OPTIONS. </summary>
public static AzureFunctionActivityMethod Options { get; } = new AzureFunctionActivityMethod(OptionsValue);
/// <summary> HEAD. </summary>
public static AzureFunctionActivityMethod Head { get; } = new AzureFunctionActivityMethod(HeadValue);
/// <summary> TRACE. </summary>
public static AzureFunctionActivityMethod Trace { get; } = new AzureFunctionActivityMethod(TraceValue);
/// <summary> Determines if two <see cref="AzureFunctionActivityMethod"/> values are the same. </summary>
public static bool operator ==(AzureFunctionActivityMethod left, AzureFunctionActivityMethod right) => left.Equals(right);
/// <summary> Determines if two <see cref="AzureFunctionActivityMethod"/> values are not the same. </summary>
public static bool operator !=(AzureFunctionActivityMethod left, AzureFunctionActivityMethod right) => !left.Equals(right);
/// <summary> Converts a string to a <see cref="AzureFunctionActivityMethod"/>. </summary>
public static implicit operator AzureFunctionActivityMethod(string value) => new AzureFunctionActivityMethod(value);
/// <inheritdoc />
[EditorBrowsable(EditorBrowsableState.Never)]
public override bool Equals(object obj) => obj is AzureFunctionActivityMethod other && Equals(other);
/// <inheritdoc />
public bool Equals(AzureFunctionActivityMethod 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;
}
}