< Summary

Class:Microsoft.Azure.Batch.TaskStatistics
Assembly:Microsoft.Azure.Batch
File(s):C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\Generated\TaskStatistics.cs
Covered lines:25
Uncovered lines:2
Coverable lines:27
Total lines:125
Line coverage:92.5% (25 of 27)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-100%100%
get_KernelCpuTime()-100%100%
get_LastUpdateTime()-100%100%
get_ReadIOGiB()-100%100%
get_ReadIOps()-100%100%
get_StartTime()-100%100%
get_Url()-100%100%
get_UserCpuTime()-100%100%
get_WaitTime()-100%100%
get_WallClockTime()-100%100%
get_WriteIOGiB()-100%100%
get_WriteIOps()-100%100%
Microsoft.Azure.Batch.IModifiable.get_HasBeenModified()-0%100%
Microsoft.Azure.Batch.IReadOnly.get_IsReadOnly()-0%100%
Microsoft.Azure.Batch.IReadOnly.set_IsReadOnly(...)-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\Generated\TaskStatistics.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License. See License.txt in the project root for license information.
 3//
 4// Code generated by Microsoft (R) AutoRest Code Generator.
 5// Changes may cause incorrect behavior and will be lost if the code is
 6// regenerated.
 7
 8//
 9// This file was autogenerated by a tool.
 10// Do not modify it.
 11//
 12
 13namespace Microsoft.Azure.Batch
 14{
 15    using Models = Microsoft.Azure.Batch.Protocol.Models;
 16    using System;
 17    using System.Collections.Generic;
 18    using System.Linq;
 19
 20    /// <summary>
 21    /// Resource usage statistics for the task.
 22    /// </summary>
 23    public partial class TaskStatistics : IPropertyMetadata
 24    {
 25        #region Constructors
 26
 47827        internal TaskStatistics(Models.TaskStatistics protocolObject)
 28        {
 47829            this.KernelCpuTime = protocolObject.KernelCPUTime;
 47830            this.LastUpdateTime = protocolObject.LastUpdateTime;
 47831            this.ReadIOGiB = protocolObject.ReadIOGiB;
 47832            this.ReadIOps = protocolObject.ReadIOps;
 47833            this.StartTime = protocolObject.StartTime;
 47834            this.Url = protocolObject.Url;
 47835            this.UserCpuTime = protocolObject.UserCPUTime;
 47836            this.WaitTime = protocolObject.WaitTime;
 47837            this.WallClockTime = protocolObject.WallClockTime;
 47838            this.WriteIOGiB = protocolObject.WriteIOGiB;
 47839            this.WriteIOps = protocolObject.WriteIOps;
 47840        }
 41
 42        #endregion Constructors
 43
 44        #region TaskStatistics
 45
 46        /// <summary>
 47        /// Gets the total kernel mode CPU time (per core) consumed by the task.
 48        /// </summary>
 47849        public TimeSpan KernelCpuTime { get; }
 50
 51        /// <summary>
 52        /// Gets the time at which the statistics were last updated. All statistics are limited to the range between <se
 53        /// cref="StartTime"/> and this value.
 54        /// </summary>
 47855        public DateTime LastUpdateTime { get; }
 56
 57        /// <summary>
 58        /// Gets the total gibibytes of I/O read from disk by the task.
 59        /// </summary>
 47860        public double ReadIOGiB { get; }
 61
 62        /// <summary>
 63        /// Gets the total number of disk read operations made by the task.
 64        /// </summary>
 47865        public long ReadIOps { get; }
 66
 67        /// <summary>
 68        /// Gets the start time of the time range covered by the statistics.
 69        /// </summary>
 47870        public DateTime StartTime { get; }
 71
 72        /// <summary>
 73        /// Gets the URL of the task statistics.
 74        /// </summary>
 47875        public string Url { get; }
 76
 77        /// <summary>
 78        /// Gets the total user mode CPU time (per core) consumed by the task.
 79        /// </summary>
 47880        public TimeSpan UserCpuTime { get; }
 81
 82        /// <summary>
 83        /// Gets the total wait time of the task. The wait time for a task is defined as the elapsed time between the cr
 84        /// of the task and the start of task execution. (If the task is retried due to failures, the wait time is the t
 85        /// to the most recent task execution.)
 86        /// </summary>
 47887        public TimeSpan WaitTime { get; }
 88
 89        /// <summary>
 90        /// Gets the wall clock time of the task execution.
 91        /// </summary>
 47892        public TimeSpan WallClockTime { get; }
 93
 94        /// <summary>
 95        /// Gets the total gibibytes of I/O written to disk by the task.
 96        /// </summary>
 47897        public double WriteIOGiB { get; }
 98
 99        /// <summary>
 100        /// Gets the total number of disk write operations made by the task.
 101        /// </summary>
 478102        public long WriteIOps { get; }
 103
 104        #endregion // TaskStatistics
 105
 106        #region IPropertyMetadata
 107
 108        bool IModifiable.HasBeenModified
 109        {
 110            //This class is compile time readonly so it cannot have been modified
 0111            get { return false; }
 112        }
 113
 114        bool IReadOnly.IsReadOnly
 115        {
 0116            get { return true; }
 117            set
 118            {
 119                // This class is compile time readonly already
 478120            }
 121        }
 122
 123        #endregion // IPropertyMetadata
 124    }
 125}