< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_StartTime()-100%100%
get_LastUpdateTime()-100%100%
get_DedicatedCoreTime()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\UsageStatistics.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    /// Statistics related to Pool usage information.
 18    /// </summary>
 19    public partial class UsageStatistics
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the UsageStatistics class.
 23        /// </summary>
 27824        public UsageStatistics()
 25        {
 26            CustomInit();
 27827        }
 28
 29        /// <summary>
 30        /// Initializes a new instance of the UsageStatistics class.
 31        /// </summary>
 32        /// <param name="startTime">The start time of the time range covered by
 33        /// the statistics.</param>
 34        /// <param name="lastUpdateTime">The time at which the statistics were
 35        /// last updated. All statistics are limited to the range between
 36        /// startTime and lastUpdateTime.</param>
 37        /// <param name="dedicatedCoreTime">The aggregated wall-clock time of
 38        /// the dedicated Compute Node cores being part of the Pool.</param>
 039        public UsageStatistics(System.DateTime startTime, System.DateTime lastUpdateTime, System.TimeSpan dedicatedCoreT
 40        {
 041            StartTime = startTime;
 042            LastUpdateTime = lastUpdateTime;
 043            DedicatedCoreTime = dedicatedCoreTime;
 44            CustomInit();
 045        }
 46
 47        /// <summary>
 48        /// An initialization method that performs custom operations like setting defaults
 49        /// </summary>
 50        partial void CustomInit();
 51
 52        /// <summary>
 53        /// Gets or sets the start time of the time range covered by the
 54        /// statistics.
 55        /// </summary>
 56        [JsonProperty(PropertyName = "startTime")]
 69757        public System.DateTime StartTime { get; set; }
 58
 59        /// <summary>
 60        /// Gets or sets the time at which the statistics were last updated.
 61        /// All statistics are limited to the range between startTime and
 62        /// lastUpdateTime.
 63        /// </summary>
 64        [JsonProperty(PropertyName = "lastUpdateTime")]
 70065        public System.DateTime LastUpdateTime { get; set; }
 66
 67        /// <summary>
 68        /// Gets or sets the aggregated wall-clock time of the dedicated
 69        /// Compute Node cores being part of the Pool.
 70        /// </summary>
 71        [JsonProperty(PropertyName = "dedicatedCoreTime")]
 69172        public System.TimeSpan DedicatedCoreTime { get; set; }
 73
 74    }
 75}