< Summary

Class:Microsoft.Azure.Batch.Protocol.Models.TaskDeleteHeaders
Assembly:Microsoft.Azure.Batch
File(s):C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\TaskDeleteHeaders.cs
Covered lines:0
Uncovered lines:8
Coverable lines:8
Total lines:75
Line coverage:0% (0 of 8)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_ClientRequestId()-0%100%
get_RequestId()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\TaskDeleteHeaders.cs

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