CustomJob constructor
CustomJob({
- String name = '',
- required String displayName,
- required CustomJobSpec? jobSpec,
- JobState state = JobState.$default,
- Timestamp? createTime,
- Timestamp? startTime,
- Timestamp? endTime,
- Timestamp? updateTime,
- Status? error,
- Map<
String, String> labels = const {}, - EncryptionSpec? encryptionSpec,
- Map<
String, String> webAccessUris = const {}, - bool satisfiesPzs = false,
- bool satisfiesPzi = false,
Implementation
CustomJob({
this.name = '',
required this.displayName,
required this.jobSpec,
this.state = JobState.$default,
this.createTime,
this.startTime,
this.endTime,
this.updateTime,
this.error,
this.labels = const {},
this.encryptionSpec,
this.webAccessUris = const {},
this.satisfiesPzs = false,
this.satisfiesPzi = false,
}) : super(fullyQualifiedName);