toJson method

  1. @override
Object toJson()

Implementation

@override
Object toJson() => {
  'diskCount': ?diskCount?.toString(),
  'exapoolMaxReadIops': ?exapoolMaxReadIops?.toString(),
  'exapoolMaxReadThroughput': ?exapoolMaxReadThroughput?.toString(),
  'exapoolMaxWriteIops': ?exapoolMaxWriteIops?.toString(),
  'exapoolMaxWriteThroughput': ?exapoolMaxWriteThroughput?.toString(),
  'lastResizeTimestamp': ?lastResizeTimestamp,
  'maxTotalProvisionedDiskCapacityGb': ?maxTotalProvisionedDiskCapacityGb
      ?.toString(),
  'poolUsedCapacityBytes': ?poolUsedCapacityBytes?.toString(),
  'poolUsedIops': ?poolUsedIops?.toString(),
  'poolUsedThroughput': ?poolUsedThroughput?.toString(),
  'poolUserWrittenBytes': ?poolUserWrittenBytes?.toString(),
  'totalProvisionedDiskCapacityGb': ?totalProvisionedDiskCapacityGb
      ?.toString(),
  'totalProvisionedDiskIops': ?totalProvisionedDiskIops?.toString(),
  'totalProvisionedDiskThroughput': ?totalProvisionedDiskThroughput
      ?.toString(),
};