Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

StoragePoolResourceStatus

import type { StoragePoolResourceStatus } from "https://googleapis.deno.dev/v1/compute:v1.ts";

[Output Only] Contains output only fields.

interface StoragePoolResourceStatus {
diskCount?: bigint;
lastResizeTimestamp?: string;
maxTotalProvisionedDiskCapacityGb?: bigint;
poolUsedCapacityBytes?: bigint;
poolUsedIops?: bigint;
poolUsedThroughput?: bigint;
poolUserWrittenBytes?: bigint;
totalProvisionedDiskCapacityGb?: bigint;
totalProvisionedDiskIops?: bigint;
totalProvisionedDiskThroughput?: bigint;
}

§Properties

§
diskCount?: bigint
[src]

[Output Only] Number of disks used.

§
lastResizeTimestamp?: string
[src]

[Output Only] Timestamp of the last successful resize in RFC3339 text format.

§
maxTotalProvisionedDiskCapacityGb?: bigint
[src]

[Output Only] Maximum allowed aggregate disk size in GiB.

§
poolUsedCapacityBytes?: bigint
[src]

[Output Only] 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.

§
poolUsedIops?: bigint
[src]

[Output Only] 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.

§
poolUsedThroughput?: bigint
[src]

[Output Only] Sum of all the disks' provisioned throughput in MiB/s.

§
poolUserWrittenBytes?: bigint
[src]

[Output Only] Amount of data written into the pool, before it is compacted.

§
totalProvisionedDiskCapacityGb?: bigint
[src]

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

§
totalProvisionedDiskIops?: bigint
[src]

[Output Only] Sum of all the disks' provisioned IOPS.

§
totalProvisionedDiskThroughput?: bigint
[src]

[Output Only] Sum of all the disks' provisioned throughput in MiB/s, minus some amount that is allowed per disk that is not counted towards pool's throughput capacity.