-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ListInformJobs service definition
Part of INFORM Job CRUD.
- Loading branch information
1 parent
0a6f497
commit 6d1fb23
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# SPDX-FileCopyrightText: 2024, Yaskawa America, Inc. | ||
# SPDX-FileCopyrightText: 2024, Delft University of Technology | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
# empty request | ||
|
||
--- | ||
|
||
# Result of the service invocation. Values other than one (1) signal failure. | ||
# | ||
# NOTE: future versions of this service may use a different set of result | ||
# codes. Always make sure to compare against defined named constants instead | ||
# of integers directly. | ||
uint32 result_code | ||
|
||
# string representation of the value in 'result_code', for humans | ||
string message | ||
|
||
# The list of jobs present on the controller. | ||
# | ||
# NOTE: | ||
# - these are job names, not filenames, and thus will not include the file | ||
# extension (JBI) | ||
# - character encodings other than ASCII are currently not fully supported | ||
string[] names |