| | 1 | | // <auto-generated> |
| | 2 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 3 | | // Licensed under the MIT License. See License.txt in the project root for |
| | 4 | | // license information. |
| | 5 | | // |
| | 6 | | // Code generated by Microsoft (R) AutoRest Code Generator. |
| | 7 | | // Changes may cause incorrect behavior and will be lost if the code is |
| | 8 | | // regenerated. |
| | 9 | | // </auto-generated> |
| | 10 | |
|
| | 11 | | namespace Microsoft.Azure.KeyVault.Models |
| | 12 | | { |
| | 13 | | using Newtonsoft.Json; |
| | 14 | | using Newtonsoft.Json.Converters; |
| | 15 | | using System.Runtime; |
| | 16 | | using System.Runtime.Serialization; |
| | 17 | |
|
| | 18 | | /// <summary> |
| | 19 | | /// Defines values for ActionType. |
| | 20 | | /// </summary> |
| | 21 | | [JsonConverter(typeof(StringEnumConverter))] |
| | 22 | | public enum ActionType |
| | 23 | | { |
| | 24 | | [EnumMember(Value = "EmailContacts")] |
| | 25 | | EmailContacts, |
| | 26 | | [EnumMember(Value = "AutoRenew")] |
| | 27 | | AutoRenew |
| | 28 | | } |
| | 29 | | internal static class ActionTypeEnumExtension |
| | 30 | | { |
| | 31 | | internal static string ToSerializedValue(this ActionType? value) |
| | 32 | | { |
| 0 | 33 | | return value == null ? null : ((ActionType)value).ToSerializedValue(); |
| | 34 | | } |
| | 35 | |
|
| | 36 | | internal static string ToSerializedValue(this ActionType value) |
| | 37 | | { |
| | 38 | | switch( value ) |
| | 39 | | { |
| | 40 | | case ActionType.EmailContacts: |
| 0 | 41 | | return "EmailContacts"; |
| | 42 | | case ActionType.AutoRenew: |
| 0 | 43 | | return "AutoRenew"; |
| | 44 | | } |
| 0 | 45 | | return null; |
| | 46 | | } |
| | 47 | |
|
| | 48 | | internal static ActionType? ParseActionType(this string value) |
| | 49 | | { |
| | 50 | | switch( value ) |
| | 51 | | { |
| | 52 | | case "EmailContacts": |
| 0 | 53 | | return ActionType.EmailContacts; |
| | 54 | | case "AutoRenew": |
| 0 | 55 | | return ActionType.AutoRenew; |
| | 56 | | } |
| 0 | 57 | | return null; |
| | 58 | | } |
| | 59 | | } |
| | 60 | | } |