< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_PoolId()-0%100%
get_Dedicated()-0%100%
get_LowPriority()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\PoolNodeCounts.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    /// The number of Compute Nodes in each state for a Pool.
 18    /// </summary>
 19    public partial class PoolNodeCounts
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the PoolNodeCounts class.
 23        /// </summary>
 124        public PoolNodeCounts()
 25        {
 26            CustomInit();
 127        }
 28
 29        /// <summary>
 30        /// Initializes a new instance of the PoolNodeCounts class.
 31        /// </summary>
 32        /// <param name="poolId">The ID of the Pool.</param>
 33        /// <param name="dedicated">The number of dedicated Compute Nodes in
 34        /// each state.</param>
 35        /// <param name="lowPriority">The number of low priority Compute Nodes
 36        /// in each state.</param>
 037        public PoolNodeCounts(string poolId, NodeCounts dedicated = default(NodeCounts), NodeCounts lowPriority = defaul
 38        {
 039            PoolId = poolId;
 040            Dedicated = dedicated;
 041            LowPriority = lowPriority;
 42            CustomInit();
 043        }
 44
 45        /// <summary>
 46        /// An initialization method that performs custom operations like setting defaults
 47        /// </summary>
 48        partial void CustomInit();
 49
 50        /// <summary>
 51        /// Gets or sets the ID of the Pool.
 52        /// </summary>
 53        [JsonProperty(PropertyName = "poolId")]
 054        public string PoolId { get; set; }
 55
 56        /// <summary>
 57        /// Gets or sets the number of dedicated Compute Nodes in each state.
 58        /// </summary>
 59        [JsonProperty(PropertyName = "dedicated")]
 060        public NodeCounts Dedicated { get; set; }
 61
 62        /// <summary>
 63        /// Gets or sets the number of low priority Compute Nodes in each
 64        /// state.
 65        /// </summary>
 66        [JsonProperty(PropertyName = "lowPriority")]
 267        public NodeCounts LowPriority { get; set; }
 68
 69    }
 70}