PoolStatistics Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
PoolStatistics() |
Initializes a new instance of the PoolStatistics class. |
PoolStatistics(String, DateTime, DateTime, UsageStatistics, ResourceStatistics) |
Initializes a new instance of the PoolStatistics class. |
PoolStatistics()
- Source:
- PoolStatistics.cs
Initializes a new instance of the PoolStatistics class.
public PoolStatistics ();
Public Sub New ()
Applies to
PoolStatistics(String, DateTime, DateTime, UsageStatistics, ResourceStatistics)
- Source:
- PoolStatistics.cs
Initializes a new instance of the PoolStatistics class.
public PoolStatistics (string url, DateTime startTime, DateTime lastUpdateTime, Microsoft.Azure.Batch.Protocol.Models.UsageStatistics usageStats = default, Microsoft.Azure.Batch.Protocol.Models.ResourceStatistics resourceStats = default);
new Microsoft.Azure.Batch.Protocol.Models.PoolStatistics : string * DateTime * DateTime * Microsoft.Azure.Batch.Protocol.Models.UsageStatistics * Microsoft.Azure.Batch.Protocol.Models.ResourceStatistics -> Microsoft.Azure.Batch.Protocol.Models.PoolStatistics
Public Sub New (url As String, startTime As DateTime, lastUpdateTime As DateTime, Optional usageStats As UsageStatistics = Nothing, Optional resourceStats As ResourceStatistics = Nothing)
Parameters
- url
- String
The URL for the statistics.
- startTime
- DateTime
The start time of the time range covered by the statistics.
- lastUpdateTime
- DateTime
The time at which the statistics were last updated. All statistics are limited to the range between startTime and lastUpdateTime.
- usageStats
- UsageStatistics
Statistics related to Pool usage, such as the amount of core-time used.
- resourceStats
- ResourceStatistics
Statistics related to resource consumption by Compute Nodes in the Pool.
Applies to
Azure SDK for .NET