CloudTieringCachePerformance Constructors

Definition

Overloads

CloudTieringCachePerformance()

Initializes a new instance of the CloudTieringCachePerformance class.

CloudTieringCachePerformance(Nullable<DateTime>, Nullable<Int64>, Nullable<Int64>, Nullable<Int32>)

Initializes a new instance of the CloudTieringCachePerformance class.

CloudTieringCachePerformance()

Initializes a new instance of the CloudTieringCachePerformance class.

public CloudTieringCachePerformance ();
Public Sub New ()

Applies to

CloudTieringCachePerformance(Nullable<DateTime>, Nullable<Int64>, Nullable<Int64>, Nullable<Int32>)

Initializes a new instance of the CloudTieringCachePerformance class.

public CloudTieringCachePerformance (DateTime? lastUpdatedTimestamp = default, long? cacheHitBytes = default, long? cacheMissBytes = default, int? cacheHitBytesPercent = default);
new Microsoft.Azure.Management.StorageSync.Models.CloudTieringCachePerformance : Nullable<DateTime> * Nullable<int64> * Nullable<int64> * Nullable<int> -> Microsoft.Azure.Management.StorageSync.Models.CloudTieringCachePerformance
Public Sub New (Optional lastUpdatedTimestamp As Nullable(Of DateTime) = Nothing, Optional cacheHitBytes As Nullable(Of Long) = Nothing, Optional cacheMissBytes As Nullable(Of Long) = Nothing, Optional cacheHitBytesPercent As Nullable(Of Integer) = Nothing)

Parameters

lastUpdatedTimestamp
Nullable<DateTime>

Last updated timestamp

cacheHitBytes
Nullable<Int64>

Count of bytes that were served from the local server

cacheMissBytes
Nullable<Int64>

Count of bytes that were served from the cloud

cacheHitBytesPercent
Nullable<Int32>

Percentage of total bytes (hit + miss) that were served from the local server

Applies to