Cluster constructor

Cluster({
  1. String? clusterName,
  2. String? clusterUuid,
  3. ClusterConfig? config,
  4. Map<String, String>? labels,
  5. ClusterMetrics? metrics,
  6. String? projectId,
  7. ClusterStatus? status,
  8. List<ClusterStatus>? statusHistory,
  9. VirtualClusterConfig? virtualClusterConfig,
})

Implementation

Cluster({
  this.clusterName,
  this.clusterUuid,
  this.config,
  this.labels,
  this.metrics,
  this.projectId,
  this.status,
  this.statusHistory,
  this.virtualClusterConfig,
});