ContainerStorageStats

@Serializable
data class ContainerStorageStats(val readCountNormalized: Int? = null, val readSizeBytes: Int? = null, val writeCountNormalized: Int? = null, val writeSizeBytes: Int? = null)

StorageStats is the disk I/O stats for read/write on Windows. This type is Windows-specific and omitted for Linux containers.

Parameters

readCountNormalized
readSizeBytes
writeCountNormalized
writeSizeBytes

Constructors

Link copied to clipboard
constructor(readCountNormalized: Int? = null, readSizeBytes: Int? = null, writeCountNormalized: Int? = null, writeSizeBytes: Int? = null)

Properties

Link copied to clipboard
@SerialName(value = "read_count_normalized")
val readCountNormalized: Int?
Link copied to clipboard
@SerialName(value = "read_size_bytes")
val readSizeBytes: Int?
Link copied to clipboard
@SerialName(value = "write_count_normalized")
val writeCountNormalized: Int?
Link copied to clipboard
@SerialName(value = "write_size_bytes")
val writeSizeBytes: Int?