toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final accelerators = this.accelerators;
  final bootDiskKmsKey = this.bootDiskKmsKey;
  final localSsdCount = this.localSsdCount;
  final machineType = this.machineType;
  final minCpuPlatform = this.minCpuPlatform;
  final preemptible = this.preemptible;
  final spot = this.spot;
  return {
    'accelerators': ?accelerators,
    'bootDiskKmsKey': ?bootDiskKmsKey,
    'localSsdCount': ?localSsdCount,
    'machineType': ?machineType,
    'minCpuPlatform': ?minCpuPlatform,
    'preemptible': ?preemptible,
    'spot': ?spot,
  };
}