You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: client/docs/FPGAJobItem.md
+36-36Lines changed: 36 additions & 36 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
14
14
**Done** | **bool** | True when the job has completed (this does not necessarily indicate success). | [readonly]
15
15
**Error** | **bool** | True if there was an error in the service while attempting the job. | [readonly]
16
16
**Failure** | **bool** | True if the job failed (this should be used in conjunction with the `done` property). | [readonly]
17
+
**JobType** | Pointer to **NullableString** | type of the FPGA job. | [optional][default to "non-interactive"]
17
18
**Name** | **string** | Unique ID of the FPGA job. | [readonly]
18
19
**Queued** | **bool** | True if job is currently queued and waiting to be processed. Otherwise, the job is either currently being processed or ended. | [readonly]
19
20
**Status** | **string** | A summary status of the job. Note: this value should not be relied upon to determine whether a job has completed, succeeded or failed as this list may change as state machine evolves. Use resource appropriate flags instead. | [readonly]
@@ -25,7 +26,6 @@ Name | Type | Description | Notes
**Timeout** | Pointer to **int64** | The maximum time (in seconds) that the job will be allowed to run. After the timeout has expired the job will be aborted and reported as a failure. The timeout does not include any time the request spent being queued, waiting for the job to be started. | [optional][default to 300]
27
28
**Title** | Pointer to **NullableString** | Optional human-readable name of the FPGA job. | [optional]
28
-
**Type** | Pointer to **NullableString** | type of the FPGA job. | [optional][default to "non-interactive"]
0 commit comments