|
@click.option('--status', type=click.Choice(['any', 'error', 'success']), |
But by looking in awx there is started for job_templates
"notification_templates_started": "/api/v2/job_templates/160/notification_templates_started/",
"notification_templates_success": "/api/v2/job_templates/160/notification_templates_success/",
"notification_templates_error": "/api/v2/job_templates/160/notification_templates_error/",
if you make an ansible module using directly associate_notification_template it will break when transferring 'any'
tower-cli/tower_cli/resources/job_template.py
Line 202 in c355a3f
But by looking in awx there is started for job_templates
"notification_templates_started": "/api/v2/job_templates/160/notification_templates_started/",
"notification_templates_success": "/api/v2/job_templates/160/notification_templates_success/",
"notification_templates_error": "/api/v2/job_templates/160/notification_templates_error/",
if you make an ansible module using directly associate_notification_template it will break when transferring 'any'