toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final diskCount = this.diskCount;
final exapoolMaxReadIops = this.exapoolMaxReadIops;
final exapoolMaxReadThroughput = this.exapoolMaxReadThroughput;
final exapoolMaxWriteIops = this.exapoolMaxWriteIops;
final exapoolMaxWriteThroughput = this.exapoolMaxWriteThroughput;
final lastResizeTimestamp = this.lastResizeTimestamp;
final maxTotalProvisionedDiskCapacityGb =
this.maxTotalProvisionedDiskCapacityGb;
final poolUsedCapacityBytes = this.poolUsedCapacityBytes;
final poolUsedIops = this.poolUsedIops;
final poolUsedThroughput = this.poolUsedThroughput;
final poolUserWrittenBytes = this.poolUserWrittenBytes;
final totalProvisionedDiskCapacityGb = this.totalProvisionedDiskCapacityGb;
final totalProvisionedDiskIops = this.totalProvisionedDiskIops;
final totalProvisionedDiskThroughput = this.totalProvisionedDiskThroughput;
return {
'diskCount': ?diskCount,
'exapoolMaxReadIops': ?exapoolMaxReadIops,
'exapoolMaxReadThroughput': ?exapoolMaxReadThroughput,
'exapoolMaxWriteIops': ?exapoolMaxWriteIops,
'exapoolMaxWriteThroughput': ?exapoolMaxWriteThroughput,
'lastResizeTimestamp': ?lastResizeTimestamp,
'maxTotalProvisionedDiskCapacityGb': ?maxTotalProvisionedDiskCapacityGb,
'poolUsedCapacityBytes': ?poolUsedCapacityBytes,
'poolUsedIops': ?poolUsedIops,
'poolUsedThroughput': ?poolUsedThroughput,
'poolUserWrittenBytes': ?poolUserWrittenBytes,
'totalProvisionedDiskCapacityGb': ?totalProvisionedDiskCapacityGb,
'totalProvisionedDiskIops': ?totalProvisionedDiskIops,
'totalProvisionedDiskThroughput': ?totalProvisionedDiskThroughput,
};
}