Add z/OSMF list workflows API support - #576
Merged
Merged
Conversation
frankgiordano
requested changes
Jul 16, 2026
Ashish-Kumar-Dash
force-pushed
the
list-workflow
branch
from
July 16, 2026 16:52
3d26cc2 to
768fd2f
Compare
frankgiordano
requested changes
Jul 16, 2026
Signed-off-by: Ashish Kumar Dash <ashishdash2410@gmail.com>
Ashish-Kumar-Dash
force-pushed
the
list-workflow
branch
from
July 16, 2026 17:07
76408b0 to
4b48821
Compare
frankgiordano
approved these changes
Jul 16, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Provides a workflow API method to list the z/OSMF workflows for a system or sysplex, per the IBM REST API reference:
https://www.ibm.com/docs/en/zos/3.2.0?topic=services-list-workflows-system-sysplex
Changes
WorkflowList- addsgetWorkflows(),getWorkflowsByName(String)andgetWorkflowsCommon(WorkflowListInputData), mirroring the existinggetArchived*methods.WorkflowListInputData- builder for the six optional query filters: workflowName, category, system, statusName, owner and vendor.WorkflowInfoResponse- the workflow-info object returned in theworkflowsarray (all ten documented fields).CategoryType/StatusNameType- enums for the fixed-value query parameters, following the existingViewType/OrderByTypepattern.Free-text filter values are encoded with
EncodeUtils.encodeURIComponent. Since every filter is optional, the query string is assembled with aStringJoinerso the?and&delimiters stay correct for any combination of filters.Resolves #470