StoragePoolResourceStatus

data class StoragePoolResourceStatus(val diskCount: String? = null, val lastResizeTimestamp: String? = null, val maxTotalProvisionedDiskCapacityGb: String? = null, val poolUsedCapacityBytes: String? = null, val poolUsedIops: String? = null, val poolUsedThroughput: String? = null, val poolUserWrittenBytes: String? = null, val totalProvisionedDiskCapacityGb: String? = null, val totalProvisionedDiskIops: String? = null, val totalProvisionedDiskThroughput: String? = null)

Constructors

Link copied to clipboard
constructor(diskCount: String? = null, lastResizeTimestamp: String? = null, maxTotalProvisionedDiskCapacityGb: String? = null, poolUsedCapacityBytes: String? = null, poolUsedIops: String? = null, poolUsedThroughput: String? = null, poolUserWrittenBytes: String? = null, totalProvisionedDiskCapacityGb: String? = null, totalProvisionedDiskIops: String? = null, totalProvisionedDiskThroughput: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val diskCount: String? = null

(Output) Number of disks used.

Link copied to clipboard

(Output) Timestamp of the last successful resize in RFC3339 text format.

Link copied to clipboard

(Output) Maximum allowed aggregate disk size in gigabytes.

Link copied to clipboard

(Output) Space used by data stored in disks within the storage pool (in bytes). This will reflect the total number of bytes written to the disks in the pool, in contrast to the capacity of those disks.

Link copied to clipboard
val poolUsedIops: String? = null

(Output) Sum of all the disks' provisioned IOPS, minus some amount that is allowed per disk that is not counted towards pool's IOPS capacity. For more information, see https://cloud.google.com/compute/docs/disks/storage-pools.

Link copied to clipboard

(Output) Sum of all the disks' provisioned throughput in MB/s.

Link copied to clipboard

(Output) Amount of data written into the pool, before it is compacted.

Link copied to clipboard

(Output) Sum of all the capacity provisioned in disks in this storage pool. A disk's provisioned capacity is the same as its total capacity.

Link copied to clipboard

(Output) Sum of all the disks' provisioned IOPS.

Link copied to clipboard

(Output) Sum of all the disks' provisioned throughput in MB/s, minus some amount that is allowed per disk that is not counted towards pool's throughput capacity.