| | 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 System.Linq; |
| | 15 | |
|
| | 16 | | /// <summary> |
| | 17 | | /// Defines headers for UploadBatchServiceLogs operation. |
| | 18 | | /// </summary> |
| | 19 | | public partial class ComputeNodeUploadBatchServiceLogsHeaders |
| | 20 | | { |
| | 21 | | /// <summary> |
| | 22 | | /// Initializes a new instance of the |
| | 23 | | /// ComputeNodeUploadBatchServiceLogsHeaders class. |
| | 24 | | /// </summary> |
| 0 | 25 | | public ComputeNodeUploadBatchServiceLogsHeaders() |
| | 26 | | { |
| | 27 | | CustomInit(); |
| 0 | 28 | | } |
| | 29 | |
|
| | 30 | | /// <summary> |
| | 31 | | /// Initializes a new instance of the |
| | 32 | | /// ComputeNodeUploadBatchServiceLogsHeaders class. |
| | 33 | | /// </summary> |
| | 34 | | /// <param name="clientRequestId">The client-request-id provided by the |
| | 35 | | /// client during the request. This will be returned only if the |
| | 36 | | /// return-client-request-id parameter was set to true.</param> |
| | 37 | | /// <param name="requestId">A unique identifier for the request that |
| | 38 | | /// was made to the Batch service. If a request is consistently failing |
| | 39 | | /// and you have verified that the request is properly formulated, you |
| | 40 | | /// may use this value to report the error to Microsoft. In your |
| | 41 | | /// report, include the value of this request ID, the approximate time |
| | 42 | | /// that the request was made, the Batch Account against which the |
| | 43 | | /// request was made, and the region that Account resides in.</param> |
| 0 | 44 | | public ComputeNodeUploadBatchServiceLogsHeaders(System.Guid? clientRequestId = default(System.Guid?), System.Gui |
| | 45 | | { |
| 0 | 46 | | ClientRequestId = clientRequestId; |
| 0 | 47 | | RequestId = requestId; |
| | 48 | | CustomInit(); |
| 0 | 49 | | } |
| | 50 | |
|
| | 51 | | /// <summary> |
| | 52 | | /// An initialization method that performs custom operations like setting defaults |
| | 53 | | /// </summary> |
| | 54 | | partial void CustomInit(); |
| | 55 | |
|
| | 56 | | /// <summary> |
| | 57 | | /// Gets or sets the client-request-id provided by the client during |
| | 58 | | /// the request. This will be returned only if the |
| | 59 | | /// return-client-request-id parameter was set to true. |
| | 60 | | /// </summary> |
| | 61 | | [JsonProperty(PropertyName = "client-request-id")] |
| 0 | 62 | | public System.Guid? ClientRequestId { get; set; } |
| | 63 | |
|
| | 64 | | /// <summary> |
| | 65 | | /// Gets or sets a unique identifier for the request that was made to |
| | 66 | | /// the Batch service. If a request is consistently failing and you |
| | 67 | | /// have verified that the request is properly formulated, you may use |
| | 68 | | /// this value to report the error to Microsoft. In your report, |
| | 69 | | /// include the value of this request ID, the approximate time that the |
| | 70 | | /// request was made, the Batch Account against which the request was |
| | 71 | | /// made, and the region that Account resides in. |
| | 72 | | /// </summary> |
| | 73 | | [JsonProperty(PropertyName = "request-id")] |
| 0 | 74 | | public System.Guid? RequestId { get; set; } |
| | 75 | |
|
| | 76 | | } |
| | 77 | | } |