NasJob constructor

NasJob({
  1. String name = '',
  2. required String displayName,
  3. required NasJobSpec? nasJobSpec,
  4. NasJobOutput? nasJobOutput,
  5. JobState state = JobState.$default,
  6. Timestamp? createTime,
  7. Timestamp? startTime,
  8. Timestamp? endTime,
  9. Timestamp? updateTime,
  10. Status? error,
  11. Map<String, String> labels = const {},
  12. EncryptionSpec? encryptionSpec,
  13. bool enableRestrictedImageTraining = false,
  14. bool satisfiesPzs = false,
  15. bool satisfiesPzi = false,
})

Implementation

NasJob({
  this.name = '',
  required this.displayName,
  required this.nasJobSpec,
  this.nasJobOutput,
  this.state = JobState.$default,
  this.createTime,
  this.startTime,
  this.endTime,
  this.updateTime,
  this.error,
  this.labels = const {},
  this.encryptionSpec,
  this.enableRestrictedImageTraining = false,
  this.satisfiesPzs = false,
  this.satisfiesPzi = false,
}) : super(fullyQualifiedName);