| | 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.Batch.Protocol.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 OnAllTasksComplete. |
| | 20 | | /// </summary> |
| | 21 | | [JsonConverter(typeof(StringEnumConverter))] |
| | 22 | | public enum OnAllTasksComplete |
| | 23 | | { |
| | 24 | | /// <summary> |
| | 25 | | /// Do nothing. The Job remains active unless terminated or disabled by |
| | 26 | | /// some other means. |
| | 27 | | /// </summary> |
| | 28 | | [EnumMember(Value = "noaction")] |
| | 29 | | NoAction, |
| | 30 | | /// <summary> |
| | 31 | | /// Terminate the Job. The Job's terminateReason is set to |
| | 32 | | /// 'AllTasksComplete'. |
| | 33 | | /// </summary> |
| | 34 | | [EnumMember(Value = "terminatejob")] |
| | 35 | | TerminateJob |
| | 36 | | } |
| | 37 | | internal static class OnAllTasksCompleteEnumExtension |
| | 38 | | { |
| | 39 | | internal static string ToSerializedValue(this OnAllTasksComplete? value) |
| | 40 | | { |
| 0 | 41 | | return value == null ? null : ((OnAllTasksComplete)value).ToSerializedValue(); |
| | 42 | | } |
| | 43 | |
|
| | 44 | | internal static string ToSerializedValue(this OnAllTasksComplete value) |
| | 45 | | { |
| | 46 | | switch( value ) |
| | 47 | | { |
| | 48 | | case OnAllTasksComplete.NoAction: |
| 0 | 49 | | return "noaction"; |
| | 50 | | case OnAllTasksComplete.TerminateJob: |
| 0 | 51 | | return "terminatejob"; |
| | 52 | | } |
| 0 | 53 | | return null; |
| | 54 | | } |
| | 55 | |
|
| | 56 | | internal static OnAllTasksComplete? ParseOnAllTasksComplete(this string value) |
| | 57 | | { |
| | 58 | | switch( value ) |
| | 59 | | { |
| | 60 | | case "noaction": |
| 0 | 61 | | return OnAllTasksComplete.NoAction; |
| | 62 | | case "terminatejob": |
| 0 | 63 | | return OnAllTasksComplete.TerminateJob; |
| | 64 | | } |
| 0 | 65 | | return null; |
| | 66 | | } |
| | 67 | | } |
| | 68 | | } |