Cluster constructor

Cluster({
  1. Map<String, ComputeResource>? computeResources,
  2. String? createTime,
  3. String? description,
  4. Map<String, String>? labels,
  5. String? name,
  6. Map<String, NetworkResource>? networkResources,
  7. Orchestrator? orchestrator,
  8. bool? reconciling,
  9. Map<String, StorageResource>? storageResources,
  10. String? updateTime,
})

Implementation

Cluster({
  this.computeResources,
  this.createTime,
  this.description,
  this.labels,
  this.name,
  this.networkResources,
  this.orchestrator,
  this.reconciling,
  this.storageResources,
  this.updateTime,
});