| | | 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 Microsoft.Rest; |
| | | 14 | | using Microsoft.Rest.Serialization; |
| | | 15 | | using Newtonsoft.Json; |
| | | 16 | | using System.Linq; |
| | | 17 | | |
| | | 18 | | /// <summary> |
| | | 19 | | /// Additional parameters for ListPreparationAndReleaseTaskStatusNext |
| | | 20 | | /// operation. |
| | | 21 | | /// </summary> |
| | | 22 | | public partial class JobListPreparationAndReleaseTaskStatusNextOptions |
| | | 23 | | { |
| | | 24 | | /// <summary> |
| | | 25 | | /// Initializes a new instance of the |
| | | 26 | | /// JobListPreparationAndReleaseTaskStatusNextOptions class. |
| | | 27 | | /// </summary> |
| | 1 | 28 | | public JobListPreparationAndReleaseTaskStatusNextOptions() |
| | | 29 | | { |
| | | 30 | | CustomInit(); |
| | 1 | 31 | | } |
| | | 32 | | |
| | | 33 | | /// <summary> |
| | | 34 | | /// Initializes a new instance of the |
| | | 35 | | /// JobListPreparationAndReleaseTaskStatusNextOptions class. |
| | | 36 | | /// </summary> |
| | | 37 | | /// <param name="clientRequestId">The caller-generated request |
| | | 38 | | /// identity, in the form of a GUID with no decoration such as curly |
| | | 39 | | /// braces, e.g. 9C4D50EE-2D56-4CD3-8152-34347DC9F2B0.</param> |
| | | 40 | | /// <param name="returnClientRequestId">Whether the server should |
| | | 41 | | /// return the client-request-id in the response.</param> |
| | | 42 | | /// <param name="ocpDate">The time the request was issued. Client |
| | | 43 | | /// libraries typically set this to the current system clock time; set |
| | | 44 | | /// it explicitly if you are calling the REST API directly.</param> |
| | 0 | 45 | | public JobListPreparationAndReleaseTaskStatusNextOptions(System.Guid? clientRequestId = default(System.Guid?), b |
| | | 46 | | { |
| | 0 | 47 | | ClientRequestId = clientRequestId; |
| | 0 | 48 | | ReturnClientRequestId = returnClientRequestId; |
| | 0 | 49 | | OcpDate = ocpDate; |
| | | 50 | | CustomInit(); |
| | 0 | 51 | | } |
| | | 52 | | |
| | | 53 | | /// <summary> |
| | | 54 | | /// An initialization method that performs custom operations like setting defaults |
| | | 55 | | /// </summary> |
| | | 56 | | partial void CustomInit(); |
| | | 57 | | |
| | | 58 | | /// <summary> |
| | | 59 | | /// Gets or sets the caller-generated request identity, in the form of |
| | | 60 | | /// a GUID with no decoration such as curly braces, e.g. |
| | | 61 | | /// 9C4D50EE-2D56-4CD3-8152-34347DC9F2B0. |
| | | 62 | | /// </summary> |
| | | 63 | | [Newtonsoft.Json.JsonIgnore] |
| | 0 | 64 | | public System.Guid? ClientRequestId { get; set; } |
| | | 65 | | |
| | | 66 | | /// <summary> |
| | | 67 | | /// Gets or sets whether the server should return the client-request-id |
| | | 68 | | /// in the response. |
| | | 69 | | /// </summary> |
| | | 70 | | [Newtonsoft.Json.JsonIgnore] |
| | 0 | 71 | | public bool? ReturnClientRequestId { get; set; } |
| | | 72 | | |
| | | 73 | | /// <summary> |
| | | 74 | | /// Gets or sets the time the request was issued. Client libraries |
| | | 75 | | /// typically set this to the current system clock time; set it |
| | | 76 | | /// explicitly if you are calling the REST API directly. |
| | | 77 | | /// </summary> |
| | | 78 | | [JsonConverter(typeof(DateTimeRfc1123JsonConverter))] |
| | | 79 | | [Newtonsoft.Json.JsonIgnore] |
| | 0 | 80 | | public System.DateTime? OcpDate { get; set; } |
| | | 81 | | |
| | | 82 | | } |
| | | 83 | | } |