VirtualMachine constructor

VirtualMachine({
  1. List<Accelerator>? accelerators,
  2. int? bootDiskSizeGb,
  3. String? bootImage,
  4. String? cpuPlatform,
  5. List<Disk>? disks,
  6. List<String>? dockerCacheImages,
  7. bool? enableStackdriverMonitoring,
  8. Map<String, String>? labels,
  9. String? machineType,
  10. Network? network,
  11. String? nvidiaDriverVersion,
  12. bool? preemptible,
  13. String? reservation,
  14. ServiceAccount? serviceAccount,
  15. List<Volume>? volumes,
})

Implementation

VirtualMachine({
  this.accelerators,
  this.bootDiskSizeGb,
  this.bootImage,
  this.cpuPlatform,
  this.disks,
  this.dockerCacheImages,
  this.enableStackdriverMonitoring,
  this.labels,
  this.machineType,
  this.network,
  this.nvidiaDriverVersion,
  this.preemptible,
  this.reservation,
  this.serviceAccount,
  this.volumes,
});