toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final bootDiskProvisionedIops = this.bootDiskProvisionedIops;
final bootDiskProvisionedThroughput = this.bootDiskProvisionedThroughput;
final bootDiskSizeGb = this.bootDiskSizeGb;
final bootDiskType = this.bootDiskType;
final localSsdInterface = this.localSsdInterface;
final numLocalSsds = this.numLocalSsds;
return {
'bootDiskProvisionedIops': ?bootDiskProvisionedIops,
'bootDiskProvisionedThroughput': ?bootDiskProvisionedThroughput,
'bootDiskSizeGb': ?bootDiskSizeGb,
'bootDiskType': ?bootDiskType,
'localSsdInterface': ?localSsdInterface,
'numLocalSsds': ?numLocalSsds,
};
}