class AnsibleTowerClient::WorkflowJob

Public Instance Methods

extra_vars_hash() click to toggle source
# File lib/ansible_tower_client/base_models/workflow_job.rb, line 8
def extra_vars_hash
  extra_vars.empty? ? {} : hashify(:extra_vars)
end
workflow_job_nodes() click to toggle source
# File lib/ansible_tower_client/base_models/workflow_job.rb, line 3
def workflow_job_nodes
  # this is where Ansible API deviates from other part by using `workflow_nodes`
  Collection.new(api).find_all_by_url(related['workflow_nodes'])
end