Database constructor

Database({
  1. String? diskType,
  2. String? floatingIpAddress,
  3. String? machineType,
  4. String? secondarySoleTenantNode,
  5. String? secondarySoleTenantNodeType,
  6. String? secretManagerSecret,
  7. bool? smt,
  8. String? soleTenantNode,
  9. String? soleTenantNodeType,
  10. bool? tempdbOnSsd,
  11. String? tenancyModel,
})

Implementation

Database({
  this.diskType,
  this.floatingIpAddress,
  this.machineType,
  this.secondarySoleTenantNode,
  this.secondarySoleTenantNodeType,
  this.secretManagerSecret,
  this.smt,
  this.soleTenantNode,
  this.soleTenantNodeType,
  this.tempdbOnSsd,
  this.tenancyModel,
});