Skip to content
This repository was archived by the owner on Oct 12, 2025. It is now read-only.

Commit 102bdf5

Browse files
committed
Update to logs fields
1 parent 2a22756 commit 102bdf5

File tree

5 files changed

+2
-21
lines changed

5 files changed

+2
-21
lines changed

docs/JobStep.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Name | Type | Description | Notes
1515
**exit_code** | **int** | Unix exit code for this job step | [optional]
1616
**start** | **datetime** | Time this job step started running | [optional]
1717
**end** | **datetime** | Time this job step finished running | [optional]
18-
**wallclock** | **str** | |
18+
**wallclock** | **str** | | [optional] [readonly]
1919

2020
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
2121

docs/JobStepDetails.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Name | Type | Description | Notes
1616
**exit_code** | **int** | Unix exit code for this job step | [optional]
1717
**start** | **datetime** | Time this job step started running | [optional]
1818
**end** | **datetime** | Time this job step finished running | [optional]
19-
**wallclock** | **str** | |
19+
**wallclock** | **str** | | [optional] [readonly]
2020
**logs** | [**JobLog**](JobLog.md) | | [optional]
2121

2222
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

epiccore/models/job_log.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,6 @@ def stdout(self, stdout):
8686
:param stdout: The stdout of this JobLog. # noqa: E501
8787
:type stdout: str
8888
"""
89-
if (self.local_vars_configuration.client_side_validation and
90-
stdout is not None and len(stdout) < 1):
91-
raise ValueError("Invalid value for `stdout`, length must be greater than or equal to `1`") # noqa: E501
9289

9390
self._stdout = stdout
9491

@@ -110,9 +107,6 @@ def stderr(self, stderr):
110107
:param stderr: The stderr of this JobLog. # noqa: E501
111108
:type stderr: str
112109
"""
113-
if (self.local_vars_configuration.client_side_validation and
114-
stderr is not None and len(stderr) < 1):
115-
raise ValueError("Invalid value for `stderr`, length must be greater than or equal to `1`") # noqa: E501
116110

117111
self._stderr = stderr
118112

@@ -134,9 +128,6 @@ def app(self, app):
134128
:param app: The app of this JobLog. # noqa: E501
135129
:type app: str
136130
"""
137-
if (self.local_vars_configuration.client_side_validation and
138-
app is not None and len(app) < 1):
139-
raise ValueError("Invalid value for `app`, length must be greater than or equal to `1`") # noqa: E501
140131

141132
self._app = app
142133

epiccore/models/job_step.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -448,11 +448,6 @@ def wallclock(self, wallclock):
448448
:param wallclock: The wallclock of this JobStep. # noqa: E501
449449
:type wallclock: str
450450
"""
451-
if self.local_vars_configuration.client_side_validation and wallclock is None: # noqa: E501
452-
raise ValueError("Invalid value for `wallclock`, must not be `None`") # noqa: E501
453-
if (self.local_vars_configuration.client_side_validation and
454-
wallclock is not None and len(wallclock) < 1):
455-
raise ValueError("Invalid value for `wallclock`, length must be greater than or equal to `1`") # noqa: E501
456451

457452
self._wallclock = wallclock
458453

epiccore/models/job_step_details.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -482,11 +482,6 @@ def wallclock(self, wallclock):
482482
:param wallclock: The wallclock of this JobStepDetails. # noqa: E501
483483
:type wallclock: str
484484
"""
485-
if self.local_vars_configuration.client_side_validation and wallclock is None: # noqa: E501
486-
raise ValueError("Invalid value for `wallclock`, must not be `None`") # noqa: E501
487-
if (self.local_vars_configuration.client_side_validation and
488-
wallclock is not None and len(wallclock) < 1):
489-
raise ValueError("Invalid value for `wallclock`, length must be greater than or equal to `1`") # noqa: E501
490485

491486
self._wallclock = wallclock
492487

0 commit comments

Comments
 (0)