NodeStatus constructor

const NodeStatus({
  1. List<NodeAddress>? addresses,
  2. Map<String, String>? allocatable,
  3. Map<String, String>? capacity,
  4. List<NodeCondition>? conditions,
  5. NodeConfigStatus? config,
  6. NodeDaemonEndpoints? daemonEndpoints,
  7. List<ContainerImage>? images,
  8. NodeSystemInfo? nodeInfo,
  9. String? phase,
  10. List<AttachedVolume>? volumesAttached,
  11. List<String>? volumesInUse,
})

Default constructor.

Implementation

const NodeStatus({
  this.addresses,
  this.allocatable,
  this.capacity,
  this.conditions,
  this.config,
  this.daemonEndpoints,
  this.images,
  this.nodeInfo,
  this.phase,
  this.volumesAttached,
  this.volumesInUse,
});