< Summary

Class:Microsoft.Azure.Batch.Protocol.Models.AccountListPoolNodeCountsHeaders
Assembly:Microsoft.Azure.Batch
File(s):C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\AccountListPoolNodeCountsHeaders.cs
Covered lines:0
Uncovered lines:8
Coverable lines:8
Total lines:77
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\AccountListPoolNodeCountsHeaders.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 ListPoolNodeCounts operation.
 18    /// </summary>
 19    public partial class AccountListPoolNodeCountsHeaders
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the AccountListPoolNodeCountsHeaders
 23        /// class.
 24        /// </summary>
 025        public AccountListPoolNodeCountsHeaders()
 26        {
 27            CustomInit();
 028        }
 29
 30        /// <summary>
 31        /// Initializes a new instance of the AccountListPoolNodeCountsHeaders
 32        /// 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>
 044        public AccountListPoolNodeCountsHeaders(System.Guid? clientRequestId = default(System.Guid?), System.Guid? reque
 45        {
 046            ClientRequestId = clientRequestId;
 047            RequestId = requestId;
 48            CustomInit();
 049        }
 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")]
 062        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")]
 074        public System.Guid? RequestId { get; set; }
 75
 76    }
 77}