AzureVmDetails constructor

AzureVmDetails({
  1. String? architecture,
  2. String? bootOption,
  3. String? committedStorageMb,
  4. String? computerName,
  5. int? cpuCount,
  6. int? diskCount,
  7. List<Disk>? disks,
  8. int? memoryMb,
  9. OSDescription? osDescription,
  10. OSDisk? osDisk,
  11. String? powerState,
  12. Map<String, String>? tags,
  13. String? vmId,
  14. String? vmSize,
})

Implementation

AzureVmDetails({
  this.architecture,
  this.bootOption,
  this.committedStorageMb,
  this.computerName,
  this.cpuCount,
  this.diskCount,
  this.disks,
  this.memoryMb,
  this.osDescription,
  this.osDisk,
  this.powerState,
  this.tags,
  this.vmId,
  this.vmSize,
});