Disk constructor

Disk({
  1. bool? autoDelete,
  2. bool? boot,
  3. String? deviceName,
  4. String? diskSizeGb,
  5. List<GuestOsFeature>? guestOsFeatures,
  6. String? index,
  7. String? interface,
  8. String? kind,
  9. List<String>? licenses,
  10. String? mode,
  11. String? source,
  12. String? type,
})

Implementation

Disk({
  this.autoDelete,
  this.boot,
  this.deviceName,
  this.diskSizeGb,
  this.guestOsFeatures,
  this.index,
  this.interface,
  this.kind,
  this.licenses,
  this.mode,
  this.source,
  this.type,
});