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 request related to a problem? Please describe.
I am working on a python script to add an event to trigger a job, and I do not see a way to do it in the documentation.
Describe the solution you'd like
workflow.run.add_event(event, odate, server)
, or alike.
Describe alternatives you've considered
triggering the ctm cli from the script
using the swagger code gen to create my own client
Additional context
Other functions that would support DevOps and Platform Engineering activities would be great. Hold, rerun, manage nodegroups, etc.
The text was updated successfully, but these errors were encountered:
@dcompane a Workflow represents a collection of Folders and Jobs at the Server level, so I don't think it's the right class to use here. The Workflow python class also does not have a run method. Events are deployed at the Server level, so this should be Server class method. Please open a separate issue for runtime actions (Hold, Rerun, Bypass, etc.).
OK. so where can we add that? The idea is not to augment or make more complicated the Workflow model, but to provide a complete client that can support DevOps operations, CI/CD pipelines, and alike.
Otherwise, some actions need to be done on powershell or bash because the ctm cli is needed, and when others can be done in python. Seems difficult to standardize.
Edit: I just noticed that you asked for a separate issue. This issue is about runtime (Monitoring) actions, so I am not sure why a new issue is needed.
Is your feature request related to a problem? Please describe.
I am working on a python script to add an event to trigger a job, and I do not see a way to do it in the documentation.
Describe the solution you'd like
workflow.run.add_event(event, odate, server)
, or alike.
Describe alternatives you've considered
triggering the ctm cli from the script
using the swagger code gen to create my own client
Additional context
Other functions that would support DevOps and Platform Engineering activities would be great. Hold, rerun, manage nodegroups, etc.
The text was updated successfully, but these errors were encountered: