Reservation constructor

Reservation({
  1. Autoscale? autoscale,
  2. String? concurrency,
  3. String? creationTime,
  4. String? edition,
  5. bool? ignoreIdleSlots,
  6. bool? multiRegionAuxiliary,
  7. String? name,
  8. String? originalPrimaryLocation,
  9. String? primaryLocation,
  10. String? secondaryLocation,
  11. String? slotCapacity,
  12. String? updateTime,
})

Implementation

Reservation({
  this.autoscale,
  this.concurrency,
  this.creationTime,
  this.edition,
  this.ignoreIdleSlots,
  this.multiRegionAuxiliary,
  this.name,
  this.originalPrimaryLocation,
  this.primaryLocation,
  this.secondaryLocation,
  this.slotCapacity,
  this.updateTime,
});