process_schedule_status
Boomi AtomSphere API: Process Schedule Status
- boomi_cicd.util.process_schedule_status.query_process_schedule_status(atom_id, process_id)[source]
Query the process schedule status to check if the process is deployed.
- Parameters:
atom_id (str) – The ID of the Atom.
process_id (str) – The ID of the process.
- Returns:
The conceptual ID of the deployed process.
- Return type:
str
- Raises:
SystemExit: If the process is not deployed.
- boomi_cicd.util.process_schedule_status.update_process_schedule_status(component_id, conceptual_id, atom_id, enabled)[source]
Update the process schedule status.
- Parameters:
component_id (str) – The ID of the component.
conceptual_id (str) – The conceptual ID of the process schedule.
atom_id (str) – The ID of the Atom.
enabled (bool) – Indicates whether the process schedule should be enabled or disabled.
- Returns:
True if the process schedule status update is successful.
- Return type:
bool