DiskConfig.fromJson constructor

DiskConfig.fromJson(
  1. Map json_
)

Implementation

DiskConfig.fromJson(core.Map json_)
    : this(
        bootDiskProvisionedIops:
            json_['bootDiskProvisionedIops'] as core.String?,
        bootDiskProvisionedThroughput:
            json_['bootDiskProvisionedThroughput'] as core.String?,
        bootDiskSizeGb: json_['bootDiskSizeGb'] as core.int?,
        bootDiskType: json_['bootDiskType'] as core.String?,
        localSsdInterface: json_['localSsdInterface'] as core.String?,
        numLocalSsds: json_['numLocalSsds'] as core.int?,
      );