Job constructor

Job({
  1. AllocationPolicy? allocationPolicy,
  2. String? createTime,
  3. Map<String, String>? labels,
  4. LogsPolicy? logsPolicy,
  5. String? name,
  6. List<JobNotification>? notifications,
  7. String? priority,
  8. JobStatus? status,
  9. List<TaskGroup>? taskGroups,
  10. String? uid,
  11. String? updateTime,
})

Implementation

Job({
  this.allocationPolicy,
  this.createTime,
  this.labels,
  this.logsPolicy,
  this.name,
  this.notifications,
  this.priority,
  this.status,
  this.taskGroups,
  this.uid,
  this.updateTime,
});