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
Is your feature or enhancement request related to a problem or limitation? Please describe
Searching is limited to only searching for a simple string.
Describe your enhancement idea
I would like to be able to use regex when searching datasets and members. The functionality exists in the z/OSMF API, however it is not implemented for datasets yet.
Describe alternatives you've considered
Provide any additional context
I have looked at the zowe-cli code and how I would implement this. There are two options:
Copy what searchJobs has, which means to make searchString into an optional parameter, then add a new optional parameter alongside it called searchRegex
Keep searchString a required option, but add an optional boolean called isRegex or similar, which when true would call the API with the research query instead of the search one.
I like option 1 more because it would be a standard implementation between jobs and datasets. However, unfortunately this would cause a breaking change (as searchString would have to be made optional), which I would prefer to avoid (to allow this feature to come sooner), so therefore option 2 would have to do. But please let me know what your thoughts on that are.
This feature enhancement would also enable this enhancement on Zowe Explorer (which is ultimately what I want):
Thank you for raising this enhancement request.
The community has 90 days to vote on it.
If the enhancement receives at least 5 upvotes, it is added to our development backlog.
If it receives fewer votes, the issue is closed.
Is your feature or enhancement request related to a problem or limitation? Please describe
Searching is limited to only searching for a simple string.
Describe your enhancement idea
I would like to be able to use regex when searching datasets and members. The functionality exists in the z/OSMF API, however it is not implemented for datasets yet.
Describe alternatives you've considered
Provide any additional context
I have looked at the zowe-cli code and how I would implement this. There are two options:
searchJobs
has, which means to makesearchString
into an optional parameter, then add a new optional parameter alongside it calledsearchRegex
searchString
a required option, but add an optional boolean calledisRegex
or similar, which when true would call the API with theresearch
query instead of thesearch
one.I like option 1 more because it would be a standard implementation between jobs and datasets. However, unfortunately this would cause a breaking change (as
searchString
would have to be made optional), which I would prefer to avoid (to allow this feature to come sooner), so therefore option 2 would have to do. But please let me know what your thoughts on that are.This feature enhancement would also enable this enhancement on Zowe Explorer (which is ultimately what I want):
zowe/zowe-explorer-vscode#3234
The text was updated successfully, but these errors were encountered: