< Summary

Class:Microsoft.Azure.Batch.ResourceStatistics
Assembly:Microsoft.Azure.Batch
File(s):C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\Generated\ResourceStatistics.cs
Covered lines:29
Uncovered lines:2
Coverable lines:31
Total lines:135
Line coverage:93.5% (29 of 31)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-100%100%
get_AverageCpuPercentage()-100%100%
get_AverageDiskGiB()-100%100%
get_AverageMemoryGiB()-100%100%
get_DiskReadGiB()-100%100%
get_DiskReadIOps()-100%100%
get_DiskWriteGiB()-100%100%
get_DiskWriteIOps()-100%100%
get_LastUpdateTime()-100%100%
get_NetworkReadGiB()-100%100%
get_NetworkWriteGiB()-100%100%
get_PeakDiskGiB()-100%100%
get_PeakMemoryGiB()-100%100%
get_StartTime()-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\ResourceStatistics.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    /// The resource statistics data for the pool.
 22    /// </summary>
 23    public partial class ResourceStatistics : IPropertyMetadata
 24    {
 25        #region Constructors
 26
 26427        internal ResourceStatistics(Models.ResourceStatistics protocolObject)
 28        {
 26429            this.AverageCpuPercentage = protocolObject.AvgCPUPercentage;
 26430            this.AverageDiskGiB = protocolObject.AvgDiskGiB;
 26431            this.AverageMemoryGiB = protocolObject.AvgMemoryGiB;
 26432            this.DiskReadGiB = protocolObject.DiskReadGiB;
 26433            this.DiskReadIOps = protocolObject.DiskReadIOps;
 26434            this.DiskWriteGiB = protocolObject.DiskWriteGiB;
 26435            this.DiskWriteIOps = protocolObject.DiskWriteIOps;
 26436            this.LastUpdateTime = protocolObject.LastUpdateTime;
 26437            this.NetworkReadGiB = protocolObject.NetworkReadGiB;
 26438            this.NetworkWriteGiB = protocolObject.NetworkWriteGiB;
 26439            this.PeakDiskGiB = protocolObject.PeakDiskGiB;
 26440            this.PeakMemoryGiB = protocolObject.PeakMemoryGiB;
 26441            this.StartTime = protocolObject.StartTime;
 26442        }
 43
 44        #endregion Constructors
 45
 46        #region ResourceStatistics
 47
 48        /// <summary>
 49        /// Gets the average CPU usage across all compute nodes in the pool (percentage per compute node).
 50        /// </summary>
 26351        public double AverageCpuPercentage { get; }
 52
 53        /// <summary>
 54        /// Gets the average used disk space in gibibytes across all compute nodes in the pool.
 55        /// </summary>
 26356        public double AverageDiskGiB { get; }
 57
 58        /// <summary>
 59        /// Gets the average memory usage in gibibytes across all compute nodes in the pool.
 60        /// </summary>
 26361        public double AverageMemoryGiB { get; }
 62
 63        /// <summary>
 64        /// Gets the total amount of data in gibibytes of disk reads across all compute nodes in the pool.
 65        /// </summary>
 26366        public double DiskReadGiB { get; }
 67
 68        /// <summary>
 69        /// Gets the total number of disk read operations across all compute nodes in the pool.
 70        /// </summary>
 26371        public long DiskReadIOps { get; }
 72
 73        /// <summary>
 74        /// Gets the total amount of data in gibibytes of disk writes across all compute nodes in the pool.
 75        /// </summary>
 26376        public double DiskWriteGiB { get; }
 77
 78        /// <summary>
 79        /// Gets the total number of disk write operations across all compute nodes in the pool.
 80        /// </summary>
 26381        public long DiskWriteIOps { get; }
 82
 83        /// <summary>
 84        /// Gets the time at which the statistics were last updated. All statistics are limited to the range between <se
 85        /// cref="StartTime"/> and this value.
 86        /// </summary>
 26387        public DateTime LastUpdateTime { get; }
 88
 89        /// <summary>
 90        /// Gets the total amount of data in gibibytes of network reads across all compute nodes in the pool.
 91        /// </summary>
 26392        public double NetworkReadGiB { get; }
 93
 94        /// <summary>
 95        /// Gets the total amount of data in gibibytes of network writes across all compute nodes in the pool.
 96        /// </summary>
 26397        public double NetworkWriteGiB { get; }
 98
 99        /// <summary>
 100        /// Gets the peak used disk space in gibibytes across all compute nodes in the pool.
 101        /// </summary>
 263102        public double PeakDiskGiB { get; }
 103
 104        /// <summary>
 105        /// Gets the peak memory usage in gibibytes across all compute nodes in the pool.
 106        /// </summary>
 263107        public double PeakMemoryGiB { get; }
 108
 109        /// <summary>
 110        /// Gets the start time of the time range covered by the statistics.
 111        /// </summary>
 263112        public DateTime StartTime { get; }
 113
 114        #endregion // ResourceStatistics
 115
 116        #region IPropertyMetadata
 117
 118        bool IModifiable.HasBeenModified
 119        {
 120            //This class is compile time readonly so it cannot have been modified
 0121            get { return false; }
 122        }
 123
 124        bool IReadOnly.IsReadOnly
 125        {
 0126            get { return true; }
 127            set
 128            {
 129                // This class is compile time readonly already
 264130            }
 131        }
 132
 133        #endregion // IPropertyMetadata
 134    }
 135}