Node constructor

Node({
  1. String? acceleratorType,
  2. String? apiVersion,
  3. String? cidrBlock,
  4. String? createTime,
  5. List<AttachedDisk>? dataDisks,
  6. String? description,
  7. String? health,
  8. String? healthDescription,
  9. String? id,
  10. Map<String, String>? labels,
  11. Map<String, String>? metadata,
  12. String? name,
  13. NetworkConfig? networkConfig,
  14. List<NetworkEndpoint>? networkEndpoints,
  15. String? runtimeVersion,
  16. SchedulingConfig? schedulingConfig,
  17. ServiceAccount? serviceAccount,
  18. String? state,
  19. List<Symptom>? symptoms,
  20. List<String>? tags,
})

Implementation

Node({
  this.acceleratorType,
  this.apiVersion,
  this.cidrBlock,
  this.createTime,
  this.dataDisks,
  this.description,
  this.health,
  this.healthDescription,
  this.id,
  this.labels,
  this.metadata,
  this.name,
  this.networkConfig,
  this.networkEndpoints,
  this.runtimeVersion,
  this.schedulingConfig,
  this.serviceAccount,
  this.state,
  this.symptoms,
  this.tags,
});