diff --git a/app/models/manageiq/providers/ansible_tower/automation_manager.rb b/app/models/manageiq/providers/ansible_tower/automation_manager.rb index cd2f7455a53..5dcf39ee0ea 100644 --- a/app/models/manageiq/providers/ansible_tower/automation_manager.rb +++ b/app/models/manageiq/providers/ansible_tower/automation_manager.rb @@ -4,6 +4,7 @@ class ManageIQ::Providers::AnsibleTower::AutomationManager < ManageIQ::Providers require_nested :Credential require_nested :AmazonCredential require_nested :AzureCredential + require_nested :AzureClassicCredential require_nested :CloudCredential require_nested :GoogleCredential require_nested :MachineCredential diff --git a/app/models/manageiq/providers/ansible_tower/automation_manager/azure_classic_credential.rb b/app/models/manageiq/providers/ansible_tower/automation_manager/azure_classic_credential.rb new file mode 100644 index 00000000000..6ecf9fddfeb --- /dev/null +++ b/app/models/manageiq/providers/ansible_tower/automation_manager/azure_classic_credential.rb @@ -0,0 +1,3 @@ +class ManageIQ::Providers::AnsibleTower::AutomationManager::AzureClassicCredential < ManageIQ::Providers::AnsibleTower::AutomationManager::CloudCredential + include ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::AzureClassicCredential +end diff --git a/app/models/manageiq/providers/ansible_tower/automation_manager/azure_credential.rb b/app/models/manageiq/providers/ansible_tower/automation_manager/azure_credential.rb index ead6aa15419..470499369a6 100644 --- a/app/models/manageiq/providers/ansible_tower/automation_manager/azure_credential.rb +++ b/app/models/manageiq/providers/ansible_tower/automation_manager/azure_credential.rb @@ -1,4 +1,4 @@ -# This corresponds to Ansible Tower's Azure Resource Manager (azure_rm) type credential. We are not modeling the deprecated Azure classic -class ManageIQ::Providers::AnsibleTower::AutomationManager::AzureCredential < - ManageIQ::Providers::AnsibleTower::AutomationManager::CloudCredential +# This corresponds to Ansible Tower's Azure Resource Manager (azure_rm) type credential +class ManageIQ::Providers::AnsibleTower::AutomationManager::AzureCredential < ManageIQ::Providers::AnsibleTower::AutomationManager::CloudCredential + include ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::AzureCredential end diff --git a/app/models/manageiq/providers/ansible_tower/automation_manager/google_credential.rb b/app/models/manageiq/providers/ansible_tower/automation_manager/google_credential.rb index 47a9ece8c2c..57011b26220 100644 --- a/app/models/manageiq/providers/ansible_tower/automation_manager/google_credential.rb +++ b/app/models/manageiq/providers/ansible_tower/automation_manager/google_credential.rb @@ -1,2 +1,3 @@ class ManageIQ::Providers::AnsibleTower::AutomationManager::GoogleCredential < ManageIQ::Providers::AnsibleTower::AutomationManager::CloudCredential + include ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::GoogleCredential end diff --git a/app/models/manageiq/providers/ansible_tower/automation_manager/network_credential.rb b/app/models/manageiq/providers/ansible_tower/automation_manager/network_credential.rb index 1e6a96221e4..57d565991b2 100644 --- a/app/models/manageiq/providers/ansible_tower/automation_manager/network_credential.rb +++ b/app/models/manageiq/providers/ansible_tower/automation_manager/network_credential.rb @@ -1,2 +1,3 @@ class ManageIQ::Providers::AnsibleTower::AutomationManager::NetworkCredential < ManageIQ::Providers::AnsibleTower::AutomationManager::Credential + include ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::NetworkCredential end diff --git a/app/models/manageiq/providers/ansible_tower/automation_manager/openstack_credential.rb b/app/models/manageiq/providers/ansible_tower/automation_manager/openstack_credential.rb index c159d945c94..dcdc1574d77 100644 --- a/app/models/manageiq/providers/ansible_tower/automation_manager/openstack_credential.rb +++ b/app/models/manageiq/providers/ansible_tower/automation_manager/openstack_credential.rb @@ -1,2 +1,3 @@ class ManageIQ::Providers::AnsibleTower::AutomationManager::OpenstackCredential < ManageIQ::Providers::AnsibleTower::AutomationManager::CloudCredential + include ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::OpenstackCredential end diff --git a/app/models/manageiq/providers/ansible_tower/automation_manager/rackspace_credential.rb b/app/models/manageiq/providers/ansible_tower/automation_manager/rackspace_credential.rb index 2f9c849933e..c63e3ec68bd 100644 --- a/app/models/manageiq/providers/ansible_tower/automation_manager/rackspace_credential.rb +++ b/app/models/manageiq/providers/ansible_tower/automation_manager/rackspace_credential.rb @@ -1,2 +1,3 @@ class ManageIQ::Providers::AnsibleTower::AutomationManager::RackspaceCredential < ManageIQ::Providers::AnsibleTower::AutomationManager::CloudCredential + include ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::RackspaceCredential end diff --git a/app/models/manageiq/providers/ansible_tower/automation_manager/satellite6_credential.rb b/app/models/manageiq/providers/ansible_tower/automation_manager/satellite6_credential.rb index 0007e929f90..4b1956de2f8 100644 --- a/app/models/manageiq/providers/ansible_tower/automation_manager/satellite6_credential.rb +++ b/app/models/manageiq/providers/ansible_tower/automation_manager/satellite6_credential.rb @@ -1,2 +1,3 @@ class ManageIQ::Providers::AnsibleTower::AutomationManager::Satellite6Credential < ManageIQ::Providers::AnsibleTower::AutomationManager::CloudCredential + include ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::Satellite6Credential end diff --git a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/amazon_credential.rb b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/amazon_credential.rb index 87a74642331..1ce02be3df0 100644 --- a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/amazon_credential.rb +++ b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/amazon_credential.rb @@ -1,6 +1,4 @@ module ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::AmazonCredential - extend ActiveSupport::Concern - COMMON_ATTRIBUTES = { :userid => { :label => N_('Access Key'), diff --git a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/azure_classic_credential.rb b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/azure_classic_credential.rb new file mode 100644 index 00000000000..d3425e0d5a1 --- /dev/null +++ b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/azure_classic_credential.rb @@ -0,0 +1,30 @@ +module ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::AzureClassicCredential + COMMON_ATTRIBUTES = { + :userid => { + :type => :string, + :label => N_('Subscription ID'), + :help_text => N_('The Subscription UUID for the Microsoft Azure Classic account'), + :max_length => 1024, + :required => true + } + }.freeze + + EXTRA_ATTRIBUTES = { + :ssh_key_data => { + :type => :password, + :multiline => true, + :label => N_('Management Certificate'), + :help_text => N_('Contents of the PEM file that corresponds to the certificate you uploaded in the Microsoft Azure console'), + :required => true + } + }.freeze + + API_ATTRIBUTES = COMMON_ATTRIBUTES.merge(EXTRA_ATTRIBUTES).freeze + + API_OPTIONS = { + :type => 'cloud', + :label => N_('Azure Classic (deprecated)'), + :attributes => API_ATTRIBUTES + }.freeze + TOWER_KIND = 'azure'.freeze +end diff --git a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/azure_credential.rb b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/azure_credential.rb new file mode 100644 index 00000000000..2162f85d560 --- /dev/null +++ b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/azure_credential.rb @@ -0,0 +1,50 @@ +module ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::AzureCredential + COMMON_ATTRIBUTES = { + :userid => { + :label => N_('Username'), + :help_text => N_('The username to use to connect to the Microsoft Azure account') + }, + :password => { + :type => :password, + :label => N_('Password'), + :help_text => N_('The password to use to connect to the Microsoft Azure account') + } + }.freeze + + EXTRA_ATTRIBUTES = { + :subscription => { + :type => :string, + :label => N_('Subscription ID'), + :help_text => N_('The Subscription UUID for the Microsoft Azure account'), + :max_length => 1024, + :required => true + }, + :tenant => { + :type => :string, + :label => N_('Tenant ID'), + :help_text => N_('The Tenant ID for the Microsoft Azure account'), + :max_length => 1024 + }, + :secret => { + :type => :password, + :label => N_('Client Secret'), + :help_text => N_('The Client Secret for the Microsoft Azure account'), + :max_length => 1024, + }, + :client => { + :type => :string, + :label => N_('Client ID'), + :help_text => N_('The Client ID for the Microsoft Azure account'), + :max_length => 128 + }, + }.freeze + + API_ATTRIBUTES = COMMON_ATTRIBUTES.merge(EXTRA_ATTRIBUTES).freeze + + API_OPTIONS = { + :type => 'cloud', + :label => N_('Azure'), + :attributes => API_ATTRIBUTES + }.freeze + TOWER_KIND = 'azure_rm'.freeze +end diff --git a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/google_credential.rb b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/google_credential.rb new file mode 100644 index 00000000000..3f017a8862f --- /dev/null +++ b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/google_credential.rb @@ -0,0 +1,35 @@ +module ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::GoogleCredential + COMMON_ATTRIBUTES = { + :userid => { + :type => :email, + :label => N_('Service Account Email Address'), + :help_text => N_('The email address assigned to the Google Compute Engine service account'), + :required => true + } + }.freeze + + EXTRA_ATTRIBUTES = { + :ssh_key_data => { + :type => :password, + :multiline => true, + :label => N_('RSA Private Key'), + :help_text => N_('Contents of the PEM file associated with the service account email'), + :required => true + }, + :project => { + :type => :string, + :label => N_('Project'), + :help_text => N_('The GCE assigned identification. It is constructed as two words followed by a three digit number, such as: squeamish-ossifrage-123'), + :max_length => 100, + } + }.freeze + + API_ATTRIBUTES = COMMON_ATTRIBUTES.merge(EXTRA_ATTRIBUTES).freeze + + API_OPTIONS = { + :type => 'cloud', + :label => N_('Google Compute Engine'), + :attributes => API_ATTRIBUTES + }.freeze + TOWER_KIND = 'gce'.freeze +end diff --git a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/machine_credential.rb b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/machine_credential.rb index 57b9282e7ea..8a51578a1aa 100644 --- a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/machine_credential.rb +++ b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/machine_credential.rb @@ -1,6 +1,4 @@ module ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::MachineCredential - extend ActiveSupport::Concern - COMMON_ATTRIBUTES = { :userid => { :label => N_('Username'), diff --git a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/network_credential.rb b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/network_credential.rb new file mode 100644 index 00000000000..de3558802af --- /dev/null +++ b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/network_credential.rb @@ -0,0 +1,49 @@ +module ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::NetworkCredential + COMMON_ATTRIBUTES = { + :userid => { + :label => N_('Username'), + :help_text => N_('Username for this credential'), + :required => true + }, + :password => { + :type => :password, + :label => N_('Password'), + :help_text => N_('Password for this credential'), + :required => true + } + }.freeze + + EXTRA_ATTRIBUTES = { + :authorize => { + :type => :boolean, + :label => N_('Authorize'), + :help_text => N_('Whether to use the authorize mechanism') + }, + :authorize_password => { + :type => :password, + :label => N_('Authorize password'), + :help_text => N_('Password used by the authorize mechanism') + }, + :ssh_key_data => { + :type => :password, + :multiline => true, + :label => N_('SSH key'), + :help_text => N_('RSA or DSA private key to be used instead of password') + }, + :ssh_key_unlock => { + :type => :password, + :label => N_('Private key passphrase'), + :help_text => N_('Passphrase to unlock SSH private key if encrypted'), + :max_length => 1024 + } + }.freeze + + API_ATTRIBUTES = COMMON_ATTRIBUTES.merge(EXTRA_ATTRIBUTES).freeze + + API_OPTIONS = { + :label => N_('network'), + :type => 'network', + :attributes => API_ATTRIBUTES + }.freeze + TOWER_KIND = 'net'.freeze +end diff --git a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/openstack_credential.rb b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/openstack_credential.rb new file mode 100644 index 00000000000..65587aae83d --- /dev/null +++ b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/openstack_credential.rb @@ -0,0 +1,47 @@ +module ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::OpenstackCredential + COMMON_ATTRIBUTES = { + :userid => { + :label => N_('Username'), + :help_text => N_('The username to use to connect to OpenStack'), + :required => true + }, + :password => { + :type => :password, + :label => N_('Password (API Key)'), + :help_text => N_('The password or API key to use to connect to OpenStack'), + :required => true + } + }.freeze + + EXTRA_ATTRIBUTES = { + :host => { + :type => :string, + :label => N_('Host (Authentication URL'), + :help_text => N_('The host to authenticate with. For example, https://openstack.business.com/v2.0'), + :max_length => 1024, + :required => true + }, + :project => { + :type => :string, + :label => N_('Project (Tenant Name)'), + :help_text => N_('This is the tenant name. This value is usually the same as the username'), + :max_length => 100, + :required => true + }, + :domain => { + :type => :string, + :label => N_('Domain Name'), + :help_text => N_('OpenStack domains define administrative boundaries. It is only needed for Keystone v3 authentication URLs'), + :max_length => 100 + } + }.freeze + + API_ATTRIBUTES = COMMON_ATTRIBUTES.merge(EXTRA_ATTRIBUTES).freeze + + API_OPTIONS = { + :type => 'cloud', + :label => N_('OpenStack'), + :attributes => API_ATTRIBUTES + }.freeze + TOWER_KIND = 'openstack'.freeze +end diff --git a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/rackspace_credential.rb b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/rackspace_credential.rb new file mode 100644 index 00000000000..de240ffa6d2 --- /dev/null +++ b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/rackspace_credential.rb @@ -0,0 +1,24 @@ +module ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::RackspaceCredential + COMMON_ATTRIBUTES = { + :userid => { + :label => N_('Username'), + :help_text => N_('Username for this credential'), + :required => true + }, + :password => { + :type => :password, + :label => N_('API Key'), + :help_text => N_('API Key for this credential'), + :required => true + } + }.freeze + + API_ATTRIBUTES = COMMON_ATTRIBUTES + + API_OPTIONS = { + :type => 'cloud', + :label => N_('Rackspace'), + :attributes => API_ATTRIBUTES + }.freeze + TOWER_KIND = 'rax'.freeze +end diff --git a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/satellite6_credential.rb b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/satellite6_credential.rb new file mode 100644 index 00000000000..371ae2f2bed --- /dev/null +++ b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/satellite6_credential.rb @@ -0,0 +1,34 @@ +module ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::Satellite6Credential + COMMON_ATTRIBUTES = { + :userid => { + :label => N_('Username'), + :help_text => N_('The username to use to connect to Satellite 6'), + :required => true + }, + :password => { + :type => :password, + :label => N_('Password'), + :help_text => N_('The password to use to connect to Satellite 6'), + :required => true + } + }.freeze + + EXTRA_ATTRIBUTES = { + :host => { + :type => :string, + :label => N_('Satellite 6 Host'), + :help_text => N_('Hostname or IP address which corresponds to your Red Hat Satellite 6 server'), + :max_length => 1024, + :required => true + } + }.freeze + + API_ATTRIBUTES = COMMON_ATTRIBUTES.merge(EXTRA_ATTRIBUTES).freeze + + API_OPTIONS = { + :type => 'cloud', + :label => N_('Satellite6'), + :attributes => API_ATTRIBUTES + }.freeze + TOWER_KIND = 'satellite6'.freeze +end diff --git a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/scm_credential.rb b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/scm_credential.rb index ff30df1242d..94ddfecba21 100644 --- a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/scm_credential.rb +++ b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/scm_credential.rb @@ -1,6 +1,4 @@ module ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::ScmCredential - extend ActiveSupport::Concern - COMMON_ATTRIBUTES = { :userid => { :label => N_('Username'), diff --git a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/vmware_credential.rb b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/vmware_credential.rb index e37a33bb2f7..9a7a443513f 100644 --- a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/vmware_credential.rb +++ b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/vmware_credential.rb @@ -1,6 +1,4 @@ module ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::VmwareCredential - extend ActiveSupport::Concern - COMMON_ATTRIBUTES = { :userid => { :label => N_('Username'), diff --git a/app/models/manageiq/providers/ansible_tower/shared/inventory/parser/automation_manager.rb b/app/models/manageiq/providers/ansible_tower/shared/inventory/parser/automation_manager.rb index c2d9ca7841f..c25a2b8f18d 100644 --- a/app/models/manageiq/providers/ansible_tower/shared/inventory/parser/automation_manager.rb +++ b/app/models/manageiq/providers/ansible_tower/shared/inventory/parser/automation_manager.rb @@ -88,7 +88,7 @@ def credentials when 'satellite6' then "#{provider_module}::AutomationManager::Satellite6Credential" # when 'cloudforms' then "#{provider_module}::AutomationManager::$$$Credential" when 'gce' then "#{provider_module}::AutomationManager::GoogleCredential" - # when 'azure' then "#{provider_module}::AutomationManager::???Credential" + when 'azure' then "#{provider_module}::AutomationManager::AzureClassicCredential" when 'azure_rm' then "#{provider_module}::AutomationManager::AzureCredential" when 'openstack' then "#{provider_module}::AutomationManager::OpenstackCredential" else "#{provider_module}::AutomationManager::Credential" diff --git a/app/models/manageiq/providers/embedded_ansible/automation_manager.rb b/app/models/manageiq/providers/embedded_ansible/automation_manager.rb index 7e02a6cc76f..ebdbf8f7cfa 100644 --- a/app/models/manageiq/providers/embedded_ansible/automation_manager.rb +++ b/app/models/manageiq/providers/embedded_ansible/automation_manager.rb @@ -4,6 +4,7 @@ class ManageIQ::Providers::EmbeddedAnsible::AutomationManager < ManageIQ::Provid require_nested :Credential require_nested :AmazonCredential require_nested :AzureCredential + require_nested :AzureClassicCredential require_nested :CloudCredential require_nested :GoogleCredential require_nested :MachineCredential diff --git a/app/models/manageiq/providers/embedded_ansible/automation_manager/azure_classic_credential.rb b/app/models/manageiq/providers/embedded_ansible/automation_manager/azure_classic_credential.rb new file mode 100644 index 00000000000..e0a9230912b --- /dev/null +++ b/app/models/manageiq/providers/embedded_ansible/automation_manager/azure_classic_credential.rb @@ -0,0 +1,3 @@ +class ManageIQ::Providers::EmbeddedAnsible::AutomationManager::AzureClassicCredential < ManageIQ::Providers::EmbeddedAnsible::AutomationManager::CloudCredential + include ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::AzureClassicCredential +end diff --git a/app/models/manageiq/providers/embedded_ansible/automation_manager/azure_credential.rb b/app/models/manageiq/providers/embedded_ansible/automation_manager/azure_credential.rb index 5888e95b173..9a7e506d8a9 100644 --- a/app/models/manageiq/providers/embedded_ansible/automation_manager/azure_credential.rb +++ b/app/models/manageiq/providers/embedded_ansible/automation_manager/azure_credential.rb @@ -1,4 +1,4 @@ -# This corresponds to Ansible Tower's Azure Resource Manager (azure_rm) type credential. We are not modeling the deprecated Azure classic -class ManageIQ::Providers::EmbeddedAnsible::AutomationManager::AzureCredential < - ManageIQ::Providers::EmbeddedAnsible::AutomationManager::CloudCredential +# This corresponds to Ansible Tower's Azure Resource Manager (azure_rm) type credential +class ManageIQ::Providers::EmbeddedAnsible::AutomationManager::AzureCredential < ManageIQ::Providers::EmbeddedAnsible::AutomationManager::CloudCredential + include ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::AzureCredential end diff --git a/app/models/manageiq/providers/embedded_ansible/automation_manager/google_credential.rb b/app/models/manageiq/providers/embedded_ansible/automation_manager/google_credential.rb index 6bdfa51b389..e0ea8258ece 100644 --- a/app/models/manageiq/providers/embedded_ansible/automation_manager/google_credential.rb +++ b/app/models/manageiq/providers/embedded_ansible/automation_manager/google_credential.rb @@ -1,2 +1,3 @@ class ManageIQ::Providers::EmbeddedAnsible::AutomationManager::GoogleCredential < ManageIQ::Providers::EmbeddedAnsible::AutomationManager::CloudCredential + include ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::GoogleCredential end diff --git a/app/models/manageiq/providers/embedded_ansible/automation_manager/network_credential.rb b/app/models/manageiq/providers/embedded_ansible/automation_manager/network_credential.rb index 68bd424dab1..eaf3a86d6a6 100644 --- a/app/models/manageiq/providers/embedded_ansible/automation_manager/network_credential.rb +++ b/app/models/manageiq/providers/embedded_ansible/automation_manager/network_credential.rb @@ -1,3 +1,3 @@ -class ManageIQ::Providers::EmbeddedAnsible::AutomationManager::NetworkCredential < - ManageIQ::Providers::EmbeddedAnsible::AutomationManager::Credential +class ManageIQ::Providers::EmbeddedAnsible::AutomationManager::NetworkCredential < ManageIQ::Providers::EmbeddedAnsible::AutomationManager::Credential + include ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::NetworkCredential end diff --git a/app/models/manageiq/providers/embedded_ansible/automation_manager/openstack_credential.rb b/app/models/manageiq/providers/embedded_ansible/automation_manager/openstack_credential.rb index 0c01ae4f812..1cd57212429 100644 --- a/app/models/manageiq/providers/embedded_ansible/automation_manager/openstack_credential.rb +++ b/app/models/manageiq/providers/embedded_ansible/automation_manager/openstack_credential.rb @@ -1,2 +1,3 @@ class ManageIQ::Providers::EmbeddedAnsible::AutomationManager::OpenstackCredential < ManageIQ::Providers::EmbeddedAnsible::AutomationManager::CloudCredential + include ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::OpenstackCredential end diff --git a/app/models/manageiq/providers/embedded_ansible/automation_manager/rackspace_credential.rb b/app/models/manageiq/providers/embedded_ansible/automation_manager/rackspace_credential.rb index 48cb46f6849..b3856184589 100644 --- a/app/models/manageiq/providers/embedded_ansible/automation_manager/rackspace_credential.rb +++ b/app/models/manageiq/providers/embedded_ansible/automation_manager/rackspace_credential.rb @@ -1,2 +1,3 @@ class ManageIQ::Providers::EmbeddedAnsible::AutomationManager::RackspaceCredential < ManageIQ::Providers::EmbeddedAnsible::AutomationManager::CloudCredential + include ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::RackspaceCredential end diff --git a/app/models/manageiq/providers/embedded_ansible/automation_manager/satellite6_credential.rb b/app/models/manageiq/providers/embedded_ansible/automation_manager/satellite6_credential.rb index 7a97c0ec7c9..01c0b597a2f 100644 --- a/app/models/manageiq/providers/embedded_ansible/automation_manager/satellite6_credential.rb +++ b/app/models/manageiq/providers/embedded_ansible/automation_manager/satellite6_credential.rb @@ -1,2 +1,3 @@ class ManageIQ::Providers::EmbeddedAnsible::AutomationManager::Satellite6Credential < ManageIQ::Providers::EmbeddedAnsible::AutomationManager::CloudCredential + include ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::Satellite6Credential end diff --git a/lib/miq_automation_engine/service_models/miq_ae_service_manageiq-providers-ansible_tower-automation_manager-azure_classic_credential.rb b/lib/miq_automation_engine/service_models/miq_ae_service_manageiq-providers-ansible_tower-automation_manager-azure_classic_credential.rb new file mode 100644 index 00000000000..ae9fd559d4c --- /dev/null +++ b/lib/miq_automation_engine/service_models/miq_ae_service_manageiq-providers-ansible_tower-automation_manager-azure_classic_credential.rb @@ -0,0 +1,4 @@ +module MiqAeMethodService + class MiqAeServiceManageIQ_Providers_AnsibleTower_AutomationManager_AzureClassicCredential < MiqAeServiceManageIQ_Providers_AnsibleTower_AutomationManager_CloudCredential + end +end diff --git a/lib/miq_automation_engine/service_models/miq_ae_service_manageiq-providers-embedded_ansible-automation_manager-azure_classic_credential.rb b/lib/miq_automation_engine/service_models/miq_ae_service_manageiq-providers-embedded_ansible-automation_manager-azure_classic_credential.rb new file mode 100644 index 00000000000..715506b09b6 --- /dev/null +++ b/lib/miq_automation_engine/service_models/miq_ae_service_manageiq-providers-embedded_ansible-automation_manager-azure_classic_credential.rb @@ -0,0 +1,4 @@ +module MiqAeMethodService + class MiqAeServiceManageIQ_Providers_EmbeddedAnsible_AutomationManager_AzureClassicCredential < MiqAeServiceManageIQ_Providers_EmbeddedAnsible_AutomationManager_CloudCredential + end +end diff --git a/lib/tasks_private/spec_helper.rake b/lib/tasks_private/spec_helper.rake new file mode 100644 index 00000000000..a848e67a298 --- /dev/null +++ b/lib/tasks_private/spec_helper.rake @@ -0,0 +1,209 @@ +namespace :spec do + desc "Populate expected Tower objects for casssettes and spec tests" + task :populate_tower do + tower_host = ENV['TOWER_URL'] || "https://dev-ansible-tower3.example.com/api/v1/" + id = ENV['TOWER_USER'] || 'testuser' + password = ENV['TOWER_PASSWORD'] || 'secret' + PopulateTower.new(tower_host, id, password).create_dataset.counts + end + + desc "Get counts of various Tower objects" + task :tower_counts do + tower_host = ENV['TOWER_URL'] || "https://dev-ansible-tower3.example.com/api/v1/" + id = ENV['TOWER_USER'] || 'testuser' + password = ENV['TOWER_PASSWORD'] || 'secret' + PopulateTower.new(tower_host, id, password).counts + end +end + +class PopulateTower + # This is to create a set of objects in Tower and the objects will be captured in a vcr cassette for + # refresh spec tests. If we need to update the cassette, we can update/rerun this script to modify the objects + # and so spec expectations can be updated (hopefully) easily + # + # It will print out object counts that are needed for the spec + # Sample output on console + # + # === Re-creating Tower objects === + # deleting old spec_test_org: /api/v1/organizations/39/ + # Created name=spec_test_org manager_ref/ems_ref= 40 url=/api/v1/organizations/40/ + # Created name=hello_scm_cred manager_ref/ems_ref= 136 url=/api/v1/credentials/136/ + # Created name=hello_machine_cred manager_ref/ems_ref= 137 url=/api/v1/credentials/137/ + # Created name=hello_aws_cred manager_ref/ems_ref= 138 url=/api/v1/credentials/138/ + # Created name=hello_network_cred manager_ref/ems_ref= 139 url=/api/v1/credentials/139/ + # Created name=hello_inventory manager_ref/ems_ref= 110 url=/api/v1/inventories/110/ + # Created name=hello_vm manager_ref/ems_ref= 249 url=/api/v1/hosts/249/ + # Created name=hello_repo manager_ref/ems_ref= 591 url=/api/v1/projects/591/ + # deleting old hello_template: /api/v1/job_templates/589/ + # Created name=hello_template manager_ref/ems_ref= 592 url=/api/v1/job_templates/592/ + # deleting old hello_template_with_survey: /api/v1/job_templates/590/ + # Created name=hello_template_with_survey manager_ref/ems_ref= 593 url=/api/v1/job_templates/593/ + # created /api/v1/job_templates/593/ survey_spec + # === Object counts === + # configuration_script (job_templates) : 120 + # configuration_script_source (projects) : 32 + # configured_system (hosts) : 133 + # inventory_group (inventories) : 29 + # credential (credentials) : 47 + # + + require "faraday" + require 'faraday_middleware' + + def initialize(tower_host, id, password) + @conn = Faraday.new(tower_host, :ssl => {:verify => false}) do |c| + c.use(FaradayMiddleware::EncodeJson) + c.use(FaradayMiddleware::FollowRedirects, :limit => 3, :standards_compliant => true) + c.use Faraday::Response::RaiseError + c.adapter(Faraday.default_adapter) + c.basic_auth(id, password) + end + end + + def create_obj(uri, data) + del_obj(uri, data['name']) + obj = JSON.parse(@conn.post(uri, data).body) + puts "%s %s %s" % ["Created name=#{obj['name']}".ljust(40), "manager_ref/ems_ref= #{obj['id']}".ljust(30), "url=#{obj['url']}".ljust(10)] + obj + end + + def del_obj(uri, match_name) + data = JSON.parse(@conn.get(uri).body) + data['results'].each do |item| + next if item['name'] != match_name + puts " deleting old #{item['name']}: #{item['url']}" + resp = @conn.delete(item['url']) + sleep(20) # without sleep, sometimes subsequent create will return 400. Seems the deletion has some delay in Tower + resp + end + del_obj(data['next'], match_name) if data['next'] + end + + def create_dataset + + ssh_key_data = <<~HEREDOC + -----BEGIN RSA PRIVATE KEY----- + MIIEowIBAAKCAQEArIIYuT+hC2dhPaSx68zTxsh5OJ3byVLNoX7urk8XU20OjlK4 + 7++J7qqkHojXadRZrJI69/BFteqOpLr16fAuTdPnEV1dIolEApT9Gd5sEMb4SFFc + QmZPtOCuFMRjweQBVqAFboUDpzp1Yosjyiw34JWaT8n2SVYjgFB/6SZt9/r/ZHjU + qOnQi/VY1Zp6eWtjW+LpverzCDS7EAv06OLeu9CZtKLNl8DcgcCvCbuONPCsbaSv + FtK8kw4Ev/oJvoYa3RbMphx9dfj8WB0xOcdlDmJLlvqw/iuBX0Ktslm/nADcPcxK + sd37i8Ds2BRVIlr7F3Pblh77TIP+KWzM0lVs1wIDAQABAoIBAAdpj6ZmFYVn68W6 + TerT4kWoV40XO1prNGq8CYVz4Iy1Iur6ovesU0DuFB87wgXKGhBQODhvGo+2hGqP + ngFvUI4HjOYyHM5fF40E2dtCs2IFKqXw2QYBX2tmPBSoW6D5KxWNyq31CTMmT+Ts + FZ2aSMxdoUPMaci86smYq+ZYwGDnVfp2Da5G/GnvdmN+x51mMku5hETBMCOpR+n9 + Z4bYnayVGyLXBJvwhx3pdIprwzAvoiySFjp/tFk+knxiPK84dJ3tIfdtgXmf1Cp9 + pEqDQR3lnvwW0LrBG3c6MiJRlp+Pl3EOZNMLdmsaKODnInwO2U5BNPQuVHPdrObD + 1GXxcAECgYEA3xkFdbQ+I6QZH5OSNxPKRPcqcYuYewTwQKmiL3mSoICfV9dRNV3e + ewQpcca7h9dcjTtdyx8PfvCNFR/uh/FhMw+kRXb4bdKDbDrKcQ9x23RFatbsgN14 + q90a6FaEOjOXf0TiTNqP/LTFry1x2r1ZCDLtVcg5zWM/iwUgrO5qOJkCgYEAxfMV + ijLKtBg8Mbdhb2F29vIxMokZS++AhEjWuWl7d/DCApjCXzrfMaHnBC6b4Oppubkp + i40KnkaaDSy03U4hpcSPoPONbv2Fw4o/88ml71DF44D7kXCIFjSMvPLEtU2qLl4z + o4dHUSbtycBzn+wou+IdgPNqNnBYvl/eBNHvBu8CgYBQJ3M4uMtijsCgAasUsr2H + Ta4oIVllSX7wHIIywGEX3V5idu+sVs9qLzKcuCQESDHuZBfstHoix1ZI8rIGkYi0 + ibghZP8Ypful1PGK8Vuc1wdhvVo3alrClKvoMb1ME+EoTp1ns1bsGh60M4Wma0Uj + lviCS2/JBRF9Zxg4SWhMcQKBgQC3PLABv8a4M371HqXJLtWq/sLf3t1V15yF1888 + zxIGEw3kzXeQI7UcAp0Q1/xflV7NF0QH9EWSAhT0gR/jhEHNa0jxWsLfrTs3qTBO + AanjAEhOssUs+phexcJJ3giNNBmG1pjClaVEz95qVgYyUa/bTBK3nZwCTLk5cRDa + MWMsbQKBgCaNkKxH/gZBxVGbnjxbaxTGGq2TxNrKcKWEY4aIybcJ1kM0+UctHPy2 + ixDk3cLUN9/a24A9BI+3GkyuX9LmubW/HqmSErIxnw6fx8OGUsVc/oJxJFbJjXQv + QS4PQZOVkJOn3sZr4hlMMLEKA7NSP9O9BiXCQIycrCDN6YlZ+0/c + -----END RSA PRIVATE KEY----- + HEREDOC + + puts "=== Re-creating Tower objects ===" + # create test organization + uri = '/api/v1/organizations/' + data = {"name" => 'spec_test_org', "description" => "for miq spec tests"} + organization = create_obj(uri, data) + + # create scm cred + uri = '/api/v1/credentials/' + data = {"name" => "hello_scm_cred", "kind" => "scm", "username" => "admin", "password" => "abc", "organization" => organization['id']} + scm_credential = create_obj(uri, data) + + # create machine cred + data = {"name" => "hello_machine_cred", "kind" => "ssh", "username" => "admin", "password" => "abc", "organization" => organization['id']} + machine_credential = create_obj(uri, data) + + # create network cred + data = {"name" => "hello_network_cred", "kind" => "net", "username" => "admin", "password" => "abc", "organization" => organization['id']} + network_credential = create_obj(uri, data) + + # create cloud aws cred + data = {"name" => "hello_aws_cred", "kind" => "aws", "username" => "ABC", "password" => "abc", "organization" => organization['id']} + aws_credential = create_obj(uri, data) + + # create cloud openstack cred + data = {"name" => "hello_openstack_cred", "kind" => "openstack", "username" => "hello_rack", "password" => "abc", "host" => "openstack.com", "project" => "hello_rack", "organization" => organization['id']} + _openstack_credential = create_obj(uri, data) + + # create cloud google cred + data = {"name" => "hello_gce_cred", "kind" => "gce", "username" => "hello_gce@gce.com", "ssh_key_data" => ssh_key_data, "project" => "squeamish-ossifrage-123", "organization" => organization['id']} + _gce_credential = create_obj(uri, data) + + # create cloud rackspace cred + data = {"name" => "hello_rax_cred", "kind" => "rax", "username" => "admin", "password" => "abc", "organization" => organization['id']} + _rax_credential = create_obj(uri, data) + + # create cloud azure(RM) cred + data = {"name" => "hello_azure_cred", "kind" => "azure_rm", "username" => "admin", "password" => "abc", "subscription" => "sub_id", "tenant" => "ten_id", "secret" => "my_secret", "client" => "cli_id", "organization" => organization['id']} + _azure_credential = create_obj(uri, data) + + # create cloud azure(Classic) cred + data = {"name" => "hello_azure_classic_cred", "kind" => "azure", "username" => "admin", "ssh_key_data" => ssh_key_data, "organization" => organization['id']} + _azure_credential = create_obj(uri, data) + + # create cloud satellite6 cred + data = {"name" => "hello_sat_cred", "kind" => "satellite6", "username" => "admin", "password" => "abc", "host" => "s1.sat.com", "organization" => organization['id']} + _azure_credential = create_obj(uri, data) + + # create inventory + uri = '/api/v1/inventories/' + data = {"name" => "hello_inventory", "description" => "inventory for miq spec tests", "organization" => organization['id']} + inventory = create_obj(uri, data) + + # create a host + uri = '/api/v1/hosts/' + data = {"name" => "hello_vm", "instance_id" => "4233080d-7467-de61-76c9-c8307b6e4830", "inventory" => inventory['id']} + create_obj(uri, data) + + # create a project + uri = '/api/v1/projects/' + data = {"name" => 'hello_repo', "scm_url" => "https://github.com/jameswnl/ansible-examples", "scm_type" => "git", "credential" => scm_credential['id'], "organization" => organization['id']} + project = create_obj(uri, data) + + # create a job_template + uri = '/api/v1/job_templates/' + data = {"name" => 'hello_template', "description" => "test job", "job_type" => "run", "project" => project['id'], "playbook" => "hello_world.yml", "credential" => machine_credential['id'], "cloud_credential" => aws_credential['id'], "network_credential" => network_credential['id'], "inventory" => inventory['id'], "organization" => organization['id']} + create_obj(uri, data) + + # create a job_template with survey spec + uri = '/api/v1/job_templates/' + data = {"name" => "hello_template_with_survey", "description" => "test job with survey spec", "job_type" => "run", "project" => project['id'], "playbook" => "hello_world.yml", "credential" => machine_credential['id'], "inventory" => inventory['id'], "survey_enabled" => true, "organization" => organization['id']} + template = create_obj(uri, data) + # create survey spec + uri = "/api/v1/job_templates/#{template['id']}/survey_spec/" + data = {"name" => "Simple Survey", "description" => "Description of the simple survey", "spec" => [{"type" => "text", "question_name" => "example question", "question_description" => "What is your favorite color?", "variable" => "favorite_color", "required" => false, "default" => "blue"}]} + @conn.post(uri, data).body + puts "created #{template['url']} survey_spec" + self + end + + + def counts + puts "=== Object counts ===" + targets = { + 'configuration_script' => 'job_templates', + 'configuration_script_source' => 'projects', + 'configured_system' => 'hosts', + 'inventory_group' => 'inventories', + 'credential' => 'credentials' + } + targets.each do |miq_name, tower_name| + count = JSON.parse(@conn.get("/api/v1/#{tower_name}/").body)['count'] + puts("%s %s: %s" % [miq_name.ljust(30), "(#{tower_name})".ljust(20), count]) + end + self + end +end diff --git a/spec/lib/miq_automation_engine/service_models/miq_ae_service_manageiq-providers-ansible_tower-automation_manager-azure_classic_credential_spec.rb b/spec/lib/miq_automation_engine/service_models/miq_ae_service_manageiq-providers-ansible_tower-automation_manager-azure_classic_credential_spec.rb new file mode 100644 index 00000000000..f6e865de80f --- /dev/null +++ b/spec/lib/miq_automation_engine/service_models/miq_ae_service_manageiq-providers-ansible_tower-automation_manager-azure_classic_credential_spec.rb @@ -0,0 +1,5 @@ +describe MiqAeMethodService::MiqAeServiceManageIQ_Providers_AnsibleTower_AutomationManager_AzureClassicCredential do + it "get the service model class" do + expect { described_class }.not_to raise_error + end +end diff --git a/spec/support/ansible_shared/automation_manager/refresher.rb b/spec/support/ansible_shared/automation_manager/refresher.rb index 698db0b8c0f..584ca791586 100644 --- a/spec/support/ansible_shared/automation_manager/refresher.rb +++ b/spec/support/ansible_shared/automation_manager/refresher.rb @@ -1,5 +1,20 @@ shared_examples_for "ansible refresher" do |ansible_provider, manager_class, ems_type, cassette_path| + # Maintaining cassettes for new specs + # + # Option #1 + # ======== + # Update: re-create expected set of Tower objects and re-record cassettes + # 1. Modify the rake task lib/tasks_private/spec_helper.rake to modify the objects for new spec + # 2. rake manageiq:providers:ansible_tower:populate_tower + # (refer to the task doc for detail) + # 2. remove the old cassette + # 3. run the spec to create the cassette + # 4. update the expectations + # 5. change credentials in cassettes before commit + # + # Option #2 + # ======== # To re-record cassettes or to add cassettes you can add another inner `VCR.use_cassette` block to the # 'will perform a full refresh' example. When running specs, new requests are recorded to the innermost cassette and # can be played back from any level of nesting (it tries the innermost cassette first, then searches up the parent @@ -16,7 +31,9 @@ # * rm cassette ; run specs # * change back the order of cassettes # - # To change credentials in cassettes: + # + # To change credentials in cassettes + # ================================== # replace with defaults - before committing # ruby -pi -e 'gsub /yourdomain.com/, "example.com"; gsub /admin:smartvm/, "testuser:secret"' spec/vcr_cassettes/manageiq/providers/ansible_tower/automation_manager/*.yml # replace with your working credentials @@ -66,12 +83,8 @@ 2.times do # to re-record cassettes see comment at the beginning of this file VCR.use_cassette(cassette_path) do - VCR.use_cassette("#{cassette_path}_configuration_script_sources") do - VCR.use_cassette("#{cassette_path}_credentials") do - EmsRefresh.refresh(automation_manager) - expect(automation_manager.reload.last_refresh_error).to be_nil - end - end + EmsRefresh.refresh(automation_manager) + expect(automation_manager.reload.last_refresh_error).to be_nil end assert_counts assert_configured_system @@ -85,83 +98,103 @@ end def assert_counts - expect(Provider.count).to eq(1) + expect(Provider.count).to eq(1) expect(automation_manager).to have_attributes(:api_version => "3.0.1") - expect(automation_manager.configured_systems.count).to eq(84) - expect(automation_manager.configuration_scripts.count).to eq(11) - expect(automation_manager.inventory_groups.count).to eq(6) - expect(automation_manager.configuration_script_sources.count).to eq(6) - expect(automation_manager.configuration_script_payloads.count).to eq(438) - expect(automation_manager.credentials.count).to eq(8) + expect(automation_manager.configured_systems.count).to eq(23) + expect(automation_manager.configuration_scripts.count).to eq(122) + expect(automation_manager.inventory_groups.count).to eq(12) + expect(automation_manager.configuration_script_sources.count).to eq(29) + expect(automation_manager.configuration_script_payloads.count).to eq(2078) + expect(automation_manager.credentials.count).to eq(35) end def assert_credentials expect(expected_configuration_script.authentications.count).to eq(3) + + # machine_credential machine_credential = expected_configuration_script.authentications.find_by( :type => manager_class::MachineCredential ) expect(machine_credential).to have_attributes( - :name => "Demo Credential", + :name => "hello_machine_cred", :userid => "admin", ) + expect(machine_credential.options.keys).to match_array([:become_method, :become_password, :become_username, :ssh_key_data, :ssh_key_unlock, :vault_password]) expect(machine_credential.options.keys).to match_array(machine_credential.class::EXTRA_ATTRIBUTES.keys) - expect(machine_credential.options[:become_method]).to eq('su') - expect(machine_credential.options[:become_username]).to eq('root') + expect(machine_credential.options[:become_method]).to eq('') + expect(machine_credential.options[:become_username]).to eq('') + # network_credential network_credential = expected_configuration_script.authentications.find_by( :type => manager_class::NetworkCredential ) expect(network_credential).to have_attributes( - :name => "Demo Creds 2", - :userid => "awdd", + :name => "hello_network_cred", + :userid => "admin", ) - expect(network_credential.options.keys).to match_array(network_credential.class::EXTRA_ATTRIBUTES.keys) + expect(network_credential.options.keys).to match_array([:authorize, :authorize_password, :ssh_key_data, :ssh_key_unlock]) cloud_credential = expected_configuration_script.authentications.find_by( - :type => manager_class::VmwareCredential + :type => manager_class::AmazonCredential ) expect(cloud_credential).to have_attributes( - :name => "dev-vc60", - :userid => "MiqAnsibleUser@vsphere.local", + :name => "hello_aws_cred", + :userid => "ABC", ) - expect(cloud_credential.options.keys).to match_array(cloud_credential.class::EXTRA_ATTRIBUTES.keys) + expect(cloud_credential.options.keys).to match_array([:security_token]) + # scm_credential scm_credential = expected_configuration_script_source.authentication expect(scm_credential).to have_attributes( - :name => "db-github", - :userid => "syncrou" + :name => "hello_scm_cred", + :userid => "admin" ) - expect(scm_credential.options.keys).to match_array(scm_credential.class::EXTRA_ATTRIBUTES.keys) + expect(scm_credential.options.keys).to match_array([:ssh_key_data, :ssh_key_unlock]) + + # other credential types + openstack_cred = automation_manager.credentials.find_by(:name => 'hello_openstack_cred') + expect(openstack_cred.type.split('::').last).to eq("OpenstackCredential") + gce_cred = automation_manager.credentials.find_by(:name => 'hello_gce_cred') + expect(gce_cred.type.split('::').last).to eq("GoogleCredential") + rackspace_cred = automation_manager.credentials.find_by(:name => 'hello_rax_cred') + expect(rackspace_cred.type.split('::').last).to eq("RackspaceCredential") + azure_cred = automation_manager.credentials.find_by(:name => 'hello_azure_cred') + expect(azure_cred.type.split('::').last).to eq("AzureCredential") + azure_classic_cred = automation_manager.credentials.find_by(:name => 'hello_azure_classic_cred') + expect(azure_classic_cred.type.split('::').last).to eq("AzureClassicCredential") + satellite6_cred = automation_manager.credentials.find_by(:name => 'hello_sat_cred') + expect(satellite6_cred.type.split('::').last).to eq("Satellite6Credential") end def assert_playbooks expect(expected_configuration_script_source.configuration_script_payloads.first).to be_an_instance_of(manager_class::Playbook) - expect(expected_configuration_script_source.configuration_script_payloads.count).to eq(8) - expect(expected_configuration_script_source.configuration_script_payloads.map(&:name)).to include('start_ec2.yml') + expect(expected_configuration_script_source.configuration_script_payloads.count).to eq(61) + expect(expected_configuration_script_source.configuration_script_payloads.map(&:name)).to include('jboss-standalone/site.yml') end def assert_configuration_script_sources - expect(automation_manager.configuration_script_sources.count).to eq(6) + expect(automation_manager.configuration_script_sources.count).to eq(29) + expect(expected_configuration_script_source).to be_an_instance_of(manager_class::ConfigurationScriptSource) expect(expected_configuration_script_source).to have_attributes( - :name => 'DB_Github', - :description => 'DB Playbooks', + :name => 'hello_repo', + :description => '', :scm_type => 'git', - :scm_url => 'https://github.com/syncrou/playbooks', - :scm_branch => 'master', + :scm_url => 'https://github.com/jameswnl/ansible-examples', + :scm_branch => '', :scm_clean => false, :scm_delete_on_update => false, - :scm_update_on_launch => true, + :scm_update_on_launch => false, :status => 'successful' ) - expect(expected_configuration_script_source.authentication.name).to eq('db-github') + expect(expected_configuration_script_source.authentication.name).to eq('hello_scm_cred') end def assert_configured_system expect(expected_configured_system).to have_attributes( :type => manager_class::ConfiguredSystem.name, - :hostname => "Ansible-Host", - :manager_ref => "3", + :hostname => "hello_vm", + :manager_ref => "252", :virtual_instance_ref => "4233080d-7467-de61-76c9-c8307b6e4830", ) expect(expected_configured_system.counterpart).to eq(expected_counterpart_vm) @@ -170,34 +203,34 @@ def assert_configured_system def assert_configuration_script_with_nil_survey_spec expect(expected_configuration_script).to have_attributes( - :description => "Ansible-JobTemplate-Description", - :manager_ref => "80", - :name => "Ansible-JobTemplate", + :name => "hello_template", + :description => "test job", + :manager_ref => "604", :survey_spec => {}, - :variables => {'abc' => 123}, + :variables => {}, ) - expect(expected_configuration_script.inventory_root_group).to have_attributes(:ems_ref => "2") + # expect(expected_configuration_script.inventory_root_group).to have_attributes(:ems_ref => "1") expect(expected_configuration_script.parent.name).to eq('hello_world.yml') - expect(expected_configuration_script.parent.configuration_script_source.manager_ref).to eq('37') + # expect(expected_configuration_script.parent.configuration_script_source.manager_ref).to eq('37') end def assert_configuration_script_with_survey_spec - system = automation_manager.configuration_scripts.where(:name => "Ansible-JobTemplate-Survey").first + system = automation_manager.configuration_scripts.where(:name => "hello_template_with_survey").first expect(system).to have_attributes( - :name => "Ansible-JobTemplate-Survey", - :description => "Ansible-JobTemplate-Description", - :manager_ref => "81", - :variables => {'abc' => 123} + :name => "hello_template_with_survey", + :description => "test job with survey spec", + :manager_ref => "605", + :variables => {} ) survey = system.survey_spec expect(survey).to be_a Hash - expect(survey['spec'].first['question_name']).to eq('Survey') + expect(survey['spec'].first['question_name']).to eq('example question') end def assert_inventory_root_group expect(expected_inventory_root_group).to have_attributes( - :name => "Dev-VC60", - :ems_ref => "2", + :name => "hello_inventory", + :ems_ref => "115", :type => "ManageIQ::Providers::AutomationManager::InventoryRootGroup", ) end @@ -205,18 +238,18 @@ def assert_inventory_root_group private def expected_configured_system - @expected_configured_system ||= automation_manager.configured_systems.where(:hostname => "Ansible-Host").first + @expected_configured_system ||= automation_manager.configured_systems.where(:hostname => "hello_vm").first end def expected_configuration_script - @expected_configuration_script ||= automation_manager.configuration_scripts.where(:name => "Ansible-JobTemplate").first + @expected_configuration_script ||= automation_manager.configuration_scripts.where(:name => "hello_template").first end def expected_inventory_root_group - @expected_inventory_root_group ||= automation_manager.inventory_groups.where(:name => "Dev-VC60").first + @expected_inventory_root_group ||= automation_manager.inventory_groups.where(:name => "hello_inventory").first end def expected_configuration_script_source - @expected_configuration_script_source ||= automation_manager.configuration_script_sources.find_by(:name => 'DB_Github') + @expected_configuration_script_source ||= automation_manager.configuration_script_sources.find_by(:name => 'hello_repo') end end diff --git a/spec/vcr_cassettes/manageiq/providers/ansible_tower/automation_manager/refresher.yml b/spec/vcr_cassettes/manageiq/providers/ansible_tower/automation_manager/refresher.yml index 30d09ef17b9..56e5a613e86 100644 --- a/spec/vcr_cassettes/manageiq/providers/ansible_tower/automation_manager/refresher.yml +++ b/spec/vcr_cassettes/manageiq/providers/ansible_tower/automation_manager/refresher.yml @@ -19,7 +19,7 @@ http_interactions: message: MOVED PERMANENTLY headers: Date: - - Thu, 09 Feb 2017 10:37:42 GMT + - Mon, 14 Aug 2017 20:35:21 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Location: @@ -32,7 +32,7 @@ http_interactions: encoding: UTF-8 string: '' http_version: - recorded_at: Thu, 09 Feb 2017 09:37:43 GMT + recorded_at: Mon, 14 Aug 2017 20:35:20 GMT - request: method: get uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/config/ @@ -52,7 +52,7 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:42 GMT + - Mon, 14 Aug 2017 20:35:21 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: @@ -60,9 +60,9 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.217s + - 0.221s Content-Length: - - '9766' + - '9800' Content-Type: - application/json body: @@ -263,31 +263,31 @@ http_interactions: aWJsZSBUb3dlcuKAnSBhcmUgcmVnaXN0ZXJlZCB0cmFkZW1hcmtzIG9mIFJl ZCBIYXQsIEluYy4gIEFsbCBvdGhlciB0cmFkZW1hcmtzIGFyZSB0aGUgcHJv cGVydHkgb2YgdGhlaXIgcmVzcGVjdGl2ZSBvd25lcnMuXG4iLCJsaWNlbnNl - X2luZm8iOnsiZGVwbG95bWVudF9pZCI6ImEzZGJkYzdmNTRlNDlhNjAzN2M0 - MzFmYTc4YmZmZTc0NjY3ZmRhY2EiLCJzdWJzY3JpcHRpb25fbmFtZSI6IkFu - c2libGUgVG93ZXIgYnkgUmVkIEhhdCwgU3RhbmRhcmQgKDEwMCBNYW5hZ2Vk - IE5vZGVzKSIsImN1cnJlbnRfaW5zdGFuY2VzIjo4MywiZmVhdHVyZXMiOnsi - c3VydmV5cyI6dHJ1ZSwibXVsdGlwbGVfb3JnYW5pemF0aW9ucyI6dHJ1ZSwi - c3lzdGVtX3RyYWNraW5nIjp0cnVlLCJlbnRlcnByaXNlX2F1dGgiOnRydWUs - InJlYnJhbmRpbmciOnRydWUsImFjdGl2aXR5X3N0cmVhbXMiOnRydWUsImxk - YXAiOnRydWUsImhhIjp0cnVlfSwiZGF0ZV9leHBpcmVkIjpmYWxzZSwiYXZh - aWxhYmxlX2luc3RhbmNlcyI6MTAwLCJob3N0bmFtZSI6ImZmNmI5ZTFmNTYx - NTRhNjFiZWViNWE0ZGJkY2EzMjFhIiwiZnJlZV9pbnN0YW5jZXMiOjE3LCJp - bnN0YW5jZV9jb3VudCI6MTAwLCJ0aW1lX3JlbWFpbmluZyI6MzEyMTExNTcs - ImNvbXBsaWFudCI6dHJ1ZSwiZ3JhY2VfcGVyaW9kX3JlbWFpbmluZyI6MzM4 - MDMxNTcsImNvbnRhY3RfZW1haWwiOiJqb2VzbWl0QHJlZGhhdC5jb20iLCJj - b21wYW55X25hbWUiOiJSZWQgSGF0LCBJbmMuIiwiZGF0ZV93YXJuaW5nIjpm - YWxzZSwibGljZW5zZV90eXBlIjoiZW50ZXJwcmlzZSIsImNvbnRhY3RfbmFt - ZSI6IkpvZSAgU21pdGgiLCJsaWNlbnNlX2RhdGUiOjE1MTc4NDc4MTksImxp - Y2Vuc2Vfa2V5IjoiZWQ5ZDAwZjFhMjU0ZTJiMGI3NzBiYWViMmIyNjg4YzQz - N2U5ZGVlNDE3OTY2N2RmYmZmY2QxOTNlNTA4YTI2MyIsInZhbGlkX2tleSI6 - dHJ1ZX0sImFuYWx5dGljc19zdGF0dXMiOiJkZXRhaWxlZCIsInZlcnNpb24i - OiIzLjAuMSIsInByb2plY3RfYmFzZV9kaXIiOiIvdmFyL2xpYi9hd3gvcHJv - amVjdHMiLCJ0aW1lX3pvbmUiOiJBbWVyaWNhL05ld19Zb3JrIiwiYW5zaWJs - ZV92ZXJzaW9uIjoiMi4xLjAuMCIsInByb2plY3RfbG9jYWxfcGF0aHMiOltd - fQ== - http_version: - recorded_at: Thu, 09 Feb 2017 09:37:44 GMT + X2luZm8iOnsiZGVwbG95bWVudF9pZCI6IjE1YmViMDE2MmNlNmQ3YTNiMzVm + NzVjZjYxMDY0ZjJmMDM2Mjk3MDgiLCJzdWJzY3JpcHRpb25fbmFtZSI6IkFu + c2libGUgVG93ZXIgYnkgUmVkIEhhdCwgU3RhbmRhcmQgKDEwMDAwIE1hbmFn + ZWQgTm9kZXMpIiwiY3VycmVudF9pbnN0YW5jZXMiOjE0LCJmZWF0dXJlcyI6 + eyJzdXJ2ZXlzIjp0cnVlLCJtdWx0aXBsZV9vcmdhbml6YXRpb25zIjp0cnVl + LCJzeXN0ZW1fdHJhY2tpbmciOnRydWUsImVudGVycHJpc2VfYXV0aCI6dHJ1 + ZSwicmVicmFuZGluZyI6dHJ1ZSwiYWN0aXZpdHlfc3RyZWFtcyI6dHJ1ZSwi + bGRhcCI6dHJ1ZSwiaGEiOnRydWV9LCJkYXRlX2V4cGlyZWQiOmZhbHNlLCJh + dmFpbGFibGVfaW5zdGFuY2VzIjoxMDAwMCwiaG9zdG5hbWUiOiIxMjk0ZGQ2 + MzAxMjY0NDIxOGI1MmExN2I2YmM0MzBlZCIsImZyZWVfaW5zdGFuY2VzIjo5 + OTg2LCJpbnN0YW5jZV9jb3VudCI6MTAwMDAsInRpbWVfcmVtYWluaW5nIjox + NTk2NzE4MSwiY29tcGxpYW50Ijp0cnVlLCJncmFjZV9wZXJpb2RfcmVtYWlu + aW5nIjoxODU1OTE4MSwiY29udGFjdF9lbWFpbCI6ImpvZXNtaXRAcmVkaGF0 + LmNvbSIsImNvbXBhbnlfbmFtZSI6IlJlZCBIYXQsIEluYy4iLCJkYXRlX3dh + cm5pbmciOmZhbHNlLCJsaWNlbnNlX3R5cGUiOiJlbnRlcnByaXNlIiwiY29u + dGFjdF9uYW1lIjoiSm9lICBTbWl0aCIsImxpY2Vuc2VfZGF0ZSI6MTUxODcx + MDEwMiwibGljZW5zZV9rZXkiOiIwM2NiYzNlNzM3OWViM2Y3ZTFmZDEzOWVj + NjkyZDg1YjliNmRhNDNkOWNiY2IwY2JiMmQ0MzYzOTliOWQ2OThjIiwidmFs + aWRfa2V5Ijp0cnVlfSwiYW5hbHl0aWNzX3N0YXR1cyI6ImRldGFpbGVkIiwi + dmVyc2lvbiI6IjMuMC4xIiwicHJvamVjdF9iYXNlX2RpciI6Ii92YXIvbGli + L2F3eC9wcm9qZWN0cyIsInRpbWVfem9uZSI6IkFtZXJpY2EvTmV3X1lvcmsi + LCJhbnNpYmxlX3ZlcnNpb24iOiIyLjEuMC4wIiwicHJvamVjdF9sb2NhbF9w + YXRocyI6WyJqd29uZ19yZXBvIiwiandvbmdfcmVwbzIiXX0= + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:21 GMT - request: method: get uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/inventories @@ -307,7 +307,7 @@ http_interactions: message: MOVED PERMANENTLY headers: Date: - - Thu, 09 Feb 2017 10:37:43 GMT + - Mon, 14 Aug 2017 20:35:22 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Location: @@ -320,7 +320,7 @@ http_interactions: encoding: UTF-8 string: '' http_version: - recorded_at: Thu, 09 Feb 2017 09:37:44 GMT + recorded_at: Mon, 14 Aug 2017 20:35:21 GMT - request: method: get uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/inventories/ @@ -340,7 +340,7 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:44 GMT + - Mon, 14 Aug 2017 20:35:22 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: @@ -348,51 +348,93 @@ http_interactions: Allow: - GET, POST, HEAD, OPTIONS X-Api-Time: - - 0.089s + - 0.117s Content-Length: - - '11790' + - '23274' Content-Type: - application/json body: encoding: UTF-8 - string: '{"count":6,"next":null,"previous":null,"results":[{"id":6,"type":"inventory","url":"/api/v1/inventories/6/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/6/job_templates/","scan_job_templates":"/api/v1/inventories/6/scan_job_templates/","variable_data":"/api/v1/inventories/6/variable_data/","root_groups":"/api/v1/inventories/6/root_groups/","object_roles":"/api/v1/inventories/6/object_roles/","ad_hoc_commands":"/api/v1/inventories/6/ad_hoc_commands/","script":"/api/v1/inventories/6/script/","tree":"/api/v1/inventories/6/tree/","access_list":"/api/v1/inventories/6/access_list/","hosts":"/api/v1/inventories/6/hosts/","groups":"/api/v1/inventories/6/groups/","activity_stream":"/api/v1/inventories/6/activity_stream/","inventory_sources":"/api/v1/inventories/6/inventory_sources/","organization":"/api/v1/organizations/3/"},"summary_fields":{"organization":{"id":3,"name":"ACME + string: '{"count":12,"next":null,"previous":null,"results":[{"id":6,"type":"inventory","url":"/api/v1/inventories/6/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/6/job_templates/","scan_job_templates":"/api/v1/inventories/6/scan_job_templates/","variable_data":"/api/v1/inventories/6/variable_data/","root_groups":"/api/v1/inventories/6/root_groups/","object_roles":"/api/v1/inventories/6/object_roles/","ad_hoc_commands":"/api/v1/inventories/6/ad_hoc_commands/","script":"/api/v1/inventories/6/script/","tree":"/api/v1/inventories/6/tree/","access_list":"/api/v1/inventories/6/access_list/","hosts":"/api/v1/inventories/6/hosts/","groups":"/api/v1/inventories/6/groups/","activity_stream":"/api/v1/inventories/6/activity_stream/","inventory_sources":"/api/v1/inventories/6/inventory_sources/","organization":"/api/v1/organizations/3/"},"summary_fields":{"organization":{"id":3,"name":"ACME Corp","description":"Which belongs to goern"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"use_role":{"description":"Can use the inventory in a job template","id":110,"name":"Use"},"admin_role":{"description":"Can manage all aspects of the inventory","id":108,"name":"Admin"},"adhoc_role":{"description":"May run ad hoc commands on an inventory","id":107,"name":"Ad Hoc"},"update_role":{"description":"May update project or inventory or group using the configured source update system","id":111,"name":"Update"},"read_role":{"description":"May - view settings for the inventory","id":109,"name":"Read"}}},"created":"2017-01-30T10:53:48.130Z","modified":"2017-01-30T11:28:59.847Z","name":"acme-corp","description":"","organization":3,"variables":"---\nOCP_URL: + view settings for the inventory","id":109,"name":"Read"}}},"created":"2017-01-30T10:53:48.130Z","modified":"2017-02-23T17:43:39.928Z","name":"acme-corp","description":"","organization":3,"variables":"---\nOCP_URL: https://acme-ocp3-haproxy-0.acme.e2e.bos.redhat.com:8443\nOCP_MASTER: acme-ocp3-haproxy-0.acme.e2e.bos.redhat.com\nOCP_USER: - pltops\n\nOCP_PROJECT: coolstore-dev\nARTIFACTORY_API_URL: http://acme-dev-infra-artifactory.acme.e2e.bos.redhat.com:8081/artifactory/api/","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":2,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},{"id":7,"type":"inventory","url":"/api/v1/inventories/7/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/7/job_templates/","scan_job_templates":"/api/v1/inventories/7/scan_job_templates/","variable_data":"/api/v1/inventories/7/variable_data/","root_groups":"/api/v1/inventories/7/root_groups/","object_roles":"/api/v1/inventories/7/object_roles/","ad_hoc_commands":"/api/v1/inventories/7/ad_hoc_commands/","script":"/api/v1/inventories/7/script/","tree":"/api/v1/inventories/7/tree/","access_list":"/api/v1/inventories/7/access_list/","hosts":"/api/v1/inventories/7/hosts/","groups":"/api/v1/inventories/7/groups/","activity_stream":"/api/v1/inventories/7/activity_stream/","inventory_sources":"/api/v1/inventories/7/inventory_sources/","organization":"/api/v1/organizations/1/"},"summary_fields":{"organization":{"id":1,"name":"Default","description":""},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"use_role":{"description":"Can - use the inventory in a job template","id":230,"name":"Use"},"admin_role":{"description":"Can - manage all aspects of the inventory","id":228,"name":"Admin"},"adhoc_role":{"description":"May - run ad hoc commands on an inventory","id":227,"name":"Ad Hoc"},"update_role":{"description":"May - update project or inventory or group using the configured source update system","id":231,"name":"Update"},"read_role":{"description":"May - view settings for the inventory","id":229,"name":"Read"}}},"created":"2017-02-08T21:53:20.409Z","modified":"2017-02-08T21:54:14.473Z","name":"bill","description":"bill - test","organization":1,"variables":"any: thing","has_active_failures":false,"total_hosts":0,"hosts_with_active_failures":0,"total_groups":1,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},{"id":5,"type":"inventory","url":"/api/v1/inventories/5/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/5/job_templates/","scan_job_templates":"/api/v1/inventories/5/scan_job_templates/","variable_data":"/api/v1/inventories/5/variable_data/","root_groups":"/api/v1/inventories/5/root_groups/","object_roles":"/api/v1/inventories/5/object_roles/","ad_hoc_commands":"/api/v1/inventories/5/ad_hoc_commands/","script":"/api/v1/inventories/5/script/","tree":"/api/v1/inventories/5/tree/","access_list":"/api/v1/inventories/5/access_list/","hosts":"/api/v1/inventories/5/hosts/","groups":"/api/v1/inventories/5/groups/","activity_stream":"/api/v1/inventories/5/activity_stream/","inventory_sources":"/api/v1/inventories/5/inventory_sources/","organization":"/api/v1/organizations/1/"},"summary_fields":{"organization":{"id":1,"name":"Default","description":""},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"use_role":{"description":"Can - use the inventory in a job template","id":101,"name":"Use"},"admin_role":{"description":"Can - manage all aspects of the inventory","id":99,"name":"Admin"},"adhoc_role":{"description":"May - run ad hoc commands on an inventory","id":98,"name":"Ad Hoc"},"update_role":{"description":"May - update project or inventory or group using the configured source update system","id":102,"name":"Update"},"read_role":{"description":"May - view settings for the inventory","id":100,"name":"Read"}}},"created":"2017-01-24T21:45:07.434Z","modified":"2017-01-24T21:45:07.434Z","name":"db_test_inventory","description":"","organization":1,"variables":"","has_active_failures":false,"total_hosts":0,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},{"id":1,"type":"inventory","url":"/api/v1/inventories/1/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/1/job_templates/","scan_job_templates":"/api/v1/inventories/1/scan_job_templates/","variable_data":"/api/v1/inventories/1/variable_data/","root_groups":"/api/v1/inventories/1/root_groups/","object_roles":"/api/v1/inventories/1/object_roles/","ad_hoc_commands":"/api/v1/inventories/1/ad_hoc_commands/","script":"/api/v1/inventories/1/script/","tree":"/api/v1/inventories/1/tree/","access_list":"/api/v1/inventories/1/access_list/","hosts":"/api/v1/inventories/1/hosts/","groups":"/api/v1/inventories/1/groups/","activity_stream":"/api/v1/inventories/1/activity_stream/","inventory_sources":"/api/v1/inventories/1/inventory_sources/","organization":"/api/v1/organizations/1/"},"summary_fields":{"organization":{"id":1,"name":"Default","description":""},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"use_role":{"description":"Can - use the inventory in a job template","id":18,"name":"Use"},"admin_role":{"description":"Can - manage all aspects of the inventory","id":16,"name":"Admin"},"adhoc_role":{"description":"May - run ad hoc commands on an inventory","id":15,"name":"Ad Hoc"},"update_role":{"description":"May - update project or inventory or group using the configured source update system","id":19,"name":"Update"},"read_role":{"description":"May - view settings for the inventory","id":17,"name":"Read"}}},"created":"2016-08-02T17:57:03.135Z","modified":"2017-01-24T21:42:36.042Z","name":"Demo - Inventory","description":"","organization":1,"variables":"","has_active_failures":false,"total_hosts":2,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},{"id":2,"type":"inventory","url":"/api/v1/inventories/2/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/2/job_templates/","scan_job_templates":"/api/v1/inventories/2/scan_job_templates/","variable_data":"/api/v1/inventories/2/variable_data/","root_groups":"/api/v1/inventories/2/root_groups/","object_roles":"/api/v1/inventories/2/object_roles/","ad_hoc_commands":"/api/v1/inventories/2/ad_hoc_commands/","script":"/api/v1/inventories/2/script/","tree":"/api/v1/inventories/2/tree/","access_list":"/api/v1/inventories/2/access_list/","hosts":"/api/v1/inventories/2/hosts/","groups":"/api/v1/inventories/2/groups/","activity_stream":"/api/v1/inventories/2/activity_stream/","inventory_sources":"/api/v1/inventories/2/inventory_sources/","organization":"/api/v1/organizations/1/"},"summary_fields":{"organization":{"id":1,"name":"Default","description":""},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"use_role":{"description":"Can - use the inventory in a job template","id":26,"name":"Use"},"admin_role":{"description":"Can - manage all aspects of the inventory","id":24,"name":"Admin"},"adhoc_role":{"description":"May - run ad hoc commands on an inventory","id":23,"name":"Ad Hoc"},"update_role":{"description":"May - update project or inventory or group using the configured source update system","id":27,"name":"Update"},"read_role":{"description":"May - view settings for the inventory","id":25,"name":"Read"}}},"created":"2016-08-30T22:38:00.334Z","modified":"2016-10-12T18:19:16.212Z","name":"Dev-VC60","description":"","organization":1,"variables":"---","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},{"id":4,"type":"inventory","url":"/api/v1/inventories/4/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/4/job_templates/","scan_job_templates":"/api/v1/inventories/4/scan_job_templates/","variable_data":"/api/v1/inventories/4/variable_data/","root_groups":"/api/v1/inventories/4/root_groups/","object_roles":"/api/v1/inventories/4/object_roles/","ad_hoc_commands":"/api/v1/inventories/4/ad_hoc_commands/","script":"/api/v1/inventories/4/script/","tree":"/api/v1/inventories/4/tree/","access_list":"/api/v1/inventories/4/access_list/","hosts":"/api/v1/inventories/4/hosts/","groups":"/api/v1/inventories/4/groups/","activity_stream":"/api/v1/inventories/4/activity_stream/","inventory_sources":"/api/v1/inventories/4/inventory_sources/","organization":"/api/v1/organizations/1/"},"summary_fields":{"organization":{"id":1,"name":"Default","description":""},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"use_role":{"description":"Can - use the inventory in a job template","id":65,"name":"Use"},"admin_role":{"description":"Can - manage all aspects of the inventory","id":63,"name":"Admin"},"adhoc_role":{"description":"May - run ad hoc commands on an inventory","id":62,"name":"Ad Hoc"},"update_role":{"description":"May - update project or inventory or group using the configured source update system","id":66,"name":"Update"},"read_role":{"description":"May - view settings for the inventory","id":64,"name":"Read"}}},"created":"2017-01-06T23:06:37.994Z","modified":"2017-01-06T23:06:37.994Z","name":"test","description":"","organization":1,"variables":"","has_active_failures":false,"total_hosts":0,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0}]}' - http_version: - recorded_at: Thu, 09 Feb 2017 09:37:45 GMT + pltops\n\nOCP_PROJECT: coolstore-dev\nARTIFACTORY_API_URL: http://acme-dev-infra-artifactory.acme.e2e.bos.redhat.com:8081/artifactory/api/","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":2,"groups_with_active_failures":1,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},{"id":63,"type":"inventory","url":"/api/v1/inventories/63/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/63/job_templates/","scan_job_templates":"/api/v1/inventories/63/scan_job_templates/","variable_data":"/api/v1/inventories/63/variable_data/","root_groups":"/api/v1/inventories/63/root_groups/","object_roles":"/api/v1/inventories/63/object_roles/","ad_hoc_commands":"/api/v1/inventories/63/ad_hoc_commands/","script":"/api/v1/inventories/63/script/","tree":"/api/v1/inventories/63/tree/","access_list":"/api/v1/inventories/63/access_list/","hosts":"/api/v1/inventories/63/hosts/","groups":"/api/v1/inventories/63/groups/","activity_stream":"/api/v1/inventories/63/activity_stream/","inventory_sources":"/api/v1/inventories/63/inventory_sources/","organization":"/api/v1/organizations/4/"},"summary_fields":{"organization":{"id":4,"name":"ManageIQ","description":"ManageIQ + Default Organization"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"use_role":{"description":"Can + use the inventory in a job template","id":1806,"name":"Use"},"admin_role":{"description":"Can + manage all aspects of the inventory","id":1804,"name":"Admin"},"adhoc_role":{"description":"May + run ad hoc commands on an inventory","id":1803,"name":"Ad Hoc"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1807,"name":"Update"},"read_role":{"description":"May + view settings for the inventory","id":1805,"name":"Read"}}},"created":"2017-03-30T18:19:27.962Z","modified":"2017-03-30T18:24:05.119Z","name":"bill-host1","description":"","organization":4,"variables":"---","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},{"id":116,"type":"inventory","url":"/api/v1/inventories/116/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/116/job_templates/","scan_job_templates":"/api/v1/inventories/116/scan_job_templates/","variable_data":"/api/v1/inventories/116/variable_data/","root_groups":"/api/v1/inventories/116/root_groups/","object_roles":"/api/v1/inventories/116/object_roles/","ad_hoc_commands":"/api/v1/inventories/116/ad_hoc_commands/","script":"/api/v1/inventories/116/script/","tree":"/api/v1/inventories/116/tree/","access_list":"/api/v1/inventories/116/access_list/","hosts":"/api/v1/inventories/116/hosts/","groups":"/api/v1/inventories/116/groups/","activity_stream":"/api/v1/inventories/116/activity_stream/","inventory_sources":"/api/v1/inventories/116/inventory_sources/","organization":"/api/v1/organizations/45/"},"summary_fields":{"organization":{"id":45,"name":"billy","description":"billy + Organization"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"use_role":{"description":"Can + use the inventory in a job template","id":3081,"name":"Use"},"admin_role":{"description":"Can + manage all aspects of the inventory","id":3079,"name":"Admin"},"adhoc_role":{"description":"May + run ad hoc commands on an inventory","id":3078,"name":"Ad Hoc"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":3082,"name":"Update"},"read_role":{"description":"May + view settings for the inventory","id":3080,"name":"Read"}}},"created":"2017-08-01T15:29:05.841Z","modified":"2017-08-01T15:29:10.802Z","name":"billy","description":"","organization":45,"variables":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},{"id":115,"type":"inventory","url":"/api/v1/inventories/115/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/115/job_templates/","scan_job_templates":"/api/v1/inventories/115/scan_job_templates/","variable_data":"/api/v1/inventories/115/variable_data/","root_groups":"/api/v1/inventories/115/root_groups/","object_roles":"/api/v1/inventories/115/object_roles/","ad_hoc_commands":"/api/v1/inventories/115/ad_hoc_commands/","script":"/api/v1/inventories/115/script/","tree":"/api/v1/inventories/115/tree/","access_list":"/api/v1/inventories/115/access_list/","hosts":"/api/v1/inventories/115/hosts/","groups":"/api/v1/inventories/115/groups/","activity_stream":"/api/v1/inventories/115/activity_stream/","inventory_sources":"/api/v1/inventories/115/inventory_sources/","organization":"/api/v1/organizations/44/"},"summary_fields":{"organization":{"id":44,"name":"spec_test_org","description":"for + miq spec tests"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"use_role":{"description":"Can + use the inventory in a job template","id":3045,"name":"Use"},"admin_role":{"description":"Can + manage all aspects of the inventory","id":3043,"name":"Admin"},"adhoc_role":{"description":"May + run ad hoc commands on an inventory","id":3042,"name":"Ad Hoc"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":3046,"name":"Update"},"read_role":{"description":"May + view settings for the inventory","id":3044,"name":"Read"}}},"created":"2017-07-14T18:46:22.153Z","modified":"2017-07-14T18:46:25.322Z","name":"hello_inventory","description":"inventory + for miq spec tests","organization":44,"variables":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},{"id":77,"type":"inventory","url":"/api/v1/inventories/77/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/77/job_templates/","scan_job_templates":"/api/v1/inventories/77/scan_job_templates/","variable_data":"/api/v1/inventories/77/variable_data/","root_groups":"/api/v1/inventories/77/root_groups/","object_roles":"/api/v1/inventories/77/object_roles/","ad_hoc_commands":"/api/v1/inventories/77/ad_hoc_commands/","script":"/api/v1/inventories/77/script/","tree":"/api/v1/inventories/77/tree/","access_list":"/api/v1/inventories/77/access_list/","hosts":"/api/v1/inventories/77/hosts/","groups":"/api/v1/inventories/77/groups/","activity_stream":"/api/v1/inventories/77/activity_stream/","inventory_sources":"/api/v1/inventories/77/inventory_sources/","organization":"/api/v1/organizations/2/"},"summary_fields":{"organization":{"id":2,"name":"Test + Org","description":"For tests"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"use_role":{"description":"Can + use the inventory in a job template","id":2102,"name":"Use"},"admin_role":{"description":"Can + manage all aspects of the inventory","id":2100,"name":"Admin"},"adhoc_role":{"description":"May + run ad hoc commands on an inventory","id":2099,"name":"Ad Hoc"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":2103,"name":"Update"},"read_role":{"description":"May + view settings for the inventory","id":2101,"name":"Read"}}},"created":"2017-06-19T19:45:37.207Z","modified":"2017-06-19T19:46:55.119Z","name":"jwong-i-group","description":"","organization":2,"variables":"---","has_active_failures":false,"total_hosts":8,"hosts_with_active_failures":0,"total_groups":14,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},{"id":38,"type":"inventory","url":"/api/v1/inventories/38/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/38/job_templates/","scan_job_templates":"/api/v1/inventories/38/scan_job_templates/","variable_data":"/api/v1/inventories/38/variable_data/","root_groups":"/api/v1/inventories/38/root_groups/","object_roles":"/api/v1/inventories/38/object_roles/","ad_hoc_commands":"/api/v1/inventories/38/ad_hoc_commands/","script":"/api/v1/inventories/38/script/","tree":"/api/v1/inventories/38/tree/","access_list":"/api/v1/inventories/38/access_list/","hosts":"/api/v1/inventories/38/hosts/","groups":"/api/v1/inventories/38/groups/","activity_stream":"/api/v1/inventories/38/activity_stream/","inventory_sources":"/api/v1/inventories/38/inventory_sources/","organization":"/api/v1/organizations/4/"},"summary_fields":{"organization":{"id":4,"name":"ManageIQ","description":"ManageIQ + Default Organization"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"use_role":{"description":"Can + use the inventory in a job template","id":1439,"name":"Use"},"admin_role":{"description":"Can + manage all aspects of the inventory","id":1437,"name":"Admin"},"adhoc_role":{"description":"May + run ad hoc commands on an inventory","id":1436,"name":"Ad Hoc"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1440,"name":"Update"},"read_role":{"description":"May + view settings for the inventory","id":1438,"name":"Read"}}},"created":"2017-03-22T21:57:46.280Z","modified":"2017-03-22T21:57:46.599Z","name":"ManageIQ + Default Inventory","description":"","organization":4,"variables":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},{"id":59,"type":"inventory","url":"/api/v1/inventories/59/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/59/job_templates/","scan_job_templates":"/api/v1/inventories/59/scan_job_templates/","variable_data":"/api/v1/inventories/59/variable_data/","root_groups":"/api/v1/inventories/59/root_groups/","object_roles":"/api/v1/inventories/59/object_roles/","ad_hoc_commands":"/api/v1/inventories/59/ad_hoc_commands/","script":"/api/v1/inventories/59/script/","tree":"/api/v1/inventories/59/tree/","access_list":"/api/v1/inventories/59/access_list/","hosts":"/api/v1/inventories/59/hosts/","groups":"/api/v1/inventories/59/groups/","activity_stream":"/api/v1/inventories/59/activity_stream/","inventory_sources":"/api/v1/inventories/59/inventory_sources/","organization":"/api/v1/organizations/4/"},"summary_fields":{"organization":{"id":4,"name":"ManageIQ","description":"ManageIQ + Default Organization"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"use_role":{"description":"Can + use the inventory in a job template","id":1780,"name":"Use"},"admin_role":{"description":"Can + manage all aspects of the inventory","id":1778,"name":"Admin"},"adhoc_role":{"description":"May + run ad hoc commands on an inventory","id":1777,"name":"Ad Hoc"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1781,"name":"Update"},"read_role":{"description":"May + view settings for the inventory","id":1779,"name":"Read"}}},"created":"2017-03-30T15:47:52.819Z","modified":"2017-03-30T15:47:53.497Z","name":"miq_aaa_playbook_no_resource_retirement_320","description":"","organization":4,"variables":"","has_active_failures":false,"total_hosts":2,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},{"id":8,"type":"inventory","url":"/api/v1/inventories/8/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/8/job_templates/","scan_job_templates":"/api/v1/inventories/8/scan_job_templates/","variable_data":"/api/v1/inventories/8/variable_data/","root_groups":"/api/v1/inventories/8/root_groups/","object_roles":"/api/v1/inventories/8/object_roles/","ad_hoc_commands":"/api/v1/inventories/8/ad_hoc_commands/","script":"/api/v1/inventories/8/script/","tree":"/api/v1/inventories/8/tree/","access_list":"/api/v1/inventories/8/access_list/","hosts":"/api/v1/inventories/8/hosts/","groups":"/api/v1/inventories/8/groups/","activity_stream":"/api/v1/inventories/8/activity_stream/","inventory_sources":"/api/v1/inventories/8/inventory_sources/","organization":"/api/v1/organizations/3/"},"summary_fields":{"organization":{"id":3,"name":"ACME + Corp","description":"Which belongs to goern"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"use_role":{"description":"Can + use the inventory in a job template","id":441,"name":"Use"},"admin_role":{"description":"Can + manage all aspects of the inventory","id":439,"name":"Admin"},"adhoc_role":{"description":"May + run ad hoc commands on an inventory","id":438,"name":"Ad Hoc"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":442,"name":"Update"},"read_role":{"description":"May + view settings for the inventory","id":440,"name":"Read"}}},"created":"2017-02-16T20:39:52.039Z","modified":"2017-05-08T15:16:06.659Z","name":"miq-default","description":"default + inventory","organization":3,"variables":"","has_active_failures":false,"total_hosts":2,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},{"id":53,"type":"inventory","url":"/api/v1/inventories/53/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/53/job_templates/","scan_job_templates":"/api/v1/inventories/53/scan_job_templates/","variable_data":"/api/v1/inventories/53/variable_data/","root_groups":"/api/v1/inventories/53/root_groups/","object_roles":"/api/v1/inventories/53/object_roles/","ad_hoc_commands":"/api/v1/inventories/53/ad_hoc_commands/","script":"/api/v1/inventories/53/script/","tree":"/api/v1/inventories/53/tree/","access_list":"/api/v1/inventories/53/access_list/","hosts":"/api/v1/inventories/53/hosts/","groups":"/api/v1/inventories/53/groups/","activity_stream":"/api/v1/inventories/53/activity_stream/","inventory_sources":"/api/v1/inventories/53/inventory_sources/","organization":"/api/v1/organizations/4/"},"summary_fields":{"organization":{"id":4,"name":"ManageIQ","description":"ManageIQ + Default Organization"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"use_role":{"description":"Can + use the inventory in a job template","id":1653,"name":"Use"},"admin_role":{"description":"Can + manage all aspects of the inventory","id":1651,"name":"Admin"},"adhoc_role":{"description":"May + run ad hoc commands on an inventory","id":1650,"name":"Ad Hoc"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1654,"name":"Update"},"read_role":{"description":"May + view settings for the inventory","id":1652,"name":"Read"}}},"created":"2017-03-27T16:30:19.562Z","modified":"2017-03-27T16:30:46.810Z","name":"miq_Madhu_Test_provision_17","description":"","organization":4,"variables":"","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},{"id":54,"type":"inventory","url":"/api/v1/inventories/54/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/54/job_templates/","scan_job_templates":"/api/v1/inventories/54/scan_job_templates/","variable_data":"/api/v1/inventories/54/variable_data/","root_groups":"/api/v1/inventories/54/root_groups/","object_roles":"/api/v1/inventories/54/object_roles/","ad_hoc_commands":"/api/v1/inventories/54/ad_hoc_commands/","script":"/api/v1/inventories/54/script/","tree":"/api/v1/inventories/54/tree/","access_list":"/api/v1/inventories/54/access_list/","hosts":"/api/v1/inventories/54/hosts/","groups":"/api/v1/inventories/54/groups/","activity_stream":"/api/v1/inventories/54/activity_stream/","inventory_sources":"/api/v1/inventories/54/inventory_sources/","organization":"/api/v1/organizations/4/"},"summary_fields":{"organization":{"id":4,"name":"ManageIQ","description":"ManageIQ + Default Organization"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"use_role":{"description":"Can + use the inventory in a job template","id":1662,"name":"Use"},"admin_role":{"description":"Can + manage all aspects of the inventory","id":1660,"name":"Admin"},"adhoc_role":{"description":"May + run ad hoc commands on an inventory","id":1659,"name":"Ad Hoc"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1663,"name":"Update"},"read_role":{"description":"May + view settings for the inventory","id":1661,"name":"Read"}}},"created":"2017-03-27T16:35:38.422Z","modified":"2017-03-27T16:35:59.024Z","name":"miq_Madhu_Test_provision_18","description":"","organization":4,"variables":"","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},{"id":58,"type":"inventory","url":"/api/v1/inventories/58/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/58/job_templates/","scan_job_templates":"/api/v1/inventories/58/scan_job_templates/","variable_data":"/api/v1/inventories/58/variable_data/","root_groups":"/api/v1/inventories/58/root_groups/","object_roles":"/api/v1/inventories/58/object_roles/","ad_hoc_commands":"/api/v1/inventories/58/ad_hoc_commands/","script":"/api/v1/inventories/58/script/","tree":"/api/v1/inventories/58/tree/","access_list":"/api/v1/inventories/58/access_list/","hosts":"/api/v1/inventories/58/hosts/","groups":"/api/v1/inventories/58/groups/","activity_stream":"/api/v1/inventories/58/activity_stream/","inventory_sources":"/api/v1/inventories/58/inventory_sources/","organization":"/api/v1/organizations/4/"},"summary_fields":{"organization":{"id":4,"name":"ManageIQ","description":"ManageIQ + Default Organization"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"use_role":{"description":"Can + use the inventory in a job template","id":1772,"name":"Use"},"admin_role":{"description":"Can + manage all aspects of the inventory","id":1770,"name":"Admin"},"adhoc_role":{"description":"May + run ad hoc commands on an inventory","id":1769,"name":"Ad Hoc"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1773,"name":"Update"},"read_role":{"description":"May + view settings for the inventory","id":1771,"name":"Read"}}},"created":"2017-03-29T17:59:44.321Z","modified":"2017-03-29T17:59:44.974Z","name":"miq_wei0328-2_provision_53","description":"","organization":4,"variables":"","has_active_failures":false,"total_hosts":2,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},{"id":57,"type":"inventory","url":"/api/v1/inventories/57/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/57/job_templates/","scan_job_templates":"/api/v1/inventories/57/scan_job_templates/","variable_data":"/api/v1/inventories/57/variable_data/","root_groups":"/api/v1/inventories/57/root_groups/","object_roles":"/api/v1/inventories/57/object_roles/","ad_hoc_commands":"/api/v1/inventories/57/ad_hoc_commands/","script":"/api/v1/inventories/57/script/","tree":"/api/v1/inventories/57/tree/","access_list":"/api/v1/inventories/57/access_list/","hosts":"/api/v1/inventories/57/hosts/","groups":"/api/v1/inventories/57/groups/","activity_stream":"/api/v1/inventories/57/activity_stream/","inventory_sources":"/api/v1/inventories/57/inventory_sources/","organization":"/api/v1/organizations/4/"},"summary_fields":{"organization":{"id":4,"name":"ManageIQ","description":"ManageIQ + Default Organization"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"use_role":{"description":"Can + use the inventory in a job template","id":1767,"name":"Use"},"admin_role":{"description":"Can + manage all aspects of the inventory","id":1765,"name":"Admin"},"adhoc_role":{"description":"May + run ad hoc commands on an inventory","id":1764,"name":"Ad Hoc"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1768,"name":"Update"},"read_role":{"description":"May + view settings for the inventory","id":1766,"name":"Read"}}},"created":"2017-03-29T14:13:26.602Z","modified":"2017-03-29T14:13:52.308Z","name":"miq_wei0328-2_retirement_51","description":"","organization":4,"variables":"","has_active_failures":true,"total_hosts":2,"hosts_with_active_failures":2,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0}]}' + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:21 GMT - request: method: get uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/hosts @@ -412,7 +454,7 @@ http_interactions: message: MOVED PERMANENTLY headers: Date: - - Thu, 09 Feb 2017 10:37:44 GMT + - Mon, 14 Aug 2017 20:35:22 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Location: @@ -425,7 +467,7 @@ http_interactions: encoding: UTF-8 string: '' http_version: - recorded_at: Thu, 09 Feb 2017 09:37:46 GMT + recorded_at: Mon, 14 Aug 2017 20:35:21 GMT - request: method: get uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/hosts/ @@ -445,7 +487,7 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:45 GMT + - Mon, 14 Aug 2017 20:35:22 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: @@ -453,700 +495,258 @@ http_interactions: Allow: - GET, POST, HEAD, OPTIONS X-Api-Time: - - 0.219s - Content-Length: - - '91587' + - 0.203s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 - string: '{"count":84,"next":"/api/v1/hosts/?page=2","previous":null,"results":[{"id":2,"type":"host","url":"/api/v1/hosts/2/","related":{"job_host_summaries":"/api/v1/hosts/2/job_host_summaries/","variable_data":"/api/v1/hosts/2/variable_data/","job_events":"/api/v1/hosts/2/job_events/","ad_hoc_commands":"/api/v1/hosts/2/ad_hoc_commands/","fact_versions":"/api/v1/hosts/2/fact_versions/","inventory_sources":"/api/v1/hosts/2/inventory_sources/","groups":"/api/v1/hosts/2/groups/","activity_stream":"/api/v1/hosts/2/activity_stream/","all_groups":"/api/v1/hosts/2/all_groups/","ad_hoc_command_events":"/api/v1/hosts/2/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:39.863Z","modified":"2016-08-31T16:59:43.314Z","name":"56_vm","description":"imported","inventory":2,"enabled":false,"instance_id":"420cd95f-e1f0-7ae4-5412-4a7e8d79296e","variables":"{\"vmware_privateMemory\": + string: '{"count":23,"next":null,"previous":null,"results":[{"id":168,"type":"host","url":"/api/v1/hosts/168/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/168/job_host_summaries/","variable_data":"/api/v1/hosts/168/variable_data/","job_events":"/api/v1/hosts/168/job_events/","ad_hoc_commands":"/api/v1/hosts/168/ad_hoc_commands/","fact_versions":"/api/v1/hosts/168/fact_versions/","inventory_sources":"/api/v1/hosts/168/inventory_sources/","groups":"/api/v1/hosts/168/groups/","activity_stream":"/api/v1/hosts/168/activity_stream/","all_groups":"/api/v1/hosts/168/all_groups/","ad_hoc_command_events":"/api/v1/hosts/168/ad_hoc_command_events/","inventory":"/api/v1/inventories/53/"},"summary_fields":{"inventory":{"id":53,"name":"miq_Madhu_Test_provision_17","description":"","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"recent_jobs":[]},"created":"2017-03-27T16:30:19.841Z","modified":"2017-03-27T16:30:46.789Z","name":"10.0.1.78","description":"","inventory":53,"enabled":true,"instance_id":"","variables":"","has_active_failures":true,"has_inventory_sources":false,"last_job":null,"last_job_host_summary":null},{"id":169,"type":"host","url":"/api/v1/hosts/169/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/169/job_host_summaries/","variable_data":"/api/v1/hosts/169/variable_data/","job_events":"/api/v1/hosts/169/job_events/","ad_hoc_commands":"/api/v1/hosts/169/ad_hoc_commands/","fact_versions":"/api/v1/hosts/169/fact_versions/","inventory_sources":"/api/v1/hosts/169/inventory_sources/","groups":"/api/v1/hosts/169/groups/","activity_stream":"/api/v1/hosts/169/activity_stream/","all_groups":"/api/v1/hosts/169/all_groups/","ad_hoc_command_events":"/api/v1/hosts/169/ad_hoc_command_events/","inventory":"/api/v1/inventories/54/"},"summary_fields":{"inventory":{"id":54,"name":"miq_Madhu_Test_provision_18","description":"","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"recent_jobs":[]},"created":"2017-03-27T16:35:38.703Z","modified":"2017-03-27T16:35:59.003Z","name":"10.0.1.78","description":"","inventory":54,"enabled":true,"instance_id":"","variables":"","has_active_failures":true,"has_inventory_sources":false,"last_job":null,"last_job_host_summary":null},{"id":178,"type":"host","url":"/api/v1/hosts/178/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/178/job_host_summaries/","variable_data":"/api/v1/hosts/178/variable_data/","job_events":"/api/v1/hosts/178/job_events/","ad_hoc_commands":"/api/v1/hosts/178/ad_hoc_commands/","fact_versions":"/api/v1/hosts/178/fact_versions/","inventory_sources":"/api/v1/hosts/178/inventory_sources/","groups":"/api/v1/hosts/178/groups/","activity_stream":"/api/v1/hosts/178/activity_stream/","all_groups":"/api/v1/hosts/178/all_groups/","ad_hoc_command_events":"/api/v1/hosts/178/ad_hoc_command_events/","inventory":"/api/v1/inventories/59/"},"summary_fields":{"inventory":{"id":59,"name":"miq_aaa_playbook_no_resource_retirement_320","description":"","has_active_failures":false,"total_hosts":2,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"recent_jobs":[]},"created":"2017-03-30T15:47:53.165Z","modified":"2017-03-30T15:47:53.165Z","name":"10.8.99.207","description":"","inventory":59,"enabled":true,"instance_id":"","variables":"","has_active_failures":false,"has_inventory_sources":false,"last_job":null,"last_job_host_summary":null},{"id":174,"type":"host","url":"/api/v1/hosts/174/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/174/job_host_summaries/","variable_data":"/api/v1/hosts/174/variable_data/","job_events":"/api/v1/hosts/174/job_events/","ad_hoc_commands":"/api/v1/hosts/174/ad_hoc_commands/","fact_versions":"/api/v1/hosts/174/fact_versions/","inventory_sources":"/api/v1/hosts/174/inventory_sources/","groups":"/api/v1/hosts/174/groups/","activity_stream":"/api/v1/hosts/174/activity_stream/","all_groups":"/api/v1/hosts/174/all_groups/","ad_hoc_command_events":"/api/v1/hosts/174/ad_hoc_command_events/","inventory":"/api/v1/inventories/57/"},"summary_fields":{"inventory":{"id":57,"name":"miq_wei0328-2_retirement_51","description":"","has_active_failures":true,"total_hosts":2,"hosts_with_active_failures":2,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"recent_jobs":[]},"created":"2017-03-29T14:13:26.918Z","modified":"2017-03-29T14:13:52.282Z","name":"10.8.99.207","description":"","inventory":57,"enabled":true,"instance_id":"","variables":"","has_active_failures":true,"has_inventory_sources":false,"last_job":null,"last_job_host_summary":null},{"id":176,"type":"host","url":"/api/v1/hosts/176/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/176/job_host_summaries/","variable_data":"/api/v1/hosts/176/variable_data/","job_events":"/api/v1/hosts/176/job_events/","ad_hoc_commands":"/api/v1/hosts/176/ad_hoc_commands/","fact_versions":"/api/v1/hosts/176/fact_versions/","inventory_sources":"/api/v1/hosts/176/inventory_sources/","groups":"/api/v1/hosts/176/groups/","activity_stream":"/api/v1/hosts/176/activity_stream/","all_groups":"/api/v1/hosts/176/all_groups/","ad_hoc_command_events":"/api/v1/hosts/176/ad_hoc_command_events/","inventory":"/api/v1/inventories/58/"},"summary_fields":{"inventory":{"id":58,"name":"miq_wei0328-2_provision_53","description":"","has_active_failures":false,"total_hosts":2,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"recent_jobs":[]},"created":"2017-03-29T17:59:44.662Z","modified":"2017-03-29T17:59:44.662Z","name":"10.8.99.207","description":"","inventory":58,"enabled":true,"instance_id":"","variables":"","has_active_failures":false,"has_inventory_sources":false,"last_job":null,"last_job_host_summary":null},{"id":175,"type":"host","url":"/api/v1/hosts/175/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/175/job_host_summaries/","variable_data":"/api/v1/hosts/175/variable_data/","job_events":"/api/v1/hosts/175/job_events/","ad_hoc_commands":"/api/v1/hosts/175/ad_hoc_commands/","fact_versions":"/api/v1/hosts/175/fact_versions/","inventory_sources":"/api/v1/hosts/175/inventory_sources/","groups":"/api/v1/hosts/175/groups/","activity_stream":"/api/v1/hosts/175/activity_stream/","all_groups":"/api/v1/hosts/175/all_groups/","ad_hoc_command_events":"/api/v1/hosts/175/ad_hoc_command_events/","inventory":"/api/v1/inventories/57/"},"summary_fields":{"inventory":{"id":57,"name":"miq_wei0328-2_retirement_51","description":"","has_active_failures":true,"total_hosts":2,"hosts_with_active_failures":2,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"recent_jobs":[]},"created":"2017-03-29T14:13:27.199Z","modified":"2017-03-29T14:13:52.287Z","name":"10.8.99.248","description":"","inventory":57,"enabled":true,"instance_id":"","variables":"","has_active_failures":true,"has_inventory_sources":false,"last_job":null,"last_job_host_summary":null},{"id":186,"type":"host","url":"/api/v1/hosts/186/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/186/job_host_summaries/","variable_data":"/api/v1/hosts/186/variable_data/","job_events":"/api/v1/hosts/186/job_events/","ad_hoc_commands":"/api/v1/hosts/186/ad_hoc_commands/","fact_versions":"/api/v1/hosts/186/fact_versions/","inventory_sources":"/api/v1/hosts/186/inventory_sources/","groups":"/api/v1/hosts/186/groups/","activity_stream":"/api/v1/hosts/186/activity_stream/","all_groups":"/api/v1/hosts/186/all_groups/","ad_hoc_command_events":"/api/v1/hosts/186/ad_hoc_command_events/","inventory":"/api/v1/inventories/63/"},"summary_fields":{"inventory":{"id":63,"name":"bill-host1","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"recent_jobs":[]},"created":"2017-03-30T18:24:05.073Z","modified":"2017-03-30T18:24:05.073Z","name":"10.8.99.248","description":"","inventory":63,"enabled":true,"instance_id":"","variables":"","has_active_failures":false,"has_inventory_sources":false,"last_job":null,"last_job_host_summary":null},{"id":179,"type":"host","url":"/api/v1/hosts/179/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/179/job_host_summaries/","variable_data":"/api/v1/hosts/179/variable_data/","job_events":"/api/v1/hosts/179/job_events/","ad_hoc_commands":"/api/v1/hosts/179/ad_hoc_commands/","fact_versions":"/api/v1/hosts/179/fact_versions/","inventory_sources":"/api/v1/hosts/179/inventory_sources/","groups":"/api/v1/hosts/179/groups/","activity_stream":"/api/v1/hosts/179/activity_stream/","all_groups":"/api/v1/hosts/179/all_groups/","ad_hoc_command_events":"/api/v1/hosts/179/ad_hoc_command_events/","inventory":"/api/v1/inventories/59/"},"summary_fields":{"inventory":{"id":59,"name":"miq_aaa_playbook_no_resource_retirement_320","description":"","has_active_failures":false,"total_hosts":2,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"recent_jobs":[]},"created":"2017-03-30T15:47:53.454Z","modified":"2017-03-30T15:47:53.454Z","name":"10.8.99.248","description":"","inventory":59,"enabled":true,"instance_id":"","variables":"","has_active_failures":false,"has_inventory_sources":false,"last_job":null,"last_job_host_summary":null},{"id":177,"type":"host","url":"/api/v1/hosts/177/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/177/job_host_summaries/","variable_data":"/api/v1/hosts/177/variable_data/","job_events":"/api/v1/hosts/177/job_events/","ad_hoc_commands":"/api/v1/hosts/177/ad_hoc_commands/","fact_versions":"/api/v1/hosts/177/fact_versions/","inventory_sources":"/api/v1/hosts/177/inventory_sources/","groups":"/api/v1/hosts/177/groups/","activity_stream":"/api/v1/hosts/177/activity_stream/","all_groups":"/api/v1/hosts/177/all_groups/","ad_hoc_command_events":"/api/v1/hosts/177/ad_hoc_command_events/","inventory":"/api/v1/inventories/58/"},"summary_fields":{"inventory":{"id":58,"name":"miq_wei0328-2_provision_53","description":"","has_active_failures":false,"total_hosts":2,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"recent_jobs":[]},"created":"2017-03-29T17:59:44.914Z","modified":"2017-03-29T17:59:44.914Z","name":"10.8.99.248","description":"","inventory":58,"enabled":true,"instance_id":"","variables":"","has_active_failures":false,"has_inventory_sources":false,"last_job":null,"last_job_host_summary":null},{"id":87,"type":"host","url":"/api/v1/hosts/87/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/87/job_host_summaries/","variable_data":"/api/v1/hosts/87/variable_data/","job_events":"/api/v1/hosts/87/job_events/","ad_hoc_commands":"/api/v1/hosts/87/ad_hoc_commands/","fact_versions":"/api/v1/hosts/87/fact_versions/","inventory_sources":"/api/v1/hosts/87/inventory_sources/","groups":"/api/v1/hosts/87/groups/","activity_stream":"/api/v1/hosts/87/activity_stream/","all_groups":"/api/v1/hosts/87/all_groups/","ad_hoc_command_events":"/api/v1/hosts/87/ad_hoc_command_events/","inventory":"/api/v1/inventories/8/","last_job":"/api/v1/jobs/876/","last_job_host_summary":"/api/v1/job_host_summaries/388/"},"summary_fields":{"last_job":{"id":876,"name":"lucy_print_output","description":"","finished":"2017-05-08T15:16:06.743Z","status":"successful","failed":false,"job_template_id":176,"job_template_name":"lucy_print_output"},"last_job_host_summary":{"id":388,"failed":false},"inventory":{"id":8,"name":"miq-default","description":"default + inventory","has_active_failures":false,"total_hosts":2,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"recent_jobs":[{"status":"successful","finished":"2017-05-08T15:16:06.743Z","id":876,"name":"lucy_print_output"},{"status":"failed","finished":"2017-05-08T15:14:52.896Z","id":874,"name":"lucy_print_output"}]},"created":"2017-02-16T21:06:41.807Z","modified":"2017-05-08T15:16:06.638Z","name":"127.0.0.1","description":"","inventory":8,"enabled":true,"instance_id":"","variables":"ansible_connection: + local","has_active_failures":false,"has_inventory_sources":false,"last_job":876,"last_job_host_summary":388},{"id":209,"type":"host","url":"/api/v1/hosts/209/","related":{"job_host_summaries":"/api/v1/hosts/209/job_host_summaries/","variable_data":"/api/v1/hosts/209/variable_data/","job_events":"/api/v1/hosts/209/job_events/","ad_hoc_commands":"/api/v1/hosts/209/ad_hoc_commands/","fact_versions":"/api/v1/hosts/209/fact_versions/","inventory_sources":"/api/v1/hosts/209/inventory_sources/","groups":"/api/v1/hosts/209/groups/","activity_stream":"/api/v1/hosts/209/activity_stream/","all_groups":"/api/v1/hosts/209/all_groups/","ad_hoc_command_events":"/api/v1/hosts/209/ad_hoc_command_events/","inventory":"/api/v1/inventories/77/"},"summary_fields":{"inventory":{"id":77,"name":"jwong-i-group","description":"","has_active_failures":false,"total_hosts":8,"hosts_with_active_failures":0,"total_groups":14,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2017-06-19T19:46:54.492Z","modified":"2017-06-19T19:46:54.956Z","name":"ag_test_1","description":"imported","inventory":77,"enabled":false,"instance_id":"4214f5d9-caa5-f280-18bf-86a32545d3bc","variables":"{\"vmware_privateMemory\": 0, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": 0, \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 7 (64-bit)\", \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": 0, - \"vmware_maxCpuUsage\": 2399, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": - \"ibm-x3550m4-03.example.com\", \"vmware_instanceUuid\": - \"500c097c-aa23-eddf-71b6-609859c29bf8\", \"vmware_distributedCpuEntitlement\": + \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"jwong-esxi3.example.com\", + \"vmware_instanceUuid\": \"501440fc-8659-7059-b306-d52462d3f460\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] 56_vm/56_vm.vmx\", \"vmware_guestState\": - \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": - \"toolsNotInstalled\", \"vmware_overallStatus\": \"green\", \"vmware_numCpu\": - 1, \"vmware_uuid\": \"420cd95f-e1f0-7ae4-5412-4a7e8d79296e\", \"vmware_installBootRequired\": - false, \"vmware_committed\": 195813, \"vmware_name\": \"56_vm\", \"vmware_toolsVersionStatus\": - \"guestToolsNotInstalled\", \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": - 2339536896, \"vmware_hostMemoryUsage\": 0, \"vmware_distributedMemoryEntitlement\": - 0, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"gray\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - false, \"vmware_toolsRunningStatus\": \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": - 0, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"Prod_ISOs_NFS\", - \"NFS Share\"], \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": - \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": \"poweredOff\", - \"vmware_guestId\": \"rhel7_64Guest\", \"vmware_numVirtualDisks\": 0, \"vmware_swappedMemory\": - 0, \"vmware_annotation\": \"Owner: v56 v56\\nEmail: 56@56.com\\nSource: ag_rhel_7\\n\\nMIQ - GUID=9205ac68-6ace-11e6-87a7-0050568cfade\", \"vmware_maxMemoryUsage\": 2048, - \"vmware_recordReplayState\": \"inactive\", \"vmware_unshared\": 0, \"vmware_sharedMemory\": - 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":13,"type":"host","url":"/api/v1/hosts/13/","related":{"job_host_summaries":"/api/v1/hosts/13/job_host_summaries/","variable_data":"/api/v1/hosts/13/variable_data/","job_events":"/api/v1/hosts/13/job_events/","ad_hoc_commands":"/api/v1/hosts/13/ad_hoc_commands/","fact_versions":"/api/v1/hosts/13/fact_versions/","inventory_sources":"/api/v1/hosts/13/inventory_sources/","groups":"/api/v1/hosts/13/groups/","activity_stream":"/api/v1/hosts/13/activity_stream/","all_groups":"/api/v1/hosts/13/all_groups/","ad_hoc_command_events":"/api/v1/hosts/13/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/39/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":39,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:39.972Z","modified":"2016-10-12T18:19:15.949Z","name":"aab-brewery7","description":"imported","inventory":2,"enabled":true,"instance_id":"564d5056-49ea-a5aa-a71d-cf9b8138430b","variables":"{\"vmware_privateMemory\": - 1301, \"vmware_resourcePool\": \"Resources\", \"vmware_ipAddress\": \"10.8.97.1\", - \"vmware_guestMemoryUsage\": 0, \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": - 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"CentOS - 4/5/6/7 (64-bit)\", \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": - 0, \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 48, - \"vmware_hostName\": \"aab-brewery7\", \"vmware_instanceUuid\": \"52ec15d3-0467-1880-8fc6-f91416816ad6\", - \"vmware_distributedCpuEntitlement\": 0, \"ansible_ssh_host\": \"10.8.97.1\", - \"vmware_hostSystem\": \"ibm-x3550m4-03.example.com\", - \"vmware_uptimeSeconds\": 91263, \"vmware_memorySizeMB\": 16384, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] aab-brewery7/aab-brewery7.vmx\", \"vmware_guestState\": - \"running\", \"vmware_staticMemoryEntitlement\": 16594, \"vmware_toolsStatus\": - \"toolsOk\", \"vmware_overallStatus\": \"green\", \"vmware_numCpu\": 4, \"vmware_uuid\": - \"564d5056-49ea-a5aa-a71d-cf9b8138430b\", \"vmware_installBootRequired\": - false, \"vmware_committed\": 392896519586, \"vmware_name\": \"aab-brewery7\", - \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", \"vmware_minRequiredEVCModeKey\": - \"intel-sandybridge\", \"vmware_uncommitted\": 150214828032, \"vmware_hostMemoryUsage\": - 1353, \"vmware_distributedMemoryEntitlement\": 704, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"green\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_template\": false, \"vmware_toolsRunningStatus\": - \"guestToolsRunning\", \"vmware_staticCpuEntitlement\": 1431, \"vmware_overallCpuDemand\": - 0, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"NFS Share\"], - \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": - -1, \"vmware_powerState\": \"poweredOn\", \"vmware_guestId\": \"centos64Guest\", - \"vmware_numVirtualDisks\": 2, \"vmware_swappedMemory\": 0, \"vmware_annotation\": - \"CentOS 7.2 ImageFactory VM\", \"vmware_maxMemoryUsage\": 16384, \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 341338514319, \"vmware_sharedMemory\": - 93}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":39},{"id":14,"type":"host","url":"/api/v1/hosts/14/","related":{"job_host_summaries":"/api/v1/hosts/14/job_host_summaries/","variable_data":"/api/v1/hosts/14/variable_data/","job_events":"/api/v1/hosts/14/job_events/","ad_hoc_commands":"/api/v1/hosts/14/ad_hoc_commands/","fact_versions":"/api/v1/hosts/14/fact_versions/","inventory_sources":"/api/v1/hosts/14/inventory_sources/","groups":"/api/v1/hosts/14/groups/","activity_stream":"/api/v1/hosts/14/activity_stream/","all_groups":"/api/v1/hosts/14/all_groups/","ad_hoc_command_events":"/api/v1/hosts/14/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/16/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":16,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:39.977Z","modified":"2016-10-12T18:19:15.954Z","name":"aab-idp","description":"imported","inventory":2,"enabled":true,"instance_id":"4233467e-9249-f495-f348-3ca09711bac1","variables":"{\"vmware_privateMemory\": - 1599, \"vmware_resourcePool\": \"Resources\", \"vmware_ipAddress\": \"192.168.122.1\", - \"vmware_guestMemoryUsage\": 40, \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": - 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"Red - Hat Enterprise Linux 7 (64-bit)\", \"vmware_toolsInstallerMounted\": false, - \"vmware_memoryReservation\": 0, \"vmware_maxCpuUsage\": 4798, \"vmware_numMksConnections\": - 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": - 38, \"vmware_hostName\": \"aab-idp.aabsaml.redhat.com\", \"vmware_instanceUuid\": - \"503399f4-212d-055a-556e-75cc9026f15d\", \"vmware_distributedCpuEntitlement\": - 0, \"ansible_ssh_host\": \"192.168.122.1\", \"vmware_hostSystem\": \"ibm-x3550m4-03.example.com\", - \"vmware_uptimeSeconds\": 8040, \"vmware_memorySizeMB\": 4096, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] aab-idp/aab-idp.vmx\", \"vmware_guestState\": - \"running\", \"vmware_staticMemoryEntitlement\": 4162, \"vmware_toolsStatus\": - \"toolsOk\", \"vmware_overallStatus\": \"green\", \"vmware_numCpu\": 2, \"vmware_uuid\": - \"4233467e-9249-f495-f348-3ca09711bac1\", \"vmware_installBootRequired\": - false, \"vmware_committed\": 26684838743, \"vmware_name\": \"aab-idp\", \"vmware_toolsVersionStatus\": - \"guestToolsUnmanaged\", \"vmware_minRequiredEVCModeKey\": \"intel-sandybridge\", - \"vmware_uncommitted\": 42231762944, \"vmware_hostMemoryUsage\": 1654, \"vmware_distributedMemoryEntitlement\": - 710, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"green\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - false, \"vmware_toolsRunningStatus\": \"guestToolsRunning\", \"vmware_staticCpuEntitlement\": - 716, \"vmware_overallCpuDemand\": 0, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": - [\"NFS Share\"], \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": - \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": \"poweredOn\", - \"vmware_guestId\": \"rhel7_64Guest\", \"vmware_numVirtualDisks\": 1, \"vmware_swappedMemory\": - 0, \"vmware_annotation\": \"SAML Provider\\n- Keycloak\", \"vmware_maxMemoryUsage\": - 4096, \"vmware_recordReplayState\": \"inactive\", \"vmware_unshared\": 9464723339, - \"vmware_sharedMemory\": 149}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":16},{"id":15,"type":"host","url":"/api/v1/hosts/15/","related":{"job_host_summaries":"/api/v1/hosts/15/job_host_summaries/","variable_data":"/api/v1/hosts/15/variable_data/","job_events":"/api/v1/hosts/15/job_events/","ad_hoc_commands":"/api/v1/hosts/15/ad_hoc_commands/","fact_versions":"/api/v1/hosts/15/fact_versions/","inventory_sources":"/api/v1/hosts/15/inventory_sources/","groups":"/api/v1/hosts/15/groups/","activity_stream":"/api/v1/hosts/15/activity_stream/","all_groups":"/api/v1/hosts/15/all_groups/","ad_hoc_command_events":"/api/v1/hosts/15/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/27/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":27,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:39.983Z","modified":"2016-10-12T18:19:15.958Z","name":"aab-ipaserver7","description":"imported","inventory":2,"enabled":true,"instance_id":"564d8be8-84bf-03ab-c421-a503da6db700","variables":"{\"vmware_privateMemory\": - 3585, \"vmware_resourcePool\": \"Resources\", \"vmware_ipAddress\": \"10.8.97.9\", - \"vmware_guestMemoryUsage\": 122, \"vmware_overallCpuUsage\": 23, \"vmware_suspendInterval\": - 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"CentOS - 4/5/6/7 (64-bit)\", \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": - 0, \"vmware_maxCpuUsage\": 4798, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 36, - \"vmware_hostName\": \"aab-ipaserver7.aabipa.redhat.com\", \"vmware_instanceUuid\": - \"52605f18-24e2-1a63-46c8-2dd79ee2469f\", \"vmware_distributedCpuEntitlement\": - 23, \"ansible_ssh_host\": \"10.8.97.9\", \"vmware_hostSystem\": \"ibm-x3550m4-03.example.com\", - \"vmware_uptimeSeconds\": 91224, \"vmware_memorySizeMB\": 4096, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] aab-ipaserver7/aab-ipaserver7.vmx\", - \"vmware_guestState\": \"running\", \"vmware_staticMemoryEntitlement\": 4165, - \"vmware_toolsStatus\": \"toolsOk\", \"vmware_overallStatus\": \"green\", - \"vmware_numCpu\": 2, \"vmware_uuid\": \"564d8be8-84bf-03ab-c421-a503da6db700\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 9843190666, \"vmware_name\": - \"aab-ipaserver7\", \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", - \"vmware_minRequiredEVCModeKey\": \"intel-sandybridge\", \"vmware_uncommitted\": - 11633213440, \"vmware_hostMemoryUsage\": 3636, \"vmware_distributedMemoryEntitlement\": - 1269, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"green\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - false, \"vmware_toolsRunningStatus\": \"guestToolsRunning\", \"vmware_staticCpuEntitlement\": - 715, \"vmware_overallCpuDemand\": 23, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": - [\"NFS Share\"], \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": - \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": \"poweredOn\", - \"vmware_guestId\": \"centos64Guest\", \"vmware_numVirtualDisks\": 1, \"vmware_swappedMemory\": - 0, \"vmware_annotation\": null, \"vmware_maxMemoryUsage\": 4096, \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 9841623597, \"vmware_sharedMemory\": 381}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":27},{"id":16,"type":"host","url":"/api/v1/hosts/16/","related":{"job_host_summaries":"/api/v1/hosts/16/job_host_summaries/","variable_data":"/api/v1/hosts/16/variable_data/","job_events":"/api/v1/hosts/16/job_events/","ad_hoc_commands":"/api/v1/hosts/16/ad_hoc_commands/","fact_versions":"/api/v1/hosts/16/fact_versions/","inventory_sources":"/api/v1/hosts/16/inventory_sources/","groups":"/api/v1/hosts/16/groups/","activity_stream":"/api/v1/hosts/16/activity_stream/","all_groups":"/api/v1/hosts/16/all_groups/","ad_hoc_command_events":"/api/v1/hosts/16/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/37/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":37,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:39.988Z","modified":"2016-10-12T18:19:15.963Z","name":"aab-ldap","description":"imported","inventory":2,"enabled":true,"instance_id":"420c8f0d-4a8f-0b6d-fc3a-0c3cfab7b33f","variables":"{\"vmware_privateMemory\": - 3825, \"vmware_resourcePool\": \"Resources\", \"vmware_ipAddress\": \"10.8.97.22\", - \"vmware_guestMemoryUsage\": 122, \"vmware_overallCpuUsage\": 23, \"vmware_suspendInterval\": - 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"CentOS - 4/5/6/7 (64-bit)\", \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": - 0, \"vmware_maxCpuUsage\": 4798, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 36, - \"vmware_hostName\": \"aab-ldap\", \"vmware_instanceUuid\": \"500c1916-2acd-2e09-90bf-4db1d8dec048\", - \"vmware_distributedCpuEntitlement\": 23, \"ansible_ssh_host\": \"10.8.97.22\", - \"vmware_hostSystem\": \"ibm-x3550m4-03.example.com\", - \"vmware_uptimeSeconds\": 7939, \"vmware_memorySizeMB\": 4096, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] aab-ldap/aab-ldap.vmx\", \"vmware_guestState\": - \"running\", \"vmware_staticMemoryEntitlement\": 4157, \"vmware_toolsStatus\": - \"toolsOk\", \"vmware_overallStatus\": \"green\", \"vmware_numCpu\": 2, \"vmware_uuid\": - \"420c8f0d-4a8f-0b6d-fc3a-0c3cfab7b33f\", \"vmware_installBootRequired\": - false, \"vmware_committed\": 10296769301, \"vmware_name\": \"aab-ldap\", \"vmware_toolsVersionStatus\": - \"guestToolsUnmanaged\", \"vmware_minRequiredEVCModeKey\": \"intel-sandybridge\", - \"vmware_uncommitted\": 11178840064, \"vmware_hostMemoryUsage\": 3874, \"vmware_distributedMemoryEntitlement\": - 1295, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"green\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - false, \"vmware_toolsRunningStatus\": \"guestToolsRunning\", \"vmware_staticCpuEntitlement\": - 715, \"vmware_overallCpuDemand\": 23, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": - [\"NFS Share\"], \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": - \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": \"poweredOn\", - \"vmware_guestId\": \"centos64Guest\", \"vmware_numVirtualDisks\": 1, \"vmware_swappedMemory\": - 0, \"vmware_annotation\": null, \"vmware_maxMemoryUsage\": 4096, \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 10295996967, \"vmware_sharedMemory\": 143}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":37},{"id":17,"type":"host","url":"/api/v1/hosts/17/","related":{"job_host_summaries":"/api/v1/hosts/17/job_host_summaries/","variable_data":"/api/v1/hosts/17/variable_data/","job_events":"/api/v1/hosts/17/job_events/","ad_hoc_commands":"/api/v1/hosts/17/ad_hoc_commands/","fact_versions":"/api/v1/hosts/17/fact_versions/","inventory_sources":"/api/v1/hosts/17/inventory_sources/","groups":"/api/v1/hosts/17/groups/","activity_stream":"/api/v1/hosts/17/activity_stream/","all_groups":"/api/v1/hosts/17/all_groups/","ad_hoc_command_events":"/api/v1/hosts/17/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/31/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":31,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:39.993Z","modified":"2016-10-12T18:19:15.967Z","name":"aab-miq-saml","description":"imported","inventory":2,"enabled":true,"instance_id":"42332064-1b21-3bc2-ee0b-09ae0799bc3b","variables":"{\"vmware_privateMemory\": - 16198, \"vmware_resourcePool\": \"Resources\", \"vmware_ipAddress\": \"10.8.97.8\", - \"vmware_guestMemoryUsage\": 14417, \"vmware_overallCpuUsage\": 3886, \"vmware_suspendInterval\": - 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"Red - Hat Enterprise Linux 6 (64-bit)\", \"vmware_toolsInstallerMounted\": false, - \"vmware_memoryReservation\": 0, \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": - 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": - 84, \"vmware_hostName\": \"aab-miq-saml.aabsaml.redhat.com\", \"vmware_instanceUuid\": - \"50332797-ee3a-a583-9dbc-02a5f6c24815\", \"vmware_distributedCpuEntitlement\": - 4606, \"ansible_ssh_host\": \"10.8.97.8\", \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_uptimeSeconds\": 2230594, \"vmware_memorySizeMB\": 16384, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] aab-miq-saml/aab-miq-saml.vmx\", \"vmware_guestState\": - \"running\", \"vmware_staticMemoryEntitlement\": 16536, \"vmware_toolsStatus\": - \"toolsOk\", \"vmware_overallStatus\": \"green\", \"vmware_numCpu\": 4, \"vmware_uuid\": - \"42332064-1b21-3bc2-ee0b-09ae0799bc3b\", \"vmware_installBootRequired\": - false, \"vmware_committed\": 54733776702, \"vmware_name\": \"aab-miq-saml\", - \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", \"vmware_minRequiredEVCModeKey\": - \"intel-sandybridge\", \"vmware_uncommitted\": 34571448320, \"vmware_hostMemoryUsage\": - 16298, \"vmware_distributedMemoryEntitlement\": 14841, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"green\", \"vmware_faultToleranceState\": + 0, \"vmware_vmPathName\": \"[vsanDatastore] 42ae1c58-90fc-40d2-924f-0050568c8460/ag_test_1.vmx\", + \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": + 0, \"vmware_toolsStatus\": \"toolsNotInstalled\", \"vmware_overallStatus\": + \"green\", \"vmware_numCpu\": 1, \"vmware_uuid\": \"4214f5d9-caa5-f280-18bf-86a32545d3bc\", + \"vmware_installBootRequired\": false, \"vmware_committed\": 8390746, \"vmware_name\": + \"ag_test_1\", \"vmware_toolsVersionStatus\": \"guestToolsNotInstalled\", + \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": 19473756160, \"vmware_hostMemoryUsage\": + 0, \"vmware_distributedMemoryEntitlement\": 0, \"vmware_connectionState\": + \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": false, \"vmware_toolsRunningStatus\": - \"guestToolsRunning\", \"vmware_staticCpuEntitlement\": 1431, \"vmware_overallCpuDemand\": - 4630, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"NFS Share\"], - \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": - -1, \"vmware_powerState\": \"poweredOn\", \"vmware_guestId\": \"rhel6_64Guest\", + \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": 0, \"vmware_ftLogBandwidth\": + -1, \"vmware_datastores\": [\"vsanDatastore\"], \"vmware_cpuReservation\": + 0, \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": -1, + \"vmware_powerState\": \"poweredOff\", \"vmware_guestId\": \"rhel7_64Guest\", \"vmware_numVirtualDisks\": 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": - \"ManageIQ SAML External Auth Prototype\", \"vmware_maxMemoryUsage\": 16384, - \"vmware_recordReplayState\": \"inactive\", \"vmware_unshared\": 31090378991, - \"vmware_sharedMemory\": 56}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":31},{"id":18,"type":"host","url":"/api/v1/hosts/18/","related":{"job_host_summaries":"/api/v1/hosts/18/job_host_summaries/","variable_data":"/api/v1/hosts/18/variable_data/","job_events":"/api/v1/hosts/18/job_events/","ad_hoc_commands":"/api/v1/hosts/18/ad_hoc_commands/","fact_versions":"/api/v1/hosts/18/fact_versions/","inventory_sources":"/api/v1/hosts/18/inventory_sources/","groups":"/api/v1/hosts/18/groups/","activity_stream":"/api/v1/hosts/18/activity_stream/","all_groups":"/api/v1/hosts/18/all_groups/","ad_hoc_command_events":"/api/v1/hosts/18/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/8/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":8,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:39.999Z","modified":"2016-10-12T18:19:15.972Z","name":"ag_cfme_5.5","description":"imported","inventory":2,"enabled":true,"instance_id":"4233b56a-db5f-66a0-f701-734b406046b1","variables":"{\"vmware_privateMemory\": - 3945, \"vmware_resourcePool\": \"Resources\", \"vmware_ipAddress\": \"10.8.99.221\", - \"vmware_guestMemoryUsage\": 3358, \"vmware_overallCpuUsage\": 695, \"vmware_suspendInterval\": - 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"Red - Hat Enterprise Linux 6 (64-bit)\", \"vmware_toolsInstallerMounted\": false, - \"vmware_memoryReservation\": 0, \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": - 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": - 46, \"vmware_hostName\": \"dhcp-8-99-221.example.com\", - \"vmware_instanceUuid\": \"50336b48-19a0-91bb-5f74-3da27ef38d57\", \"vmware_distributedCpuEntitlement\": - 767, \"ansible_ssh_host\": \"10.8.99.221\", \"vmware_hostSystem\": \"ibm-x3550m4-01.example.com\", - \"vmware_uptimeSeconds\": 13112, \"vmware_memorySizeMB\": 4096, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] CFME (Agrare)/CFME (Agrare).vmx\", - \"vmware_guestState\": \"running\", \"vmware_staticMemoryEntitlement\": 4181, - \"vmware_toolsStatus\": \"toolsOk\", \"vmware_overallStatus\": \"green\", - \"vmware_numCpu\": 4, \"vmware_uuid\": \"4233b56a-db5f-66a0-f701-734b406046b1\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 17570492529, - \"vmware_name\": \"ag_cfme_5.5\", \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", - \"vmware_minRequiredEVCModeKey\": \"intel-sandybridge\", \"vmware_uncommitted\": - 168016850944, \"vmware_hostMemoryUsage\": 3991, \"vmware_distributedMemoryEntitlement\": - 4023, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"green\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - false, \"vmware_toolsRunningStatus\": \"guestToolsRunning\", \"vmware_staticCpuEntitlement\": - 1431, \"vmware_overallCpuDemand\": 767, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": - [\"NFS Share\"], \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": - \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": \"poweredOn\", - \"vmware_guestId\": \"rhel6_64Guest\", \"vmware_numVirtualDisks\": 2, \"vmware_swappedMemory\": - 0, \"vmware_annotation\": null, \"vmware_maxMemoryUsage\": 4096, \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 17568966072, \"vmware_sharedMemory\": 25}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":8},{"id":19,"type":"host","url":"/api/v1/hosts/19/","related":{"job_host_summaries":"/api/v1/hosts/19/job_host_summaries/","variable_data":"/api/v1/hosts/19/variable_data/","job_events":"/api/v1/hosts/19/job_events/","ad_hoc_commands":"/api/v1/hosts/19/ad_hoc_commands/","fact_versions":"/api/v1/hosts/19/fact_versions/","inventory_sources":"/api/v1/hosts/19/inventory_sources/","groups":"/api/v1/hosts/19/groups/","activity_stream":"/api/v1/hosts/19/activity_stream/","all_groups":"/api/v1/hosts/19/all_groups/","ad_hoc_command_events":"/api/v1/hosts/19/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.004Z","modified":"2016-08-31T16:59:43.347Z","name":"ag_rhel_7","description":"imported","inventory":2,"enabled":false,"instance_id":"420c7162-30ec-7368-6e4f-89238167d850","variables":"{\"vmware_privateMemory\": + \"MIQ GUID=6a017e76-a2a6-11e6-bbdf-402cf4e9d88b\", \"vmware_recordReplayState\": + \"inactive\", \"vmware_unshared\": 8388608, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":210,"type":"host","url":"/api/v1/hosts/210/","related":{"job_host_summaries":"/api/v1/hosts/210/job_host_summaries/","variable_data":"/api/v1/hosts/210/variable_data/","job_events":"/api/v1/hosts/210/job_events/","ad_hoc_commands":"/api/v1/hosts/210/ad_hoc_commands/","fact_versions":"/api/v1/hosts/210/fact_versions/","inventory_sources":"/api/v1/hosts/210/inventory_sources/","groups":"/api/v1/hosts/210/groups/","activity_stream":"/api/v1/hosts/210/activity_stream/","all_groups":"/api/v1/hosts/210/all_groups/","ad_hoc_command_events":"/api/v1/hosts/210/ad_hoc_command_events/","inventory":"/api/v1/inventories/77/"},"summary_fields":{"inventory":{"id":77,"name":"jwong-i-group","description":"","has_active_failures":false,"total_hosts":8,"hosts_with_active_failures":0,"total_groups":14,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2017-06-19T19:46:54.498Z","modified":"2017-06-19T19:46:54.961Z","name":"db-clone-to-template-01","description":"imported","inventory":77,"enabled":false,"instance_id":"4214c330-8a63-8d6f-276e-3f85c6f882fa","variables":"{\"vmware_privateMemory\": 0, \"vmware_resourcePool\": \"\", \"vmware_guestMemoryUsage\": 0, \"vmware_overallCpuUsage\": - 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": [\"NFS Network\"], - \"vmware_guestFullName\": \"Red Hat Enterprise Linux 7 (64-bit)\", \"vmware_toolsInstallerMounted\": + 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": + \"Red Hat Enterprise Linux 7 (64-bit)\", \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": 0, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": - \"ibm-x3550m4-04.example.com\", \"vmware_instanceUuid\": - \"500cb016-33eb-e588-c30a-80f2e2b63bcd\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] ag_rhel_7/ag_rhel_7.vmtx\", \"vmware_guestState\": - \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": - \"toolsNotInstalled\", \"vmware_overallStatus\": \"green\", \"vmware_numCpu\": - 1, \"vmware_uuid\": \"420c7162-30ec-7368-6e4f-89238167d850\", \"vmware_installBootRequired\": - false, \"vmware_committed\": 258981, \"vmware_name\": \"ag_rhel_7\", \"vmware_staticCpuEntitlement\": - 0, \"vmware_uncommitted\": 2339536896, \"vmware_hostMemoryUsage\": 0, \"vmware_distributedMemoryEntitlement\": - 0, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"gray\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - true, \"vmware_toolsRunningStatus\": \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": - 0, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"Prod_ISOs_NFS\", - \"NFS Share\"], \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": - \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": \"poweredOff\", - \"vmware_guestId\": \"rhel7_64Guest\", \"vmware_numVirtualDisks\": 0, \"vmware_swappedMemory\": - 0, \"vmware_annotation\": null, \"vmware_recordReplayState\": \"inactive\", - \"vmware_unshared\": 0, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":20,"type":"host","url":"/api/v1/hosts/20/","related":{"job_host_summaries":"/api/v1/hosts/20/job_host_summaries/","variable_data":"/api/v1/hosts/20/variable_data/","job_events":"/api/v1/hosts/20/job_events/","ad_hoc_commands":"/api/v1/hosts/20/ad_hoc_commands/","fact_versions":"/api/v1/hosts/20/fact_versions/","inventory_sources":"/api/v1/hosts/20/inventory_sources/","groups":"/api/v1/hosts/20/groups/","activity_stream":"/api/v1/hosts/20/activity_stream/","all_groups":"/api/v1/hosts/20/all_groups/","ad_hoc_command_events":"/api/v1/hosts/20/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/33/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":33,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:40.009Z","modified":"2016-10-12T18:19:15.976Z","name":"ag_rhel_7_1_clone_1","description":"imported","inventory":2,"enabled":true,"instance_id":"420c01b4-1d3e-31f6-3cf5-a830230525cd","variables":"{\"vmware_privateMemory\": - 1893, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": - 0, \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": - [\"VM Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 7 (64-bit)\", - \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": 0, - \"vmware_maxCpuUsage\": 2399, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 31, - \"vmware_hostSystem\": \"ibm-x3550m4-03.example.com\", - \"vmware_instanceUuid\": \"500c98d1-ce8e-2113-c9df-45c03ea5788b\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_uptimeSeconds\": 91227, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] ag_rhel_7_1_clone_1/ag_rhel_7_1_clone_1.vmx\", + \"jwong-esxi1.example.com\", \"vmware_instanceUuid\": + \"5014351b-43b4-b3b2-0d37-b4b4f6344062\", \"vmware_distributedCpuEntitlement\": + 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 1024, \"vmware_compressedMemory\": + 0, \"vmware_vmPathName\": \"[vsanDatastore] def6eb57-988d-f316-fa6e-0050568ce18d/db-clone-to-template-01.vmtx\", \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": - 2107, \"vmware_toolsStatus\": \"toolsNotInstalled\", \"vmware_overallStatus\": - \"green\", \"vmware_numCpu\": 1, \"vmware_uuid\": \"420c01b4-1d3e-31f6-3cf5-a830230525cd\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 525499, \"vmware_name\": - \"ag_rhel_7_1_clone_1\", \"vmware_toolsVersionStatus\": \"guestToolsNotInstalled\", - \"vmware_minRequiredEVCModeKey\": \"intel-sandybridge\", \"vmware_uncommitted\": - 0, \"vmware_hostMemoryUsage\": 1981, \"vmware_distributedMemoryEntitlement\": - 746, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"gray\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - false, \"vmware_toolsRunningStatus\": \"guestToolsNotRunning\", \"vmware_staticCpuEntitlement\": - 362, \"vmware_overallCpuDemand\": 0, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": - [\"Prod_ISOs_NFS\", \"NFS Share\"], \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": - \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": \"poweredOn\", - \"vmware_guestId\": \"rhel7_64Guest\", \"vmware_numVirtualDisks\": 0, \"vmware_swappedMemory\": - 0, \"vmware_annotation\": \"MIQ GUID=714dbebe-6ac6-11e6-ab93-54ee753e66dc\", - \"vmware_maxMemoryUsage\": 2048, \"vmware_recordReplayState\": \"inactive\", - \"vmware_unshared\": 0, \"vmware_sharedMemory\": 155}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":33},{"id":21,"type":"host","url":"/api/v1/hosts/21/","related":{"job_host_summaries":"/api/v1/hosts/21/job_host_summaries/","variable_data":"/api/v1/hosts/21/variable_data/","job_events":"/api/v1/hosts/21/job_events/","ad_hoc_commands":"/api/v1/hosts/21/ad_hoc_commands/","fact_versions":"/api/v1/hosts/21/fact_versions/","inventory_sources":"/api/v1/hosts/21/inventory_sources/","groups":"/api/v1/hosts/21/groups/","activity_stream":"/api/v1/hosts/21/activity_stream/","all_groups":"/api/v1/hosts/21/all_groups/","ad_hoc_command_events":"/api/v1/hosts/21/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.015Z","modified":"2016-08-31T16:59:43.356Z","name":"ag_rhel_7_1_template","description":"imported","inventory":2,"enabled":false,"instance_id":"420c4a20-27ba-16ba-8bfa-11e1ecc69002","variables":"{\"vmware_privateMemory\": + 0, \"vmware_toolsStatus\": \"toolsNotInstalled\", \"vmware_overallStatus\": + \"green\", \"vmware_numCpu\": 1, \"vmware_uuid\": \"4214c330-8a63-8d6f-276e-3f85c6f882fa\", + \"vmware_installBootRequired\": false, \"vmware_committed\": 25177587, \"vmware_name\": + \"db-clone-to-template-01\", \"vmware_toolsVersionStatus\": \"guestToolsNotInstalled\", + \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": 39895334912, \"vmware_hostMemoryUsage\": + 0, \"vmware_distributedMemoryEntitlement\": 0, \"vmware_connectionState\": + \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_faultToleranceState\": + \"notConfigured\", \"vmware_template\": true, \"vmware_toolsRunningStatus\": + \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": 0, \"vmware_ftLogBandwidth\": + -1, \"vmware_datastores\": [\"vsanDatastore\"], \"vmware_cpuReservation\": + 0, \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": -1, + \"vmware_powerState\": \"poweredOff\", \"vmware_guestId\": \"rhel7_64Guest\", + \"vmware_numVirtualDisks\": 3, \"vmware_swappedMemory\": 0, \"vmware_annotation\": + \"Owner: d b\\nEmail: db@rh.com\\nSource Template: db-test-auto-placement-folder-01\\n\\nMIQ + GUID=e0fd7218-859c-11e6-96a3-a45e60f1b905\", \"vmware_recordReplayState\": + \"inactive\", \"vmware_unshared\": 25165824, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":252,"type":"host","url":"/api/v1/hosts/252/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/252/job_host_summaries/","variable_data":"/api/v1/hosts/252/variable_data/","job_events":"/api/v1/hosts/252/job_events/","ad_hoc_commands":"/api/v1/hosts/252/ad_hoc_commands/","fact_versions":"/api/v1/hosts/252/fact_versions/","inventory_sources":"/api/v1/hosts/252/inventory_sources/","groups":"/api/v1/hosts/252/groups/","activity_stream":"/api/v1/hosts/252/activity_stream/","all_groups":"/api/v1/hosts/252/all_groups/","ad_hoc_command_events":"/api/v1/hosts/252/ad_hoc_command_events/","inventory":"/api/v1/inventories/115/"},"summary_fields":{"inventory":{"id":115,"name":"hello_inventory","description":"inventory + for miq spec tests","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"recent_jobs":[]},"created":"2017-07-14T18:46:25.261Z","modified":"2017-07-14T18:46:25.261Z","name":"hello_vm","description":"","inventory":115,"enabled":true,"instance_id":"4233080d-7467-de61-76c9-c8307b6e4830","variables":"","has_active_failures":false,"has_inventory_sources":false,"last_job":null,"last_job_host_summary":null},{"id":253,"type":"host","url":"/api/v1/hosts/253/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/253/job_host_summaries/","variable_data":"/api/v1/hosts/253/variable_data/","job_events":"/api/v1/hosts/253/job_events/","ad_hoc_commands":"/api/v1/hosts/253/ad_hoc_commands/","fact_versions":"/api/v1/hosts/253/fact_versions/","inventory_sources":"/api/v1/hosts/253/inventory_sources/","groups":"/api/v1/hosts/253/groups/","activity_stream":"/api/v1/hosts/253/activity_stream/","all_groups":"/api/v1/hosts/253/all_groups/","ad_hoc_command_events":"/api/v1/hosts/253/ad_hoc_command_events/","inventory":"/api/v1/inventories/116/","last_job":"/api/v1/jobs/1017/","last_job_host_summary":"/api/v1/job_host_summaries/425/"},"summary_fields":{"last_job":{"id":1017,"name":"miq_Embedded_Ansible1_provision","description":"Embedded_Ansible1","finished":"2017-08-03T20:47:25.670Z","status":"successful","failed":false,"job_template_id":610,"job_template_name":"miq_Embedded_Ansible1_provision"},"last_job_host_summary":{"id":425,"failed":false},"inventory":{"id":116,"name":"billy","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"recent_jobs":[{"status":"successful","finished":"2017-08-03T20:47:25.670Z","id":1017,"name":"miq_Embedded_Ansible1_provision"},{"status":"successful","finished":"2017-08-03T19:13:23.444Z","id":1015,"name":"miq_Embedded_Ansible1_provision"},{"status":"successful","finished":"2017-08-02T19:34:01.715Z","id":1013,"name":"miq_Embedded_Ansible1_provision"},{"status":"successful","finished":"2017-08-02T19:27:45.782Z","id":1011,"name":"miq_Embedded_Ansible1_provision"},{"status":"successful","finished":"2017-08-02T19:21:10.771Z","id":1009,"name":"miq_Embedded_Ansible1_provision"}]},"created":"2017-08-01T15:29:06.031Z","modified":"2017-08-03T20:47:25.553Z","name":"localhost","description":"","inventory":116,"enabled":true,"instance_id":"","variables":"---\nansible_connection: + local","has_active_failures":false,"has_inventory_sources":false,"last_job":1017,"last_job_host_summary":425},{"id":143,"type":"host","url":"/api/v1/hosts/143/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/143/job_host_summaries/","variable_data":"/api/v1/hosts/143/variable_data/","job_events":"/api/v1/hosts/143/job_events/","ad_hoc_commands":"/api/v1/hosts/143/ad_hoc_commands/","fact_versions":"/api/v1/hosts/143/fact_versions/","inventory_sources":"/api/v1/hosts/143/inventory_sources/","groups":"/api/v1/hosts/143/groups/","activity_stream":"/api/v1/hosts/143/activity_stream/","all_groups":"/api/v1/hosts/143/all_groups/","ad_hoc_command_events":"/api/v1/hosts/143/ad_hoc_command_events/","inventory":"/api/v1/inventories/38/","last_job":"/api/v1/jobs/891/","last_job_host_summary":"/api/v1/job_host_summaries/394/"},"summary_fields":{"last_job":{"id":891,"name":"miq_bill-may-1_provision","description":"test","finished":"2017-05-15T15:02:06.781Z","status":"successful","failed":false,"job_template_id":481,"job_template_name":"miq_bill-may-1_provision"},"last_job_host_summary":{"id":394,"failed":false},"inventory":{"id":38,"name":"ManageIQ + Default Inventory","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"recent_jobs":[{"status":"successful","finished":"2017-05-15T15:02:06.781Z","id":891,"name":"miq_bill-may-1_provision"},{"status":"successful","finished":"2017-05-15T01:40:13.217Z","id":890,"name":"miq_bill-may-1_provision"},{"status":"successful","finished":"2017-04-26T03:47:15.730Z","id":657,"name":"miq_TESTLG1_provision"},{"status":"successful","finished":"2017-04-26T03:23:57.631Z","id":656,"name":"miq_TESTLG1_provision"},{"status":"successful","finished":"2017-04-24T21:56:03.920Z","id":654,"name":"miq_newextravar_provision"}]},"created":"2017-03-22T21:57:46.538Z","modified":"2017-05-15T15:02:06.663Z","name":"localhost","description":"","inventory":38,"enabled":true,"instance_id":"","variables":"---\nansible_connection: + local","has_active_failures":false,"has_inventory_sources":false,"last_job":891,"last_job_host_summary":394},{"id":84,"type":"host","url":"/api/v1/hosts/84/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/84/job_host_summaries/","variable_data":"/api/v1/hosts/84/variable_data/","job_events":"/api/v1/hosts/84/job_events/","ad_hoc_commands":"/api/v1/hosts/84/ad_hoc_commands/","fact_versions":"/api/v1/hosts/84/fact_versions/","inventory_sources":"/api/v1/hosts/84/inventory_sources/","groups":"/api/v1/hosts/84/groups/","activity_stream":"/api/v1/hosts/84/activity_stream/","all_groups":"/api/v1/hosts/84/all_groups/","ad_hoc_command_events":"/api/v1/hosts/84/ad_hoc_command_events/","inventory":"/api/v1/inventories/6/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":2,"groups_with_active_failures":1,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"recent_jobs":[]},"created":"2017-01-30T11:28:59.770Z","modified":"2017-02-23T20:25:15.701Z","name":"localhost","description":"","inventory":6,"enabled":true,"instance_id":"","variables":"","has_active_failures":true,"has_inventory_sources":false,"last_job":null,"last_job_host_summary":null},{"id":88,"type":"host","url":"/api/v1/hosts/88/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/88/job_host_summaries/","variable_data":"/api/v1/hosts/88/variable_data/","job_events":"/api/v1/hosts/88/job_events/","ad_hoc_commands":"/api/v1/hosts/88/ad_hoc_commands/","fact_versions":"/api/v1/hosts/88/fact_versions/","inventory_sources":"/api/v1/hosts/88/inventory_sources/","groups":"/api/v1/hosts/88/groups/","activity_stream":"/api/v1/hosts/88/activity_stream/","all_groups":"/api/v1/hosts/88/all_groups/","ad_hoc_command_events":"/api/v1/hosts/88/ad_hoc_command_events/","inventory":"/api/v1/inventories/8/"},"summary_fields":{"inventory":{"id":8,"name":"miq-default","description":"default + inventory","has_active_failures":false,"total_hosts":2,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"recent_jobs":[]},"created":"2017-02-16T21:44:48.932Z","modified":"2017-02-16T21:44:48.932Z","name":"localhost","description":"","inventory":8,"enabled":true,"instance_id":"","variables":"ansible_connection: + local","has_active_failures":false,"has_inventory_sources":false,"last_job":null,"last_job_host_summary":null},{"id":212,"type":"host","url":"/api/v1/hosts/212/","related":{"job_host_summaries":"/api/v1/hosts/212/job_host_summaries/","variable_data":"/api/v1/hosts/212/variable_data/","job_events":"/api/v1/hosts/212/job_events/","ad_hoc_commands":"/api/v1/hosts/212/ad_hoc_commands/","fact_versions":"/api/v1/hosts/212/fact_versions/","inventory_sources":"/api/v1/hosts/212/inventory_sources/","groups":"/api/v1/hosts/212/groups/","activity_stream":"/api/v1/hosts/212/activity_stream/","all_groups":"/api/v1/hosts/212/all_groups/","ad_hoc_command_events":"/api/v1/hosts/212/ad_hoc_command_events/","inventory":"/api/v1/inventories/77/"},"summary_fields":{"inventory":{"id":77,"name":"jwong-i-group","description":"","has_active_failures":false,"total_hosts":8,"hosts_with_active_failures":0,"total_groups":14,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2017-06-19T19:46:54.509Z","modified":"2017-06-19T19:46:54.966Z","name":"test1","description":"imported","inventory":77,"enabled":false,"instance_id":"4214be19-f491-9ab1-ab9c-7857864f264e","variables":"{\"vmware_privateMemory\": 0, \"vmware_resourcePool\": \"\", \"vmware_guestMemoryUsage\": 0, \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 7 (64-bit)\", \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": 0, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": - \"dev-esxi6hyper2.example.com\", \"vmware_instanceUuid\": - \"500cacc2-5cc4-80b1-faa9-6ad4c53e6d1f\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Datastore] ag_rhel_7_1_template/ag_rhel_7_1_template.vmtx\", + \"jwong-esxi1.example.com\", \"vmware_instanceUuid\": + \"5014d9a8-0dce-5c5c-0d1f-a20b86d5774d\", \"vmware_distributedCpuEntitlement\": + 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 512, \"vmware_compressedMemory\": + 0, \"vmware_vmPathName\": \"[vsanDatastore] 19635857-84db-0320-5ee5-0050568ce18d/test1.vmtx\", \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": \"toolsNotInstalled\", \"vmware_overallStatus\": - \"green\", \"vmware_numCpu\": 1, \"vmware_uuid\": \"420c4a20-27ba-16ba-8bfa-11e1ecc69002\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 11168, \"vmware_name\": - \"ag_rhel_7_1_template\", \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": - 2339536896, \"vmware_hostMemoryUsage\": 0, \"vmware_distributedMemoryEntitlement\": + \"green\", \"vmware_numCpu\": 1, \"vmware_uuid\": \"4214be19-f491-9ab1-ab9c-7857864f264e\", + \"vmware_installBootRequired\": false, \"vmware_committed\": 16779448, \"vmware_name\": + \"test1\", \"vmware_toolsVersionStatus\": \"guestToolsNotInstalled\", \"vmware_staticCpuEntitlement\": + 0, \"vmware_uncommitted\": 26444689408, \"vmware_hostMemoryUsage\": 0, \"vmware_distributedMemoryEntitlement\": 0, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": true, \"vmware_toolsRunningStatus\": \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": - 0, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"NFS Datastore\"], + 0, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"vsanDatastore\"], \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": \"poweredOff\", \"vmware_guestId\": \"rhel7_64Guest\", - \"vmware_numVirtualDisks\": 0, \"vmware_swappedMemory\": 0, \"vmware_annotation\": - \"MIQ GUID=645f1d8e-59b3-11e6-a0df-54ee753e66dc\", \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 0, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":22,"type":"host","url":"/api/v1/hosts/22/","related":{"job_host_summaries":"/api/v1/hosts/22/job_host_summaries/","variable_data":"/api/v1/hosts/22/variable_data/","job_events":"/api/v1/hosts/22/job_events/","ad_hoc_commands":"/api/v1/hosts/22/ad_hoc_commands/","fact_versions":"/api/v1/hosts/22/fact_versions/","inventory_sources":"/api/v1/hosts/22/inventory_sources/","groups":"/api/v1/hosts/22/groups/","activity_stream":"/api/v1/hosts/22/activity_stream/","all_groups":"/api/v1/hosts/22/all_groups/","ad_hoc_command_events":"/api/v1/hosts/22/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.020Z","modified":"2016-08-31T16:59:43.360Z","name":"ag_rhel_7_2","description":"imported","inventory":2,"enabled":false,"instance_id":"420c83bf-8005-5ccd-2acb-1c4fbcd3fd49","variables":"{\"vmware_privateMemory\": + \"vmware_numVirtualDisks\": 2, \"vmware_swappedMemory\": 0, \"vmware_annotation\": + null, \"vmware_recordReplayState\": \"inactive\", \"vmware_unshared\": 16777216, + \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":213,"type":"host","url":"/api/v1/hosts/213/","related":{"job_host_summaries":"/api/v1/hosts/213/job_host_summaries/","variable_data":"/api/v1/hosts/213/variable_data/","job_events":"/api/v1/hosts/213/job_events/","ad_hoc_commands":"/api/v1/hosts/213/ad_hoc_commands/","fact_versions":"/api/v1/hosts/213/fact_versions/","inventory_sources":"/api/v1/hosts/213/inventory_sources/","groups":"/api/v1/hosts/213/groups/","activity_stream":"/api/v1/hosts/213/activity_stream/","all_groups":"/api/v1/hosts/213/all_groups/","ad_hoc_command_events":"/api/v1/hosts/213/ad_hoc_command_events/","inventory":"/api/v1/inventories/77/"},"summary_fields":{"inventory":{"id":77,"name":"jwong-i-group","description":"","has_active_failures":false,"total_hosts":8,"hosts_with_active_failures":0,"total_groups":14,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2017-06-19T19:46:54.515Z","modified":"2017-06-19T20:16:50.155Z","name":"test2","description":"imported","inventory":77,"enabled":true,"instance_id":"4214204b-41d6-e1a8-aad2-a7f4e8209e6a","variables":"{\"vmware_vmPathName\": + \"[vsanDatastore] aae19057-04e2-f15f-23d5-0050568c8460/test2.vmx\", \"vmware_guestMemoryUsage\": + 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"Red + Hat Enterprise Linux 7 (64-bit)\", \"vmware_balloonedMemory\": 0, \"vmware_hostSystem\": + \"jwong-esxi2.example.com\", \"vmware_instanceUuid\": + \"50143c2a-5348-4728-f2c1-4061fc26cfd6\", \"vmware_distributedCpuEntitlement\": + 0, \"vmware_unshared\": 25165824, \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": + 0, \"vmware_toolsStatus\": \"toolsNotInstalled\", \"vmware_overallStatus\": + \"green\", \"vmware_uuid\": \"4214204b-41d6-e1a8-aad2-a7f4e8209e6a\", \"vmware_faultToleranceState\": + \"notConfigured\", \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": + 38629539840, \"vmware_distributedMemoryEntitlement\": 0, \"vmware_template\": + false, \"vmware_overallCpuDemand\": 0, \"vmware_ftSecondaryLatency\": -1, + \"vmware_numVirtualDisks\": 3, \"vmware_annotation\": null, \"vmware_maxMemoryUsage\": + 512, \"vmware_recordReplayState\": \"inactive\", \"vmware_sharedMemory\": + 0, \"vmware_privateMemory\": 8, \"vmware_resourcePool\": \"Resources\", \"vmware_overallCpuUsage\": + 0, \"vmware_suspendInterval\": 0, \"vmware_toolsInstallerMounted\": false, + \"vmware_memoryReservation\": 0, \"vmware_maxCpuUsage\": 2400, \"vmware_numMksConnections\": + 0, \"vmware_numEthernetCards\": 1, \"vmware_uptimeSeconds\": 1540, \"vmware_memorySizeMB\": + 512, \"vmware_compressedMemory\": 0, \"vmware_numCpu\": 1, \"vmware_installBootRequired\": + false, \"vmware_committed\": 755299813, \"vmware_name\": \"test2\", \"vmware_toolsVersionStatus\": + \"guestToolsNotInstalled\", \"vmware_cpuReservation\": 0, \"vmware_hostMemoryUsage\": + 32, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": + \"gray\", \"vmware_toolsRunningStatus\": \"guestToolsNotRunning\", \"vmware_powerState\": + \"poweredOn\", \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"vsanDatastore\"], + \"vmware_guestId\": \"rhel7_64Guest\", \"vmware_swappedMemory\": 0, \"vmware_consumedOverheadMemory\": + 24, \"vmware_ftLatencyStatus\": \"gray\"}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":214,"type":"host","url":"/api/v1/hosts/214/","related":{"job_host_summaries":"/api/v1/hosts/214/job_host_summaries/","variable_data":"/api/v1/hosts/214/variable_data/","job_events":"/api/v1/hosts/214/job_events/","ad_hoc_commands":"/api/v1/hosts/214/ad_hoc_commands/","fact_versions":"/api/v1/hosts/214/fact_versions/","inventory_sources":"/api/v1/hosts/214/inventory_sources/","groups":"/api/v1/hosts/214/groups/","activity_stream":"/api/v1/hosts/214/activity_stream/","all_groups":"/api/v1/hosts/214/all_groups/","ad_hoc_command_events":"/api/v1/hosts/214/ad_hoc_command_events/","inventory":"/api/v1/inventories/77/"},"summary_fields":{"inventory":{"id":77,"name":"jwong-i-group","description":"","has_active_failures":false,"total_hosts":8,"hosts_with_active_failures":0,"total_groups":14,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2017-06-19T19:46:54.520Z","modified":"2017-06-19T19:46:54.975Z","name":"test2-tag1","description":"imported","inventory":77,"enabled":false,"instance_id":"421412ae-20e8-1009-9091-291c52d4b64f","variables":"{\"vmware_privateMemory\": 0, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": 0, \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": - [\"NFS Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 7 - (64-bit)\", \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": - 0, \"vmware_maxCpuUsage\": 2399, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": - \"ibm-x3550m4-04.example.com\", \"vmware_instanceUuid\": - \"500c4c1b-7b54-8176-a4a7-25d611774f1b\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] ag_rhel_7_2/ag_rhel_7_2.vmx\", \"vmware_guestState\": + [\"VM Network\"], \"vmware_guestFullName\": \"Microsoft Windows Server 2008 + R2 (64-bit)\", \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": + 0, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"jwong-esxi1.example.com\", + \"vmware_instanceUuid\": \"501464a9-d214-64a1-fef9-1a482d0391b5\", \"vmware_distributedCpuEntitlement\": + 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 4096, \"vmware_compressedMemory\": + 0, \"vmware_vmPathName\": \"[datastore2] test2-tag1/test2-tag1.vmx\", \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": \"toolsNotInstalled\", \"vmware_overallStatus\": \"green\", \"vmware_numCpu\": - 1, \"vmware_uuid\": \"420c83bf-8005-5ccd-2acb-1c4fbcd3fd49\", \"vmware_installBootRequired\": - false, \"vmware_committed\": 195914, \"vmware_name\": \"ag_rhel_7_2\", \"vmware_toolsVersionStatus\": - \"guestToolsNotInstalled\", \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": - 2339536896, \"vmware_hostMemoryUsage\": 0, \"vmware_distributedMemoryEntitlement\": + 1, \"vmware_uuid\": \"421412ae-20e8-1009-9091-291c52d4b64f\", \"vmware_installBootRequired\": + false, \"vmware_committed\": 10737420306, \"vmware_name\": \"test2-tag1\", + \"vmware_toolsVersionStatus\": \"guestToolsNotInstalled\", \"vmware_staticCpuEntitlement\": + 0, \"vmware_uncommitted\": 4449760176, \"vmware_hostMemoryUsage\": 0, \"vmware_distributedMemoryEntitlement\": 0, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": false, \"vmware_toolsRunningStatus\": \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": - 0, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"Prod_ISOs_NFS\", - \"NFS Share\"], \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": - \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": \"poweredOff\", - \"vmware_guestId\": \"rhel7_64Guest\", \"vmware_numVirtualDisks\": 0, \"vmware_swappedMemory\": - 0, \"vmware_annotation\": null, \"vmware_maxMemoryUsage\": 2048, \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 0, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":23,"type":"host","url":"/api/v1/hosts/23/","related":{"job_host_summaries":"/api/v1/hosts/23/job_host_summaries/","variable_data":"/api/v1/hosts/23/variable_data/","job_events":"/api/v1/hosts/23/job_events/","ad_hoc_commands":"/api/v1/hosts/23/ad_hoc_commands/","fact_versions":"/api/v1/hosts/23/fact_versions/","inventory_sources":"/api/v1/hosts/23/inventory_sources/","groups":"/api/v1/hosts/23/groups/","activity_stream":"/api/v1/hosts/23/activity_stream/","all_groups":"/api/v1/hosts/23/all_groups/","ad_hoc_command_events":"/api/v1/hosts/23/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/25/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":25,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:40.025Z","modified":"2016-10-12T18:19:15.981Z","name":"akrzos-rhel7-performance","description":"imported","inventory":2,"enabled":true,"instance_id":"420c207c-baad-fae1-9bd6-8da00edab68d","variables":"{\"vmware_privateMemory\": - 4254, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": - 81, \"vmware_overallCpuUsage\": 191, \"vmware_suspendInterval\": 0, \"vmware_networks\": - [\"VM Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 7 (64-bit)\", - \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": 0, - \"vmware_maxCpuUsage\": 4798, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 55, - \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_instanceUuid\": \"500c33be-6d66-9c60-41d8-7be3d9f1b81b\", \"vmware_distributedCpuEntitlement\": - 191, \"vmware_uptimeSeconds\": 91332, \"vmware_memorySizeMB\": 8192, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] akrzos-rhel7-performance/akrzos-rhel7-performance.vmx\", - \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": - 8280, \"vmware_toolsStatus\": \"toolsNotInstalled\", \"vmware_overallStatus\": - \"green\", \"vmware_numCpu\": 2, \"vmware_uuid\": \"420c207c-baad-fae1-9bd6-8da00edab68d\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 6321421085, \"vmware_name\": - \"akrzos-rhel7-performance\", \"vmware_toolsVersionStatus\": \"guestToolsNotInstalled\", - \"vmware_minRequiredEVCModeKey\": \"intel-sandybridge\", \"vmware_uncommitted\": - 50121744384, \"vmware_hostMemoryUsage\": 4420, \"vmware_distributedMemoryEntitlement\": - 1870, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"gray\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - false, \"vmware_toolsRunningStatus\": \"guestToolsNotRunning\", \"vmware_staticCpuEntitlement\": - 715, \"vmware_overallCpuDemand\": 191, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": - [\"NFS Share\"], \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": - \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": \"poweredOn\", - \"vmware_guestId\": \"rhel7_64Guest\", \"vmware_numVirtualDisks\": 1, \"vmware_swappedMemory\": - 0, \"vmware_annotation\": null, \"vmware_maxMemoryUsage\": 8192, \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 6320116600, \"vmware_sharedMemory\": 3590}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":25},{"id":24,"type":"host","url":"/api/v1/hosts/24/","related":{"job_host_summaries":"/api/v1/hosts/24/job_host_summaries/","variable_data":"/api/v1/hosts/24/variable_data/","job_events":"/api/v1/hosts/24/job_events/","ad_hoc_commands":"/api/v1/hosts/24/ad_hoc_commands/","fact_versions":"/api/v1/hosts/24/fact_versions/","inventory_sources":"/api/v1/hosts/24/inventory_sources/","groups":"/api/v1/hosts/24/groups/","activity_stream":"/api/v1/hosts/24/activity_stream/","all_groups":"/api/v1/hosts/24/all_groups/","ad_hoc_command_events":"/api/v1/hosts/24/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/41/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":41,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:40.031Z","modified":"2016-10-12T18:19:15.985Z","name":"akrzos-test-cfme-5612","description":"imported","inventory":2,"enabled":true,"instance_id":"420c6bba-c438-7e64-400a-07e67394c91b","variables":"{\"vmware_vmPathName\": - \"[NFS Share] akrzos-test-cfme-5612/akrzos-test-cfme-5612.vmx\", \"vmware_ipAddress\": - \"10.8.99.227\", \"vmware_guestMemoryUsage\": 1146, \"vmware_networks\": [\"VM - Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 6 (64-bit)\", - \"vmware_product_instanceId\": null, \"vmware_balloonedMemory\": 0, \"vmware_hostSystem\": - \"ibm-x3550m4-01.example.com\", \"vmware_product_classId\": - null, \"vmware_distributedCpuEntitlement\": 311, \"ansible_ssh_host\": \"10.8.99.227\", - \"vmware_product_key\": 0, \"vmware_unshared\": 2960094962, \"vmware_guestState\": - \"running\", \"vmware_staticMemoryEntitlement\": 8300, \"vmware_toolsStatus\": - \"toolsOk\", \"vmware_overallStatus\": \"green\", \"vmware_minRequiredEVCModeKey\": - \"intel-sandybridge\", \"vmware_uuid\": \"420c6bba-c438-7e64-400a-07e67394c91b\", - \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_product_version\": - \"4.1\", \"vmware_staticCpuEntitlement\": 1431, \"vmware_uncommitted\": 63505080320, - \"vmware_distributedMemoryEntitlement\": 2296, \"vmware_product_appUrl\": - null, \"vmware_template\": false, \"vmware_overallCpuDemand\": 311, \"vmware_product_fullVersion\": - null, \"vmware_ftSecondaryLatency\": -1, \"vmware_numVirtualDisks\": 2, \"vmware_annotation\": - null, \"vmware_maxMemoryUsage\": 8192, \"vmware_recordReplayState\": \"inactive\", - \"vmware_sharedMemory\": 53, \"vmware_privateMemory\": 3739, \"vmware_resourcePool\": - \"Resources\", \"vmware_product_name\": \"Red Hat CloudForms 4.1\", \"vmware_overallCpuUsage\": - 311, \"vmware_suspendInterval\": 0, \"vmware_toolsInstallerMounted\": false, - \"vmware_memoryReservation\": 0, \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": - \"akrzos-test-cfme-5612\", \"vmware_product_vendor\": \"Red Hat, Inc.\", \"vmware_uptimeSeconds\": - 7956, \"vmware_memorySizeMB\": 8192, \"vmware_instanceUuid\": \"500c3779-3198-9948-9ee3-7d3737a79e98\", - \"vmware_compressedMemory\": 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": - 4, \"vmware_installBootRequired\": false, \"vmware_committed\": 2961132774, - \"vmware_name\": \"akrzos-test-cfme-5612\", \"vmware_toolsVersionStatus\": - \"guestToolsUnmanaged\", \"vmware_cpuReservation\": 0, \"vmware_hostMemoryUsage\": - 3793, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"green\", \"vmware_toolsRunningStatus\": \"guestToolsRunning\", \"vmware_powerState\": - \"poweredOn\", \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"NFS - Share\"], \"vmware_guestId\": \"rhel6_64Guest\", \"vmware_swappedMemory\": - 0, \"vmware_consumedOverheadMemory\": 50, \"vmware_ftLatencyStatus\": \"gray\"}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":41},{"id":3,"type":"host","url":"/api/v1/hosts/3/","related":{"job_host_summaries":"/api/v1/hosts/3/job_host_summaries/","variable_data":"/api/v1/hosts/3/variable_data/","job_events":"/api/v1/hosts/3/job_events/","ad_hoc_commands":"/api/v1/hosts/3/ad_hoc_commands/","fact_versions":"/api/v1/hosts/3/fact_versions/","inventory_sources":"/api/v1/hosts/3/inventory_sources/","groups":"/api/v1/hosts/3/groups/","activity_stream":"/api/v1/hosts/3/activity_stream/","all_groups":"/api/v1/hosts/3/all_groups/","ad_hoc_command_events":"/api/v1/hosts/3/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:39.883Z","modified":"2016-08-31T16:59:43.374Z","name":"Ansible-Host","description":"imported","inventory":2,"enabled":false,"instance_id":"4233080d-7467-de61-76c9-c8307b6e4830","variables":"{\"vmware_privateMemory\": + 0, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"datastore2\"], + \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": + -1, \"vmware_powerState\": \"poweredOff\", \"vmware_guestId\": \"windows7Server64Guest\", + \"vmware_numVirtualDisks\": 2, \"vmware_swappedMemory\": 0, \"vmware_annotation\": + null, \"vmware_recordReplayState\": \"inactive\", \"vmware_unshared\": 10737418240, + \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":215,"type":"host","url":"/api/v1/hosts/215/","related":{"job_host_summaries":"/api/v1/hosts/215/job_host_summaries/","variable_data":"/api/v1/hosts/215/variable_data/","job_events":"/api/v1/hosts/215/job_events/","ad_hoc_commands":"/api/v1/hosts/215/ad_hoc_commands/","fact_versions":"/api/v1/hosts/215/fact_versions/","inventory_sources":"/api/v1/hosts/215/inventory_sources/","groups":"/api/v1/hosts/215/groups/","activity_stream":"/api/v1/hosts/215/activity_stream/","all_groups":"/api/v1/hosts/215/all_groups/","ad_hoc_command_events":"/api/v1/hosts/215/ad_hoc_command_events/","inventory":"/api/v1/inventories/77/"},"summary_fields":{"inventory":{"id":77,"name":"jwong-i-group","description":"","has_active_failures":false,"total_hosts":8,"hosts_with_active_failures":0,"total_groups":14,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2017-06-19T19:46:54.526Z","modified":"2017-06-19T19:46:54.980Z","name":"test3","description":"imported","inventory":77,"enabled":false,"instance_id":"42141b40-d762-feb5-ab0e-53f40a4cd5cb","variables":"{\"vmware_privateMemory\": 0, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": 0, \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": - [\"VM Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 7 (64-bit)\", - \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": 0, - \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": - 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"test-vc60-host2.example.com\", - \"vmware_instanceUuid\": \"50337917-876b-364f-6c3e-030ab9411b7e\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] Ansible-Host/Ansible-Host.vmx\", \"vmware_guestState\": - \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": - \"toolsNotInstalled\", \"vmware_overallStatus\": \"green\", \"vmware_numCpu\": - 1, \"vmware_uuid\": \"4233080d-7467-de61-76c9-c8307b6e4830\", \"vmware_installBootRequired\": - false, \"vmware_committed\": 2431, \"vmware_name\": \"Ansible-Host\", \"vmware_toolsVersionStatus\": - \"guestToolsNotInstalled\", \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": - 3376017408, \"vmware_hostMemoryUsage\": 0, \"vmware_distributedMemoryEntitlement\": + [\"VM Network\"], \"vmware_guestFullName\": \"Microsoft Windows Server 2008 + R2 (64-bit)\", \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": + 0, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"jwong-esxi2.example.com\", + \"vmware_instanceUuid\": \"5014bb35-5e62-b1ae-e411-6d3e713b97b1\", \"vmware_distributedCpuEntitlement\": + 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 4096, \"vmware_compressedMemory\": + 0, \"vmware_vmPathName\": \"[vsanDatastore] 45f59057-484f-80dd-9090-0050568c8460/test3.vmx\", + \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": + 0, \"vmware_toolsStatus\": \"toolsNotInstalled\", \"vmware_overallStatus\": + \"green\", \"vmware_numCpu\": 1, \"vmware_uuid\": \"42141b40-d762-feb5-ab0e-53f40a4cd5cb\", + \"vmware_installBootRequired\": false, \"vmware_committed\": 25168196, \"vmware_name\": + \"test3\", \"vmware_toolsVersionStatus\": \"guestToolsNotInstalled\", \"vmware_staticCpuEntitlement\": + 0, \"vmware_uncommitted\": 17309495296, \"vmware_hostMemoryUsage\": 0, \"vmware_distributedMemoryEntitlement\": 0, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": false, \"vmware_toolsRunningStatus\": \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": - 0, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"NFS Share\"], + 0, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"vsanDatastore\"], \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": - -1, \"vmware_powerState\": \"poweredOff\", \"vmware_guestId\": \"rhel7_64Guest\", - \"vmware_numVirtualDisks\": 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": - null, \"vmware_recordReplayState\": \"inactive\", \"vmware_unshared\": 498, - \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":25,"type":"host","url":"/api/v1/hosts/25/","related":{"job_host_summaries":"/api/v1/hosts/25/job_host_summaries/","variable_data":"/api/v1/hosts/25/variable_data/","job_events":"/api/v1/hosts/25/job_events/","ad_hoc_commands":"/api/v1/hosts/25/ad_hoc_commands/","fact_versions":"/api/v1/hosts/25/fact_versions/","inventory_sources":"/api/v1/hosts/25/inventory_sources/","groups":"/api/v1/hosts/25/groups/","activity_stream":"/api/v1/hosts/25/activity_stream/","all_groups":"/api/v1/hosts/25/all_groups/","ad_hoc_command_events":"/api/v1/hosts/25/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.036Z","modified":"2016-08-31T16:59:43.379Z","name":"ansible-stupid-test","description":"imported","inventory":2,"enabled":false,"instance_id":"420cc84e-d8b9-5a6b-2ae9-f2dbe08d475e","variables":"{\"vmware_privateMemory\": + -1, \"vmware_powerState\": \"poweredOff\", \"vmware_guestId\": \"windows7Server64Guest\", + \"vmware_numVirtualDisks\": 4, \"vmware_swappedMemory\": 0, \"vmware_annotation\": + null, \"vmware_recordReplayState\": \"inactive\", \"vmware_unshared\": 25165824, + \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":211,"type":"host","url":"/api/v1/hosts/211/","related":{"job_host_summaries":"/api/v1/hosts/211/job_host_summaries/","variable_data":"/api/v1/hosts/211/variable_data/","job_events":"/api/v1/hosts/211/job_events/","ad_hoc_commands":"/api/v1/hosts/211/ad_hoc_commands/","fact_versions":"/api/v1/hosts/211/fact_versions/","inventory_sources":"/api/v1/hosts/211/inventory_sources/","groups":"/api/v1/hosts/211/groups/","activity_stream":"/api/v1/hosts/211/activity_stream/","all_groups":"/api/v1/hosts/211/all_groups/","ad_hoc_command_events":"/api/v1/hosts/211/ad_hoc_command_events/","inventory":"/api/v1/inventories/77/"},"summary_fields":{"inventory":{"id":77,"name":"jwong-i-group","description":"","has_active_failures":false,"total_hosts":8,"hosts_with_active_failures":0,"total_groups":14,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2017-06-19T19:46:54.504Z","modified":"2017-06-19T19:46:54.984Z","name":"test-new-rbvm","description":"imported","inventory":77,"enabled":false,"instance_id":"42144e72-ffa6-a3dc-529b-166fce314721","variables":"{\"vmware_privateMemory\": 0, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": 0, \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 7 (64-bit)\", \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": 0, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": - 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"test-vc60-host2.example.com\", - \"vmware_instanceUuid\": \"500cb691-6d91-b961-c9da-7e23a1b1833d\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] ansible-stupid-test/ansible-stupid-test.vmx\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"jwong-esxi2.example.com\", + \"vmware_instanceUuid\": \"50149a48-6088-b4c7-3be8-760b83809200\", \"vmware_distributedCpuEntitlement\": + 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 1024, \"vmware_compressedMemory\": + 0, \"vmware_vmPathName\": \"[datastore1 (1)] test-new-rbvm/test-new-rbvm.vmx\", \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": \"toolsNotInstalled\", \"vmware_overallStatus\": - \"green\", \"vmware_numCpu\": 1, \"vmware_uuid\": \"420cc84e-d8b9-5a6b-2ae9-f2dbe08d475e\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 2461, \"vmware_name\": - \"ansible-stupid-test\", \"vmware_toolsVersionStatus\": \"guestToolsNotInstalled\", - \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": 19482144768, \"vmware_hostMemoryUsage\": + \"green\", \"vmware_numCpu\": 1, \"vmware_uuid\": \"42144e72-ffa6-a3dc-529b-166fce314721\", + \"vmware_installBootRequired\": false, \"vmware_committed\": 2326, \"vmware_name\": + \"test-new-rbvm\", \"vmware_toolsVersionStatus\": \"guestToolsNotInstalled\", + \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": 26998338586, \"vmware_hostMemoryUsage\": 0, \"vmware_distributedMemoryEntitlement\": 0, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": false, \"vmware_toolsRunningStatus\": \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": 0, \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_cpuReservation\": 0, - \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": - \"poweredOff\", \"vmware_guestId\": \"rhel7_64Guest\", \"vmware_numVirtualDisks\": - 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": null, \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 507, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":26,"type":"host","url":"/api/v1/hosts/26/","related":{"job_host_summaries":"/api/v1/hosts/26/job_host_summaries/","variable_data":"/api/v1/hosts/26/variable_data/","job_events":"/api/v1/hosts/26/job_events/","ad_hoc_commands":"/api/v1/hosts/26/ad_hoc_commands/","fact_versions":"/api/v1/hosts/26/fact_versions/","inventory_sources":"/api/v1/hosts/26/inventory_sources/","groups":"/api/v1/hosts/26/groups/","activity_stream":"/api/v1/hosts/26/activity_stream/","all_groups":"/api/v1/hosts/26/all_groups/","ad_hoc_command_events":"/api/v1/hosts/26/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.041Z","modified":"2016-08-31T16:59:43.383Z","name":"bd-brewery7","description":"imported","inventory":2,"enabled":false,"instance_id":"423335cd-4f1c-debe-1a7d-4d8279336b70","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": 0, - \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": - [\"VM Network\"], \"vmware_guestFullName\": \"CentOS 4/5/6/7 (64-bit)\", \"vmware_toolsInstallerMounted\": - false, \"vmware_memoryReservation\": 0, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": - \"ibm-x3550m4-04.example.com\", \"vmware_instanceUuid\": - \"50335907-ffa8-7d93-7118-88e1d719219b\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 16384, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] bd-brewery7/bd-brewery7.vmx\", \"vmware_guestState\": - \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": - \"toolsNotRunning\", \"vmware_overallStatus\": \"green\", \"vmware_numCpu\": - 4, \"vmware_uuid\": \"423335cd-4f1c-debe-1a7d-4d8279336b70\", \"vmware_installBootRequired\": - false, \"vmware_committed\": 75161199723, \"vmware_name\": \"bd-brewery7\", - \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", \"vmware_staticCpuEntitlement\": - 0, \"vmware_uncommitted\": 28091973632, \"vmware_hostMemoryUsage\": 0, \"vmware_distributedMemoryEntitlement\": - 0, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"gray\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - false, \"vmware_toolsRunningStatus\": \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": - 0, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"NFS Share\"], - \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": - -1, \"vmware_powerState\": \"poweredOff\", \"vmware_guestId\": \"centos64Guest\", - \"vmware_numVirtualDisks\": 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": - \"CentOS 7.1 ImageFactory VM\", \"vmware_recordReplayState\": \"inactive\", - \"vmware_unshared\": 75161002519, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":27,"type":"host","url":"/api/v1/hosts/27/","related":{"job_host_summaries":"/api/v1/hosts/27/job_host_summaries/","variable_data":"/api/v1/hosts/27/variable_data/","job_events":"/api/v1/hosts/27/job_events/","ad_hoc_commands":"/api/v1/hosts/27/ad_hoc_commands/","fact_versions":"/api/v1/hosts/27/fact_versions/","inventory_sources":"/api/v1/hosts/27/inventory_sources/","groups":"/api/v1/hosts/27/groups/","activity_stream":"/api/v1/hosts/27/activity_stream/","all_groups":"/api/v1/hosts/27/all_groups/","ad_hoc_command_events":"/api/v1/hosts/27/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.047Z","modified":"2016-08-31T16:59:43.388Z","name":"bd-emptyTemplate","description":"imported","inventory":2,"enabled":false,"instance_id":"420cda47-986f-cf2f-d0ce-5f9564163ea8","variables":"{\"vmware_privateMemory\": + -1, \"vmware_datastores\": [\"datastore1 (1)\"], \"vmware_cpuReservation\": + 0, \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": -1, + \"vmware_powerState\": \"poweredOff\", \"vmware_guestId\": \"rhel7_64Guest\", + \"vmware_numVirtualDisks\": 2, \"vmware_swappedMemory\": 0, \"vmware_annotation\": + \"MIQ GUID=c31cec6e-8f2f-11e6-989e-f45c89896441\", \"vmware_recordReplayState\": + \"inactive\", \"vmware_unshared\": 0, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":216,"type":"host","url":"/api/v1/hosts/216/","related":{"job_host_summaries":"/api/v1/hosts/216/job_host_summaries/","variable_data":"/api/v1/hosts/216/variable_data/","job_events":"/api/v1/hosts/216/job_events/","ad_hoc_commands":"/api/v1/hosts/216/ad_hoc_commands/","fact_versions":"/api/v1/hosts/216/fact_versions/","inventory_sources":"/api/v1/hosts/216/inventory_sources/","groups":"/api/v1/hosts/216/groups/","activity_stream":"/api/v1/hosts/216/activity_stream/","all_groups":"/api/v1/hosts/216/all_groups/","ad_hoc_command_events":"/api/v1/hosts/216/ad_hoc_command_events/","inventory":"/api/v1/inventories/77/"},"summary_fields":{"inventory":{"id":77,"name":"jwong-i-group","description":"","has_active_failures":false,"total_hosts":8,"hosts_with_active_failures":0,"total_groups":14,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2017-06-19T19:46:54.531Z","modified":"2017-06-19T19:46:54.989Z","name":"test_template","description":"imported","inventory":77,"enabled":false,"instance_id":"4214ec19-dda9-9397-54a1-00c9eabfc597","variables":"{\"vmware_privateMemory\": 0, \"vmware_resourcePool\": \"\", \"vmware_guestMemoryUsage\": 0, \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 7 (64-bit)\", \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": 0, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": - \"test-vc60-host2.example.com\", \"vmware_instanceUuid\": - \"500cd702-268a-fc97-b839-197438a6d7f4\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] bd-emptyTemplate/bd-emptyTemplate.vmtx\", - \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": - 0, \"vmware_toolsStatus\": \"toolsNotInstalled\", \"vmware_overallStatus\": - \"green\", \"vmware_numCpu\": 1, \"vmware_uuid\": \"420cda47-986f-cf2f-d0ce-5f9564163ea8\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 2615, \"vmware_name\": - \"bd-emptyTemplate\", \"vmware_toolsVersionStatus\": \"guestToolsNotInstalled\", - \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": 3376017408, \"vmware_hostMemoryUsage\": - 0, \"vmware_distributedMemoryEntitlement\": 0, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_template\": true, \"vmware_toolsRunningStatus\": - \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": 0, \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_cpuReservation\": 0, - \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": - \"poweredOff\", \"vmware_guestId\": \"rhel7_64Guest\", \"vmware_numVirtualDisks\": - 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": \"MIQ GUID=1a6b069c-1783-11e6-892d-0242afe60688\", - \"vmware_recordReplayState\": \"inactive\", \"vmware_unshared\": 502, \"vmware_sharedMemory\": - 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":28,"type":"host","url":"/api/v1/hosts/28/","related":{"job_host_summaries":"/api/v1/hosts/28/job_host_summaries/","variable_data":"/api/v1/hosts/28/variable_data/","job_events":"/api/v1/hosts/28/job_events/","ad_hoc_commands":"/api/v1/hosts/28/ad_hoc_commands/","fact_versions":"/api/v1/hosts/28/fact_versions/","inventory_sources":"/api/v1/hosts/28/inventory_sources/","groups":"/api/v1/hosts/28/groups/","activity_stream":"/api/v1/hosts/28/activity_stream/","all_groups":"/api/v1/hosts/28/all_groups/","ad_hoc_command_events":"/api/v1/hosts/28/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.052Z","modified":"2016-08-31T16:59:43.393Z","name":"bdunne-VmEmpty","description":"imported","inventory":2,"enabled":false,"instance_id":"420c4091-3ea0-6031-88e2-bf3086cd0ec5","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": 0, - \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": - [\"VM NFS Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux - 7 (64-bit)\", \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": - 0, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": - 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_instanceUuid\": \"500c49be-365b-6d6f-eb35-283590a82d38\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] bdunne-VmEmpty/bdunne-VmEmpty.vmx\", - \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": - 0, \"vmware_toolsStatus\": \"toolsNotInstalled\", \"vmware_overallStatus\": - \"green\", \"vmware_numCpu\": 1, \"vmware_uuid\": \"420c4091-3ea0-6031-88e2-bf3086cd0ec5\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 47530, \"vmware_name\": - \"bdunne-VmEmpty\", \"vmware_toolsVersionStatus\": \"guestToolsNotInstalled\", - \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": 3376013312, \"vmware_hostMemoryUsage\": - 0, \"vmware_distributedMemoryEntitlement\": 0, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_template\": false, \"vmware_toolsRunningStatus\": - \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": 0, \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_cpuReservation\": 0, - \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": - \"poweredOff\", \"vmware_guestId\": \"rhel7_64Guest\", \"vmware_numVirtualDisks\": - 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": null, \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 13785, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":29,"type":"host","url":"/api/v1/hosts/29/","related":{"job_host_summaries":"/api/v1/hosts/29/job_host_summaries/","variable_data":"/api/v1/hosts/29/variable_data/","job_events":"/api/v1/hosts/29/job_events/","ad_hoc_commands":"/api/v1/hosts/29/ad_hoc_commands/","fact_versions":"/api/v1/hosts/29/fact_versions/","inventory_sources":"/api/v1/hosts/29/inventory_sources/","groups":"/api/v1/hosts/29/groups/","activity_stream":"/api/v1/hosts/29/activity_stream/","all_groups":"/api/v1/hosts/29/all_groups/","ad_hoc_command_events":"/api/v1/hosts/29/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.057Z","modified":"2016-08-31T16:59:43.397Z","name":"bm-cfme-5.5.2.4","description":"imported","inventory":2,"enabled":false,"instance_id":"420c55e6-9917-0d86-b47c-e9e716c3b133","variables":"{\"vmware_vmPathName\": - \"[NFS Share] bm-cfme-5.5.2.4/bm-cfme-5.5.2.4.vmx\", \"vmware_guestMemoryUsage\": - 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"Red - Hat Enterprise Linux 6 (64-bit)\", \"vmware_product_instanceId\": null, \"vmware_balloonedMemory\": - 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_product_classId\": null, \"vmware_distributedCpuEntitlement\": 0, - \"vmware_product_key\": 0, \"vmware_unshared\": 13947265556, \"vmware_guestState\": - \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": - \"toolsNotRunning\", \"vmware_overallStatus\": \"green\", \"vmware_uuid\": - \"420c55e6-9917-0d86-b47c-e9e716c3b133\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_product_version\": \"4.0\", \"vmware_staticCpuEntitlement\": - 0, \"vmware_uncommitted\": 37787557888, \"vmware_distributedMemoryEntitlement\": - 0, \"vmware_product_appUrl\": null, \"vmware_template\": false, \"vmware_overallCpuDemand\": - 0, \"vmware_product_fullVersion\": null, \"vmware_ftSecondaryLatency\": -1, - \"vmware_numVirtualDisks\": 1, \"vmware_annotation\": null, \"vmware_recordReplayState\": - \"inactive\", \"vmware_sharedMemory\": 0, \"vmware_privateMemory\": 0, \"vmware_resourcePool\": - \"Resources\", \"vmware_product_name\": \"Red Hat CloudForms 4.0\", \"vmware_overallCpuUsage\": - 0, \"vmware_suspendInterval\": 0, \"vmware_toolsInstallerMounted\": false, - \"vmware_memoryReservation\": 0, \"vmware_numMksConnections\": 0, \"vmware_numEthernetCards\": - 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": \"dhcp-8-99-207.example.com\", - \"vmware_product_vendor\": \"Red Hat, Inc.\", \"vmware_uptimeSeconds\": 0, - \"vmware_memorySizeMB\": 8192, \"vmware_instanceUuid\": \"500c352d-8daf-465f-8bf1-7ff5557f7fd8\", - \"vmware_compressedMemory\": 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": - 4, \"vmware_installBootRequired\": false, \"vmware_committed\": 13948858122, - \"vmware_name\": \"bm-cfme-5.5.2.4\", \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", - \"vmware_cpuReservation\": 0, \"vmware_hostMemoryUsage\": 0, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_toolsRunningStatus\": - \"guestToolsNotRunning\", \"vmware_powerState\": \"poweredOff\", \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_guestId\": \"rhel6_64Guest\", - \"vmware_swappedMemory\": 0, \"vmware_consumedOverheadMemory\": 0, \"vmware_ftLatencyStatus\": - \"gray\"}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":30,"type":"host","url":"/api/v1/hosts/30/","related":{"job_host_summaries":"/api/v1/hosts/30/job_host_summaries/","variable_data":"/api/v1/hosts/30/variable_data/","job_events":"/api/v1/hosts/30/job_events/","ad_hoc_commands":"/api/v1/hosts/30/ad_hoc_commands/","fact_versions":"/api/v1/hosts/30/fact_versions/","inventory_sources":"/api/v1/hosts/30/inventory_sources/","groups":"/api/v1/hosts/30/groups/","activity_stream":"/api/v1/hosts/30/activity_stream/","all_groups":"/api/v1/hosts/30/all_groups/","ad_hoc_command_events":"/api/v1/hosts/30/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.063Z","modified":"2016-08-31T16:59:43.402Z","name":"centos7_temp","description":"imported","inventory":2,"enabled":false,"instance_id":"420c37c4-1c29-d28b-1154-0a45081236f6","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"\", \"vmware_guestMemoryUsage\": 0, \"vmware_overallCpuUsage\": - 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": - \"CentOS 4/5/6/7 (64-bit)\", \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": - 0, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": - 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_instanceUuid\": \"500c4372-559a-e757-7348-9f564eaa5482\", \"vmware_distributedCpuEntitlement\": + \"jwong-esxi3.example.com\", \"vmware_instanceUuid\": + \"50140bb2-d202-dca6-539b-b9f1f46faa84\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] centos7_temp/centos7_temp.vmtx\", + 0, \"vmware_vmPathName\": \"[vsanDatastore] f05fb757-909a-24d1-f2be-0050568c8460/test_template.vmtx\", \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": \"toolsNotInstalled\", \"vmware_overallStatus\": - \"green\", \"vmware_numCpu\": 1, \"vmware_uuid\": \"420c37c4-1c29-d28b-1154-0a45081236f6\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 1031529385, \"vmware_name\": - \"centos7_temp\", \"vmware_toolsVersionStatus\": \"guestToolsNotInstalled\", - \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": 33520832512, \"vmware_hostMemoryUsage\": + \"green\", \"vmware_numCpu\": 1, \"vmware_uuid\": \"4214ec19-dda9-9397-54a1-00c9eabfc597\", + \"vmware_installBootRequired\": false, \"vmware_committed\": 8390517, \"vmware_name\": + \"test_template\", \"vmware_toolsVersionStatus\": \"guestToolsNotInstalled\", + \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": 19473756160, \"vmware_hostMemoryUsage\": 0, \"vmware_distributedMemoryEntitlement\": 0, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": true, \"vmware_toolsRunningStatus\": \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": 0, \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_cpuReservation\": 0, - \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": - \"poweredOff\", \"vmware_guestId\": \"centos64Guest\", \"vmware_numVirtualDisks\": - 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": null, \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 1030959604, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":31,"type":"host","url":"/api/v1/hosts/31/","related":{"job_host_summaries":"/api/v1/hosts/31/job_host_summaries/","variable_data":"/api/v1/hosts/31/variable_data/","job_events":"/api/v1/hosts/31/job_events/","ad_hoc_commands":"/api/v1/hosts/31/ad_hoc_commands/","fact_versions":"/api/v1/hosts/31/fact_versions/","inventory_sources":"/api/v1/hosts/31/inventory_sources/","groups":"/api/v1/hosts/31/groups/","activity_stream":"/api/v1/hosts/31/activity_stream/","all_groups":"/api/v1/hosts/31/all_groups/","ad_hoc_command_events":"/api/v1/hosts/31/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/29/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":29,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:40.068Z","modified":"2016-10-12T18:19:15.990Z","name":"cfme_5612-1-stable-11082016","description":"imported","inventory":2,"enabled":true,"instance_id":"420c08bd-2105-aa50-fb22-f65495fb38ed","variables":"{\"vmware_vmPathName\": - \"[NFS Share] cfme_5612-1-stable-11082016/cfme_5612-1-stable-11082016.vmx\", - \"vmware_ipAddress\": \"10.8.99.208\", \"vmware_guestMemoryUsage\": 81, \"vmware_networks\": - [\"VM Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 6 (64-bit)\", - \"vmware_product_instanceId\": null, \"vmware_balloonedMemory\": 0, \"vmware_hostSystem\": - \"ibm-x3550m4-03.example.com\", \"vmware_product_classId\": - null, \"vmware_distributedCpuEntitlement\": 0, \"ansible_ssh_host\": \"10.8.99.208\", - \"vmware_product_key\": 0, \"vmware_unshared\": 2184119368, \"vmware_guestState\": - \"running\", \"vmware_staticMemoryEntitlement\": 8300, \"vmware_toolsStatus\": - \"toolsOk\", \"vmware_overallStatus\": \"green\", \"vmware_minRequiredEVCModeKey\": - \"intel-sandybridge\", \"vmware_uuid\": \"420c08bd-2105-aa50-fb22-f65495fb38ed\", - \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_product_version\": - \"4.1\", \"vmware_staticCpuEntitlement\": 1431, \"vmware_uncommitted\": 62240391168, - \"vmware_distributedMemoryEntitlement\": 519, \"vmware_product_appUrl\": null, - \"vmware_template\": false, \"vmware_overallCpuDemand\": 0, \"vmware_product_fullVersion\": - null, \"vmware_ftSecondaryLatency\": -1, \"vmware_numVirtualDisks\": 2, \"vmware_annotation\": - null, \"vmware_maxMemoryUsage\": 8192, \"vmware_recordReplayState\": \"inactive\", - \"vmware_sharedMemory\": 90, \"vmware_privateMemory\": 824, \"vmware_resourcePool\": - \"Resources\", \"vmware_product_name\": \"Red Hat CloudForms 4.1\", \"vmware_overallCpuUsage\": - 0, \"vmware_suspendInterval\": 0, \"vmware_toolsInstallerMounted\": false, - \"vmware_memoryReservation\": 0, \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": - \"dhcp-8-99-208.example.com\", \"vmware_product_vendor\": - \"Red Hat, Inc.\", \"vmware_uptimeSeconds\": 8078, \"vmware_memorySizeMB\": - 8192, \"vmware_instanceUuid\": \"500cc3ad-714e-1341-b993-0545df400b3e\", \"vmware_compressedMemory\": - 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": 4, \"vmware_installBootRequired\": - false, \"vmware_committed\": 2184511652, \"vmware_name\": \"cfme_5612-1-stable-11082016\", - \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", \"vmware_cpuReservation\": - 0, \"vmware_hostMemoryUsage\": 883, \"vmware_connectionState\": \"connected\", - \"vmware_guestHeartbeatStatus\": \"green\", \"vmware_toolsRunningStatus\": - \"guestToolsRunning\", \"vmware_powerState\": \"poweredOn\", \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_guestId\": \"rhel6_64Guest\", - \"vmware_swappedMemory\": 0, \"vmware_consumedOverheadMemory\": 44, \"vmware_ftLatencyStatus\": - \"gray\"}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":29},{"id":32,"type":"host","url":"/api/v1/hosts/32/","related":{"job_host_summaries":"/api/v1/hosts/32/job_host_summaries/","variable_data":"/api/v1/hosts/32/variable_data/","job_events":"/api/v1/hosts/32/job_events/","ad_hoc_commands":"/api/v1/hosts/32/ad_hoc_commands/","fact_versions":"/api/v1/hosts/32/fact_versions/","inventory_sources":"/api/v1/hosts/32/inventory_sources/","groups":"/api/v1/hosts/32/groups/","activity_stream":"/api/v1/hosts/32/activity_stream/","all_groups":"/api/v1/hosts/32/all_groups/","ad_hoc_command_events":"/api/v1/hosts/32/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.074Z","modified":"2016-08-31T16:59:43.411Z","name":"console_test1","description":"imported","inventory":2,"enabled":false,"instance_id":"420c2d64-33d1-9cdf-9e59-10456729d89e","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": 0, - \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": - [\"VM Network\"], \"vmware_guestFullName\": \"CentOS 4/5/6/7 (64-bit)\", \"vmware_toolsInstallerMounted\": - false, \"vmware_memoryReservation\": 0, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": - \"ibm-x3550m4-04.example.com\", \"vmware_instanceUuid\": - \"500ced40-5440-06c7-5f6a-a2965aa9d088\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] console_test1/console_test1.vmx\", - \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": - 0, \"vmware_toolsStatus\": \"toolsNotInstalled\", \"vmware_overallStatus\": - \"green\", \"vmware_numCpu\": 1, \"vmware_uuid\": \"420c2d64-33d1-9cdf-9e59-10456729d89e\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 1038819962, \"vmware_name\": - \"console_test1\", \"vmware_toolsVersionStatus\": \"guestToolsNotInstalled\", - \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": 18460037120, \"vmware_hostMemoryUsage\": - 0, \"vmware_distributedMemoryEntitlement\": 0, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_template\": false, \"vmware_toolsRunningStatus\": - \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": 0, \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_cpuReservation\": 0, - \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": - \"poweredOff\", \"vmware_guestId\": \"centos64Guest\", \"vmware_numVirtualDisks\": - 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": null, \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 1037894133, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":33,"type":"host","url":"/api/v1/hosts/33/","related":{"job_host_summaries":"/api/v1/hosts/33/job_host_summaries/","variable_data":"/api/v1/hosts/33/variable_data/","job_events":"/api/v1/hosts/33/job_events/","ad_hoc_commands":"/api/v1/hosts/33/ad_hoc_commands/","fact_versions":"/api/v1/hosts/33/fact_versions/","inventory_sources":"/api/v1/hosts/33/inventory_sources/","groups":"/api/v1/hosts/33/groups/","activity_stream":"/api/v1/hosts/33/activity_stream/","all_groups":"/api/v1/hosts/33/all_groups/","ad_hoc_command_events":"/api/v1/hosts/33/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.079Z","modified":"2016-08-31T16:59:43.415Z","name":"console_test2","description":"imported","inventory":2,"enabled":false,"instance_id":"420c36c5-f6f0-2788-8a92-ab545196b6d8","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": 0, - \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": - [\"VM Network\"], \"vmware_guestFullName\": \"CentOS 4/5/6/7 (64-bit)\", \"vmware_toolsInstallerMounted\": - false, \"vmware_memoryReservation\": 0, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": - \"ibm-x3550m4-04.example.com\", \"vmware_instanceUuid\": - \"500cff60-e993-de9a-aedb-0beca8e6ec75\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] console_test2/console_test2.vmx\", - \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": - 0, \"vmware_toolsStatus\": \"toolsNotInstalled\", \"vmware_overallStatus\": - \"green\", \"vmware_numCpu\": 1, \"vmware_uuid\": \"420c36c5-f6f0-2788-8a92-ab545196b6d8\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 1035103788, \"vmware_name\": - \"console_test2\", \"vmware_toolsVersionStatus\": \"guestToolsNotInstalled\", - \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": 18463420416, \"vmware_hostMemoryUsage\": - 0, \"vmware_distributedMemoryEntitlement\": 0, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_template\": false, \"vmware_toolsRunningStatus\": - \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": 0, \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_cpuReservation\": 0, - \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": - \"poweredOff\", \"vmware_guestId\": \"centos64Guest\", \"vmware_numVirtualDisks\": - 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": null, \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 1034510860, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":34,"type":"host","url":"/api/v1/hosts/34/","related":{"job_host_summaries":"/api/v1/hosts/34/job_host_summaries/","variable_data":"/api/v1/hosts/34/variable_data/","job_events":"/api/v1/hosts/34/job_events/","ad_hoc_commands":"/api/v1/hosts/34/ad_hoc_commands/","fact_versions":"/api/v1/hosts/34/fact_versions/","inventory_sources":"/api/v1/hosts/34/inventory_sources/","groups":"/api/v1/hosts/34/groups/","activity_stream":"/api/v1/hosts/34/activity_stream/","all_groups":"/api/v1/hosts/34/all_groups/","ad_hoc_command_events":"/api/v1/hosts/34/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.084Z","modified":"2016-08-31T16:59:43.420Z","name":"console_test3","description":"imported","inventory":2,"enabled":false,"instance_id":"420ca0fe-b0c3-3285-46ab-e50f7094d073","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": 0, - \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": - [\"VM Network\"], \"vmware_guestFullName\": \"CentOS 4/5/6/7 (64-bit)\", \"vmware_toolsInstallerMounted\": - false, \"vmware_memoryReservation\": 0, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": - \"ibm-x3550m4-04.example.com\", \"vmware_instanceUuid\": - \"500c856f-41a9-79d7-4270-b6148c030d20\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] console_test3/console_test3.vmx\", - \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": - 0, \"vmware_toolsStatus\": \"toolsNotInstalled\", \"vmware_overallStatus\": - \"green\", \"vmware_numCpu\": 1, \"vmware_uuid\": \"420ca0fe-b0c3-3285-46ab-e50f7094d073\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 1028206097, \"vmware_name\": - \"console_test3\", \"vmware_toolsVersionStatus\": \"guestToolsNotInstalled\", - \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": 18470170624, \"vmware_hostMemoryUsage\": - 0, \"vmware_distributedMemoryEntitlement\": 0, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_template\": false, \"vmware_toolsRunningStatus\": - \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": 0, \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_cpuReservation\": 0, - \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": - \"poweredOff\", \"vmware_guestId\": \"centos64Guest\", \"vmware_numVirtualDisks\": - 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": null, \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 1027760652, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":36,"type":"host","url":"/api/v1/hosts/36/","related":{"job_host_summaries":"/api/v1/hosts/36/job_host_summaries/","variable_data":"/api/v1/hosts/36/variable_data/","job_events":"/api/v1/hosts/36/job_events/","ad_hoc_commands":"/api/v1/hosts/36/ad_hoc_commands/","fact_versions":"/api/v1/hosts/36/fact_versions/","inventory_sources":"/api/v1/hosts/36/inventory_sources/","groups":"/api/v1/hosts/36/groups/","activity_stream":"/api/v1/hosts/36/activity_stream/","all_groups":"/api/v1/hosts/36/all_groups/","ad_hoc_command_events":"/api/v1/hosts/36/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.095Z","modified":"2016-08-31T16:59:43.425Z","name":"db-centos-7","description":"imported","inventory":2,"enabled":false,"instance_id":"420c132a-40df-d4fa-7b08-c4352c3450c4","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": 0, - \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": - [\"VM Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 7 (64-bit)\", - \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": 0, - \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": - 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostName\": \"dhcp-8-99-226.example.com\", - \"vmware_instanceUuid\": \"500c5397-47c9-d319-6cf6-08dea1250db5\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 512, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] db-rhel-7/db-rhel-7.vmx\", \"vmware_guestState\": - \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": - \"toolsNotRunning\", \"vmware_overallStatus\": \"green\", \"vmware_numCpu\": - 4, \"vmware_uuid\": \"420c132a-40df-d4fa-7b08-c4352c3450c4\", \"vmware_installBootRequired\": - false, \"vmware_committed\": 1962862717, \"vmware_name\": \"db-centos-7\", - \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", \"vmware_staticCpuEntitlement\": - 0, \"vmware_uncommitted\": 20245696512, \"vmware_hostMemoryUsage\": 0, \"vmware_distributedMemoryEntitlement\": - 0, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"gray\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - false, \"vmware_toolsRunningStatus\": \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": - 0, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"NFS Share\"], - \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": - -1, \"vmware_powerState\": \"poweredOff\", \"vmware_guestId\": \"rhel7_64Guest\", - \"vmware_numVirtualDisks\": 3, \"vmware_swappedMemory\": 0, \"vmware_annotation\": - \"MIQ GUID=63bae348-ea1b-11e5-a1a7-a45e60f1b905\", \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 1961248216, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null}]}' + -1, \"vmware_datastores\": [\"vsanDatastore\"], \"vmware_cpuReservation\": + 0, \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": -1, + \"vmware_powerState\": \"poweredOff\", \"vmware_guestId\": \"rhel7_64Guest\", + \"vmware_numVirtualDisks\": 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": + null, \"vmware_recordReplayState\": \"inactive\", \"vmware_unshared\": 8388608, + \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null}]}' + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:22 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/config + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 301 + message: MOVED PERMANENTLY + headers: + Date: + - Mon, 14 Aug 2017 20:35:23 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Location: + - https://dev-ansible-tower3.example.com/api/v1/config/ + Content-Length: + - '0' + Content-Type: + - text/html; charset=utf-8 + body: + encoding: UTF-8 + string: '' http_version: - recorded_at: Thu, 09 Feb 2017 09:37:47 GMT + recorded_at: Mon, 14 Aug 2017 20:35:22 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/hosts/?page=2 + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/config/ body: encoding: US-ASCII string: '' @@ -1163,676 +763,11201 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:46 GMT + - Mon, 14 Aug 2017 20:35:23 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: - Accept,Cookie Allow: - - GET, POST, HEAD, OPTIONS + - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.219s - Content-Length: - - '88127' + - 0.218s + Transfer-Encoding: + - chunked Content-Type: - application/json body: - encoding: UTF-8 - string: '{"count":84,"next":"/api/v1/hosts/?page=3","previous":"/api/v1/hosts/?page=1","results":[{"id":37,"type":"host","url":"/api/v1/hosts/37/","related":{"job_host_summaries":"/api/v1/hosts/37/job_host_summaries/","variable_data":"/api/v1/hosts/37/variable_data/","job_events":"/api/v1/hosts/37/job_events/","ad_hoc_commands":"/api/v1/hosts/37/ad_hoc_commands/","fact_versions":"/api/v1/hosts/37/fact_versions/","inventory_sources":"/api/v1/hosts/37/inventory_sources/","groups":"/api/v1/hosts/37/groups/","activity_stream":"/api/v1/hosts/37/activity_stream/","all_groups":"/api/v1/hosts/37/all_groups/","ad_hoc_command_events":"/api/v1/hosts/37/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.100Z","modified":"2016-08-31T16:59:43.429Z","name":"db-centos-7-rebuild-request","description":"imported","inventory":2,"enabled":false,"instance_id":"420c68c3-38ce-2ea8-93b0-9440e529811d","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": 0, - \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": - [\"VM Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 7 (64-bit)\", - \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": 0, - \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": - 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_instanceUuid\": \"500c3ceb-025b-dcde-517f-8e7d06fbcb8e\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 1024, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] db-centos-7-rebuild-request/db-centos-7-rebuild-request.vmx\", - \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": - 0, \"vmware_toolsStatus\": \"toolsNotRunning\", \"vmware_overallStatus\": - \"green\", \"vmware_numCpu\": 1, \"vmware_uuid\": \"420c68c3-38ce-2ea8-93b0-9440e529811d\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 1951834603, \"vmware_name\": - \"db-centos-7-rebuild-request\", \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", - \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": 18641326080, \"vmware_hostMemoryUsage\": - 0, \"vmware_distributedMemoryEntitlement\": 0, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_template\": false, \"vmware_toolsRunningStatus\": - \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": 0, \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_cpuReservation\": 0, - \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": - \"poweredOff\", \"vmware_guestId\": \"rhel7_64Guest\", \"vmware_numVirtualDisks\": - 2, \"vmware_swappedMemory\": 0, \"vmware_annotation\": \"Owner: D B\\nEmail: - db@rh.com\\nSource: db-centos-7-template\\n\\nMIQ GUID=74b8599c-2d86-11e6-a875-a45e60f1b905\", - \"vmware_recordReplayState\": \"inactive\", \"vmware_unshared\": 1951822934, - \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":38,"type":"host","url":"/api/v1/hosts/38/","related":{"job_host_summaries":"/api/v1/hosts/38/job_host_summaries/","variable_data":"/api/v1/hosts/38/variable_data/","job_events":"/api/v1/hosts/38/job_events/","ad_hoc_commands":"/api/v1/hosts/38/ad_hoc_commands/","fact_versions":"/api/v1/hosts/38/fact_versions/","inventory_sources":"/api/v1/hosts/38/inventory_sources/","groups":"/api/v1/hosts/38/groups/","activity_stream":"/api/v1/hosts/38/activity_stream/","all_groups":"/api/v1/hosts/38/all_groups/","ad_hoc_command_events":"/api/v1/hosts/38/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.106Z","modified":"2016-08-31T16:59:43.434Z","name":"db-centos-7-template","description":"imported","inventory":2,"enabled":false,"instance_id":"420c2024-ecc0-3f93-4ed6-c8fe897ec8f2","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"\", \"vmware_guestMemoryUsage\": 0, \"vmware_overallCpuUsage\": - 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": - \"Red Hat Enterprise Linux 7 (64-bit)\", \"vmware_toolsInstallerMounted\": - false, \"vmware_memoryReservation\": 0, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": - \"ibm-x3550m4-04.example.com\", \"vmware_instanceUuid\": - \"500c5cc7-d345-bfcb-0ddc-523db3d350d5\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 512, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] db-centos-7-template/db-centos-7-template.vmtx\", - \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": - 0, \"vmware_toolsStatus\": \"toolsNotRunning\", \"vmware_overallStatus\": - \"green\", \"vmware_numCpu\": 4, \"vmware_uuid\": \"420c2024-ecc0-3f93-4ed6-c8fe897ec8f2\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 1951834502, \"vmware_name\": - \"db-centos-7-template\", \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", - \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": 18107637760, \"vmware_hostMemoryUsage\": - 0, \"vmware_distributedMemoryEntitlement\": 0, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_template\": true, \"vmware_toolsRunningStatus\": - \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": 0, \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_cpuReservation\": 0, - \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": - \"poweredOff\", \"vmware_guestId\": \"rhel7_64Guest\", \"vmware_numVirtualDisks\": - 2, \"vmware_swappedMemory\": 0, \"vmware_annotation\": \"MIQ GUID=63bae348-ea1b-11e5-a1a7-a45e60f1b905\", - \"vmware_recordReplayState\": \"inactive\", \"vmware_unshared\": 1951822920, - \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":42,"type":"host","url":"/api/v1/hosts/42/","related":{"job_host_summaries":"/api/v1/hosts/42/job_host_summaries/","variable_data":"/api/v1/hosts/42/variable_data/","job_events":"/api/v1/hosts/42/job_events/","ad_hoc_commands":"/api/v1/hosts/42/ad_hoc_commands/","fact_versions":"/api/v1/hosts/42/fact_versions/","inventory_sources":"/api/v1/hosts/42/inventory_sources/","groups":"/api/v1/hosts/42/groups/","activity_stream":"/api/v1/hosts/42/activity_stream/","all_groups":"/api/v1/hosts/42/all_groups/","ad_hoc_command_events":"/api/v1/hosts/42/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.127Z","modified":"2016-08-31T16:59:43.438Z","name":"db_cfme_5.5","description":"imported","inventory":2,"enabled":false,"instance_id":"420cdf52-153a-b5e4-22f9-a62e4aacd51c","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": 0, - \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": - [\"VM Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 6 (64-bit)\", - \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": 0, - \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": - 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_instanceUuid\": \"500c5ba2-3a7c-0159-d2d0-df42dcc15d6f\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 4096, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] db_cfme_5.5/db_cfme_5.5.vmx\", \"vmware_guestState\": - \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": - \"toolsNotRunning\", \"vmware_overallStatus\": \"green\", \"vmware_numCpu\": - 4, \"vmware_uuid\": \"420cdf52-153a-b5e4-22f9-a62e4aacd51c\", \"vmware_installBootRequired\": - false, \"vmware_committed\": 16793979593, \"vmware_name\": \"db_cfme_5.5\", - \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", \"vmware_staticCpuEntitlement\": - 0, \"vmware_uncommitted\": 171306475520, \"vmware_hostMemoryUsage\": 0, \"vmware_distributedMemoryEntitlement\": - 0, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"gray\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - false, \"vmware_toolsRunningStatus\": \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": - 0, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"NFS Share\"], - \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": - -1, \"vmware_powerState\": \"poweredOff\", \"vmware_guestId\": \"rhel6_64Guest\", - \"vmware_numVirtualDisks\": 2, \"vmware_swappedMemory\": 0, \"vmware_annotation\": - null, \"vmware_recordReplayState\": \"inactive\", \"vmware_unshared\": 16793560154, - \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":39,"type":"host","url":"/api/v1/hosts/39/","related":{"job_host_summaries":"/api/v1/hosts/39/job_host_summaries/","variable_data":"/api/v1/hosts/39/variable_data/","job_events":"/api/v1/hosts/39/job_events/","ad_hoc_commands":"/api/v1/hosts/39/ad_hoc_commands/","fact_versions":"/api/v1/hosts/39/fact_versions/","inventory_sources":"/api/v1/hosts/39/inventory_sources/","groups":"/api/v1/hosts/39/groups/","activity_stream":"/api/v1/hosts/39/activity_stream/","all_groups":"/api/v1/hosts/39/all_groups/","ad_hoc_command_events":"/api/v1/hosts/39/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.111Z","modified":"2016-08-31T16:59:43.443Z","name":"db-test-from-vc60","description":"imported","inventory":2,"enabled":false,"instance_id":"420c40b7-6ad1-28d9-e890-7ce150599d5c","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": 0, - \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": - [\"VM Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 7 (64-bit)\", - \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": 0, - \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": - 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostName\": \"dhcp-8-99-226.example.com\", - \"vmware_instanceUuid\": \"500c5399-55d1-e563-9f51-4dabcbf6a297\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 512, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] db-test-from-vc60/db-test-from-vc60.vmx\", - \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": - 0, \"vmware_toolsStatus\": \"toolsNotRunning\", \"vmware_overallStatus\": - \"green\", \"vmware_numCpu\": 4, \"vmware_uuid\": \"420c40b7-6ad1-28d9-e890-7ce150599d5c\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 1952206634, \"vmware_name\": - \"db-test-from-vc60\", \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", - \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": 18107637760, \"vmware_hostMemoryUsage\": - 0, \"vmware_distributedMemoryEntitlement\": 0, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_template\": false, \"vmware_toolsRunningStatus\": - \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": 0, \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_cpuReservation\": 0, - \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": - \"poweredOff\", \"vmware_guestId\": \"rhel7_64Guest\", \"vmware_numVirtualDisks\": - 2, \"vmware_swappedMemory\": 0, \"vmware_annotation\": \"MIQ GUID=63bae348-ea1b-11e5-a1a7-a45e60f1b905\", - \"vmware_recordReplayState\": \"inactive\", \"vmware_unshared\": 1951822914, - \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":83,"type":"host","url":"/api/v1/hosts/83/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/83/job_host_summaries/","variable_data":"/api/v1/hosts/83/variable_data/","job_events":"/api/v1/hosts/83/job_events/","ad_hoc_commands":"/api/v1/hosts/83/ad_hoc_commands/","fact_versions":"/api/v1/hosts/83/fact_versions/","inventory_sources":"/api/v1/hosts/83/inventory_sources/","groups":"/api/v1/hosts/83/groups/","activity_stream":"/api/v1/hosts/83/activity_stream/","all_groups":"/api/v1/hosts/83/all_groups/","ad_hoc_command_events":"/api/v1/hosts/83/ad_hoc_command_events/","inventory":"/api/v1/inventories/1/"},"summary_fields":{"inventory":{"id":1,"name":"Demo - Inventory","description":"","has_active_failures":false,"total_hosts":2,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"recent_jobs":[]},"created":"2017-01-24T21:42:35.958Z","modified":"2017-01-24T21:42:35.958Z","name":"db_test_host","description":"","inventory":1,"enabled":false,"instance_id":"","variables":"","has_active_failures":false,"has_inventory_sources":false,"last_job":null,"last_job_host_summary":null},{"id":40,"type":"host","url":"/api/v1/hosts/40/","related":{"job_host_summaries":"/api/v1/hosts/40/job_host_summaries/","variable_data":"/api/v1/hosts/40/variable_data/","job_events":"/api/v1/hosts/40/job_events/","ad_hoc_commands":"/api/v1/hosts/40/ad_hoc_commands/","fact_versions":"/api/v1/hosts/40/fact_versions/","inventory_sources":"/api/v1/hosts/40/inventory_sources/","groups":"/api/v1/hosts/40/groups/","activity_stream":"/api/v1/hosts/40/activity_stream/","all_groups":"/api/v1/hosts/40/all_groups/","ad_hoc_command_events":"/api/v1/hosts/40/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.116Z","modified":"2016-08-31T16:59:43.448Z","name":"db-test-nic-001","description":"imported","inventory":2,"enabled":false,"instance_id":"420cdb00-c3e1-d91f-286e-c9d36b1bae74","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": 0, - \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": - [\"VM Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 7 (64-bit)\", - \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": 0, - \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": - 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_instanceUuid\": \"500cbbed-2c8e-32f6-60db-3b775df7b027\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] db-test-nic-001/db-test-nic-001.vmx\", - \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": - 0, \"vmware_toolsStatus\": \"toolsNotInstalled\", \"vmware_overallStatus\": - \"green\", \"vmware_numCpu\": 1, \"vmware_uuid\": \"420cdb00-c3e1-d91f-286e-c9d36b1bae74\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 847898, \"vmware_name\": - \"db-test-nic-001\", \"vmware_toolsVersionStatus\": \"guestToolsNotInstalled\", - \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": 19519406080, \"vmware_hostMemoryUsage\": - 0, \"vmware_distributedMemoryEntitlement\": 0, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_template\": false, \"vmware_toolsRunningStatus\": - \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": 0, \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_cpuReservation\": 0, - \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": - \"poweredOff\", \"vmware_guestId\": \"rhel7_64Guest\", \"vmware_numVirtualDisks\": - 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": \"Owner: d b\\nEmail: - db@test.com\\nSource: gm-empty-template\\n\\nMIQ GUID=dcddc7aa-37c2-11e6-b434-a45e60f1b905\", - \"vmware_recordReplayState\": \"inactive\", \"vmware_unshared\": 526, \"vmware_sharedMemory\": - 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":41,"type":"host","url":"/api/v1/hosts/41/","related":{"job_host_summaries":"/api/v1/hosts/41/job_host_summaries/","variable_data":"/api/v1/hosts/41/variable_data/","job_events":"/api/v1/hosts/41/job_events/","ad_hoc_commands":"/api/v1/hosts/41/ad_hoc_commands/","fact_versions":"/api/v1/hosts/41/fact_versions/","inventory_sources":"/api/v1/hosts/41/inventory_sources/","groups":"/api/v1/hosts/41/groups/","activity_stream":"/api/v1/hosts/41/activity_stream/","all_groups":"/api/v1/hosts/41/all_groups/","ad_hoc_command_events":"/api/v1/hosts/41/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.122Z","modified":"2016-08-31T16:59:43.452Z","name":"db-test-nic-002","description":"imported","inventory":2,"enabled":false,"instance_id":"420cd79e-72a6-c2f0-634e-3d5d26e84f99","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": 0, - \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": - [\"VM Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 7 (64-bit)\", - \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": 0, - \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": - 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_instanceUuid\": \"500c08df-53b3-75eb-19b3-8d30e57602b5\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] db-test-nic-002/db-test-nic-002.vmx\", - \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": - 0, \"vmware_toolsStatus\": \"toolsNotInstalled\", \"vmware_overallStatus\": - \"green\", \"vmware_numCpu\": 1, \"vmware_uuid\": \"420cd79e-72a6-c2f0-634e-3d5d26e84f99\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 2788, \"vmware_name\": - \"db-test-nic-002\", \"vmware_toolsVersionStatus\": \"guestToolsNotInstalled\", - \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": 19482144768, \"vmware_hostMemoryUsage\": - 0, \"vmware_distributedMemoryEntitlement\": 0, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_template\": false, \"vmware_toolsRunningStatus\": - \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": 0, \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_cpuReservation\": 0, - \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": - \"poweredOff\", \"vmware_guestId\": \"rhel7_64Guest\", \"vmware_numVirtualDisks\": - 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": \"Owner: d b\\nEmail: - db@test.com\\nSource: gm-empty-template\\n\\nMIQ GUID=0872fdfe-3d63-11e6-8368-a45e60f1b905\", - \"vmware_recordReplayState\": \"inactive\", \"vmware_unshared\": 526, \"vmware_sharedMemory\": - 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":4,"type":"host","url":"/api/v1/hosts/4/","related":{"job_host_summaries":"/api/v1/hosts/4/job_host_summaries/","variable_data":"/api/v1/hosts/4/variable_data/","job_events":"/api/v1/hosts/4/job_events/","ad_hoc_commands":"/api/v1/hosts/4/ad_hoc_commands/","fact_versions":"/api/v1/hosts/4/fact_versions/","inventory_sources":"/api/v1/hosts/4/inventory_sources/","groups":"/api/v1/hosts/4/groups/","activity_stream":"/api/v1/hosts/4/activity_stream/","all_groups":"/api/v1/hosts/4/all_groups/","ad_hoc_command_events":"/api/v1/hosts/4/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:39.923Z","modified":"2016-08-31T16:59:43.458Z","name":"Dev-IPA2","description":"imported","inventory":2,"enabled":false,"instance_id":"420c8a2f-dd0c-b175-6749-11c0278be69c","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": 0, - \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": - [\"VM Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 7 (64-bit)\", - \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": 0, - \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": - 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostName\": \"Dev-IPA2.ipatesting.lab.redhat.com\", - \"vmware_instanceUuid\": \"500ca199-37a8-318a-e712-11c20210eab6\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 4096, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] Dev-IPA2/Dev-IPA2.vmx\", \"vmware_guestState\": - \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": - \"toolsNotRunning\", \"vmware_overallStatus\": \"green\", \"vmware_numCpu\": - 4, \"vmware_uuid\": \"420c8a2f-dd0c-b175-6749-11c0278be69c\", \"vmware_installBootRequired\": - false, \"vmware_committed\": 12030052484, \"vmware_name\": \"Dev-IPA2\", \"vmware_toolsVersionStatus\": - \"guestToolsUnmanaged\", \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": - 36268908544, \"vmware_hostMemoryUsage\": 0, \"vmware_distributedMemoryEntitlement\": - 0, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"gray\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - false, \"vmware_toolsRunningStatus\": \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": - 0, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"NFS Share\"], - \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": - -1, \"vmware_powerState\": \"poweredOff\", \"vmware_guestId\": \"rhel7_64Guest\", - \"vmware_numVirtualDisks\": 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": - null, \"vmware_recordReplayState\": \"inactive\", \"vmware_unshared\": 3419329754, - \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":43,"type":"host","url":"/api/v1/hosts/43/","related":{"job_host_summaries":"/api/v1/hosts/43/job_host_summaries/","variable_data":"/api/v1/hosts/43/variable_data/","job_events":"/api/v1/hosts/43/job_events/","ad_hoc_commands":"/api/v1/hosts/43/ad_hoc_commands/","fact_versions":"/api/v1/hosts/43/fact_versions/","inventory_sources":"/api/v1/hosts/43/inventory_sources/","groups":"/api/v1/hosts/43/groups/","activity_stream":"/api/v1/hosts/43/activity_stream/","all_groups":"/api/v1/hosts/43/all_groups/","ad_hoc_command_events":"/api/v1/hosts/43/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/18/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":18,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:40.133Z","modified":"2016-10-12T18:19:15.994Z","name":"djm","description":"imported","inventory":2,"enabled":true,"instance_id":"","variables":"{}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":18},{"id":35,"type":"host","url":"/api/v1/hosts/35/","related":{"job_host_summaries":"/api/v1/hosts/35/job_host_summaries/","variable_data":"/api/v1/hosts/35/variable_data/","job_events":"/api/v1/hosts/35/job_events/","ad_hoc_commands":"/api/v1/hosts/35/ad_hoc_commands/","fact_versions":"/api/v1/hosts/35/fact_versions/","inventory_sources":"/api/v1/hosts/35/inventory_sources/","groups":"/api/v1/hosts/35/groups/","activity_stream":"/api/v1/hosts/35/activity_stream/","all_groups":"/api/v1/hosts/35/all_groups/","ad_hoc_command_events":"/api/v1/hosts/35/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.090Z","modified":"2016-08-31T16:59:43.467Z","name":"d_vm_template","description":"imported","inventory":2,"enabled":false,"instance_id":"420c30d1-dbbd-60dd-464f-3ffeb0c661c2","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"\", \"vmware_guestMemoryUsage\": 0, \"vmware_overallCpuUsage\": - 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": - \"Red Hat Enterprise Linux 7 (64-bit)\", \"vmware_toolsInstallerMounted\": - false, \"vmware_memoryReservation\": 0, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": - \"ibm-x3550m4-04.example.com\", \"vmware_instanceUuid\": - \"500c863c-a4c7-37b0-895d-bd86d4401e47\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] d_vm_prov001/d_vm_prov001.vmtx\", - \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": - 0, \"vmware_toolsStatus\": \"toolsNotInstalled\", \"vmware_overallStatus\": - \"green\", \"vmware_numCpu\": 1, \"vmware_uuid\": \"420c30d1-dbbd-60dd-464f-3ffeb0c661c2\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 4482493, \"vmware_name\": - \"d_vm_template\", \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": - 2339536896, \"vmware_hostMemoryUsage\": 0, \"vmware_distributedMemoryEntitlement\": - 0, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"gray\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - true, \"vmware_toolsRunningStatus\": \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": - 0, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"Prod_ISOs_NFS\", - \"NFS Share\"], \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": - \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": \"poweredOff\", - \"vmware_guestId\": \"rhel7_64Guest\", \"vmware_numVirtualDisks\": 0, \"vmware_swappedMemory\": - 0, \"vmware_annotation\": \"MIQ GUID=c4c4143e-33d6-11e6-96fa-34363bc9458e\", - \"vmware_recordReplayState\": \"inactive\", \"vmware_unshared\": 0, \"vmware_sharedMemory\": - 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":45,"type":"host","url":"/api/v1/hosts/45/","related":{"job_host_summaries":"/api/v1/hosts/45/job_host_summaries/","variable_data":"/api/v1/hosts/45/variable_data/","job_events":"/api/v1/hosts/45/job_events/","ad_hoc_commands":"/api/v1/hosts/45/ad_hoc_commands/","fact_versions":"/api/v1/hosts/45/fact_versions/","inventory_sources":"/api/v1/hosts/45/inventory_sources/","groups":"/api/v1/hosts/45/groups/","activity_stream":"/api/v1/hosts/45/activity_stream/","all_groups":"/api/v1/hosts/45/all_groups/","ad_hoc_command_events":"/api/v1/hosts/45/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.143Z","modified":"2016-08-31T16:59:43.471Z","name":"gm-diskless-template","description":"imported","inventory":2,"enabled":false,"instance_id":"420cfe93-0fa8-a8ca-b5e8-2fe63bc9986c","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"\", \"vmware_guestMemoryUsage\": 0, \"vmware_overallCpuUsage\": - 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": [\"NFS Network\"], - \"vmware_guestFullName\": \"Red Hat Enterprise Linux 7 (64-bit)\", \"vmware_toolsInstallerMounted\": - false, \"vmware_memoryReservation\": 0, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": - \"ibm-x3550m4-01.example.com\", \"vmware_instanceUuid\": - \"500c51bf-409b-1e00-38a7-deaec2daa35a\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[datastore1] gm-diskless-template1/gm-diskless-template1.vmtx\", - \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": - 0, \"vmware_toolsStatus\": \"toolsNotInstalled\", \"vmware_overallStatus\": - \"green\", \"vmware_numCpu\": 1, \"vmware_uuid\": \"420cfe93-0fa8-a8ca-b5e8-2fe63bc9986c\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 1956, \"vmware_name\": - \"gm-diskless-template\", \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": - 2302275584, \"vmware_hostMemoryUsage\": 0, \"vmware_distributedMemoryEntitlement\": - 0, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"gray\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - true, \"vmware_toolsRunningStatus\": \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": - 0, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"datastore1\"], - \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": - -1, \"vmware_powerState\": \"poweredOff\", \"vmware_guestId\": \"rhel7_64Guest\", - \"vmware_numVirtualDisks\": 0, \"vmware_swappedMemory\": 0, \"vmware_annotation\": - null, \"vmware_recordReplayState\": \"inactive\", \"vmware_unshared\": 0, - \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":46,"type":"host","url":"/api/v1/hosts/46/","related":{"job_host_summaries":"/api/v1/hosts/46/job_host_summaries/","variable_data":"/api/v1/hosts/46/variable_data/","job_events":"/api/v1/hosts/46/job_events/","ad_hoc_commands":"/api/v1/hosts/46/ad_hoc_commands/","fact_versions":"/api/v1/hosts/46/fact_versions/","inventory_sources":"/api/v1/hosts/46/inventory_sources/","groups":"/api/v1/hosts/46/groups/","activity_stream":"/api/v1/hosts/46/activity_stream/","all_groups":"/api/v1/hosts/46/all_groups/","ad_hoc_command_events":"/api/v1/hosts/46/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.148Z","modified":"2016-08-31T16:59:43.476Z","name":"gm-empty-template","description":"imported","inventory":2,"enabled":false,"instance_id":"420c4d7c-58ee-6d40-f01c-fa2659943824","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"\", \"vmware_guestMemoryUsage\": 0, \"vmware_overallCpuUsage\": - 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": - \"Red Hat Enterprise Linux 7 (64-bit)\", \"vmware_toolsInstallerMounted\": - false, \"vmware_memoryReservation\": 0, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": - \"ibm-x3550m4-04.example.com\", \"vmware_instanceUuid\": - \"500c9646-394a-f37a-de3a-c5c4b43249aa\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] gm-empty-template/gm-empty-template.vmtx\", - \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": - 0, \"vmware_toolsStatus\": \"toolsNotInstalled\", \"vmware_overallStatus\": - \"green\", \"vmware_numCpu\": 1, \"vmware_uuid\": \"420c4d7c-58ee-6d40-f01c-fa2659943824\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 2454, \"vmware_name\": - \"gm-empty-template\", \"vmware_toolsVersionStatus\": \"guestToolsNotInstalled\", - \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": 19482144768, \"vmware_hostMemoryUsage\": - 0, \"vmware_distributedMemoryEntitlement\": 0, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_template\": true, \"vmware_toolsRunningStatus\": - \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": 0, \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_cpuReservation\": 0, - \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": - \"poweredOff\", \"vmware_guestId\": \"rhel7_64Guest\", \"vmware_numVirtualDisks\": - 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": null, \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 505, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":44,"type":"host","url":"/api/v1/hosts/44/","related":{"job_host_summaries":"/api/v1/hosts/44/job_host_summaries/","variable_data":"/api/v1/hosts/44/variable_data/","job_events":"/api/v1/hosts/44/job_events/","ad_hoc_commands":"/api/v1/hosts/44/ad_hoc_commands/","fact_versions":"/api/v1/hosts/44/fact_versions/","inventory_sources":"/api/v1/hosts/44/inventory_sources/","groups":"/api/v1/hosts/44/groups/","activity_stream":"/api/v1/hosts/44/activity_stream/","all_groups":"/api/v1/hosts/44/all_groups/","ad_hoc_command_events":"/api/v1/hosts/44/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.138Z","modified":"2016-08-31T16:59:43.480Z","name":"g_vm_prov009","description":"imported","inventory":2,"enabled":false,"instance_id":"420cc1a2-ba54-4c18-eb9b-47999a4b121b","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": 0, - \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": - [\"VM Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 7 (64-bit)\", - \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": 0, - \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": - 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_instanceUuid\": \"500cd202-2d1b-b97c-1c31-664ca41963eb\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] g_vm_prov009/g_vm_prov009.vmx\", \"vmware_guestState\": - \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": - \"toolsNotInstalled\", \"vmware_overallStatus\": \"green\", \"vmware_numCpu\": - 1, \"vmware_uuid\": \"420cc1a2-ba54-4c18-eb9b-47999a4b121b\", \"vmware_installBootRequired\": - false, \"vmware_committed\": 11055, \"vmware_name\": \"g_vm_prov009\", \"vmware_staticCpuEntitlement\": - 0, \"vmware_uncommitted\": 2339536896, \"vmware_hostMemoryUsage\": 0, \"vmware_distributedMemoryEntitlement\": - 0, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"gray\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - false, \"vmware_toolsRunningStatus\": \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": - 0, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"Prod_ISOs_NFS\", - \"NFS Share\"], \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": - \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": \"poweredOff\", - \"vmware_guestId\": \"rhel7_64Guest\", \"vmware_numVirtualDisks\": 0, \"vmware_swappedMemory\": - 0, \"vmware_annotation\": null, \"vmware_recordReplayState\": \"inactive\", - \"vmware_unshared\": 0, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":5,"type":"host","url":"/api/v1/hosts/5/","related":{"job_host_summaries":"/api/v1/hosts/5/job_host_summaries/","variable_data":"/api/v1/hosts/5/variable_data/","job_events":"/api/v1/hosts/5/job_events/","ad_hoc_commands":"/api/v1/hosts/5/ad_hoc_commands/","fact_versions":"/api/v1/hosts/5/fact_versions/","inventory_sources":"/api/v1/hosts/5/inventory_sources/","groups":"/api/v1/hosts/5/groups/","activity_stream":"/api/v1/hosts/5/activity_stream/","all_groups":"/api/v1/hosts/5/all_groups/","ad_hoc_command_events":"/api/v1/hosts/5/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:39.929Z","modified":"2016-08-31T16:59:43.485Z","name":"James-cfme","description":"imported","inventory":2,"enabled":false,"instance_id":"420c419a-52bd-046e-7a05-4341e44c3f29","variables":"{\"vmware_vmPathName\": - \"[NFS Share] James-cfme/James-cfme.vmx\", \"vmware_guestMemoryUsage\": 0, - \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"Red Hat - Enterprise Linux 6 (64-bit)\", \"vmware_product_instanceId\": null, \"vmware_balloonedMemory\": - 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_product_classId\": null, \"vmware_distributedCpuEntitlement\": 0, - \"vmware_product_key\": 0, \"vmware_unshared\": 13693518674, \"vmware_guestState\": - \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": - \"toolsNotRunning\", \"vmware_overallStatus\": \"green\", \"vmware_uuid\": - \"420c419a-52bd-046e-7a05-4341e44c3f29\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_product_version\": \"4.0\", \"vmware_staticCpuEntitlement\": - 0, \"vmware_uncommitted\": 50841702400, \"vmware_distributedMemoryEntitlement\": - 0, \"vmware_product_appUrl\": null, \"vmware_template\": false, \"vmware_overallCpuDemand\": - 0, \"vmware_product_fullVersion\": null, \"vmware_ftSecondaryLatency\": -1, - \"vmware_numVirtualDisks\": 1, \"vmware_annotation\": null, \"vmware_recordReplayState\": - \"inactive\", \"vmware_sharedMemory\": 0, \"vmware_privateMemory\": 0, \"vmware_resourcePool\": - \"Resources\", \"vmware_product_name\": \"Red Hat CloudForms 4.0\", \"vmware_overallCpuUsage\": - 0, \"vmware_suspendInterval\": 0, \"vmware_toolsInstallerMounted\": false, - \"vmware_memoryReservation\": 0, \"vmware_numMksConnections\": 0, \"vmware_numEthernetCards\": - 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": \"dhcp-8-99-212.example.com\", - \"vmware_product_vendor\": \"Red Hat, Inc.\", \"vmware_uptimeSeconds\": 0, - \"vmware_memorySizeMB\": 8192, \"vmware_instanceUuid\": \"500cb5bf-aa2e-b4d6-c4a3-a236ee3dbce5\", - \"vmware_compressedMemory\": 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": - 6, \"vmware_installBootRequired\": false, \"vmware_committed\": 22294531224, - \"vmware_name\": \"James-cfme\", \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", - \"vmware_cpuReservation\": 0, \"vmware_hostMemoryUsage\": 0, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_toolsRunningStatus\": - \"guestToolsNotRunning\", \"vmware_powerState\": \"poweredOff\", \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_guestId\": \"rhel6_64Guest\", - \"vmware_swappedMemory\": 0, \"vmware_consumedOverheadMemory\": 0, \"vmware_ftLatencyStatus\": - \"gray\"}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":47,"type":"host","url":"/api/v1/hosts/47/","related":{"job_host_summaries":"/api/v1/hosts/47/job_host_summaries/","variable_data":"/api/v1/hosts/47/variable_data/","job_events":"/api/v1/hosts/47/job_events/","ad_hoc_commands":"/api/v1/hosts/47/ad_hoc_commands/","fact_versions":"/api/v1/hosts/47/fact_versions/","inventory_sources":"/api/v1/hosts/47/inventory_sources/","groups":"/api/v1/hosts/47/groups/","activity_stream":"/api/v1/hosts/47/activity_stream/","all_groups":"/api/v1/hosts/47/all_groups/","ad_hoc_command_events":"/api/v1/hosts/47/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.154Z","modified":"2016-08-31T16:59:43.490Z","name":"jason-brewery","description":"imported","inventory":2,"enabled":false,"instance_id":"42332ec3-7555-5c9c-d4c1-b0a88332a8c7","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": 0, - \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": - [\"VM Network\"], \"vmware_guestFullName\": \"CentOS 4/5/6/7 (64-bit)\", \"vmware_toolsInstallerMounted\": - false, \"vmware_memoryReservation\": 0, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": - \"ibm-x3550m4-04.example.com\", \"vmware_instanceUuid\": - \"50336f60-16ec-53e2-2329-c7b3914c216b\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 16384, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] jason-brewery/jason-brewery.vmx\", - \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": - 0, \"vmware_toolsStatus\": \"toolsNotRunning\", \"vmware_overallStatus\": - \"green\", \"vmware_numCpu\": 4, \"vmware_uuid\": \"42332ec3-7555-5c9c-d4c1-b0a88332a8c7\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 95220407662, - \"vmware_name\": \"jason-brewery\", \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", - \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": 102245875712, - \"vmware_hostMemoryUsage\": 0, \"vmware_distributedMemoryEntitlement\": 0, - \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"gray\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - false, \"vmware_toolsRunningStatus\": \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": - 0, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"NFS Share\"], - \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": - -1, \"vmware_powerState\": \"poweredOff\", \"vmware_guestId\": \"centos64Guest\", - \"vmware_numVirtualDisks\": 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": - \"CentOS 7.1 ImageFactory VM\", \"vmware_recordReplayState\": \"inactive\", - \"vmware_unshared\": 78033679207, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":48,"type":"host","url":"/api/v1/hosts/48/","related":{"job_host_summaries":"/api/v1/hosts/48/job_host_summaries/","variable_data":"/api/v1/hosts/48/variable_data/","job_events":"/api/v1/hosts/48/job_events/","ad_hoc_commands":"/api/v1/hosts/48/ad_hoc_commands/","fact_versions":"/api/v1/hosts/48/fact_versions/","inventory_sources":"/api/v1/hosts/48/inventory_sources/","groups":"/api/v1/hosts/48/groups/","activity_stream":"/api/v1/hosts/48/activity_stream/","all_groups":"/api/v1/hosts/48/all_groups/","ad_hoc_command_events":"/api/v1/hosts/48/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/13/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":13,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:40.159Z","modified":"2016-10-12T18:19:15.999Z","name":"joev-apache-openldap","description":"imported","inventory":2,"enabled":true,"instance_id":"420c67c7-50d4-95be-7c65-a8f5f4be5ebb","variables":"{\"vmware_privateMemory\": - 1142, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": - 0, \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": - [\"VM Network\"], \"vmware_guestFullName\": \"CentOS 4/5/6/7 (64-bit)\", \"vmware_toolsInstallerMounted\": - false, \"vmware_memoryReservation\": 0, \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": - 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": - 41, \"vmware_hostSystem\": \"ibm-x3550m4-03.example.com\", - \"vmware_instanceUuid\": \"500ca39f-7fbc-f357-b7e0-eda686864da6\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_uptimeSeconds\": 91289, \"vmware_memorySizeMB\": 4096, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] joev-apache-openldap/joev-apache-openldap.vmx\", - \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": - 4181, \"vmware_toolsStatus\": \"toolsNotInstalled\", \"vmware_overallStatus\": - \"green\", \"vmware_numCpu\": 4, \"vmware_uuid\": \"420c67c7-50d4-95be-7c65-a8f5f4be5ebb\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 2149990306, \"vmware_name\": - \"joev-apache-openldap\", \"vmware_toolsVersionStatus\": \"guestToolsNotInstalled\", - \"vmware_minRequiredEVCModeKey\": \"intel-sandybridge\", \"vmware_uncommitted\": - 19326017536, \"vmware_hostMemoryUsage\": 1209, \"vmware_distributedMemoryEntitlement\": - 582, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"gray\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - false, \"vmware_toolsRunningStatus\": \"guestToolsNotRunning\", \"vmware_staticCpuEntitlement\": - 1431, \"vmware_overallCpuDemand\": 0, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": - [\"NFS Share\"], \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": - \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": \"poweredOn\", - \"vmware_guestId\": \"centos64Guest\", \"vmware_numVirtualDisks\": 1, \"vmware_swappedMemory\": - 0, \"vmware_annotation\": null, \"vmware_maxMemoryUsage\": 4096, \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 2148819452, \"vmware_sharedMemory\": 164}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":13},{"id":49,"type":"host","url":"/api/v1/hosts/49/","related":{"job_host_summaries":"/api/v1/hosts/49/job_host_summaries/","variable_data":"/api/v1/hosts/49/variable_data/","job_events":"/api/v1/hosts/49/job_events/","ad_hoc_commands":"/api/v1/hosts/49/ad_hoc_commands/","fact_versions":"/api/v1/hosts/49/fact_versions/","inventory_sources":"/api/v1/hosts/49/inventory_sources/","groups":"/api/v1/hosts/49/groups/","activity_stream":"/api/v1/hosts/49/activity_stream/","all_groups":"/api/v1/hosts/49/all_groups/","ad_hoc_command_events":"/api/v1/hosts/49/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.164Z","modified":"2016-08-31T16:59:43.499Z","name":"joev-brewery-centos-72","description":"imported","inventory":2,"enabled":false,"instance_id":"420c0d63-5270-443c-61b9-8270a876db16","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": 0, - \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": - [\"VM Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 7 (64-bit)\", - \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": 0, - \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": - 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostName\": \"joev-brewery\", - \"vmware_instanceUuid\": \"500ca211-c5fe-3cbf-d6ef-a0794c1377f9\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 16384, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] joev-brewery-centos-72/joev-brewery-centos-72.vmx\", - \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": - 0, \"vmware_toolsStatus\": \"toolsNotRunning\", \"vmware_overallStatus\": - \"green\", \"vmware_numCpu\": 4, \"vmware_uuid\": \"420c0d63-5270-443c-61b9-8270a876db16\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 80276415289, - \"vmware_name\": \"joev-brewery-centos-72\", \"vmware_toolsVersionStatus\": - \"guestToolsUnmanaged\", \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": - 151848341504, \"vmware_hostMemoryUsage\": 0, \"vmware_distributedMemoryEntitlement\": - 0, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"gray\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - false, \"vmware_toolsRunningStatus\": \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": - 0, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"NFS Share\"], - \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": - -1, \"vmware_powerState\": \"poweredOff\", \"vmware_guestId\": \"rhel7_64Guest\", - \"vmware_numVirtualDisks\": 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": - null, \"vmware_recordReplayState\": \"inactive\", \"vmware_unshared\": 80275128887, - \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":50,"type":"host","url":"/api/v1/hosts/50/","related":{"job_host_summaries":"/api/v1/hosts/50/job_host_summaries/","variable_data":"/api/v1/hosts/50/variable_data/","job_events":"/api/v1/hosts/50/job_events/","ad_hoc_commands":"/api/v1/hosts/50/ad_hoc_commands/","fact_versions":"/api/v1/hosts/50/fact_versions/","inventory_sources":"/api/v1/hosts/50/inventory_sources/","groups":"/api/v1/hosts/50/groups/","activity_stream":"/api/v1/hosts/50/activity_stream/","all_groups":"/api/v1/hosts/50/all_groups/","ad_hoc_command_events":"/api/v1/hosts/50/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/32/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":32,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:40.170Z","modified":"2016-10-12T18:19:16.004Z","name":"joev-cfme-5.6.1.0-2","description":"imported","inventory":2,"enabled":true,"instance_id":"420cdba8-2c6a-f638-b7a6-8628b64e40ad","variables":"{\"vmware_vmPathName\": - \"[NFS Share] joev-cfme-5.6.1.0-2/joev-cfme-5.6.1.0-2.vmx\", \"vmware_ipAddress\": - \"10.8.99.209\", \"vmware_guestMemoryUsage\": 901, \"vmware_networks\": [\"VM - Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 6 (64-bit)\", - \"vmware_product_instanceId\": null, \"vmware_balloonedMemory\": 0, \"vmware_hostSystem\": - \"ibm-x3550m4-04.example.com\", \"vmware_product_classId\": - null, \"vmware_distributedCpuEntitlement\": 143, \"ansible_ssh_host\": \"10.8.99.209\", - \"vmware_product_key\": 0, \"vmware_unshared\": 2641884216, \"vmware_guestState\": - \"running\", \"vmware_staticMemoryEntitlement\": 8311, \"vmware_toolsStatus\": - \"toolsOk\", \"vmware_overallStatus\": \"green\", \"vmware_minRequiredEVCModeKey\": - \"intel-sandybridge\", \"vmware_uuid\": \"420cdba8-2c6a-f638-b7a6-8628b64e40ad\", - \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_product_version\": - \"4.1\", \"vmware_staticCpuEntitlement\": 1431, \"vmware_uncommitted\": 61782626304, - \"vmware_distributedMemoryEntitlement\": 2336, \"vmware_product_appUrl\": - null, \"vmware_template\": false, \"vmware_overallCpuDemand\": 143, \"vmware_product_fullVersion\": - null, \"vmware_ftSecondaryLatency\": -1, \"vmware_numVirtualDisks\": 2, \"vmware_annotation\": - null, \"vmware_maxMemoryUsage\": 8192, \"vmware_recordReplayState\": \"inactive\", - \"vmware_sharedMemory\": 78, \"vmware_privateMemory\": 4320, \"vmware_resourcePool\": - \"Resources\", \"vmware_product_name\": \"Red Hat CloudForms 4.1\", \"vmware_overallCpuUsage\": - 143, \"vmware_suspendInterval\": 0, \"vmware_toolsInstallerMounted\": false, - \"vmware_memoryReservation\": 0, \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": - \"joev-cfme-56102.jvlcek.redhat.com\", \"vmware_product_vendor\": \"Red Hat, - Inc.\", \"vmware_uptimeSeconds\": 1978577, \"vmware_memorySizeMB\": 8192, - \"vmware_instanceUuid\": \"500c62ce-8cfd-47b2-a7ae-a3670d7adf69\", \"vmware_compressedMemory\": - 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": 4, \"vmware_installBootRequired\": - false, \"vmware_committed\": 2642068354, \"vmware_name\": \"joev-cfme-5.6.1.0-2\", - \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", \"vmware_cpuReservation\": - 0, \"vmware_hostMemoryUsage\": 4394, \"vmware_connectionState\": \"connected\", - \"vmware_guestHeartbeatStatus\": \"green\", \"vmware_toolsRunningStatus\": - \"guestToolsRunning\", \"vmware_powerState\": \"poweredOn\", \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_guestId\": \"rhel6_64Guest\", - \"vmware_swappedMemory\": 0, \"vmware_consumedOverheadMemory\": 51, \"vmware_ftLatencyStatus\": - \"gray\"}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":32},{"id":52,"type":"host","url":"/api/v1/hosts/52/","related":{"job_host_summaries":"/api/v1/hosts/52/job_host_summaries/","variable_data":"/api/v1/hosts/52/variable_data/","job_events":"/api/v1/hosts/52/job_events/","ad_hoc_commands":"/api/v1/hosts/52/ad_hoc_commands/","fact_versions":"/api/v1/hosts/52/fact_versions/","inventory_sources":"/api/v1/hosts/52/inventory_sources/","groups":"/api/v1/hosts/52/groups/","activity_stream":"/api/v1/hosts/52/activity_stream/","all_groups":"/api/v1/hosts/52/all_groups/","ad_hoc_command_events":"/api/v1/hosts/52/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/40/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":40,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:40.180Z","modified":"2016-10-12T18:19:16.008Z","name":"joev-ipa14","description":"imported","inventory":2,"enabled":true,"instance_id":"420cf66e-39ca-eb2b-4b42-dd543f800b54","variables":"{\"vmware_privateMemory\": - 3634, \"vmware_resourcePool\": \"Resources\", \"vmware_ipAddress\": \"10.8.97.14\", - \"vmware_guestMemoryUsage\": 0, \"vmware_overallCpuUsage\": 23, \"vmware_suspendInterval\": - 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"Red - Hat Enterprise Linux 7 (64-bit)\", \"vmware_toolsInstallerMounted\": false, - \"vmware_memoryReservation\": 0, \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": - 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": - 59, \"vmware_hostName\": \"joev-ipa14.jvlcek.redhat.com\", \"vmware_instanceUuid\": - \"500c9f91-a013-73e0-c4ca-87b2ab696b8b\", \"vmware_distributedCpuEntitlement\": - 23, \"ansible_ssh_host\": \"10.8.97.14\", \"vmware_hostSystem\": \"ibm-x3550m4-03.example.com\", - \"vmware_uptimeSeconds\": 91237, \"vmware_memorySizeMB\": 16384, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] joev-ipa-rhel7/joev-ipa-rhel7.vmx\", - \"vmware_guestState\": \"running\", \"vmware_staticMemoryEntitlement\": 16528, - \"vmware_toolsStatus\": \"toolsOk\", \"vmware_overallStatus\": \"green\", - \"vmware_numCpu\": 4, \"vmware_uuid\": \"420cf66e-39ca-eb2b-4b42-dd543f800b54\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 73244744502, - \"vmware_name\": \"joev-ipa14\", \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", - \"vmware_minRequiredEVCModeKey\": \"intel-sandybridge\", \"vmware_uncommitted\": - 213613322240, \"vmware_hostMemoryUsage\": 3709, \"vmware_distributedMemoryEntitlement\": - 1258, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"green\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - false, \"vmware_toolsRunningStatus\": \"guestToolsRunning\", \"vmware_staticCpuEntitlement\": - 1431, \"vmware_overallCpuDemand\": 23, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": - [\"NFS Share\"], \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": - \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": \"poweredOn\", - \"vmware_guestId\": \"rhel7_64Guest\", \"vmware_numVirtualDisks\": 1, \"vmware_swappedMemory\": - 0, \"vmware_annotation\": null, \"vmware_maxMemoryUsage\": 16384, \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 4484540253, \"vmware_sharedMemory\": 230}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":40},{"id":51,"type":"host","url":"/api/v1/hosts/51/","related":{"job_host_summaries":"/api/v1/hosts/51/job_host_summaries/","variable_data":"/api/v1/hosts/51/variable_data/","job_events":"/api/v1/hosts/51/job_events/","ad_hoc_commands":"/api/v1/hosts/51/ad_hoc_commands/","fact_versions":"/api/v1/hosts/51/fact_versions/","inventory_sources":"/api/v1/hosts/51/inventory_sources/","groups":"/api/v1/hosts/51/groups/","activity_stream":"/api/v1/hosts/51/activity_stream/","all_groups":"/api/v1/hosts/51/all_groups/","ad_hoc_command_events":"/api/v1/hosts/51/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.175Z","modified":"2016-08-31T16:59:43.513Z","name":"joev-ipa-ad","description":"imported","inventory":2,"enabled":false,"instance_id":"420c299f-aa19-c7ee-05a6-ef86163464a6","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": 0, - \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": - [\"VM Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 7 (64-bit)\", - \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": 0, - \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": - 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostName\": \"joev-ipa-ad.jvlcek.redhat.com\", - \"vmware_instanceUuid\": \"500ce8fc-49c2-24fb-d3c3-6d65553bcebc\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 16384, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] joev-ipa-ad/joev-ipa-ad.vmx\", \"vmware_guestState\": - \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": - \"toolsNotRunning\", \"vmware_overallStatus\": \"green\", \"vmware_numCpu\": - 4, \"vmware_uuid\": \"420c299f-aa19-c7ee-05a6-ef86163464a6\", \"vmware_installBootRequired\": - false, \"vmware_committed\": 76381315189, \"vmware_name\": \"joev-ipa-ad\", - \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", \"vmware_staticCpuEntitlement\": - 0, \"vmware_uncommitted\": 155742912512, \"vmware_hostMemoryUsage\": 0, \"vmware_distributedMemoryEntitlement\": - 0, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"gray\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - false, \"vmware_toolsRunningStatus\": \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": - 0, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"NFS Share\"], - \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": - -1, \"vmware_powerState\": \"poweredOff\", \"vmware_guestId\": \"rhel7_64Guest\", - \"vmware_numVirtualDisks\": 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": - null, \"vmware_recordReplayState\": \"inactive\", \"vmware_unshared\": 76380557868, - \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":53,"type":"host","url":"/api/v1/hosts/53/","related":{"job_host_summaries":"/api/v1/hosts/53/job_host_summaries/","variable_data":"/api/v1/hosts/53/variable_data/","job_events":"/api/v1/hosts/53/job_events/","ad_hoc_commands":"/api/v1/hosts/53/ad_hoc_commands/","fact_versions":"/api/v1/hosts/53/fact_versions/","inventory_sources":"/api/v1/hosts/53/inventory_sources/","groups":"/api/v1/hosts/53/groups/","activity_stream":"/api/v1/hosts/53/activity_stream/","all_groups":"/api/v1/hosts/53/all_groups/","ad_hoc_command_events":"/api/v1/hosts/53/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/6/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":6,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:40.186Z","modified":"2016-10-12T18:19:16.013Z","name":"joev-ldap","description":"imported","inventory":2,"enabled":true,"instance_id":"420c5471-f1af-f5da-16ea-ea1c7a18a596","variables":"{\"vmware_privateMemory\": - 3955, \"vmware_resourcePool\": \"Resources\", \"vmware_ipAddress\": \"10.8.99.233\", - \"vmware_guestMemoryUsage\": 327, \"vmware_overallCpuUsage\": 23, \"vmware_suspendInterval\": - 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"CentOS - 4/5/6/7 (64-bit)\", \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": - 0, \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 49, - \"vmware_hostName\": \"dhcp-8-99-233.example.com\", - \"vmware_instanceUuid\": \"500ce4c6-0427-bbd1-ec2d-ffd0820a4512\", \"vmware_distributedCpuEntitlement\": - 23, \"ansible_ssh_host\": \"10.8.99.233\", \"vmware_hostSystem\": \"ibm-x3550m4-03.example.com\", - \"vmware_uptimeSeconds\": 179605, \"vmware_memorySizeMB\": 4096, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] joev-ldap/joev-ldap.vmx\", \"vmware_guestState\": - \"running\", \"vmware_staticMemoryEntitlement\": 4172, \"vmware_toolsStatus\": - \"toolsOk\", \"vmware_overallStatus\": \"green\", \"vmware_numCpu\": 4, \"vmware_uuid\": - \"420c5471-f1af-f5da-16ea-ea1c7a18a596\", \"vmware_installBootRequired\": - false, \"vmware_committed\": 6046923108, \"vmware_name\": \"joev-ldap\", \"vmware_toolsVersionStatus\": - \"guestToolsUnmanaged\", \"vmware_minRequiredEVCModeKey\": \"intel-sandybridge\", - \"vmware_uncommitted\": 15428452352, \"vmware_hostMemoryUsage\": 4017, \"vmware_distributedMemoryEntitlement\": - 1387, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"green\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - false, \"vmware_toolsRunningStatus\": \"guestToolsRunning\", \"vmware_staticCpuEntitlement\": - 1431, \"vmware_overallCpuDemand\": 23, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": - [\"NFS Share\"], \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": - \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": \"poweredOn\", - \"vmware_guestId\": \"centos64Guest\", \"vmware_numVirtualDisks\": 1, \"vmware_swappedMemory\": - 0, \"vmware_annotation\": null, \"vmware_maxMemoryUsage\": 4096, \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 6046384657, \"vmware_sharedMemory\": 135}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":6},{"id":6,"type":"host","url":"/api/v1/hosts/6/","related":{"job_host_summaries":"/api/v1/hosts/6/job_host_summaries/","variable_data":"/api/v1/hosts/6/variable_data/","job_events":"/api/v1/hosts/6/job_events/","ad_hoc_commands":"/api/v1/hosts/6/ad_hoc_commands/","fact_versions":"/api/v1/hosts/6/fact_versions/","inventory_sources":"/api/v1/hosts/6/inventory_sources/","groups":"/api/v1/hosts/6/groups/","activity_stream":"/api/v1/hosts/6/activity_stream/","all_groups":"/api/v1/hosts/6/all_groups/","ad_hoc_command_events":"/api/v1/hosts/6/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/9/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":9,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:39.934Z","modified":"2016-10-12T18:19:16.018Z","name":"JoeV-ManageIQ","description":"imported","inventory":2,"enabled":true,"instance_id":"420cfc95-bb19-405f-413d-7ba19509ec28","variables":"{\"vmware_vmPathName\": - \"[NFS Share] JoeV-ManageIQ/JoeV-ManageIQ.vmx\", \"vmware_ipAddress\": \"10.8.99.225\", - \"vmware_guestMemoryUsage\": 1474, \"vmware_networks\": [\"VM Network\"], - \"vmware_guestFullName\": \"Red Hat Enterprise Linux 6 (64-bit)\", \"vmware_product_instanceId\": - null, \"vmware_balloonedMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-01.example.com\", - \"vmware_product_classId\": null, \"vmware_distributedCpuEntitlement\": 191, - \"ansible_ssh_host\": \"10.8.99.225\", \"vmware_product_key\": 0, \"vmware_unshared\": - 4714955285, \"vmware_guestState\": \"running\", \"vmware_staticMemoryEntitlement\": - 6231, \"vmware_toolsStatus\": \"toolsOk\", \"vmware_overallStatus\": \"green\", - \"vmware_minRequiredEVCModeKey\": \"intel-sandybridge\", \"vmware_uuid\": - \"420cfc95-bb19-405f-413d-7ba19509ec28\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_product_version\": \"master\", \"vmware_staticCpuEntitlement\": - 1431, \"vmware_uncommitted\": 38234718208, \"vmware_distributedMemoryEntitlement\": - 2840, \"vmware_product_appUrl\": null, \"vmware_template\": false, \"vmware_overallCpuDemand\": - 215, \"vmware_product_fullVersion\": null, \"vmware_ftSecondaryLatency\": - -1, \"vmware_numVirtualDisks\": 1, \"vmware_annotation\": null, \"vmware_maxMemoryUsage\": - 6144, \"vmware_recordReplayState\": \"inactive\", \"vmware_sharedMemory\": - 200, \"vmware_privateMemory\": 5260, \"vmware_resourcePool\": \"Resources\", - \"vmware_product_name\": \"ManageIQ\", \"vmware_overallCpuUsage\": 215, \"vmware_suspendInterval\": - 0, \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": - 0, \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": 0, \"vmware_numEthernetCards\": - 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": \"joev-manageiq.jvlcek.redhat.com\", - \"vmware_product_vendor\": \"ManageIQ\", \"vmware_uptimeSeconds\": 1218932, - \"vmware_memorySizeMB\": 6144, \"vmware_instanceUuid\": \"500c5d81-f50f-6259-e49a-c25b6020bcc9\", - \"vmware_compressedMemory\": 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": - 4, \"vmware_installBootRequired\": false, \"vmware_committed\": 4715135653, - \"vmware_name\": \"JoeV-ManageIQ\", \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", - \"vmware_cpuReservation\": 0, \"vmware_hostMemoryUsage\": 5373, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"green\", \"vmware_toolsRunningStatus\": - \"guestToolsRunning\", \"vmware_powerState\": \"poweredOn\", \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_guestId\": \"rhel6_64Guest\", - \"vmware_swappedMemory\": 0, \"vmware_consumedOverheadMemory\": 52, \"vmware_ftLatencyStatus\": - \"gray\"}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":9},{"id":54,"type":"host","url":"/api/v1/hosts/54/","related":{"job_host_summaries":"/api/v1/hosts/54/job_host_summaries/","variable_data":"/api/v1/hosts/54/variable_data/","job_events":"/api/v1/hosts/54/job_events/","ad_hoc_commands":"/api/v1/hosts/54/ad_hoc_commands/","fact_versions":"/api/v1/hosts/54/fact_versions/","inventory_sources":"/api/v1/hosts/54/inventory_sources/","groups":"/api/v1/hosts/54/groups/","activity_stream":"/api/v1/hosts/54/activity_stream/","all_groups":"/api/v1/hosts/54/all_groups/","ad_hoc_command_events":"/api/v1/hosts/54/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/19/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":19,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:40.191Z","modified":"2016-10-12T18:19:16.023Z","name":"joev-miq-0824","description":"imported","inventory":2,"enabled":true,"instance_id":"420cca02-fbfe-1d4f-607a-b51ab9648fff","variables":"{\"vmware_vmPathName\": - \"[NFS Share] joev-miq-0824/joev-miq-0824.vmx\", \"vmware_ipAddress\": \"10.8.99.247\", - \"vmware_guestMemoryUsage\": 1351, \"vmware_networks\": [\"VM Network\"], - \"vmware_guestFullName\": \"Red Hat Enterprise Linux 6 (64-bit)\", \"vmware_product_instanceId\": - null, \"vmware_balloonedMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_product_classId\": null, \"vmware_distributedCpuEntitlement\": 167, - \"ansible_ssh_host\": \"10.8.99.247\", \"vmware_product_key\": 0, \"vmware_unshared\": - 5397594974, \"vmware_guestState\": \"running\", \"vmware_staticMemoryEntitlement\": - 6240, \"vmware_toolsStatus\": \"toolsOk\", \"vmware_overallStatus\": \"green\", - \"vmware_minRequiredEVCModeKey\": \"intel-sandybridge\", \"vmware_uuid\": - \"420cca02-fbfe-1d4f-607a-b51ab9648fff\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_product_version\": \"master\", \"vmware_staticCpuEntitlement\": - 1431, \"vmware_uncommitted\": 42657099776, \"vmware_distributedMemoryEntitlement\": - 2385, \"vmware_product_appUrl\": null, \"vmware_template\": false, \"vmware_overallCpuDemand\": - 191, \"vmware_product_fullVersion\": null, \"vmware_ftSecondaryLatency\": - -1, \"vmware_numVirtualDisks\": 1, \"vmware_annotation\": null, \"vmware_maxMemoryUsage\": - 6144, \"vmware_recordReplayState\": \"inactive\", \"vmware_sharedMemory\": - 69, \"vmware_privateMemory\": 4783, \"vmware_resourcePool\": \"Resources\", - \"vmware_product_name\": \"ManageIQ\", \"vmware_overallCpuUsage\": 167, \"vmware_suspendInterval\": - 0, \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": - 0, \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": 0, \"vmware_numEthernetCards\": - 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": \"dhcp-8-99-247.example.com\", - \"vmware_product_vendor\": \"ManageIQ\", \"vmware_uptimeSeconds\": 7825, \"vmware_memorySizeMB\": - 6144, \"vmware_instanceUuid\": \"500c2dcd-c5b0-2ba1-c2b8-802452f0ae74\", \"vmware_compressedMemory\": - 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": 4, \"vmware_installBootRequired\": - false, \"vmware_committed\": 11850436345, \"vmware_name\": \"joev-miq-0824\", - \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", \"vmware_cpuReservation\": - 0, \"vmware_hostMemoryUsage\": 4845, \"vmware_connectionState\": \"connected\", - \"vmware_guestHeartbeatStatus\": \"green\", \"vmware_toolsRunningStatus\": - \"guestToolsRunning\", \"vmware_powerState\": \"poweredOn\", \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_guestId\": \"rhel6_64Guest\", - \"vmware_swappedMemory\": 0, \"vmware_consumedOverheadMemory\": 50, \"vmware_ftLatencyStatus\": - \"gray\"}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":19},{"id":55,"type":"host","url":"/api/v1/hosts/55/","related":{"job_host_summaries":"/api/v1/hosts/55/job_host_summaries/","variable_data":"/api/v1/hosts/55/variable_data/","job_events":"/api/v1/hosts/55/job_events/","ad_hoc_commands":"/api/v1/hosts/55/ad_hoc_commands/","fact_versions":"/api/v1/hosts/55/fact_versions/","inventory_sources":"/api/v1/hosts/55/inventory_sources/","groups":"/api/v1/hosts/55/groups/","activity_stream":"/api/v1/hosts/55/activity_stream/","all_groups":"/api/v1/hosts/55/all_groups/","ad_hoc_command_events":"/api/v1/hosts/55/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/15/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":15,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:40.196Z","modified":"2016-10-12T18:19:16.027Z","name":"joev-miq-23052016-16","description":"imported","inventory":2,"enabled":true,"instance_id":"420c5ac9-c0c4-9492-2da0-cf7d9ed8db59","variables":"{\"vmware_vmPathName\": - \"[NFS Share] joev-miq-23052016-13_1/joev-miq-23052016-13.vmx\", \"vmware_ipAddress\": - \"10.8.97.16\", \"vmware_guestMemoryUsage\": 61, \"vmware_networks\": [\"VM - Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 6 (64-bit)\", - \"vmware_product_instanceId\": null, \"vmware_balloonedMemory\": 0, \"vmware_hostSystem\": - \"ibm-x3550m4-03.example.com\", \"vmware_product_classId\": - null, \"vmware_distributedCpuEntitlement\": 0, \"ansible_ssh_host\": \"10.8.97.16\", - \"vmware_product_key\": 0, \"vmware_unshared\": 7799264115, \"vmware_guestState\": - \"running\", \"vmware_staticMemoryEntitlement\": 6241, \"vmware_toolsStatus\": - \"toolsOk\", \"vmware_overallStatus\": \"green\", \"vmware_minRequiredEVCModeKey\": - \"intel-sandybridge\", \"vmware_uuid\": \"420c5ac9-c0c4-9492-2da0-cf7d9ed8db59\", - \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_product_version\": - \"master\", \"vmware_staticCpuEntitlement\": 1431, \"vmware_uncommitted\": - 39569924096, \"vmware_distributedMemoryEntitlement\": 1163, \"vmware_product_appUrl\": - null, \"vmware_template\": false, \"vmware_overallCpuDemand\": 0, \"vmware_product_fullVersion\": - null, \"vmware_ftSecondaryLatency\": -1, \"vmware_numVirtualDisks\": 1, \"vmware_annotation\": - null, \"vmware_maxMemoryUsage\": 6144, \"vmware_recordReplayState\": \"inactive\", - \"vmware_sharedMemory\": 271, \"vmware_privateMemory\": 3159, \"vmware_resourcePool\": - \"Resources\", \"vmware_product_name\": \"ManageIQ\", \"vmware_overallCpuUsage\": - 0, \"vmware_suspendInterval\": 0, \"vmware_toolsInstallerMounted\": false, - \"vmware_memoryReservation\": 0, \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": - \"joev-miq16.jvlcek.redhat.com\", \"vmware_product_vendor\": \"ManageIQ\", - \"vmware_uptimeSeconds\": 7993, \"vmware_memorySizeMB\": 6144, \"vmware_instanceUuid\": - \"500c30ac-bfdc-e869-e6dd-e0718ad311ea\", \"vmware_compressedMemory\": 0, - \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": 4, \"vmware_installBootRequired\": - false, \"vmware_committed\": 14253236887, \"vmware_name\": \"joev-miq-23052016-16\", - \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", \"vmware_cpuReservation\": - 0, \"vmware_hostMemoryUsage\": 3288, \"vmware_connectionState\": \"connected\", - \"vmware_guestHeartbeatStatus\": \"green\", \"vmware_toolsRunningStatus\": - \"guestToolsRunning\", \"vmware_powerState\": \"poweredOn\", \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_guestId\": \"rhel6_64Guest\", - \"vmware_swappedMemory\": 0, \"vmware_consumedOverheadMemory\": 47, \"vmware_ftLatencyStatus\": - \"gray\"}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":15},{"id":56,"type":"host","url":"/api/v1/hosts/56/","related":{"job_host_summaries":"/api/v1/hosts/56/job_host_summaries/","variable_data":"/api/v1/hosts/56/variable_data/","job_events":"/api/v1/hosts/56/job_events/","ad_hoc_commands":"/api/v1/hosts/56/ad_hoc_commands/","fact_versions":"/api/v1/hosts/56/fact_versions/","inventory_sources":"/api/v1/hosts/56/inventory_sources/","groups":"/api/v1/hosts/56/groups/","activity_stream":"/api/v1/hosts/56/activity_stream/","all_groups":"/api/v1/hosts/56/all_groups/","ad_hoc_command_events":"/api/v1/hosts/56/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/36/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":36,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:40.202Z","modified":"2016-10-12T18:19:16.032Z","name":"joev-miq-repmgr-primary","description":"imported","inventory":2,"enabled":true,"instance_id":"420c070d-de88-7912-2e2e-1e7bba9edfd7","variables":"{\"vmware_vmPathName\": - \"[NFS Share] joev-miq-repmgr-primary/joev-miq-repmgr-primary.vmx\", \"vmware_ipAddress\": - \"10.8.99.243\", \"vmware_guestMemoryUsage\": 2150, \"vmware_networks\": [\"VM - Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 6 (64-bit)\", - \"vmware_product_instanceId\": null, \"vmware_balloonedMemory\": 0, \"vmware_hostSystem\": - \"ibm-x3550m4-04.example.com\", \"vmware_product_classId\": - null, \"vmware_distributedCpuEntitlement\": 167, \"ansible_ssh_host\": \"10.8.99.243\", - \"vmware_product_key\": 0, \"vmware_unshared\": 5262636961, \"vmware_guestState\": - \"running\", \"vmware_staticMemoryEntitlement\": 6231, \"vmware_toolsStatus\": - \"toolsOk\", \"vmware_overallStatus\": \"green\", \"vmware_minRequiredEVCModeKey\": - \"intel-sandybridge\", \"vmware_uuid\": \"420c070d-de88-7912-2e2e-1e7bba9edfd7\", - \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_product_version\": - \"master\", \"vmware_staticCpuEntitlement\": 1431, \"vmware_uncommitted\": - 42501545984, \"vmware_distributedMemoryEntitlement\": 2726, \"vmware_product_appUrl\": - null, \"vmware_template\": false, \"vmware_overallCpuDemand\": 167, \"vmware_product_fullVersion\": - null, \"vmware_ftSecondaryLatency\": -1, \"vmware_numVirtualDisks\": 1, \"vmware_annotation\": - null, \"vmware_maxMemoryUsage\": 6144, \"vmware_recordReplayState\": \"inactive\", - \"vmware_sharedMemory\": 1719, \"vmware_privateMemory\": 4425, \"vmware_resourcePool\": - \"Resources\", \"vmware_product_name\": \"ManageIQ\", \"vmware_overallCpuUsage\": - 167, \"vmware_suspendInterval\": 0, \"vmware_toolsInstallerMounted\": false, - \"vmware_memoryReservation\": 0, \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": - \"dhcp-8-99-243.example.com\", \"vmware_product_vendor\": - \"ManageIQ\", \"vmware_uptimeSeconds\": 178428, \"vmware_memorySizeMB\": 6144, - \"vmware_instanceUuid\": \"500c7f8e-f7b0-2196-666b-a4e16c813db8\", \"vmware_compressedMemory\": - 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": 4, \"vmware_installBootRequired\": - false, \"vmware_committed\": 31072890503, \"vmware_name\": \"joev-miq-repmgr-primary\", - \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", \"vmware_cpuReservation\": - 0, \"vmware_hostMemoryUsage\": 4483, \"vmware_connectionState\": \"connected\", - \"vmware_guestHeartbeatStatus\": \"green\", \"vmware_toolsRunningStatus\": - \"guestToolsRunning\", \"vmware_powerState\": \"poweredOn\", \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_guestId\": \"rhel6_64Guest\", - \"vmware_swappedMemory\": 0, \"vmware_consumedOverheadMemory\": 53, \"vmware_ftLatencyStatus\": - \"gray\"}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":36}]}' + encoding: ASCII-8BIT + string: !binary |- + eyJldWxhIjoiQU5TSUJMRSBUT1dFUiBCWSBSRUQgSEFUIEVORCBVU0VSIExJ + Q0VOU0UgQUdSRUVNRU5UXG5cblRoaXMgZW5kIHVzZXIgbGljZW5zZSBhZ3Jl + ZW1lbnQgKOKAnEVVTEHigJ0pIGdvdmVybnMgdGhlIHVzZSBvZiB0aGUgQW5z + aWJsZSBUb3dlciBzb2Z0d2FyZSBhbmQgYW55IHJlbGF0ZWQgdXBkYXRlcywg + dXBncmFkZXMsIHZlcnNpb25zLCBhcHBlYXJhbmNlLCBzdHJ1Y3R1cmUgYW5k + IG9yZ2FuaXphdGlvbiAodGhlIOKAnEFuc2libGUgVG93ZXIgU29mdHdhcmXi + gJ0pLCByZWdhcmRsZXNzIG9mIHRoZSBkZWxpdmVyeSBtZWNoYW5pc20uICBc + blxuMS4gIExpY2Vuc2UgR3JhbnQuICBTdWJqZWN0IHRvIHRoZSB0ZXJtcyBv + ZiB0aGlzIEVVTEEsIFJlZCBIYXQsIEluYy4gYW5kIGl0cyBhZmZpbGlhdGVz + ICjigJxSZWQgSGF04oCdKSBncmFudCB0byB5b3UgKOKAnFlvdeKAnSkgYSBu + b24tdHJhbnNmZXJhYmxlLCBub24tZXhjbHVzaXZlLCB3b3JsZHdpZGUsIG5v + bi1zdWJsaWNlbnNhYmxlLCBsaW1pdGVkLCByZXZvY2FibGUgbGljZW5zZSB0 + byB1c2UgdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgZm9yIHRoZSB0ZXJt + IG9mIHRoZSBhc3NvY2lhdGVkIFJlZCBIYXQgU29mdHdhcmUgU3Vic2NyaXB0 + aW9uKHMpIGFuZCBpbiBhIHF1YW50aXR5IGVxdWFsIHRvIHRoZSBudW1iZXIg + b2YgUmVkIEhhdCBTb2Z0d2FyZSBTdWJzY3JpcHRpb25zIHB1cmNoYXNlZCBm + cm9tIFJlZCBIYXQgZm9yIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlICji + gJxMaWNlbnNl4oCdKSwgZWFjaCBhcyBzZXQgZm9ydGggb24gdGhlIGFwcGxp + Y2FibGUgUmVkIEhhdCBvcmRlcmluZyBkb2N1bWVudC4gIFlvdSBhY3F1aXJl + IG9ubHkgdGhlIHJpZ2h0IHRvIHVzZSB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0 + d2FyZSBhbmQgZG8gbm90IGFjcXVpcmUgYW55IHJpZ2h0cyBvZiBvd25lcnNo + aXAuIFJlZCBIYXQgcmVzZXJ2ZXMgYWxsIHJpZ2h0cyB0byB0aGUgQW5zaWJs + ZSBUb3dlciBTb2Z0d2FyZSBub3QgZXhwcmVzc2x5IGdyYW50ZWQgdG8gWW91 + LiAgVGhpcyBMaWNlbnNlIGdyYW50IHBlcnRhaW5zIHNvbGVseSB0byBZb3Vy + IHVzZSBvZiB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZSBhbmQgaXMgbm90 + IGludGVuZGVkIHRvIGxpbWl0IFlvdXIgcmlnaHRzIHVuZGVyLCBvciBncmFu + dCBZb3UgcmlnaHRzIHRoYXQgc3VwZXJzZWRlLCB0aGUgbGljZW5zZSB0ZXJt + cyBvZiBhbnkgc29mdHdhcmUgcGFja2FnZXMgd2hpY2ggbWF5IGJlIG1hZGUg + YXZhaWxhYmxlIHdpdGggdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgdGhh + dCBhcmUgc3ViamVjdCB0byBhbiBvcGVuIHNvdXJjZSBzb2Z0d2FyZSBsaWNl + bnNlLiAgXG4gXG4yLiAgSW50ZWxsZWN0dWFsIFByb3BlcnR5IFJpZ2h0cy4g + IFRpdGxlIHRvIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlIGFuZCBlYWNo + IGNvbXBvbmVudCwgY29weSBhbmQgbW9kaWZpY2F0aW9uLCBpbmNsdWRpbmcg + YWxsIGRlcml2YXRpdmUgd29ya3Mgd2hldGhlciBtYWRlIGJ5IFJlZCBIYXQs + IFlvdSBvciBvbiBSZWQgSGF0J3MgYmVoYWxmLCBpbmNsdWRpbmcgdGhvc2Ug + bWFkZSBhdCBZb3VyIHN1Z2dlc3Rpb24gYW5kIGFsbCBhc3NvY2lhdGVkIGlu + dGVsbGVjdHVhbCBwcm9wZXJ0eSByaWdodHMsIGFyZSBhbmQgc2hhbGwgcmVt + YWluIHRoZSBzb2xlIGFuZCBleGNsdXNpdmUgcHJvcGVydHkgb2YgUmVkIEhh + dCBhbmQvb3IgaXQgbGljZW5zb3JzLiAgVGhlIExpY2Vuc2UgZG9lcyBub3Qg + YXV0aG9yaXplIFlvdSAobm9yIG1heSBZb3UgYWxsb3cgYW55IHRoaXJkIHBh + cnR5LCBzcGVjaWZpY2FsbHkgbm9uLWVtcGxveWVlcyBvZiBZb3VycykgdG86 + IChhKSBjb3B5LCBkaXN0cmlidXRlLCByZXByb2R1Y2UsIHVzZSBvciBhbGxv + dyB0aGlyZCBwYXJ0eSBhY2Nlc3MgdG8gdGhlIEFuc2libGUgVG93ZXIgU29m + dHdhcmUgZXhjZXB0IGFzIGV4cHJlc3NseSBhdXRob3JpemVkIGhlcmV1bmRl + cjsgKGIpIGRlY29tcGlsZSwgZGlzYXNzZW1ibGUsIHJldmVyc2UgZW5naW5l + ZXIsIHRyYW5zbGF0ZSwgbW9kaWZ5LCBjb252ZXJ0IG9yIGFwcGx5IGFueSBw + cm9jZWR1cmUgb3IgcHJvY2VzcyB0byB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0 + d2FyZSBpbiBvcmRlciB0byBhc2NlcnRhaW4sIGRlcml2ZSwgYW5kL29yIGFw + cHJvcHJpYXRlIGZvciBhbnkgcmVhc29uIG9yIHB1cnBvc2UsIGluY2x1ZGlu + ZyB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZSBzb3VyY2UgY29kZSBvciBz + b3VyY2UgbGlzdGluZ3Mgb3IgYW55IHRyYWRlIHNlY3JldCBpbmZvcm1hdGlv + biBvciBwcm9jZXNzIGNvbnRhaW5lZCBpbiB0aGUgQW5zaWJsZSBUb3dlciBT + b2Z0d2FyZSAoZXhjZXB0IGFzIHBlcm1pdHRlZCB1bmRlciBhcHBsaWNhYmxl + IGxhdyk7IChjKSBleGVjdXRlIG9yIGluY29ycG9yYXRlIG90aGVyIHNvZnR3 + YXJlIChleGNlcHQgZm9yIGFwcHJvdmVkIHNvZnR3YXJlIGFzIGFwcGVhcnMg + aW4gdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgZG9jdW1lbnRhdGlvbiBv + ciBzcGVjaWZpY2FsbHkgYXBwcm92ZWQgYnkgUmVkIEhhdCBpbiB3cml0aW5n + KSBpbnRvIEFuc2libGUgVG93ZXIgU29mdHdhcmUsIG9yIGNyZWF0ZSBhIGRl + cml2YXRpdmUgd29yayBvZiBhbnkgcGFydCBvZiB0aGUgQW5zaWJsZSBUb3dl + ciBTb2Z0d2FyZTsgKGQpIHJlbW92ZSBhbnkgdHJhZGVtYXJrcywgdHJhZGUg + bmFtZXMgb3IgdGl0bGVzLCBjb3B5cmlnaHRzIGxlZ2VuZHMgb3IgYW55IG90 + aGVyIHByb3ByaWV0YXJ5IG1hcmtpbmcgb24gdGhlIEFuc2libGUgVG93ZXIg + U29mdHdhcmU7IChlKSBkaXNjbG9zZSB0aGUgcmVzdWx0cyBvZiBhbnkgYmVu + Y2htYXJraW5nIG9mIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlICh3aGV0 + aGVyIG9yIG5vdCBvYnRhaW5lZCB3aXRoIFJlZCBIYXTigJlzIGFzc2lzdGFu + Y2UpIHRvIGFueSB0aGlyZCBwYXJ0eTsgKGYpIGF0dGVtcHQgdG8gY2lyY3Vt + dmVudCBhbnkgdXNlciBsaW1pdHMgb3Igb3RoZXIgbGljZW5zZSwgdGltaW5n + IG9yIHVzZSByZXN0cmljdGlvbnMgdGhhdCBhcmUgYnVpbHQgaW50bywgZGVm + aW5lZCBvciBhZ3JlZWQgdXBvbiwgcmVnYXJkaW5nIHRoZSBBbnNpYmxlIFRv + d2VyIFNvZnR3YXJlLiBZb3UgYXJlIGhlcmVieSBub3RpZmllZCB0aGF0IHRo + ZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlIG1heSBjb250YWluIHRpbWUtb3V0 + IGRldmljZXMsIGNvdW50ZXIgZGV2aWNlcywgYW5kL29yIG90aGVyIGRldmlj + ZXMgaW50ZW5kZWQgdG8gZW5zdXJlIHRoZSBsaW1pdHMgb2YgdGhlIExpY2Vu + c2Ugd2lsbCBub3QgYmUgZXhjZWVkZWQgKOKAnExpbWl0aW5nIERldmljZXPi + gJ0pLiAgSWYgdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgY29udGFpbnMg + TGltaXRpbmcgRGV2aWNlcywgUmVkIEhhdCB3aWxsIHByb3ZpZGUgWW91IG1h + dGVyaWFscyBuZWNlc3NhcnkgdG8gdXNlIHRoZSBBbnNpYmxlIFRvd2VyIFNv + ZnR3YXJlIHRvIHRoZSBleHRlbnQgcGVybWl0dGVkLiAgWW91IG1heSBub3Qg + dGFtcGVyIHdpdGggb3Igb3RoZXJ3aXNlIHRha2UgYW55IGFjdGlvbiB0byBk + ZWZlYXQgb3IgY2lyY3VtdmVudCBhIExpbWl0aW5nIERldmljZSBvciBvdGhl + ciBjb250cm9sIG1lYXN1cmUsIGluY2x1ZGluZyBidXQgbm90IGxpbWl0ZWQg + dG8sIHJlc2V0dGluZyB0aGUgdW5pdCBhbW91bnQgb3IgdXNpbmcgZmFsc2Ug + aG9zdCBpZGVudGlmaWNhdGlvbiBudW1iZXIgZm9yIHRoZSBwdXJwb3NlIG9m + IGV4dGVuZGluZyBhbnkgdGVybSBvZiB0aGUgTGljZW5zZS4gXG5cbjMuICBF + dmFsdWF0aW9uIExpY2Vuc2VzLiBVbmxlc3MgWW91IGhhdmUgcHVyY2hhc2Vk + IEFuc2libGUgVG93ZXIgU29mdHdhcmUgU3Vic2NyaXB0aW9ucyBmcm9tIFJl + ZCBIYXQgb3IgYW4gYXV0aG9yaXplZCByZXNlbGxlciB1bmRlciB0aGUgdGVy + bXMgb2YgYSBjb21tZXJjaWFsIGFncmVlbWVudCB3aXRoIFJlZCBIYXQsIGFs + bCB1c2Ugb2YgdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgc2hhbGwgYmUg + bGltaXRlZCB0byB0ZXN0aW5nIHB1cnBvc2VzIGFuZCBub3QgZm9yIHByb2R1 + Y3Rpb24gdXNlICjigJxFdmFsdWF0aW9u4oCdKS4gVW5sZXNzIG90aGVyd2lz + ZSBhZ3JlZWQgYnkgUmVkIEhhdCwgRXZhbHVhdGlvbiBvZiB0aGUgQW5zaWJs + ZSBUb3dlciBTb2Z0d2FyZSBzaGFsbCBiZSBsaW1pdGVkIHRvIGFuIGV2YWx1 + YXRpb24gZW52aXJvbm1lbnQgYW5kIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3 + YXJlIHNoYWxsIG5vdCBiZSB1c2VkIHRvIG1hbmFnZSBhbnkgc3lzdGVtcyBv + ciB2aXJ0dWFsIG1hY2hpbmVzIG9uIG5ldHdvcmtzIGJlaW5nIHVzZWQgaW4g + dGhlIG9wZXJhdGlvbiBvZiBZb3VyIGJ1c2luZXNzIG9yIGFueSBvdGhlciBu + b24tZXZhbHVhdGlvbiBwdXJwb3NlLiAgVW5sZXNzIG90aGVyd2lzZSBhZ3Jl + ZWQgYnkgUmVkIEhhdCwgWW91IHNoYWxsIGxpbWl0IGFsbCBFdmFsdWF0aW9u + IHVzZSB0byBhIHNpbmdsZSAzMCBkYXkgZXZhbHVhdGlvbiBwZXJpb2QgYW5k + IHNoYWxsIG5vdCBkb3dubG9hZCBvciBvdGhlcndpc2Ugb2J0YWluIGFkZGl0 + aW9uYWwgY29waWVzIG9mIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlIG9y + IGxpY2Vuc2Uga2V5cyBmb3IgRXZhbHVhdGlvbi5cblxuNC4gIExpbWl0ZWQg + V2FycmFudHkuICBFeGNlcHQgYXMgc3BlY2lmaWNhbGx5IHN0YXRlZCBpbiB0 + aGlzIFNlY3Rpb24gNCwgdG8gdGhlIG1heGltdW0gZXh0ZW50IHBlcm1pdHRl + ZCB1bmRlciBhcHBsaWNhYmxlIGxhdywgdGhlIEFuc2libGUgVG93ZXIgU29m + dHdhcmUgYW5kIHRoZSBjb21wb25lbnRzIGFyZSBwcm92aWRlZCBhbmQgbGlj + ZW5zZWQg4oCcYXMgaXPigJ0gd2l0aG91dCB3YXJyYW50eSBvZiBhbnkga2lu + ZCwgZXhwcmVzc2VkIG9yIGltcGxpZWQsIGluY2x1ZGluZyB0aGUgaW1wbGll + ZCB3YXJyYW50aWVzIG9mIG1lcmNoYW50YWJpbGl0eSwgbm9uLWluZnJpbmdl + bWVudCBvciBmaXRuZXNzIGZvciBhIHBhcnRpY3VsYXIgcHVycG9zZS4gIFJl + ZCBIYXQgd2FycmFudHMgc29sZWx5IHRvIFlvdSB0aGF0IHRoZSBtZWRpYSBv + biB3aGljaCB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZSBtYXkgYmUgZnVy + bmlzaGVkIHdpbGwgYmUgZnJlZSBmcm9tIGRlZmVjdHMgaW4gbWF0ZXJpYWxz + IGFuZCBtYW51ZmFjdHVyZSB1bmRlciBub3JtYWwgdXNlIGZvciBhIHBlcmlv + ZCBvZiB0aGlydHkgKDMwKSBkYXlzIGZyb20gdGhlIGRhdGUgb2YgZGVsaXZl + cnkgdG8gWW91LiAgUmVkIEhhdCBkb2VzIG5vdCB3YXJyYW50IHRoYXQgdGhl + IGZ1bmN0aW9ucyBjb250YWluZWQgaW4gdGhlIEFuc2libGUgVG93ZXIgU29m + dHdhcmUgd2lsbCBtZWV0IFlvdXIgcmVxdWlyZW1lbnRzIG9yIHRoYXQgdGhl + IG9wZXJhdGlvbiBvZiB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZSB3aWxs + IGJlIGVudGlyZWx5IGVycm9yIGZyZWUsIGFwcGVhciBwcmVjaXNlbHkgYXMg + ZGVzY3JpYmVkIGluIHRoZSBhY2NvbXBhbnlpbmcgZG9jdW1lbnRhdGlvbiwg + b3IgY29tcGx5IHdpdGggcmVndWxhdG9yeSByZXF1aXJlbWVudHMuIFxuXG41 + LiAgTGltaXRhdGlvbiBvZiBSZW1lZGllcyBhbmQgTGlhYmlsaXR5LiBUbyB0 + aGUgbWF4aW11bSBleHRlbnQgcGVybWl0dGVkIGJ5IGFwcGxpY2FibGUgbGF3 + LCBZb3VyIGV4Y2x1c2l2ZSByZW1lZHkgdW5kZXIgdGhpcyBFVUxBIGlzIHRv + IHJldHVybiBhbnkgZGVmZWN0aXZlIG1lZGlhIHdpdGhpbiB0aGlydHkgKDMw + KSBkYXlzIG9mIGRlbGl2ZXJ5IGFsb25nIHdpdGggYSBjb3B5IG9mIFlvdXIg + cGF5bWVudCByZWNlaXB0IGFuZCBSZWQgSGF0LCBhdCBpdHMgb3B0aW9uLCB3 + aWxsIHJlcGxhY2UgaXQgb3IgcmVmdW5kIHRoZSBtb25leSBwYWlkIGJ5IFlv + dSBmb3IgdGhlIG1lZGlhLiAgVG8gdGhlIG1heGltdW0gZXh0ZW50IHBlcm1p + dHRlZCB1bmRlciBhcHBsaWNhYmxlIGxhdywgbmVpdGhlciBSZWQgSGF0IG5v + ciBhbnkgUmVkIEhhdCBhdXRob3JpemVkIGRpc3RyaWJ1dG9yIHdpbGwgYmUg + bGlhYmxlIHRvIFlvdSBmb3IgYW55IGluY2lkZW50YWwgb3IgY29uc2VxdWVu + dGlhbCBkYW1hZ2VzLCBpbmNsdWRpbmcgbG9zdCBwcm9maXRzIG9yIGxvc3Qg + c2F2aW5ncyBhcmlzaW5nIG91dCBvZiB0aGUgdXNlIG9yIGluYWJpbGl0eSB0 + byB1c2UgdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgb3IgYW55IGNvbXBv + bmVudCwgZXZlbiBpZiBSZWQgSGF0IG9yIHRoZSBhdXRob3JpemVkIGRpc3Ry + aWJ1dG9yIGhhcyBiZWVuIGFkdmlzZWQgb2YgdGhlIHBvc3NpYmlsaXR5IG9m + IHN1Y2ggZGFtYWdlcy4gIEluIG5vIGV2ZW50IHNoYWxsIFJlZCBIYXQncyBs + aWFiaWxpdHkgb3IgYW4gYXV0aG9yaXplZCBkaXN0cmlidXRvcuKAmXMgbGlh + YmlsaXR5IGV4Y2VlZCB0aGUgYW1vdW50IHRoYXQgWW91IHBhaWQgdG8gUmVk + IEhhdCBmb3IgdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgZHVyaW5nIHRo + ZSB0d2VsdmUgbW9udGhzIHByZWNlZGluZyB0aGUgZmlyc3QgZXZlbnQgZ2l2 + aW5nIHJpc2UgdG8gbGlhYmlsaXR5LlxuXG42LiAgRXhwb3J0IENvbnRyb2wu + ICBJbiBhY2NvcmRhbmNlIHdpdGggdGhlIGxhd3Mgb2YgdGhlIFVuaXRlZCBT + dGF0ZXMgYW5kIG90aGVyIGNvdW50cmllcywgWW91IHJlcHJlc2VudCBhbmQg + d2FycmFudCB0aGF0IFlvdTogKGEpIHVuZGVyc3RhbmQgdGhhdCB0aGUgQW5z + aWJsZSBUb3dlciBTb2Z0d2FyZSBhbmQgaXRzIGNvbXBvbmVudHMgbWF5IGJl + IHN1YmplY3QgdG8gZXhwb3J0IGNvbnRyb2xzIHVuZGVyIHRoZSBVLlMuIENv + bW1lcmNlIERlcGFydG1lbnTigJlzIEV4cG9ydCBBZG1pbmlzdHJhdGlvbiBS + ZWd1bGF0aW9ucyAo4oCcRUFS4oCdKTsgKGIpIGFyZSBub3QgbG9jYXRlZCBp + biBhbnkgY291bnRyeSBsaXN0ZWQgaW4gQ291bnRyeSBHcm91cCBFOjEgaW4g + U3VwcGxlbWVudCBOby4gMSB0byBwYXJ0IDc0MCBvZiB0aGUgRUFSOyAoYykg + d2lsbCBub3QgZXhwb3J0LCByZS1leHBvcnQsIG9yIHRyYW5zZmVyIHRoZSBB + bnNpYmxlIFRvd2VyIFNvZnR3YXJlIHRvIGFueSBwcm9oaWJpdGVkIGRlc3Rp + bmF0aW9uIG9yIHRvIGFueSBlbmQgdXNlciB3aG8gaGFzIGJlZW4gcHJvaGli + aXRlZCBmcm9tIHBhcnRpY2lwYXRpbmcgaW4gVVMgZXhwb3J0IHRyYW5zYWN0 + aW9ucyBieSBhbnkgZmVkZXJhbCBhZ2VuY3kgb2YgdGhlIFVTIGdvdmVybm1l + bnQ7ICAoZCkgd2lsbCBub3QgdXNlIG9yIHRyYW5zZmVyIHRoZSBBbnNpYmxl + IFRvd2VyIFNvZnR3YXJlIGZvciB1c2UgaW4gY29ubmVjdGlvbiB3aXRoIHRo + ZSBkZXNpZ24sIGRldmVsb3BtZW50IG9yIHByb2R1Y3Rpb24gb2YgbnVjbGVh + ciwgY2hlbWljYWwgb3IgYmlvbG9naWNhbCB3ZWFwb25zLCBvciByb2NrZXQg + c3lzdGVtcywgc3BhY2UgbGF1bmNoIHZlaGljbGVzLCBvciBzb3VuZGluZyBy + b2NrZXRzIG9yIHVubWFubmVkIGFpciB2ZWhpY2xlIHN5c3RlbXM7IChlKSB1 + bmRlcnN0YW5kIGFuZCBhZ3JlZSB0aGF0IGlmIHlvdSBhcmUgaW4gdGhlIFVu + aXRlZCBTdGF0ZXMgYW5kIHlvdSBleHBvcnQgb3IgdHJhbnNmZXIgdGhlIEFu + c2libGUgVG93ZXIgU29mdHdhcmUgdG8gZWxpZ2libGUgZW5kIHVzZXJzLCB5 + b3Ugd2lsbCwgdG8gdGhlIGV4dGVudCByZXF1aXJlZCBieSBFQVIgU2VjdGlv + biA3NDAuMTcgb2J0YWluIGEgbGljZW5zZSBmb3Igc3VjaCBleHBvcnQgb3Ig + dHJhbnNmZXIgYW5kIHdpbGwgc3VibWl0IHNlbWktYW5udWFsIHJlcG9ydHMg + dG8gdGhlIENvbW1lcmNlIERlcGFydG1lbnTigJlzIEJ1cmVhdSBvZiBJbmR1 + c3RyeSBhbmQgU2VjdXJpdHksIHdoaWNoIGluY2x1ZGUgdGhlIG5hbWUgYW5k + IGFkZHJlc3MgKGluY2x1ZGluZyBjb3VudHJ5KSBvZiBlYWNoIHRyYW5zZmVy + ZWU7IGFuZCAoZikgdW5kZXJzdGFuZCB0aGF0IGNvdW50cmllcyBpbmNsdWRp + bmcgdGhlIFVuaXRlZCBTdGF0ZXMgbWF5IHJlc3RyaWN0IHRoZSBpbXBvcnQs + IHVzZSwgb3IgZXhwb3J0IG9mIGVuY3J5cHRpb24gcHJvZHVjdHMgKHdoaWNo + IG1heSBpbmNsdWRlIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlKSBhbmQg + YWdyZWUgdGhhdCB5b3Ugc2hhbGwgYmUgc29sZWx5IHJlc3BvbnNpYmxlIGZv + ciBjb21wbGlhbmNlIHdpdGggYW55IHN1Y2ggaW1wb3J0LCB1c2UsIG9yIGV4 + cG9ydCByZXN0cmljdGlvbnMuXG5cbjcuICBHZW5lcmFsLiAgSWYgYW55IHBy + b3Zpc2lvbiBvZiB0aGlzIEVVTEEgaXMgaGVsZCB0byBiZSB1bmVuZm9yY2Vh + YmxlLCB0aGF0IHNoYWxsIG5vdCBhZmZlY3QgdGhlIGVuZm9yY2VhYmlsaXR5 + IG9mIHRoZSByZW1haW5pbmcgcHJvdmlzaW9ucy4gIFRoaXMgYWdyZWVtZW50 + IHNoYWxsIGJlIGdvdmVybmVkIGJ5IHRoZSBsYXdzIG9mIHRoZSBTdGF0ZSBv + ZiBOZXcgWW9yayBhbmQgb2YgdGhlIFVuaXRlZCBTdGF0ZXMsIHdpdGhvdXQg + cmVnYXJkIHRvIGFueSBjb25mbGljdCBvZiBsYXdzIHByb3Zpc2lvbnMuIFRo + ZSByaWdodHMgYW5kIG9ibGlnYXRpb25zIG9mIHRoZSBwYXJ0aWVzIHRvIHRo + aXMgRVVMQSBzaGFsbCBub3QgYmUgZ292ZXJuZWQgYnkgdGhlIFVuaXRlZCBO + YXRpb25zIENvbnZlbnRpb24gb24gdGhlIEludGVybmF0aW9uYWwgU2FsZSBv + ZiBHb29kcy4gXG5cbkNvcHlyaWdodCDCqSAyMDE1IFJlZCBIYXQsIEluYy4g + IEFsbCByaWdodHMgcmVzZXJ2ZWQuICBcIlJlZCBIYXRcIiBhbmQg4oCcQW5z + aWJsZSBUb3dlcuKAnSBhcmUgcmVnaXN0ZXJlZCB0cmFkZW1hcmtzIG9mIFJl + ZCBIYXQsIEluYy4gIEFsbCBvdGhlciB0cmFkZW1hcmtzIGFyZSB0aGUgcHJv + cGVydHkgb2YgdGhlaXIgcmVzcGVjdGl2ZSBvd25lcnMuXG4iLCJsaWNlbnNl + X2luZm8iOnsiZGVwbG95bWVudF9pZCI6IjE1YmViMDE2MmNlNmQ3YTNiMzVm + NzVjZjYxMDY0ZjJmMDM2Mjk3MDgiLCJzdWJzY3JpcHRpb25fbmFtZSI6IkFu + c2libGUgVG93ZXIgYnkgUmVkIEhhdCwgU3RhbmRhcmQgKDEwMDAwIE1hbmFn + ZWQgTm9kZXMpIiwiY3VycmVudF9pbnN0YW5jZXMiOjE0LCJmZWF0dXJlcyI6 + eyJzdXJ2ZXlzIjp0cnVlLCJtdWx0aXBsZV9vcmdhbml6YXRpb25zIjp0cnVl + LCJzeXN0ZW1fdHJhY2tpbmciOnRydWUsImVudGVycHJpc2VfYXV0aCI6dHJ1 + ZSwicmVicmFuZGluZyI6dHJ1ZSwiYWN0aXZpdHlfc3RyZWFtcyI6dHJ1ZSwi + bGRhcCI6dHJ1ZSwiaGEiOnRydWV9LCJkYXRlX2V4cGlyZWQiOmZhbHNlLCJh + dmFpbGFibGVfaW5zdGFuY2VzIjoxMDAwMCwiaG9zdG5hbWUiOiIxMjk0ZGQ2 + MzAxMjY0NDIxOGI1MmExN2I2YmM0MzBlZCIsImZyZWVfaW5zdGFuY2VzIjo5 + OTg2LCJpbnN0YW5jZV9jb3VudCI6MTAwMDAsInRpbWVfcmVtYWluaW5nIjox + NTk2NzE3OSwiY29tcGxpYW50Ijp0cnVlLCJncmFjZV9wZXJpb2RfcmVtYWlu + aW5nIjoxODU1OTE3OSwiY29udGFjdF9lbWFpbCI6ImpvZXNtaXRAcmVkaGF0 + LmNvbSIsImNvbXBhbnlfbmFtZSI6IlJlZCBIYXQsIEluYy4iLCJkYXRlX3dh + cm5pbmciOmZhbHNlLCJsaWNlbnNlX3R5cGUiOiJlbnRlcnByaXNlIiwiY29u + dGFjdF9uYW1lIjoiSm9lICBTbWl0aCIsImxpY2Vuc2VfZGF0ZSI6MTUxODcx + MDEwMiwibGljZW5zZV9rZXkiOiIwM2NiYzNlNzM3OWViM2Y3ZTFmZDEzOWVj + NjkyZDg1YjliNmRhNDNkOWNiY2IwY2JiMmQ0MzYzOTliOWQ2OThjIiwidmFs + aWRfa2V5Ijp0cnVlfSwiYW5hbHl0aWNzX3N0YXR1cyI6ImRldGFpbGVkIiwi + dmVyc2lvbiI6IjMuMC4xIiwicHJvamVjdF9iYXNlX2RpciI6Ii92YXIvbGli + L2F3eC9wcm9qZWN0cyIsInRpbWVfem9uZSI6IkFtZXJpY2EvTmV3X1lvcmsi + LCJhbnNpYmxlX3ZlcnNpb24iOiIyLjEuMC4wIiwicHJvamVjdF9sb2NhbF9w + YXRocyI6WyJqd29uZ19yZXBvIiwiandvbmdfcmVwbzIiXX0= + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:22 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 301 + message: MOVED PERMANENTLY + headers: + Date: + - Mon, 14 Aug 2017 20:35:23 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Location: + - https://dev-ansible-tower3.example.com/api/v1/job_templates/ + Content-Length: + - '0' + Content-Type: + - text/html; charset=utf-8 + body: + encoding: UTF-8 + string: '' + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:23 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:23 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, HEAD, OPTIONS + X-Api-Time: + - 0.345s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: ASCII-8BIT + string: !binary |- + eyJjb3VudCI6MTIyLCJuZXh0IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLz9w + YWdlPTIiLCJwcmV2aW91cyI6bnVsbCwicmVzdWx0cyI6W3siaWQiOjgwLCJ0 + eXBlIjoiam9iX3RlbXBsYXRlIiwidXJsIjoiL2FwaS92MS9qb2JfdGVtcGxh + dGVzLzgwLyIsInJlbGF0ZWQiOnsiY3JlYXRlZF9ieSI6Ii9hcGkvdjEvdXNl + cnMvMS8iLCJtb2RpZmllZF9ieSI6Ii9hcGkvdjEvdXNlcnMvMS8iLCJsYWJl + bHMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvODAvbGFiZWxzLyIsIm5vdGlm + aWNhdGlvbl90ZW1wbGF0ZXNfZXJyb3IiOiIvYXBpL3YxL2pvYl90ZW1wbGF0 + ZXMvODAvbm90aWZpY2F0aW9uX3RlbXBsYXRlc19lcnJvci8iLCJub3RpZmlj + YXRpb25fdGVtcGxhdGVzX3N1Y2Nlc3MiOiIvYXBpL3YxL2pvYl90ZW1wbGF0 + ZXMvODAvbm90aWZpY2F0aW9uX3RlbXBsYXRlc19zdWNjZXNzLyIsImpvYnMi + OiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvODAvam9icy8iLCJvYmplY3Rfcm9s + ZXMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvODAvb2JqZWN0X3JvbGVzLyIs + Im5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfYW55IjoiL2FwaS92MS9qb2JfdGVt + cGxhdGVzLzgwL25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfYW55LyIsImFjY2Vz + c19saXN0IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzgwL2FjY2Vzc19saXN0 + LyIsImxhdW5jaCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy84MC9sYXVuY2gv + Iiwic2NoZWR1bGVzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzgwL3NjaGVk + dWxlcy8iLCJhY3Rpdml0eV9zdHJlYW0iOiIvYXBpL3YxL2pvYl90ZW1wbGF0 + ZXMvODAvYWN0aXZpdHlfc3RyZWFtLyIsInN1cnZleV9zcGVjIjoiL2FwaS92 + MS9qb2JfdGVtcGxhdGVzLzgwL3N1cnZleV9zcGVjLyJ9LCJzdW1tYXJ5X2Zp + ZWxkcyI6eyJjcmVhdGVkX2J5Ijp7ImlkIjoxLCJ1c2VybmFtZSI6ImFkbWlu + IiwiZmlyc3RfbmFtZSI6IiIsImxhc3RfbmFtZSI6IiJ9LCJtb2RpZmllZF9i + eSI6eyJpZCI6MSwidXNlcm5hbWUiOiJhZG1pbiIsImZpcnN0X25hbWUiOiIi + LCJsYXN0X25hbWUiOiIifSwib2JqZWN0X3JvbGVzIjp7ImFkbWluX3JvbGUi + OnsiZGVzY3JpcHRpb24iOiJDYW4gbWFuYWdlIGFsbCBhc3BlY3RzIG9mIHRo + ZSBqb2IgdGVtcGxhdGUiLCJpZCI6MjQxLCJuYW1lIjoiQWRtaW4ifSwiZXhl + Y3V0ZV9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiTWF5IHJ1biB0aGUgam9iIHRl + bXBsYXRlIiwiaWQiOjI0MywibmFtZSI6IkV4ZWN1dGUifSwicmVhZF9yb2xl + Ijp7ImRlc2NyaXB0aW9uIjoiTWF5IHZpZXcgc2V0dGluZ3MgZm9yIHRoZSBq + b2IgdGVtcGxhdGUiLCJpZCI6MjQyLCJuYW1lIjoiUmVhZCJ9fSwibGFiZWxz + Ijp7ImNvdW50IjowLCJyZXN1bHRzIjpbXX0sImNhbl9jb3B5IjpmYWxzZSwi + Y2FuX2VkaXQiOnRydWUsInJlY2VudF9qb2JzIjpbXX0sImNyZWF0ZWQiOiIy + MDE3LTAyLTA5VDA5OjEwOjMwLjc0NFoiLCJtb2RpZmllZCI6IjIwMTctMDIt + MDlUMTA6MzU6MzMuNDg0WiIsIm5hbWUiOiJBbnNpYmxlLUpvYlRlbXBsYXRl + IiwiZGVzY3JpcHRpb24iOiJBbnNpYmxlLUpvYlRlbXBsYXRlLURlc2NyaXB0 + aW9uIiwiam9iX3R5cGUiOiJydW4iLCJpbnZlbnRvcnkiOm51bGwsInByb2pl + Y3QiOm51bGwsInBsYXlib29rIjoiIiwiY3JlZGVudGlhbCI6bnVsbCwiY2xv + dWRfY3JlZGVudGlhbCI6bnVsbCwibmV0d29ya19jcmVkZW50aWFsIjpudWxs + LCJmb3JrcyI6MCwibGltaXQiOiIiLCJ2ZXJib3NpdHkiOjAsImV4dHJhX3Zh + cnMiOiJhYmM6IDEyMyIsImpvYl90YWdzIjoiIiwiZm9yY2VfaGFuZGxlcnMi + OmZhbHNlLCJza2lwX3RhZ3MiOiIiLCJzdGFydF9hdF90YXNrIjoiIiwibGFz + dF9qb2JfcnVuIjpudWxsLCJsYXN0X2pvYl9mYWlsZWQiOmZhbHNlLCJoYXNf + c2NoZWR1bGVzIjpmYWxzZSwibmV4dF9qb2JfcnVuIjpudWxsLCJzdGF0dXMi + OiJuZXZlciB1cGRhdGVkIiwiaG9zdF9jb25maWdfa2V5IjoiIiwiYXNrX3Zh + cmlhYmxlc19vbl9sYXVuY2giOmZhbHNlLCJhc2tfbGltaXRfb25fbGF1bmNo + IjpmYWxzZSwiYXNrX3RhZ3Nfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2pvYl90 + eXBlX29uX2xhdW5jaCI6ZmFsc2UsImFza19pbnZlbnRvcnlfb25fbGF1bmNo + IjpmYWxzZSwiYXNrX2NyZWRlbnRpYWxfb25fbGF1bmNoIjpmYWxzZSwic3Vy + dmV5X2VuYWJsZWQiOmZhbHNlLCJiZWNvbWVfZW5hYmxlZCI6ZmFsc2UsImFs + bG93X3NpbXVsdGFuZW91cyI6ZmFsc2V9LHsiaWQiOjgxLCJ0eXBlIjoiam9i + X3RlbXBsYXRlIiwidXJsIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzgxLyIs + InJlbGF0ZWQiOnsiY3JlYXRlZF9ieSI6Ii9hcGkvdjEvdXNlcnMvMS8iLCJt + b2RpZmllZF9ieSI6Ii9hcGkvdjEvdXNlcnMvMS8iLCJsYWJlbHMiOiIvYXBp + L3YxL2pvYl90ZW1wbGF0ZXMvODEvbGFiZWxzLyIsIm5vdGlmaWNhdGlvbl90 + ZW1wbGF0ZXNfZXJyb3IiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvODEvbm90 + aWZpY2F0aW9uX3RlbXBsYXRlc19lcnJvci8iLCJub3RpZmljYXRpb25fdGVt + cGxhdGVzX3N1Y2Nlc3MiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvODEvbm90 + aWZpY2F0aW9uX3RlbXBsYXRlc19zdWNjZXNzLyIsImpvYnMiOiIvYXBpL3Yx + L2pvYl90ZW1wbGF0ZXMvODEvam9icy8iLCJvYmplY3Rfcm9sZXMiOiIvYXBp + L3YxL2pvYl90ZW1wbGF0ZXMvODEvb2JqZWN0X3JvbGVzLyIsIm5vdGlmaWNh + dGlvbl90ZW1wbGF0ZXNfYW55IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzgx + L25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfYW55LyIsImFjY2Vzc19saXN0Ijoi + L2FwaS92MS9qb2JfdGVtcGxhdGVzLzgxL2FjY2Vzc19saXN0LyIsImxhdW5j + aCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy84MS9sYXVuY2gvIiwic2NoZWR1 + bGVzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzgxL3NjaGVkdWxlcy8iLCJh + Y3Rpdml0eV9zdHJlYW0iOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvODEvYWN0 + aXZpdHlfc3RyZWFtLyIsInN1cnZleV9zcGVjIjoiL2FwaS92MS9qb2JfdGVt + cGxhdGVzLzgxL3N1cnZleV9zcGVjLyJ9LCJzdW1tYXJ5X2ZpZWxkcyI6eyJj + cmVhdGVkX2J5Ijp7ImlkIjoxLCJ1c2VybmFtZSI6ImFkbWluIiwiZmlyc3Rf + bmFtZSI6IiIsImxhc3RfbmFtZSI6IiJ9LCJtb2RpZmllZF9ieSI6eyJpZCI6 + MSwidXNlcm5hbWUiOiJhZG1pbiIsImZpcnN0X25hbWUiOiIiLCJsYXN0X25h + bWUiOiIifSwib2JqZWN0X3JvbGVzIjp7ImFkbWluX3JvbGUiOnsiZGVzY3Jp + cHRpb24iOiJDYW4gbWFuYWdlIGFsbCBhc3BlY3RzIG9mIHRoZSBqb2IgdGVt + cGxhdGUiLCJpZCI6MjQ0LCJuYW1lIjoiQWRtaW4ifSwiZXhlY3V0ZV9yb2xl + Ijp7ImRlc2NyaXB0aW9uIjoiTWF5IHJ1biB0aGUgam9iIHRlbXBsYXRlIiwi + aWQiOjI0NiwibmFtZSI6IkV4ZWN1dGUifSwicmVhZF9yb2xlIjp7ImRlc2Ny + aXB0aW9uIjoiTWF5IHZpZXcgc2V0dGluZ3MgZm9yIHRoZSBqb2IgdGVtcGxh + dGUiLCJpZCI6MjQ1LCJuYW1lIjoiUmVhZCJ9fSwibGFiZWxzIjp7ImNvdW50 + IjowLCJyZXN1bHRzIjpbXX0sInN1cnZleSI6eyJkZXNjcmlwdGlvbiI6IiIs + InRpdGxlIjoiIn0sImNhbl9jb3B5IjpmYWxzZSwiY2FuX2VkaXQiOnRydWUs + InJlY2VudF9qb2JzIjpbXX0sImNyZWF0ZWQiOiIyMDE3LTAyLTA5VDA5OjEx + OjAxLjQ1MFoiLCJtb2RpZmllZCI6IjIwMTctMDItMDlUMDk6NDI6MjguNDQz + WiIsIm5hbWUiOiJBbnNpYmxlLUpvYlRlbXBsYXRlLVN1cnZleSIsImRlc2Ny + aXB0aW9uIjoiQW5zaWJsZS1Kb2JUZW1wbGF0ZS1EZXNjcmlwdGlvbiIsImpv + Yl90eXBlIjoicnVuIiwiaW52ZW50b3J5IjpudWxsLCJwcm9qZWN0IjpudWxs + LCJwbGF5Ym9vayI6IiIsImNyZWRlbnRpYWwiOm51bGwsImNsb3VkX2NyZWRl + bnRpYWwiOm51bGwsIm5ldHdvcmtfY3JlZGVudGlhbCI6bnVsbCwiZm9ya3Mi + OjAsImxpbWl0IjoiIiwidmVyYm9zaXR5IjowLCJleHRyYV92YXJzIjoiYWJj + OiAxMjMiLCJqb2JfdGFncyI6IiIsImZvcmNlX2hhbmRsZXJzIjpmYWxzZSwi + c2tpcF90YWdzIjoiIiwic3RhcnRfYXRfdGFzayI6IiIsImxhc3Rfam9iX3J1 + biI6bnVsbCwibGFzdF9qb2JfZmFpbGVkIjpmYWxzZSwiaGFzX3NjaGVkdWxl + cyI6ZmFsc2UsIm5leHRfam9iX3J1biI6bnVsbCwic3RhdHVzIjoibmV2ZXIg + dXBkYXRlZCIsImhvc3RfY29uZmlnX2tleSI6IiIsImFza192YXJpYWJsZXNf + b25fbGF1bmNoIjpmYWxzZSwiYXNrX2xpbWl0X29uX2xhdW5jaCI6ZmFsc2Us + ImFza190YWdzX29uX2xhdW5jaCI6ZmFsc2UsImFza19qb2JfdHlwZV9vbl9s + YXVuY2giOmZhbHNlLCJhc2tfaW52ZW50b3J5X29uX2xhdW5jaCI6ZmFsc2Us + ImFza19jcmVkZW50aWFsX29uX2xhdW5jaCI6ZmFsc2UsInN1cnZleV9lbmFi + bGVkIjp0cnVlLCJiZWNvbWVfZW5hYmxlZCI6ZmFsc2UsImFsbG93X3NpbXVs + dGFuZW91cyI6ZmFsc2V9LHsiaWQiOjMwLCJ0eXBlIjoiam9iX3RlbXBsYXRl + IiwidXJsIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzMwLyIsInJlbGF0ZWQi + OnsiY3JlYXRlZF9ieSI6Ii9hcGkvdjEvdXNlcnMvMS8iLCJsYWJlbHMiOiIv + YXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzAvbGFiZWxzLyIsIm5vdGlmaWNhdGlv + bl90ZW1wbGF0ZXNfZXJyb3IiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzAv + bm90aWZpY2F0aW9uX3RlbXBsYXRlc19lcnJvci8iLCJub3RpZmljYXRpb25f + dGVtcGxhdGVzX3N1Y2Nlc3MiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzAv + bm90aWZpY2F0aW9uX3RlbXBsYXRlc19zdWNjZXNzLyIsImpvYnMiOiIvYXBp + L3YxL2pvYl90ZW1wbGF0ZXMvMzAvam9icy8iLCJvYmplY3Rfcm9sZXMiOiIv + YXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzAvb2JqZWN0X3JvbGVzLyIsIm5vdGlm + aWNhdGlvbl90ZW1wbGF0ZXNfYW55IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVz + LzMwL25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfYW55LyIsImFjY2Vzc19saXN0 + IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzMwL2FjY2Vzc19saXN0LyIsImxh + dW5jaCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8zMC9sYXVuY2gvIiwic2No + ZWR1bGVzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzMwL3NjaGVkdWxlcy8i + LCJhY3Rpdml0eV9zdHJlYW0iOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzAv + YWN0aXZpdHlfc3RyZWFtLyIsInN1cnZleV9zcGVjIjoiL2FwaS92MS9qb2Jf + dGVtcGxhdGVzLzMwL3N1cnZleV9zcGVjLyJ9LCJzdW1tYXJ5X2ZpZWxkcyI6 + eyJjcmVhdGVkX2J5Ijp7ImlkIjoxLCJ1c2VybmFtZSI6ImFkbWluIiwiZmly + c3RfbmFtZSI6IiIsImxhc3RfbmFtZSI6IiJ9LCJvYmplY3Rfcm9sZXMiOnsi + YWRtaW5fcm9sZSI6eyJkZXNjcmlwdGlvbiI6IkNhbiBtYW5hZ2UgYWxsIGFz + cGVjdHMgb2YgdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjozOCwibmFtZSI6IkFk + bWluIn0sImV4ZWN1dGVfcm9sZSI6eyJkZXNjcmlwdGlvbiI6Ik1heSBydW4g + dGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjo0MCwibmFtZSI6IkV4ZWN1dGUifSwi + cmVhZF9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiTWF5IHZpZXcgc2V0dGluZ3Mg + Zm9yIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6MzksIm5hbWUiOiJSZWFkIn19 + LCJsYWJlbHMiOnsiY291bnQiOjAsInJlc3VsdHMiOltdfSwiY2FuX2NvcHki + OmZhbHNlLCJjYW5fZWRpdCI6dHJ1ZSwicmVjZW50X2pvYnMiOltdfSwiY3Jl + YXRlZCI6IjIwMTYtMTEtMjlUMjE6NDI6NDIuNTQzWiIsIm1vZGlmaWVkIjoi + MjAxNy0wMi0wNlQxNTowNjo1My40NDhaIiwibmFtZSI6ImJkLXRlc3QiLCJk + ZXNjcmlwdGlvbiI6IiIsImpvYl90eXBlIjoicnVuIiwiaW52ZW50b3J5Ijpu + dWxsLCJwcm9qZWN0IjpudWxsLCJwbGF5Ym9vayI6IiIsImNyZWRlbnRpYWwi + Om51bGwsImNsb3VkX2NyZWRlbnRpYWwiOm51bGwsIm5ldHdvcmtfY3JlZGVu + dGlhbCI6bnVsbCwiZm9ya3MiOjAsImxpbWl0IjoiIiwidmVyYm9zaXR5Ijow + LCJleHRyYV92YXJzIjoiIiwiam9iX3RhZ3MiOiIiLCJmb3JjZV9oYW5kbGVy + cyI6ZmFsc2UsInNraXBfdGFncyI6IiIsInN0YXJ0X2F0X3Rhc2siOiIiLCJs + YXN0X2pvYl9ydW4iOiIyMDE3LTAyLTA2VDE1OjA3OjE5LjU4ODc3OVoiLCJs + YXN0X2pvYl9mYWlsZWQiOmZhbHNlLCJoYXNfc2NoZWR1bGVzIjpmYWxzZSwi + bmV4dF9qb2JfcnVuIjpudWxsLCJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiaG9z + dF9jb25maWdfa2V5IjoiIiwiYXNrX3ZhcmlhYmxlc19vbl9sYXVuY2giOmZh + bHNlLCJhc2tfbGltaXRfb25fbGF1bmNoIjpmYWxzZSwiYXNrX3RhZ3Nfb25f + bGF1bmNoIjpmYWxzZSwiYXNrX2pvYl90eXBlX29uX2xhdW5jaCI6ZmFsc2Us + ImFza19pbnZlbnRvcnlfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2NyZWRlbnRp + YWxfb25fbGF1bmNoIjpmYWxzZSwic3VydmV5X2VuYWJsZWQiOmZhbHNlLCJi + ZWNvbWVfZW5hYmxlZCI6ZmFsc2UsImFsbG93X3NpbXVsdGFuZW91cyI6ZmFs + c2V9LHsiaWQiOjE4OSwidHlwZSI6ImpvYl90ZW1wbGF0ZSIsInVybCI6Ii9h + cGkvdjEvam9iX3RlbXBsYXRlcy8xODkvIiwicmVsYXRlZCI6eyJjcmVhdGVk + X2J5IjoiL2FwaS92MS91c2Vycy8xLyIsIm1vZGlmaWVkX2J5IjoiL2FwaS92 + MS91c2Vycy8xLyIsImxhYmVscyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8x + ODkvbGFiZWxzLyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfZXJyb3IiOiIv + YXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTg5L25vdGlmaWNhdGlvbl90ZW1wbGF0 + ZXNfZXJyb3IvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRlc19zdWNjZXNzIjoi + L2FwaS92MS9qb2JfdGVtcGxhdGVzLzE4OS9ub3RpZmljYXRpb25fdGVtcGxh + dGVzX3N1Y2Nlc3MvIiwiam9icyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8x + ODkvam9icy8iLCJvYmplY3Rfcm9sZXMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0 + ZXMvMTg5L29iamVjdF9yb2xlcy8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVz + X2FueSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xODkvbm90aWZpY2F0aW9u + X3RlbXBsYXRlc19hbnkvIiwiYWNjZXNzX2xpc3QiOiIvYXBpL3YxL2pvYl90 + ZW1wbGF0ZXMvMTg5L2FjY2Vzc19saXN0LyIsImxhdW5jaCI6Ii9hcGkvdjEv + am9iX3RlbXBsYXRlcy8xODkvbGF1bmNoLyIsInNjaGVkdWxlcyI6Ii9hcGkv + djEvam9iX3RlbXBsYXRlcy8xODkvc2NoZWR1bGVzLyIsImFjdGl2aXR5X3N0 + cmVhbSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xODkvYWN0aXZpdHlfc3Ry + ZWFtLyIsInN1cnZleV9zcGVjIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE4 + OS9zdXJ2ZXlfc3BlYy8ifSwic3VtbWFyeV9maWVsZHMiOnsiY3JlYXRlZF9i + eSI6eyJpZCI6MSwidXNlcm5hbWUiOiJhZG1pbiIsImZpcnN0X25hbWUiOiIi + LCJsYXN0X25hbWUiOiIifSwibW9kaWZpZWRfYnkiOnsiaWQiOjEsInVzZXJu + YW1lIjoiYWRtaW4iLCJmaXJzdF9uYW1lIjoiIiwibGFzdF9uYW1lIjoiIn0s + Im9iamVjdF9yb2xlcyI6eyJhZG1pbl9yb2xlIjp7ImRlc2NyaXB0aW9uIjoi + Q2FuIG1hbmFnZSBhbGwgYXNwZWN0cyBvZiB0aGUgam9iIHRlbXBsYXRlIiwi + aWQiOjYxMiwibmFtZSI6IkFkbWluIn0sImV4ZWN1dGVfcm9sZSI6eyJkZXNj + cmlwdGlvbiI6Ik1heSBydW4gdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjo2MTQs + Im5hbWUiOiJFeGVjdXRlIn0sInJlYWRfcm9sZSI6eyJkZXNjcmlwdGlvbiI6 + Ik1heSB2aWV3IHNldHRpbmdzIGZvciB0aGUgam9iIHRlbXBsYXRlIiwiaWQi + OjYxMywibmFtZSI6IlJlYWQifX0sImxhYmVscyI6eyJjb3VudCI6MCwicmVz + dWx0cyI6W119LCJjYW5fY29weSI6ZmFsc2UsImNhbl9lZGl0Ijp0cnVlLCJy + ZWNlbnRfam9icyI6W119LCJjcmVhdGVkIjoiMjAxNy0wMi0yMlQxOTo1OToz + OS42NTNaIiwibW9kaWZpZWQiOiIyMDE3LTAzLTAxVDE3OjU5OjE5Ljk5N1oi + LCJuYW1lIjoiY2hhbmdlZF9zZXJ2aWNlX3RlbXBsYXRlXzExIiwiZGVzY3Jp + cHRpb24iOiJjaGFuZ2VkIHNlcnZpY2UgdGVtcGxhdGUgMTEiLCJqb2JfdHlw + ZSI6InJ1biIsImludmVudG9yeSI6bnVsbCwicHJvamVjdCI6bnVsbCwicGxh + eWJvb2siOiIiLCJjcmVkZW50aWFsIjpudWxsLCJjbG91ZF9jcmVkZW50aWFs + IjpudWxsLCJuZXR3b3JrX2NyZWRlbnRpYWwiOm51bGwsImZvcmtzIjowLCJs + aW1pdCI6IiIsInZlcmJvc2l0eSI6MCwiZXh0cmFfdmFycyI6IntcImtleTIy + XCI6XCJ2YWx1ZTIyXCIsXCJrZXkyM1wiOlwidmFsdWUyM1wifSIsImpvYl90 + YWdzIjoiIiwiZm9yY2VfaGFuZGxlcnMiOmZhbHNlLCJza2lwX3RhZ3MiOiIi + LCJzdGFydF9hdF90YXNrIjoiIiwibGFzdF9qb2JfcnVuIjpudWxsLCJsYXN0 + X2pvYl9mYWlsZWQiOmZhbHNlLCJoYXNfc2NoZWR1bGVzIjpmYWxzZSwibmV4 + dF9qb2JfcnVuIjpudWxsLCJzdGF0dXMiOiJuZXZlciB1cGRhdGVkIiwiaG9z + dF9jb25maWdfa2V5IjoiIiwiYXNrX3ZhcmlhYmxlc19vbl9sYXVuY2giOnRy + dWUsImFza19saW1pdF9vbl9sYXVuY2giOnRydWUsImFza190YWdzX29uX2xh + dW5jaCI6ZmFsc2UsImFza19qb2JfdHlwZV9vbl9sYXVuY2giOmZhbHNlLCJh + c2tfaW52ZW50b3J5X29uX2xhdW5jaCI6dHJ1ZSwiYXNrX2NyZWRlbnRpYWxf + b25fbGF1bmNoIjp0cnVlLCJzdXJ2ZXlfZW5hYmxlZCI6ZmFsc2UsImJlY29t + ZV9lbmFibGVkIjpmYWxzZSwiYWxsb3dfc2ltdWx0YW5lb3VzIjpmYWxzZX0s + eyJpZCI6MTkwLCJ0eXBlIjoiam9iX3RlbXBsYXRlIiwidXJsIjoiL2FwaS92 + MS9qb2JfdGVtcGxhdGVzLzE5MC8iLCJyZWxhdGVkIjp7ImNyZWF0ZWRfYnki + OiIvYXBpL3YxL3VzZXJzLzEvIiwibGFiZWxzIjoiL2FwaS92MS9qb2JfdGVt + cGxhdGVzLzE5MC9sYWJlbHMvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRlc19l + cnJvciI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xOTAvbm90aWZpY2F0aW9u + X3RlbXBsYXRlc19lcnJvci8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVzX3N1 + Y2Nlc3MiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTkwL25vdGlmaWNhdGlv + bl90ZW1wbGF0ZXNfc3VjY2Vzcy8iLCJqb2JzIjoiL2FwaS92MS9qb2JfdGVt + cGxhdGVzLzE5MC9qb2JzLyIsIm9iamVjdF9yb2xlcyI6Ii9hcGkvdjEvam9i + X3RlbXBsYXRlcy8xOTAvb2JqZWN0X3JvbGVzLyIsIm5vdGlmaWNhdGlvbl90 + ZW1wbGF0ZXNfYW55IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE5MC9ub3Rp + ZmljYXRpb25fdGVtcGxhdGVzX2FueS8iLCJhY2Nlc3NfbGlzdCI6Ii9hcGkv + djEvam9iX3RlbXBsYXRlcy8xOTAvYWNjZXNzX2xpc3QvIiwibGF1bmNoIjoi + L2FwaS92MS9qb2JfdGVtcGxhdGVzLzE5MC9sYXVuY2gvIiwic2NoZWR1bGVz + IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE5MC9zY2hlZHVsZXMvIiwiYWN0 + aXZpdHlfc3RyZWFtIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE5MC9hY3Rp + dml0eV9zdHJlYW0vIiwic3VydmV5X3NwZWMiOiIvYXBpL3YxL2pvYl90ZW1w + bGF0ZXMvMTkwL3N1cnZleV9zcGVjLyJ9LCJzdW1tYXJ5X2ZpZWxkcyI6eyJj + cmVhdGVkX2J5Ijp7ImlkIjoxLCJ1c2VybmFtZSI6ImFkbWluIiwiZmlyc3Rf + bmFtZSI6IiIsImxhc3RfbmFtZSI6IiJ9LCJvYmplY3Rfcm9sZXMiOnsiYWRt + aW5fcm9sZSI6eyJkZXNjcmlwdGlvbiI6IkNhbiBtYW5hZ2UgYWxsIGFzcGVj + dHMgb2YgdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjo2MTgsIm5hbWUiOiJBZG1p + biJ9LCJleGVjdXRlX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJNYXkgcnVuIHRo + ZSBqb2IgdGVtcGxhdGUiLCJpZCI6NjIwLCJuYW1lIjoiRXhlY3V0ZSJ9LCJy + ZWFkX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJNYXkgdmlldyBzZXR0aW5ncyBm + b3IgdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjo2MTksIm5hbWUiOiJSZWFkIn19 + LCJsYWJlbHMiOnsiY291bnQiOjAsInJlc3VsdHMiOltdfSwiY2FuX2NvcHki + OmZhbHNlLCJjYW5fZWRpdCI6dHJ1ZSwicmVjZW50X2pvYnMiOltdfSwiY3Jl + YXRlZCI6IjIwMTctMDItMjJUMjI6MzE6NDMuNzQyWiIsIm1vZGlmaWVkIjoi + MjAxNy0wMy0xNlQxNjoyNDoxOC41NzBaIiwibmFtZSI6ImNoZWNrX3ZlcnNp + b24iLCJkZXNjcmlwdGlvbiI6IiIsImpvYl90eXBlIjoicnVuIiwiaW52ZW50 + b3J5IjpudWxsLCJwcm9qZWN0IjpudWxsLCJwbGF5Ym9vayI6IiIsImNyZWRl + bnRpYWwiOm51bGwsImNsb3VkX2NyZWRlbnRpYWwiOm51bGwsIm5ldHdvcmtf + Y3JlZGVudGlhbCI6bnVsbCwiZm9ya3MiOjAsImxpbWl0IjoiIiwidmVyYm9z + aXR5IjowLCJleHRyYV92YXJzIjoiLS0tXG5udW1iZXI6IOKAnDDigJ0iLCJq + b2JfdGFncyI6IiIsImZvcmNlX2hhbmRsZXJzIjpmYWxzZSwic2tpcF90YWdz + IjoiIiwic3RhcnRfYXRfdGFzayI6IiIsImxhc3Rfam9iX3J1biI6IjIwMTct + MDMtMTZUMTY6MjQ6NDMuODI1Njg4WiIsImxhc3Rfam9iX2ZhaWxlZCI6ZmFs + c2UsImhhc19zY2hlZHVsZXMiOmZhbHNlLCJuZXh0X2pvYl9ydW4iOm51bGws + InN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJob3N0X2NvbmZpZ19rZXkiOiIiLCJh + c2tfdmFyaWFibGVzX29uX2xhdW5jaCI6ZmFsc2UsImFza19saW1pdF9vbl9s + YXVuY2giOmZhbHNlLCJhc2tfdGFnc19vbl9sYXVuY2giOmZhbHNlLCJhc2tf + am9iX3R5cGVfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2ludmVudG9yeV9vbl9s + YXVuY2giOmZhbHNlLCJhc2tfY3JlZGVudGlhbF9vbl9sYXVuY2giOmZhbHNl + LCJzdXJ2ZXlfZW5hYmxlZCI6ZmFsc2UsImJlY29tZV9lbmFibGVkIjpmYWxz + ZSwiYWxsb3dfc2ltdWx0YW5lb3VzIjpmYWxzZX0seyJpZCI6MzgsInR5cGUi + OiJqb2JfdGVtcGxhdGUiLCJ1cmwiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMv + MzgvIiwicmVsYXRlZCI6eyJjcmVhdGVkX2J5IjoiL2FwaS92MS91c2Vycy8x + LyIsIm1vZGlmaWVkX2J5IjoiL2FwaS92MS91c2Vycy8xLyIsImxhYmVscyI6 + Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8zOC9sYWJlbHMvIiwicHJvamVjdCI6 + Ii9hcGkvdjEvcHJvamVjdHMvMzYvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRl + c19lcnJvciI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8zOC9ub3RpZmljYXRp + b25fdGVtcGxhdGVzX2Vycm9yLyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNf + c3VjY2VzcyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8zOC9ub3RpZmljYXRp + b25fdGVtcGxhdGVzX3N1Y2Nlc3MvIiwiam9icyI6Ii9hcGkvdjEvam9iX3Rl + bXBsYXRlcy8zOC9qb2JzLyIsIm9iamVjdF9yb2xlcyI6Ii9hcGkvdjEvam9i + X3RlbXBsYXRlcy8zOC9vYmplY3Rfcm9sZXMvIiwibm90aWZpY2F0aW9uX3Rl + bXBsYXRlc19hbnkiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzgvbm90aWZp + Y2F0aW9uX3RlbXBsYXRlc19hbnkvIiwiYWNjZXNzX2xpc3QiOiIvYXBpL3Yx + L2pvYl90ZW1wbGF0ZXMvMzgvYWNjZXNzX2xpc3QvIiwibGF1bmNoIjoiL2Fw + aS92MS9qb2JfdGVtcGxhdGVzLzM4L2xhdW5jaC8iLCJzY2hlZHVsZXMiOiIv + YXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzgvc2NoZWR1bGVzLyIsImFjdGl2aXR5 + X3N0cmVhbSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8zOC9hY3Rpdml0eV9z + dHJlYW0vIiwic3VydmV5X3NwZWMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMv + Mzgvc3VydmV5X3NwZWMvIn0sInN1bW1hcnlfZmllbGRzIjp7InByb2plY3Qi + OnsiaWQiOjM2LCJuYW1lIjoiandvbmctb3JnMiIsImRlc2NyaXB0aW9uIjoi + TUlRIFVJIHVwZGF0ZSIsInN0YXR1cyI6InN1Y2Nlc3NmdWwifSwiY3JlYXRl + ZF9ieSI6eyJpZCI6MSwidXNlcm5hbWUiOiJhZG1pbiIsImZpcnN0X25hbWUi + OiIiLCJsYXN0X25hbWUiOiIifSwibW9kaWZpZWRfYnkiOnsiaWQiOjEsInVz + ZXJuYW1lIjoiYWRtaW4iLCJmaXJzdF9uYW1lIjoiIiwibGFzdF9uYW1lIjoi + In0sIm9iamVjdF9yb2xlcyI6eyJhZG1pbl9yb2xlIjp7ImRlc2NyaXB0aW9u + IjoiQ2FuIG1hbmFnZSBhbGwgYXNwZWN0cyBvZiB0aGUgam9iIHRlbXBsYXRl + IiwiaWQiOjg5LCJuYW1lIjoiQWRtaW4ifSwiZXhlY3V0ZV9yb2xlIjp7ImRl + c2NyaXB0aW9uIjoiTWF5IHJ1biB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjkx + LCJuYW1lIjoiRXhlY3V0ZSJ9LCJyZWFkX3JvbGUiOnsiZGVzY3JpcHRpb24i + OiJNYXkgdmlldyBzZXR0aW5ncyBmb3IgdGhlIGpvYiB0ZW1wbGF0ZSIsImlk + Ijo5MCwibmFtZSI6IlJlYWQifX0sImxhYmVscyI6eyJjb3VudCI6MCwicmVz + dWx0cyI6W119LCJjYW5fY29weSI6ZmFsc2UsImNhbl9lZGl0Ijp0cnVlLCJy + ZWNlbnRfam9icyI6W119LCJjcmVhdGVkIjoiMjAxNy0wMS0xNlQxNTo1Mzow + My4yNTRaIiwibW9kaWZpZWQiOiIyMDE3LTAxLTE2VDE1OjUzOjAzLjI1NFoi + LCJuYW1lIjoiRGVtbyBqb2IgdGVtcGxhdGUiLCJkZXNjcmlwdGlvbiI6InRl + c3QiLCJqb2JfdHlwZSI6InJ1biIsImludmVudG9yeSI6bnVsbCwicHJvamVj + dCI6MzYsInBsYXlib29rIjoicHJvZHVjdC9jaGFydHMvbWlxX3JlcG9ydHMv + dmltX3BlcmZfZGFpbHkueWFtbCIsImNyZWRlbnRpYWwiOm51bGwsImNsb3Vk + X2NyZWRlbnRpYWwiOm51bGwsIm5ldHdvcmtfY3JlZGVudGlhbCI6bnVsbCwi + Zm9ya3MiOjAsImxpbWl0IjoiIiwidmVyYm9zaXR5IjowLCJleHRyYV92YXJz + IjoiIiwiam9iX3RhZ3MiOiIiLCJmb3JjZV9oYW5kbGVycyI6ZmFsc2UsInNr + aXBfdGFncyI6IiIsInN0YXJ0X2F0X3Rhc2siOiIiLCJsYXN0X2pvYl9ydW4i + Om51bGwsImxhc3Rfam9iX2ZhaWxlZCI6ZmFsc2UsImhhc19zY2hlZHVsZXMi + OmZhbHNlLCJuZXh0X2pvYl9ydW4iOm51bGwsInN0YXR1cyI6Im5ldmVyIHVw + ZGF0ZWQiLCJob3N0X2NvbmZpZ19rZXkiOiIiLCJhc2tfdmFyaWFibGVzX29u + X2xhdW5jaCI6ZmFsc2UsImFza19saW1pdF9vbl9sYXVuY2giOmZhbHNlLCJh + c2tfdGFnc19vbl9sYXVuY2giOmZhbHNlLCJhc2tfam9iX3R5cGVfb25fbGF1 + bmNoIjpmYWxzZSwiYXNrX2ludmVudG9yeV9vbl9sYXVuY2giOmZhbHNlLCJh + c2tfY3JlZGVudGlhbF9vbl9sYXVuY2giOmZhbHNlLCJzdXJ2ZXlfZW5hYmxl + ZCI6ZmFsc2UsImJlY29tZV9lbmFibGVkIjp0cnVlLCJhbGxvd19zaW11bHRh + bmVvdXMiOmZhbHNlfSx7ImlkIjoxODgsInR5cGUiOiJqb2JfdGVtcGxhdGUi + LCJ1cmwiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTg4LyIsInJlbGF0ZWQi + OnsiY3JlYXRlZF9ieSI6Ii9hcGkvdjEvdXNlcnMvMS8iLCJsYWJlbHMiOiIv + YXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTg4L2xhYmVscy8iLCJub3RpZmljYXRp + b25fdGVtcGxhdGVzX2Vycm9yIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE4 + OC9ub3RpZmljYXRpb25fdGVtcGxhdGVzX2Vycm9yLyIsIm5vdGlmaWNhdGlv + bl90ZW1wbGF0ZXNfc3VjY2VzcyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8x + ODgvbm90aWZpY2F0aW9uX3RlbXBsYXRlc19zdWNjZXNzLyIsImpvYnMiOiIv + YXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTg4L2pvYnMvIiwib2JqZWN0X3JvbGVz + IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE4OC9vYmplY3Rfcm9sZXMvIiwi + bm90aWZpY2F0aW9uX3RlbXBsYXRlc19hbnkiOiIvYXBpL3YxL2pvYl90ZW1w + bGF0ZXMvMTg4L25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfYW55LyIsImFjY2Vz + c19saXN0IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE4OC9hY2Nlc3NfbGlz + dC8iLCJsYXVuY2giOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTg4L2xhdW5j + aC8iLCJzY2hlZHVsZXMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTg4L3Nj + aGVkdWxlcy8iLCJhY3Rpdml0eV9zdHJlYW0iOiIvYXBpL3YxL2pvYl90ZW1w + bGF0ZXMvMTg4L2FjdGl2aXR5X3N0cmVhbS8iLCJzdXJ2ZXlfc3BlYyI6Ii9h + cGkvdjEvam9iX3RlbXBsYXRlcy8xODgvc3VydmV5X3NwZWMvIn0sInN1bW1h + cnlfZmllbGRzIjp7ImNyZWF0ZWRfYnkiOnsiaWQiOjEsInVzZXJuYW1lIjoi + YWRtaW4iLCJmaXJzdF9uYW1lIjoiIiwibGFzdF9uYW1lIjoiIn0sIm9iamVj + dF9yb2xlcyI6eyJhZG1pbl9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiQ2FuIG1h + bmFnZSBhbGwgYXNwZWN0cyBvZiB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjYw + OSwibmFtZSI6IkFkbWluIn0sImV4ZWN1dGVfcm9sZSI6eyJkZXNjcmlwdGlv + biI6Ik1heSBydW4gdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjo2MTEsIm5hbWUi + OiJFeGVjdXRlIn0sInJlYWRfcm9sZSI6eyJkZXNjcmlwdGlvbiI6Ik1heSB2 + aWV3IHNldHRpbmdzIGZvciB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjYxMCwi + bmFtZSI6IlJlYWQifX0sImxhYmVscyI6eyJjb3VudCI6MCwicmVzdWx0cyI6 + W119LCJjYW5fY29weSI6ZmFsc2UsImNhbl9lZGl0Ijp0cnVlLCJyZWNlbnRf + am9icyI6W119LCJjcmVhdGVkIjoiMjAxNy0wMi0yMlQxOTo1Njo0Ni40MzBa + IiwibW9kaWZpZWQiOiIyMDE3LTAyLTIyVDIwOjI2OjEwLjY2MloiLCJuYW1l + IjoiZWNob19pbnB1dHMiLCJkZXNjcmlwdGlvbiI6IiIsImpvYl90eXBlIjoi + cnVuIiwiaW52ZW50b3J5IjpudWxsLCJwcm9qZWN0IjpudWxsLCJwbGF5Ym9v + ayI6IiIsImNyZWRlbnRpYWwiOm51bGwsImNsb3VkX2NyZWRlbnRpYWwiOm51 + bGwsIm5ldHdvcmtfY3JlZGVudGlhbCI6bnVsbCwiZm9ya3MiOjAsImxpbWl0 + IjoiIiwidmVyYm9zaXR5IjowLCJleHRyYV92YXJzIjoiLS0tXG5teV92YXI6 + IDM0Iiwiam9iX3RhZ3MiOiIiLCJmb3JjZV9oYW5kbGVycyI6ZmFsc2UsInNr + aXBfdGFncyI6IiIsInN0YXJ0X2F0X3Rhc2siOiIiLCJsYXN0X2pvYl9ydW4i + OiIyMDE3LTAyLTIyVDIwOjI2OjM5LjA5NjM4OFoiLCJsYXN0X2pvYl9mYWls + ZWQiOmZhbHNlLCJoYXNfc2NoZWR1bGVzIjpmYWxzZSwibmV4dF9qb2JfcnVu + IjpudWxsLCJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiaG9zdF9jb25maWdfa2V5 + IjoiIiwiYXNrX3ZhcmlhYmxlc19vbl9sYXVuY2giOmZhbHNlLCJhc2tfbGlt + aXRfb25fbGF1bmNoIjpmYWxzZSwiYXNrX3RhZ3Nfb25fbGF1bmNoIjpmYWxz + ZSwiYXNrX2pvYl90eXBlX29uX2xhdW5jaCI6ZmFsc2UsImFza19pbnZlbnRv + cnlfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2NyZWRlbnRpYWxfb25fbGF1bmNo + IjpmYWxzZSwic3VydmV5X2VuYWJsZWQiOmZhbHNlLCJiZWNvbWVfZW5hYmxl + ZCI6ZmFsc2UsImFsbG93X3NpbXVsdGFuZW91cyI6ZmFsc2V9LHsiaWQiOjYw + NCwidHlwZSI6ImpvYl90ZW1wbGF0ZSIsInVybCI6Ii9hcGkvdjEvam9iX3Rl + bXBsYXRlcy82MDQvIiwicmVsYXRlZCI6eyJjcmVhdGVkX2J5IjoiL2FwaS92 + MS91c2Vycy8xLyIsIm1vZGlmaWVkX2J5IjoiL2FwaS92MS91c2Vycy8xLyIs + ImxhYmVscyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy82MDQvbGFiZWxzLyIs + ImludmVudG9yeSI6Ii9hcGkvdjEvaW52ZW50b3JpZXMvMTE1LyIsInByb2pl + Y3QiOiIvYXBpL3YxL3Byb2plY3RzLzYwMy8iLCJjcmVkZW50aWFsIjoiL2Fw + aS92MS9jcmVkZW50aWFscy8xNzcvIiwiY2xvdWRfY3JlZGVudGlhbCI6Ii9h + cGkvdjEvY3JlZGVudGlhbHMvMTc5LyIsIm5ldHdvcmtfY3JlZGVudGlhbCI6 + Ii9hcGkvdjEvY3JlZGVudGlhbHMvMTc4LyIsIm5vdGlmaWNhdGlvbl90ZW1w + bGF0ZXNfZXJyb3IiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvNjA0L25vdGlm + aWNhdGlvbl90ZW1wbGF0ZXNfZXJyb3IvIiwibm90aWZpY2F0aW9uX3RlbXBs + YXRlc19zdWNjZXNzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzYwNC9ub3Rp + ZmljYXRpb25fdGVtcGxhdGVzX3N1Y2Nlc3MvIiwiam9icyI6Ii9hcGkvdjEv + am9iX3RlbXBsYXRlcy82MDQvam9icy8iLCJvYmplY3Rfcm9sZXMiOiIvYXBp + L3YxL2pvYl90ZW1wbGF0ZXMvNjA0L29iamVjdF9yb2xlcy8iLCJub3RpZmlj + YXRpb25fdGVtcGxhdGVzX2FueSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy82 + MDQvbm90aWZpY2F0aW9uX3RlbXBsYXRlc19hbnkvIiwiYWNjZXNzX2xpc3Qi + OiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvNjA0L2FjY2Vzc19saXN0LyIsImxh + dW5jaCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy82MDQvbGF1bmNoLyIsInNj + aGVkdWxlcyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy82MDQvc2NoZWR1bGVz + LyIsImFjdGl2aXR5X3N0cmVhbSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy82 + MDQvYWN0aXZpdHlfc3RyZWFtLyIsInN1cnZleV9zcGVjIjoiL2FwaS92MS9q + b2JfdGVtcGxhdGVzLzYwNC9zdXJ2ZXlfc3BlYy8ifSwic3VtbWFyeV9maWVs + ZHMiOnsibmV0d29ya19jcmVkZW50aWFsIjp7ImlkIjoxNzgsIm5hbWUiOiJo + ZWxsb19uZXR3b3JrX2NyZWQiLCJkZXNjcmlwdGlvbiI6IiIsImtpbmQiOiJu + ZXQifSwiaW52ZW50b3J5Ijp7ImlkIjoxMTUsIm5hbWUiOiJoZWxsb19pbnZl + bnRvcnkiLCJkZXNjcmlwdGlvbiI6ImludmVudG9yeSBmb3IgbWlxIHNwZWMg + dGVzdHMiLCJoYXNfYWN0aXZlX2ZhaWx1cmVzIjpmYWxzZSwidG90YWxfaG9z + dHMiOjEsImhvc3RzX3dpdGhfYWN0aXZlX2ZhaWx1cmVzIjowLCJ0b3RhbF9n + cm91cHMiOjAsImdyb3Vwc193aXRoX2FjdGl2ZV9mYWlsdXJlcyI6MCwiaGFz + X2ludmVudG9yeV9zb3VyY2VzIjpmYWxzZSwidG90YWxfaW52ZW50b3J5X3Nv + dXJjZXMiOjAsImludmVudG9yeV9zb3VyY2VzX3dpdGhfZmFpbHVyZXMiOjB9 + LCJjbG91ZF9jcmVkZW50aWFsIjp7ImlkIjoxNzksIm5hbWUiOiJoZWxsb19h + d3NfY3JlZCIsImRlc2NyaXB0aW9uIjoiIiwia2luZCI6ImF3cyIsImNsb3Vk + Ijp0cnVlfSwiY3JlZGVudGlhbCI6eyJpZCI6MTc3LCJuYW1lIjoiaGVsbG9f + bWFjaGluZV9jcmVkIiwiZGVzY3JpcHRpb24iOiIiLCJraW5kIjoic3NoIiwi + Y2xvdWQiOmZhbHNlfSwicHJvamVjdCI6eyJpZCI6NjAzLCJuYW1lIjoiaGVs + bG9fcmVwbyIsImRlc2NyaXB0aW9uIjoiIiwic3RhdHVzIjoic3VjY2Vzc2Z1 + bCJ9LCJjcmVhdGVkX2J5Ijp7ImlkIjoxLCJ1c2VybmFtZSI6ImFkbWluIiwi + Zmlyc3RfbmFtZSI6IiIsImxhc3RfbmFtZSI6IiJ9LCJtb2RpZmllZF9ieSI6 + eyJpZCI6MSwidXNlcm5hbWUiOiJhZG1pbiIsImZpcnN0X25hbWUiOiIiLCJs + YXN0X25hbWUiOiIifSwib2JqZWN0X3JvbGVzIjp7ImFkbWluX3JvbGUiOnsi + ZGVzY3JpcHRpb24iOiJDYW4gbWFuYWdlIGFsbCBhc3BlY3RzIG9mIHRoZSBq + b2IgdGVtcGxhdGUiLCJpZCI6MzA1MSwibmFtZSI6IkFkbWluIn0sImV4ZWN1 + dGVfcm9sZSI6eyJkZXNjcmlwdGlvbiI6Ik1heSBydW4gdGhlIGpvYiB0ZW1w + bGF0ZSIsImlkIjozMDUzLCJuYW1lIjoiRXhlY3V0ZSJ9LCJyZWFkX3JvbGUi + OnsiZGVzY3JpcHRpb24iOiJNYXkgdmlldyBzZXR0aW5ncyBmb3IgdGhlIGpv + YiB0ZW1wbGF0ZSIsImlkIjozMDUyLCJuYW1lIjoiUmVhZCJ9fSwibGFiZWxz + Ijp7ImNvdW50IjowLCJyZXN1bHRzIjpbXX0sImNhbl9jb3B5Ijp0cnVlLCJj + YW5fZWRpdCI6dHJ1ZSwicmVjZW50X2pvYnMiOltdfSwiY3JlYXRlZCI6IjIw + MTctMDctMTRUMTg6NDY6NTAuNDc0WiIsIm1vZGlmaWVkIjoiMjAxNy0wNy0x + NFQxODo0Njo1MC40NzRaIiwibmFtZSI6ImhlbGxvX3RlbXBsYXRlIiwiZGVz + Y3JpcHRpb24iOiJ0ZXN0IGpvYiIsImpvYl90eXBlIjoicnVuIiwiaW52ZW50 + b3J5IjoxMTUsInByb2plY3QiOjYwMywicGxheWJvb2siOiJoZWxsb193b3Js + ZC55bWwiLCJjcmVkZW50aWFsIjoxNzcsImNsb3VkX2NyZWRlbnRpYWwiOjE3 + OSwibmV0d29ya19jcmVkZW50aWFsIjoxNzgsImZvcmtzIjowLCJsaW1pdCI6 + IiIsInZlcmJvc2l0eSI6MCwiZXh0cmFfdmFycyI6IiIsImpvYl90YWdzIjoi + IiwiZm9yY2VfaGFuZGxlcnMiOmZhbHNlLCJza2lwX3RhZ3MiOiIiLCJzdGFy + dF9hdF90YXNrIjoiIiwibGFzdF9qb2JfcnVuIjpudWxsLCJsYXN0X2pvYl9m + YWlsZWQiOmZhbHNlLCJoYXNfc2NoZWR1bGVzIjpmYWxzZSwibmV4dF9qb2Jf + cnVuIjpudWxsLCJzdGF0dXMiOiJuZXZlciB1cGRhdGVkIiwiaG9zdF9jb25m + aWdfa2V5IjoiIiwiYXNrX3ZhcmlhYmxlc19vbl9sYXVuY2giOmZhbHNlLCJh + c2tfbGltaXRfb25fbGF1bmNoIjpmYWxzZSwiYXNrX3RhZ3Nfb25fbGF1bmNo + IjpmYWxzZSwiYXNrX2pvYl90eXBlX29uX2xhdW5jaCI6ZmFsc2UsImFza19p + bnZlbnRvcnlfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2NyZWRlbnRpYWxfb25f + bGF1bmNoIjpmYWxzZSwic3VydmV5X2VuYWJsZWQiOmZhbHNlLCJiZWNvbWVf + ZW5hYmxlZCI6ZmFsc2UsImFsbG93X3NpbXVsdGFuZW91cyI6ZmFsc2V9LHsi + aWQiOjYwNSwidHlwZSI6ImpvYl90ZW1wbGF0ZSIsInVybCI6Ii9hcGkvdjEv + am9iX3RlbXBsYXRlcy82MDUvIiwicmVsYXRlZCI6eyJjcmVhdGVkX2J5Ijoi + L2FwaS92MS91c2Vycy8xLyIsIm1vZGlmaWVkX2J5IjoiL2FwaS92MS91c2Vy + cy8xLyIsImxhYmVscyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy82MDUvbGFi + ZWxzLyIsImludmVudG9yeSI6Ii9hcGkvdjEvaW52ZW50b3JpZXMvMTE1LyIs + InByb2plY3QiOiIvYXBpL3YxL3Byb2plY3RzLzYwMy8iLCJjcmVkZW50aWFs + IjoiL2FwaS92MS9jcmVkZW50aWFscy8xNzcvIiwibm90aWZpY2F0aW9uX3Rl + bXBsYXRlc19lcnJvciI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy82MDUvbm90 + aWZpY2F0aW9uX3RlbXBsYXRlc19lcnJvci8iLCJub3RpZmljYXRpb25fdGVt + cGxhdGVzX3N1Y2Nlc3MiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvNjA1L25v + dGlmaWNhdGlvbl90ZW1wbGF0ZXNfc3VjY2Vzcy8iLCJqb2JzIjoiL2FwaS92 + MS9qb2JfdGVtcGxhdGVzLzYwNS9qb2JzLyIsIm9iamVjdF9yb2xlcyI6Ii9h + cGkvdjEvam9iX3RlbXBsYXRlcy82MDUvb2JqZWN0X3JvbGVzLyIsIm5vdGlm + aWNhdGlvbl90ZW1wbGF0ZXNfYW55IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVz + LzYwNS9ub3RpZmljYXRpb25fdGVtcGxhdGVzX2FueS8iLCJhY2Nlc3NfbGlz + dCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy82MDUvYWNjZXNzX2xpc3QvIiwi + bGF1bmNoIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzYwNS9sYXVuY2gvIiwi + c2NoZWR1bGVzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzYwNS9zY2hlZHVs + ZXMvIiwiYWN0aXZpdHlfc3RyZWFtIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVz + LzYwNS9hY3Rpdml0eV9zdHJlYW0vIiwic3VydmV5X3NwZWMiOiIvYXBpL3Yx + L2pvYl90ZW1wbGF0ZXMvNjA1L3N1cnZleV9zcGVjLyJ9LCJzdW1tYXJ5X2Zp + ZWxkcyI6eyJpbnZlbnRvcnkiOnsiaWQiOjExNSwibmFtZSI6ImhlbGxvX2lu + dmVudG9yeSIsImRlc2NyaXB0aW9uIjoiaW52ZW50b3J5IGZvciBtaXEgc3Bl + YyB0ZXN0cyIsImhhc19hY3RpdmVfZmFpbHVyZXMiOmZhbHNlLCJ0b3RhbF9o + b3N0cyI6MSwiaG9zdHNfd2l0aF9hY3RpdmVfZmFpbHVyZXMiOjAsInRvdGFs + X2dyb3VwcyI6MCwiZ3JvdXBzX3dpdGhfYWN0aXZlX2ZhaWx1cmVzIjowLCJo + YXNfaW52ZW50b3J5X3NvdXJjZXMiOmZhbHNlLCJ0b3RhbF9pbnZlbnRvcnlf + c291cmNlcyI6MCwiaW52ZW50b3J5X3NvdXJjZXNfd2l0aF9mYWlsdXJlcyI6 + MH0sImNyZWRlbnRpYWwiOnsiaWQiOjE3NywibmFtZSI6ImhlbGxvX21hY2hp + bmVfY3JlZCIsImRlc2NyaXB0aW9uIjoiIiwia2luZCI6InNzaCIsImNsb3Vk + IjpmYWxzZX0sInByb2plY3QiOnsiaWQiOjYwMywibmFtZSI6ImhlbGxvX3Jl + cG8iLCJkZXNjcmlwdGlvbiI6IiIsInN0YXR1cyI6InN1Y2Nlc3NmdWwifSwi + Y3JlYXRlZF9ieSI6eyJpZCI6MSwidXNlcm5hbWUiOiJhZG1pbiIsImZpcnN0 + X25hbWUiOiIiLCJsYXN0X25hbWUiOiIifSwibW9kaWZpZWRfYnkiOnsiaWQi + OjEsInVzZXJuYW1lIjoiYWRtaW4iLCJmaXJzdF9uYW1lIjoiIiwibGFzdF9u + YW1lIjoiIn0sIm9iamVjdF9yb2xlcyI6eyJhZG1pbl9yb2xlIjp7ImRlc2Ny + aXB0aW9uIjoiQ2FuIG1hbmFnZSBhbGwgYXNwZWN0cyBvZiB0aGUgam9iIHRl + bXBsYXRlIiwiaWQiOjMwNTQsIm5hbWUiOiJBZG1pbiJ9LCJleGVjdXRlX3Jv + bGUiOnsiZGVzY3JpcHRpb24iOiJNYXkgcnVuIHRoZSBqb2IgdGVtcGxhdGUi + LCJpZCI6MzA1NiwibmFtZSI6IkV4ZWN1dGUifSwicmVhZF9yb2xlIjp7ImRl + c2NyaXB0aW9uIjoiTWF5IHZpZXcgc2V0dGluZ3MgZm9yIHRoZSBqb2IgdGVt + cGxhdGUiLCJpZCI6MzA1NSwibmFtZSI6IlJlYWQifX0sImxhYmVscyI6eyJj + b3VudCI6MCwicmVzdWx0cyI6W119LCJzdXJ2ZXkiOnsiZGVzY3JpcHRpb24i + OiJEZXNjcmlwdGlvbiBvZiB0aGUgc2ltcGxlIHN1cnZleSIsInRpdGxlIjoi + U2ltcGxlIFN1cnZleSJ9LCJjYW5fY29weSI6dHJ1ZSwiY2FuX2VkaXQiOnRy + dWUsInJlY2VudF9qb2JzIjpbXX0sImNyZWF0ZWQiOiIyMDE3LTA3LTE0VDE4 + OjQ3OjE1LjYxNVoiLCJtb2RpZmllZCI6IjIwMTctMDctMTRUMTg6NDc6MTUu + OTk2WiIsIm5hbWUiOiJoZWxsb190ZW1wbGF0ZV93aXRoX3N1cnZleSIsImRl + c2NyaXB0aW9uIjoidGVzdCBqb2Igd2l0aCBzdXJ2ZXkgc3BlYyIsImpvYl90 + eXBlIjoicnVuIiwiaW52ZW50b3J5IjoxMTUsInByb2plY3QiOjYwMywicGxh + eWJvb2siOiJoZWxsb193b3JsZC55bWwiLCJjcmVkZW50aWFsIjoxNzcsImNs + b3VkX2NyZWRlbnRpYWwiOm51bGwsIm5ldHdvcmtfY3JlZGVudGlhbCI6bnVs + bCwiZm9ya3MiOjAsImxpbWl0IjoiIiwidmVyYm9zaXR5IjowLCJleHRyYV92 + YXJzIjoiIiwiam9iX3RhZ3MiOiIiLCJmb3JjZV9oYW5kbGVycyI6ZmFsc2Us + InNraXBfdGFncyI6IiIsInN0YXJ0X2F0X3Rhc2siOiIiLCJsYXN0X2pvYl9y + dW4iOm51bGwsImxhc3Rfam9iX2ZhaWxlZCI6ZmFsc2UsImhhc19zY2hlZHVs + ZXMiOmZhbHNlLCJuZXh0X2pvYl9ydW4iOm51bGwsInN0YXR1cyI6Im5ldmVy + IHVwZGF0ZWQiLCJob3N0X2NvbmZpZ19rZXkiOiIiLCJhc2tfdmFyaWFibGVz + X29uX2xhdW5jaCI6ZmFsc2UsImFza19saW1pdF9vbl9sYXVuY2giOmZhbHNl + LCJhc2tfdGFnc19vbl9sYXVuY2giOmZhbHNlLCJhc2tfam9iX3R5cGVfb25f + bGF1bmNoIjpmYWxzZSwiYXNrX2ludmVudG9yeV9vbl9sYXVuY2giOmZhbHNl + LCJhc2tfY3JlZGVudGlhbF9vbl9sYXVuY2giOmZhbHNlLCJzdXJ2ZXlfZW5h + YmxlZCI6dHJ1ZSwiYmVjb21lX2VuYWJsZWQiOmZhbHNlLCJhbGxvd19zaW11 + bHRhbmVvdXMiOmZhbHNlfSx7ImlkIjoyOCwidHlwZSI6ImpvYl90ZW1wbGF0 + ZSIsInVybCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8yOC8iLCJyZWxhdGVk + Ijp7ImNyZWF0ZWRfYnkiOiIvYXBpL3YxL3VzZXJzLzEvIiwibGFiZWxzIjoi + L2FwaS92MS9qb2JfdGVtcGxhdGVzLzI4L2xhYmVscy8iLCJub3RpZmljYXRp + b25fdGVtcGxhdGVzX2Vycm9yIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzI4 + L25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfZXJyb3IvIiwibm90aWZpY2F0aW9u + X3RlbXBsYXRlc19zdWNjZXNzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzI4 + L25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfc3VjY2Vzcy8iLCJqb2JzIjoiL2Fw + aS92MS9qb2JfdGVtcGxhdGVzLzI4L2pvYnMvIiwib2JqZWN0X3JvbGVzIjoi + L2FwaS92MS9qb2JfdGVtcGxhdGVzLzI4L29iamVjdF9yb2xlcy8iLCJub3Rp + ZmljYXRpb25fdGVtcGxhdGVzX2FueSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRl + cy8yOC9ub3RpZmljYXRpb25fdGVtcGxhdGVzX2FueS8iLCJhY2Nlc3NfbGlz + dCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8yOC9hY2Nlc3NfbGlzdC8iLCJs + YXVuY2giOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMjgvbGF1bmNoLyIsInNj + aGVkdWxlcyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8yOC9zY2hlZHVsZXMv + IiwiYWN0aXZpdHlfc3RyZWFtIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzI4 + L2FjdGl2aXR5X3N0cmVhbS8iLCJzdXJ2ZXlfc3BlYyI6Ii9hcGkvdjEvam9i + X3RlbXBsYXRlcy8yOC9zdXJ2ZXlfc3BlYy8ifSwic3VtbWFyeV9maWVsZHMi + OnsiY3JlYXRlZF9ieSI6eyJpZCI6MSwidXNlcm5hbWUiOiJhZG1pbiIsImZp + cnN0X25hbWUiOiIiLCJsYXN0X25hbWUiOiIifSwib2JqZWN0X3JvbGVzIjp7 + ImFkbWluX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJDYW4gbWFuYWdlIGFsbCBh + c3BlY3RzIG9mIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6MzEsIm5hbWUiOiJB + ZG1pbiJ9LCJleGVjdXRlX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJNYXkgcnVu + IHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6MzMsIm5hbWUiOiJFeGVjdXRlIn0s + InJlYWRfcm9sZSI6eyJkZXNjcmlwdGlvbiI6Ik1heSB2aWV3IHNldHRpbmdz + IGZvciB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjMyLCJuYW1lIjoiUmVhZCJ9 + fSwibGFiZWxzIjp7ImNvdW50IjowLCJyZXN1bHRzIjpbXX0sImNhbl9jb3B5 + IjpmYWxzZSwiY2FuX2VkaXQiOnRydWUsInJlY2VudF9qb2JzIjpbXX0sImNy + ZWF0ZWQiOiIyMDE2LTA5LTEzVDIwOjQyOjIxLjY3MFoiLCJtb2RpZmllZCI6 + IjIwMTYtMTEtMjlUMjE6NDA6MjIuODc2WiIsIm5hbWUiOiJMRyBEZW1vIEpv + YiBUZW1wbGF0ZSIsImRlc2NyaXB0aW9uIjoiIiwiam9iX3R5cGUiOiJjaGVj + ayIsImludmVudG9yeSI6bnVsbCwicHJvamVjdCI6bnVsbCwicGxheWJvb2si + OiIiLCJjcmVkZW50aWFsIjpudWxsLCJjbG91ZF9jcmVkZW50aWFsIjpudWxs + LCJuZXR3b3JrX2NyZWRlbnRpYWwiOm51bGwsImZvcmtzIjowLCJsaW1pdCI6 + IiIsInZlcmJvc2l0eSI6MCwiZXh0cmFfdmFycyI6IiIsImpvYl90YWdzIjoi + IiwiZm9yY2VfaGFuZGxlcnMiOmZhbHNlLCJza2lwX3RhZ3MiOiIiLCJzdGFy + dF9hdF90YXNrIjoiIiwibGFzdF9qb2JfcnVuIjoiMjAxNi0xMS0yOVQyMTo0 + MDo1OC4zOTIwNTFaIiwibGFzdF9qb2JfZmFpbGVkIjp0cnVlLCJoYXNfc2No + ZWR1bGVzIjpmYWxzZSwibmV4dF9qb2JfcnVuIjpudWxsLCJzdGF0dXMiOiJm + YWlsZWQiLCJob3N0X2NvbmZpZ19rZXkiOiIiLCJhc2tfdmFyaWFibGVzX29u + X2xhdW5jaCI6ZmFsc2UsImFza19saW1pdF9vbl9sYXVuY2giOmZhbHNlLCJh + c2tfdGFnc19vbl9sYXVuY2giOmZhbHNlLCJhc2tfam9iX3R5cGVfb25fbGF1 + bmNoIjpmYWxzZSwiYXNrX2ludmVudG9yeV9vbl9sYXVuY2giOnRydWUsImFz + a19jcmVkZW50aWFsX29uX2xhdW5jaCI6ZmFsc2UsInN1cnZleV9lbmFibGVk + IjpmYWxzZSwiYmVjb21lX2VuYWJsZWQiOmZhbHNlLCJhbGxvd19zaW11bHRh + bmVvdXMiOmZhbHNlfSx7ImlkIjoxODUsInR5cGUiOiJqb2JfdGVtcGxhdGUi + LCJ1cmwiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTg1LyIsInJlbGF0ZWQi + OnsiY3JlYXRlZF9ieSI6Ii9hcGkvdjEvdXNlcnMvMS8iLCJsYWJlbHMiOiIv + YXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTg1L2xhYmVscy8iLCJsYXN0X2pvYiI6 + Ii9hcGkvdjEvam9icy85MDUvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRlc19l + cnJvciI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xODUvbm90aWZpY2F0aW9u + X3RlbXBsYXRlc19lcnJvci8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVzX3N1 + Y2Nlc3MiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTg1L25vdGlmaWNhdGlv + bl90ZW1wbGF0ZXNfc3VjY2Vzcy8iLCJqb2JzIjoiL2FwaS92MS9qb2JfdGVt + cGxhdGVzLzE4NS9qb2JzLyIsIm9iamVjdF9yb2xlcyI6Ii9hcGkvdjEvam9i + X3RlbXBsYXRlcy8xODUvb2JqZWN0X3JvbGVzLyIsIm5vdGlmaWNhdGlvbl90 + ZW1wbGF0ZXNfYW55IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE4NS9ub3Rp + ZmljYXRpb25fdGVtcGxhdGVzX2FueS8iLCJhY2Nlc3NfbGlzdCI6Ii9hcGkv + djEvam9iX3RlbXBsYXRlcy8xODUvYWNjZXNzX2xpc3QvIiwibGF1bmNoIjoi + L2FwaS92MS9qb2JfdGVtcGxhdGVzLzE4NS9sYXVuY2gvIiwic2NoZWR1bGVz + IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE4NS9zY2hlZHVsZXMvIiwiYWN0 + aXZpdHlfc3RyZWFtIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE4NS9hY3Rp + dml0eV9zdHJlYW0vIiwic3VydmV5X3NwZWMiOiIvYXBpL3YxL2pvYl90ZW1w + bGF0ZXMvMTg1L3N1cnZleV9zcGVjLyJ9LCJzdW1tYXJ5X2ZpZWxkcyI6eyJs + YXN0X2pvYiI6eyJpZCI6OTA1LCJuYW1lIjoibGlzdF9pbnB1dHMiLCJkZXNj + cmlwdGlvbiI6IiIsImZpbmlzaGVkIjoiMjAxNy0wNi0wOFQxNToyNDo1NS45 + ODFaIiwic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZhaWxlZCI6ZmFsc2V9LCJs + YXN0X3VwZGF0ZSI6eyJpZCI6OTA1LCJuYW1lIjoibGlzdF9pbnB1dHMiLCJk + ZXNjcmlwdGlvbiI6IiIsInN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmYWlsZWQi + OmZhbHNlfSwiY3JlYXRlZF9ieSI6eyJpZCI6MSwidXNlcm5hbWUiOiJhZG1p + biIsImZpcnN0X25hbWUiOiIiLCJsYXN0X25hbWUiOiIifSwib2JqZWN0X3Jv + bGVzIjp7ImFkbWluX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJDYW4gbWFuYWdl + IGFsbCBhc3BlY3RzIG9mIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6NjAwLCJu + YW1lIjoiQWRtaW4ifSwiZXhlY3V0ZV9yb2xlIjp7ImRlc2NyaXB0aW9uIjoi + TWF5IHJ1biB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjYwMiwibmFtZSI6IkV4 + ZWN1dGUifSwicmVhZF9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiTWF5IHZpZXcg + c2V0dGluZ3MgZm9yIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6NjAxLCJuYW1l + IjoiUmVhZCJ9fSwibGFiZWxzIjp7ImNvdW50IjowLCJyZXN1bHRzIjpbXX0s + ImNhbl9jb3B5IjpmYWxzZSwiY2FuX2VkaXQiOnRydWUsInJlY2VudF9qb2Jz + IjpbeyJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiZmluaXNoZWQiOiIyMDE3LTA2 + LTA4VDE1OjI0OjU1Ljk4MVoiLCJpZCI6OTA1fV19LCJjcmVhdGVkIjoiMjAx + Ny0wMi0yMVQyMjo0MDoyMS4yNjNaIiwibW9kaWZpZWQiOiIyMDE3LTA2LTA4 + VDE1OjI0OjM4LjQxNVoiLCJuYW1lIjoibGlzdF9pbnB1dHMiLCJkZXNjcmlw + dGlvbiI6IiIsImpvYl90eXBlIjoicnVuIiwiaW52ZW50b3J5IjpudWxsLCJw + cm9qZWN0IjpudWxsLCJwbGF5Ym9vayI6IiIsImNyZWRlbnRpYWwiOm51bGws + ImNsb3VkX2NyZWRlbnRpYWwiOm51bGwsIm5ldHdvcmtfY3JlZGVudGlhbCI6 + bnVsbCwiZm9ya3MiOjAsImxpbWl0IjoiIiwidmVyYm9zaXR5IjowLCJleHRy + YV92YXJzIjoiLS0tXG5teV9oYXNoOlxuICBwMTogJ29uZSdcbiAgcDI6ICd0 + d28nXG4gIFxubXlfYXJyYXk6XG4gIC0gJ21haHdhaCdcbiAgLSAnbW9udHZp + bGxlJ1xuICBcbm15X2Jvb2xlYW46IHRydWVcblxubXlfaW50OiAxMjM0NVxu + XG5teV9waG9uZTogMTIzLTQ1Ni03ODkwXG5teV92YXI6IFwiMjQgSGlnaCBQ + bGFjZSwgTWFod2FoLCBOSiAwNzQ5NVwiIiwiam9iX3RhZ3MiOiIiLCJmb3Jj + ZV9oYW5kbGVycyI6ZmFsc2UsInNraXBfdGFncyI6IiIsInN0YXJ0X2F0X3Rh + c2siOiIiLCJsYXN0X2pvYl9ydW4iOiIyMDE3LTA2LTA4VDE1OjI0OjU1Ljk4 + MTk2MFoiLCJsYXN0X2pvYl9mYWlsZWQiOmZhbHNlLCJoYXNfc2NoZWR1bGVz + IjpmYWxzZSwibmV4dF9qb2JfcnVuIjpudWxsLCJzdGF0dXMiOiJzdWNjZXNz + ZnVsIiwiaG9zdF9jb25maWdfa2V5IjoiIiwiYXNrX3ZhcmlhYmxlc19vbl9s + YXVuY2giOmZhbHNlLCJhc2tfbGltaXRfb25fbGF1bmNoIjpmYWxzZSwiYXNr + X3RhZ3Nfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2pvYl90eXBlX29uX2xhdW5j + aCI6ZmFsc2UsImFza19pbnZlbnRvcnlfb25fbGF1bmNoIjpmYWxzZSwiYXNr + X2NyZWRlbnRpYWxfb25fbGF1bmNoIjpmYWxzZSwic3VydmV5X2VuYWJsZWQi + OmZhbHNlLCJiZWNvbWVfZW5hYmxlZCI6ZmFsc2UsImFsbG93X3NpbXVsdGFu + ZW91cyI6ZmFsc2V9LHsiaWQiOjE4NCwidHlwZSI6ImpvYl90ZW1wbGF0ZSIs + InVybCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xODQvIiwicmVsYXRlZCI6 + eyJjcmVhdGVkX2J5IjoiL2FwaS92MS91c2Vycy8xLyIsImxhYmVscyI6Ii9h + cGkvdjEvam9iX3RlbXBsYXRlcy8xODQvbGFiZWxzLyIsIm5vdGlmaWNhdGlv + bl90ZW1wbGF0ZXNfZXJyb3IiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTg0 + L25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfZXJyb3IvIiwibm90aWZpY2F0aW9u + X3RlbXBsYXRlc19zdWNjZXNzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE4 + NC9ub3RpZmljYXRpb25fdGVtcGxhdGVzX3N1Y2Nlc3MvIiwiam9icyI6Ii9h + cGkvdjEvam9iX3RlbXBsYXRlcy8xODQvam9icy8iLCJvYmplY3Rfcm9sZXMi + OiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTg0L29iamVjdF9yb2xlcy8iLCJu + b3RpZmljYXRpb25fdGVtcGxhdGVzX2FueSI6Ii9hcGkvdjEvam9iX3RlbXBs + YXRlcy8xODQvbm90aWZpY2F0aW9uX3RlbXBsYXRlc19hbnkvIiwiYWNjZXNz + X2xpc3QiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTg0L2FjY2Vzc19saXN0 + LyIsImxhdW5jaCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xODQvbGF1bmNo + LyIsInNjaGVkdWxlcyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xODQvc2No + ZWR1bGVzLyIsImFjdGl2aXR5X3N0cmVhbSI6Ii9hcGkvdjEvam9iX3RlbXBs + YXRlcy8xODQvYWN0aXZpdHlfc3RyZWFtLyIsInN1cnZleV9zcGVjIjoiL2Fw + aS92MS9qb2JfdGVtcGxhdGVzLzE4NC9zdXJ2ZXlfc3BlYy8ifSwic3VtbWFy + eV9maWVsZHMiOnsiY3JlYXRlZF9ieSI6eyJpZCI6MSwidXNlcm5hbWUiOiJh + ZG1pbiIsImZpcnN0X25hbWUiOiIiLCJsYXN0X25hbWUiOiIifSwib2JqZWN0 + X3JvbGVzIjp7ImFkbWluX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJDYW4gbWFu + YWdlIGFsbCBhc3BlY3RzIG9mIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6NTk3 + LCJuYW1lIjoiQWRtaW4ifSwiZXhlY3V0ZV9yb2xlIjp7ImRlc2NyaXB0aW9u + IjoiTWF5IHJ1biB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjU5OSwibmFtZSI6 + IkV4ZWN1dGUifSwicmVhZF9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiTWF5IHZp + ZXcgc2V0dGluZ3MgZm9yIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6NTk4LCJu + YW1lIjoiUmVhZCJ9fSwibGFiZWxzIjp7ImNvdW50IjowLCJyZXN1bHRzIjpb + XX0sImNhbl9jb3B5IjpmYWxzZSwiY2FuX2VkaXQiOnRydWUsInJlY2VudF9q + b2JzIjpbXX0sImNyZWF0ZWQiOiIyMDE3LTAyLTIxVDIwOjI1OjM4Ljc3MVoi + LCJtb2RpZmllZCI6IjIwMTctMDItMjFUMjA6MjY6NDEuNDk2WiIsIm5hbWUi + OiJsaXN0X3BhcmFtcyIsImRlc2NyaXB0aW9uIjoiIiwiam9iX3R5cGUiOiJy + dW4iLCJpbnZlbnRvcnkiOm51bGwsInByb2plY3QiOm51bGwsInBsYXlib29r + IjoiIiwiY3JlZGVudGlhbCI6bnVsbCwiY2xvdWRfY3JlZGVudGlhbCI6bnVs + bCwibmV0d29ya19jcmVkZW50aWFsIjpudWxsLCJmb3JrcyI6MCwibGltaXQi + OiIiLCJ2ZXJib3NpdHkiOjAsImV4dHJhX3ZhcnMiOiItLS1cbm15X2hhc2g6 + XG4gIHAxOiAnb25lJ1xuICBwMjogJ3R3bydcbiAgXG5teV9hcnJheTpcbiAg + LSAnbWFod2FoJ1xuICAtICdtb250dmlsbGUnXG4gIFxubXlfYm9vbGVhbjog + dHJ1ZVxuXG5teV9pbnQ6IDEyMzQ1XG5cbm15X3Bob25lOiAxMjMtNDU2LTc4 + OTBcbm15X2FkZHJlc3M6ICcyNCBIaWdoIFBsYWNlLCBNYWh3YWgsIE5KIDA3 + NDk1JyIsImpvYl90YWdzIjoiIiwiZm9yY2VfaGFuZGxlcnMiOmZhbHNlLCJz + a2lwX3RhZ3MiOiIiLCJzdGFydF9hdF90YXNrIjoiIiwibGFzdF9qb2JfcnVu + IjoiMjAxNy0wMi0yMVQyMjozMjoyNi4wNTM2NDZaIiwibGFzdF9qb2JfZmFp + bGVkIjpmYWxzZSwiaGFzX3NjaGVkdWxlcyI6ZmFsc2UsIm5leHRfam9iX3J1 + biI6bnVsbCwic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImhvc3RfY29uZmlnX2tl + eSI6IiIsImFza192YXJpYWJsZXNfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2xp + bWl0X29uX2xhdW5jaCI6ZmFsc2UsImFza190YWdzX29uX2xhdW5jaCI6ZmFs + c2UsImFza19qb2JfdHlwZV9vbl9sYXVuY2giOmZhbHNlLCJhc2tfaW52ZW50 + b3J5X29uX2xhdW5jaCI6ZmFsc2UsImFza19jcmVkZW50aWFsX29uX2xhdW5j + aCI6ZmFsc2UsInN1cnZleV9lbmFibGVkIjpmYWxzZSwiYmVjb21lX2VuYWJs + ZWQiOmZhbHNlLCJhbGxvd19zaW11bHRhbmVvdXMiOmZhbHNlfSx7ImlkIjoy + ODMsInR5cGUiOiJqb2JfdGVtcGxhdGUiLCJ1cmwiOiIvYXBpL3YxL2pvYl90 + ZW1wbGF0ZXMvMjgzLyIsInJlbGF0ZWQiOnsiY3JlYXRlZF9ieSI6Ii9hcGkv + djEvdXNlcnMvMS8iLCJsYWJlbHMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMv + MjgzL2xhYmVscy8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVzX2Vycm9yIjoi + L2FwaS92MS9qb2JfdGVtcGxhdGVzLzI4My9ub3RpZmljYXRpb25fdGVtcGxh + dGVzX2Vycm9yLyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfc3VjY2VzcyI6 + Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8yODMvbm90aWZpY2F0aW9uX3RlbXBs + YXRlc19zdWNjZXNzLyIsImpvYnMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMv + MjgzL2pvYnMvIiwib2JqZWN0X3JvbGVzIjoiL2FwaS92MS9qb2JfdGVtcGxh + dGVzLzI4My9vYmplY3Rfcm9sZXMvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRl + c19hbnkiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMjgzL25vdGlmaWNhdGlv + bl90ZW1wbGF0ZXNfYW55LyIsImFjY2Vzc19saXN0IjoiL2FwaS92MS9qb2Jf + dGVtcGxhdGVzLzI4My9hY2Nlc3NfbGlzdC8iLCJsYXVuY2giOiIvYXBpL3Yx + L2pvYl90ZW1wbGF0ZXMvMjgzL2xhdW5jaC8iLCJzY2hlZHVsZXMiOiIvYXBp + L3YxL2pvYl90ZW1wbGF0ZXMvMjgzL3NjaGVkdWxlcy8iLCJhY3Rpdml0eV9z + dHJlYW0iOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMjgzL2FjdGl2aXR5X3N0 + cmVhbS8iLCJzdXJ2ZXlfc3BlYyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8y + ODMvc3VydmV5X3NwZWMvIn0sInN1bW1hcnlfZmllbGRzIjp7ImNyZWF0ZWRf + YnkiOnsiaWQiOjEsInVzZXJuYW1lIjoiYWRtaW4iLCJmaXJzdF9uYW1lIjoi + IiwibGFzdF9uYW1lIjoiIn0sIm9iamVjdF9yb2xlcyI6eyJhZG1pbl9yb2xl + Ijp7ImRlc2NyaXB0aW9uIjoiQ2FuIG1hbmFnZSBhbGwgYXNwZWN0cyBvZiB0 + aGUgam9iIHRlbXBsYXRlIiwiaWQiOjkwMCwibmFtZSI6IkFkbWluIn0sImV4 + ZWN1dGVfcm9sZSI6eyJkZXNjcmlwdGlvbiI6Ik1heSBydW4gdGhlIGpvYiB0 + ZW1wbGF0ZSIsImlkIjo5MDIsIm5hbWUiOiJFeGVjdXRlIn0sInJlYWRfcm9s + ZSI6eyJkZXNjcmlwdGlvbiI6Ik1heSB2aWV3IHNldHRpbmdzIGZvciB0aGUg + am9iIHRlbXBsYXRlIiwiaWQiOjkwMSwibmFtZSI6IlJlYWQifX0sImxhYmVs + cyI6eyJjb3VudCI6MCwicmVzdWx0cyI6W119LCJjYW5fY29weSI6ZmFsc2Us + ImNhbl9lZGl0Ijp0cnVlLCJyZWNlbnRfam9icyI6W119LCJjcmVhdGVkIjoi + MjAxNy0wMy0wM1QyMToyMjoyMC44MjNaIiwibW9kaWZpZWQiOiIyMDE3LTAz + LTA2VDIwOjUxOjEyLjEzOVoiLCJuYW1lIjoibHVjeSBiaWcgb3V0cHV0Iiwi + ZGVzY3JpcHRpb24iOiIiLCJqb2JfdHlwZSI6InJ1biIsImludmVudG9yeSI6 + bnVsbCwicHJvamVjdCI6bnVsbCwicGxheWJvb2siOiIiLCJjcmVkZW50aWFs + IjpudWxsLCJjbG91ZF9jcmVkZW50aWFsIjpudWxsLCJuZXR3b3JrX2NyZWRl + bnRpYWwiOm51bGwsImZvcmtzIjowLCJsaW1pdCI6IiIsInZlcmJvc2l0eSI6 + MCwiZXh0cmFfdmFycyI6IiIsImpvYl90YWdzIjoiIiwiZm9yY2VfaGFuZGxl + cnMiOmZhbHNlLCJza2lwX3RhZ3MiOiIiLCJzdGFydF9hdF90YXNrIjoiIiwi + bGFzdF9qb2JfcnVuIjoiMjAxNy0wMy0wNlQyMTowMDo1Ni42Njc1NDlaIiwi + bGFzdF9qb2JfZmFpbGVkIjpmYWxzZSwiaGFzX3NjaGVkdWxlcyI6ZmFsc2Us + Im5leHRfam9iX3J1biI6bnVsbCwic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImhv + c3RfY29uZmlnX2tleSI6IiIsImFza192YXJpYWJsZXNfb25fbGF1bmNoIjpm + YWxzZSwiYXNrX2xpbWl0X29uX2xhdW5jaCI6ZmFsc2UsImFza190YWdzX29u + X2xhdW5jaCI6ZmFsc2UsImFza19qb2JfdHlwZV9vbl9sYXVuY2giOmZhbHNl + LCJhc2tfaW52ZW50b3J5X29uX2xhdW5jaCI6ZmFsc2UsImFza19jcmVkZW50 + aWFsX29uX2xhdW5jaCI6ZmFsc2UsInN1cnZleV9lbmFibGVkIjpmYWxzZSwi + YmVjb21lX2VuYWJsZWQiOmZhbHNlLCJhbGxvd19zaW11bHRhbmVvdXMiOmZh + bHNlfSx7ImlkIjoyMTIsInR5cGUiOiJqb2JfdGVtcGxhdGUiLCJ1cmwiOiIv + YXBpL3YxL2pvYl90ZW1wbGF0ZXMvMjEyLyIsInJlbGF0ZWQiOnsiY3JlYXRl + ZF9ieSI6Ii9hcGkvdjEvdXNlcnMvMS8iLCJtb2RpZmllZF9ieSI6Ii9hcGkv + djEvdXNlcnMvMS8iLCJsYWJlbHMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMv + MjEyL2xhYmVscy8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVzX2Vycm9yIjoi + L2FwaS92MS9qb2JfdGVtcGxhdGVzLzIxMi9ub3RpZmljYXRpb25fdGVtcGxh + dGVzX2Vycm9yLyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfc3VjY2VzcyI6 + Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8yMTIvbm90aWZpY2F0aW9uX3RlbXBs + YXRlc19zdWNjZXNzLyIsImpvYnMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMv + MjEyL2pvYnMvIiwib2JqZWN0X3JvbGVzIjoiL2FwaS92MS9qb2JfdGVtcGxh + dGVzLzIxMi9vYmplY3Rfcm9sZXMvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRl + c19hbnkiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMjEyL25vdGlmaWNhdGlv + bl90ZW1wbGF0ZXNfYW55LyIsImFjY2Vzc19saXN0IjoiL2FwaS92MS9qb2Jf + dGVtcGxhdGVzLzIxMi9hY2Nlc3NfbGlzdC8iLCJsYXVuY2giOiIvYXBpL3Yx + L2pvYl90ZW1wbGF0ZXMvMjEyL2xhdW5jaC8iLCJzY2hlZHVsZXMiOiIvYXBp + L3YxL2pvYl90ZW1wbGF0ZXMvMjEyL3NjaGVkdWxlcy8iLCJhY3Rpdml0eV9z + dHJlYW0iOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMjEyL2FjdGl2aXR5X3N0 + cmVhbS8iLCJzdXJ2ZXlfc3BlYyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8y + MTIvc3VydmV5X3NwZWMvIn0sInN1bW1hcnlfZmllbGRzIjp7ImNyZWF0ZWRf + YnkiOnsiaWQiOjEsInVzZXJuYW1lIjoiYWRtaW4iLCJmaXJzdF9uYW1lIjoi + IiwibGFzdF9uYW1lIjoiIn0sIm1vZGlmaWVkX2J5Ijp7ImlkIjoxLCJ1c2Vy + bmFtZSI6ImFkbWluIiwiZmlyc3RfbmFtZSI6IiIsImxhc3RfbmFtZSI6IiJ9 + LCJvYmplY3Rfcm9sZXMiOnsiYWRtaW5fcm9sZSI6eyJkZXNjcmlwdGlvbiI6 + IkNhbiBtYW5hZ2UgYWxsIGFzcGVjdHMgb2YgdGhlIGpvYiB0ZW1wbGF0ZSIs + ImlkIjo2ODEsIm5hbWUiOiJBZG1pbiJ9LCJleGVjdXRlX3JvbGUiOnsiZGVz + Y3JpcHRpb24iOiJNYXkgcnVuIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6Njgz + LCJuYW1lIjoiRXhlY3V0ZSJ9LCJyZWFkX3JvbGUiOnsiZGVzY3JpcHRpb24i + OiJNYXkgdmlldyBzZXR0aW5ncyBmb3IgdGhlIGpvYiB0ZW1wbGF0ZSIsImlk + Ijo2ODIsIm5hbWUiOiJSZWFkIn19LCJsYWJlbHMiOnsiY291bnQiOjAsInJl + c3VsdHMiOltdfSwiY2FuX2NvcHkiOmZhbHNlLCJjYW5fZWRpdCI6dHJ1ZSwi + cmVjZW50X2pvYnMiOltdfSwiY3JlYXRlZCI6IjIwMTctMDItMjdUMTg6MTE6 + MjMuOTIxWiIsIm1vZGlmaWVkIjoiMjAxNy0wNS0wNFQxNDo1MDowMi40NTVa + IiwibmFtZSI6Imx1Y3lfcGxheXMiLCJkZXNjcmlwdGlvbiI6IiIsImpvYl90 + eXBlIjoicnVuIiwiaW52ZW50b3J5IjpudWxsLCJwcm9qZWN0IjpudWxsLCJw + bGF5Ym9vayI6IiIsImNyZWRlbnRpYWwiOm51bGwsImNsb3VkX2NyZWRlbnRp + YWwiOm51bGwsIm5ldHdvcmtfY3JlZGVudGlhbCI6bnVsbCwiZm9ya3MiOjAs + ImxpbWl0IjoiIiwidmVyYm9zaXR5IjowLCJleHRyYV92YXJzIjoiIiwiam9i + X3RhZ3MiOiIiLCJmb3JjZV9oYW5kbGVycyI6ZmFsc2UsInNraXBfdGFncyI6 + IiIsInN0YXJ0X2F0X3Rhc2siOiIiLCJsYXN0X2pvYl9ydW4iOiIyMDE3LTAz + LTMwVDEzOjU4OjA0LjY2MTU2NVoiLCJsYXN0X2pvYl9mYWlsZWQiOmZhbHNl + LCJoYXNfc2NoZWR1bGVzIjpmYWxzZSwibmV4dF9qb2JfcnVuIjpudWxsLCJz + dGF0dXMiOiJzdWNjZXNzZnVsIiwiaG9zdF9jb25maWdfa2V5IjoiIiwiYXNr + X3ZhcmlhYmxlc19vbl9sYXVuY2giOmZhbHNlLCJhc2tfbGltaXRfb25fbGF1 + bmNoIjp0cnVlLCJhc2tfdGFnc19vbl9sYXVuY2giOmZhbHNlLCJhc2tfam9i + X3R5cGVfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2ludmVudG9yeV9vbl9sYXVu + Y2giOmZhbHNlLCJhc2tfY3JlZGVudGlhbF9vbl9sYXVuY2giOmZhbHNlLCJz + dXJ2ZXlfZW5hYmxlZCI6ZmFsc2UsImJlY29tZV9lbmFibGVkIjpmYWxzZSwi + YWxsb3dfc2ltdWx0YW5lb3VzIjpmYWxzZX0seyJpZCI6MTc2LCJ0eXBlIjoi + am9iX3RlbXBsYXRlIiwidXJsIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE3 + Ni8iLCJyZWxhdGVkIjp7ImNyZWF0ZWRfYnkiOiIvYXBpL3YxL3VzZXJzLzEv + IiwibGFiZWxzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE3Ni9sYWJlbHMv + IiwibGFzdF9qb2IiOiIvYXBpL3YxL2pvYnMvODg0LyIsIm5vdGlmaWNhdGlv + bl90ZW1wbGF0ZXNfZXJyb3IiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTc2 + L25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfZXJyb3IvIiwibm90aWZpY2F0aW9u + X3RlbXBsYXRlc19zdWNjZXNzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE3 + Ni9ub3RpZmljYXRpb25fdGVtcGxhdGVzX3N1Y2Nlc3MvIiwiam9icyI6Ii9h + cGkvdjEvam9iX3RlbXBsYXRlcy8xNzYvam9icy8iLCJvYmplY3Rfcm9sZXMi + OiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTc2L29iamVjdF9yb2xlcy8iLCJu + b3RpZmljYXRpb25fdGVtcGxhdGVzX2FueSI6Ii9hcGkvdjEvam9iX3RlbXBs + YXRlcy8xNzYvbm90aWZpY2F0aW9uX3RlbXBsYXRlc19hbnkvIiwiYWNjZXNz + X2xpc3QiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTc2L2FjY2Vzc19saXN0 + LyIsImxhdW5jaCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xNzYvbGF1bmNo + LyIsInNjaGVkdWxlcyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xNzYvc2No + ZWR1bGVzLyIsImFjdGl2aXR5X3N0cmVhbSI6Ii9hcGkvdjEvam9iX3RlbXBs + YXRlcy8xNzYvYWN0aXZpdHlfc3RyZWFtLyIsInN1cnZleV9zcGVjIjoiL2Fw + aS92MS9qb2JfdGVtcGxhdGVzLzE3Ni9zdXJ2ZXlfc3BlYy8ifSwic3VtbWFy + eV9maWVsZHMiOnsibGFzdF9qb2IiOnsiaWQiOjg4NCwibmFtZSI6Imx1Y3lf + cHJpbnRfb3V0cHV0IiwiZGVzY3JpcHRpb24iOiIiLCJmaW5pc2hlZCI6IjIw + MTctMDUtMDhUMTU6MzA6NDQuNTkwWiIsInN0YXR1cyI6ImZhaWxlZCIsImZh + aWxlZCI6dHJ1ZX0sImxhc3RfdXBkYXRlIjp7ImlkIjo4ODQsIm5hbWUiOiJs + dWN5X3ByaW50X291dHB1dCIsImRlc2NyaXB0aW9uIjoiIiwic3RhdHVzIjoi + ZmFpbGVkIiwiZmFpbGVkIjp0cnVlfSwiY3JlYXRlZF9ieSI6eyJpZCI6MSwi + dXNlcm5hbWUiOiJhZG1pbiIsImZpcnN0X25hbWUiOiIiLCJsYXN0X25hbWUi + OiIifSwib2JqZWN0X3JvbGVzIjp7ImFkbWluX3JvbGUiOnsiZGVzY3JpcHRp + b24iOiJDYW4gbWFuYWdlIGFsbCBhc3BlY3RzIG9mIHRoZSBqb2IgdGVtcGxh + dGUiLCJpZCI6NTQzLCJuYW1lIjoiQWRtaW4ifSwiZXhlY3V0ZV9yb2xlIjp7 + ImRlc2NyaXB0aW9uIjoiTWF5IHJ1biB0aGUgam9iIHRlbXBsYXRlIiwiaWQi + OjU0NSwibmFtZSI6IkV4ZWN1dGUifSwicmVhZF9yb2xlIjp7ImRlc2NyaXB0 + aW9uIjoiTWF5IHZpZXcgc2V0dGluZ3MgZm9yIHRoZSBqb2IgdGVtcGxhdGUi + LCJpZCI6NTQ0LCJuYW1lIjoiUmVhZCJ9fSwibGFiZWxzIjp7ImNvdW50Ijow + LCJyZXN1bHRzIjpbXX0sImNhbl9jb3B5IjpmYWxzZSwiY2FuX2VkaXQiOnRy + dWUsInJlY2VudF9qb2JzIjpbeyJzdGF0dXMiOiJmYWlsZWQiLCJmaW5pc2hl + ZCI6IjIwMTctMDUtMDhUMTU6MzA6NDQuNTkwWiIsImlkIjo4ODR9LHsic3Rh + dHVzIjoiZmFpbGVkIiwiZmluaXNoZWQiOiIyMDE3LTA1LTA4VDE1OjIyOjMw + LjMzN1oiLCJpZCI6ODgyfSx7InN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmaW5p + c2hlZCI6IjIwMTctMDUtMDhUMTU6MTk6NDIuNjcxWiIsImlkIjo4ODB9LHsi + c3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZpbmlzaGVkIjoiMjAxNy0wNS0wOFQx + NToxOTowNi40MzJaIiwiaWQiOjg3OH0seyJzdGF0dXMiOiJzdWNjZXNzZnVs + IiwiZmluaXNoZWQiOiIyMDE3LTA1LTA4VDE1OjE2OjA2Ljc0M1oiLCJpZCI6 + ODc2fSx7InN0YXR1cyI6ImZhaWxlZCIsImZpbmlzaGVkIjoiMjAxNy0wNS0w + OFQxNToxNDo1Mi44OTZaIiwiaWQiOjg3NH0seyJzdGF0dXMiOiJmYWlsZWQi + LCJmaW5pc2hlZCI6IjIwMTctMDUtMDhUMTU6MTA6MzAuMTY5WiIsImlkIjo4 + NzJ9LHsic3RhdHVzIjoiZmFpbGVkIiwiZmluaXNoZWQiOiIyMDE3LTA1LTA0 + VDIwOjQ0OjI0LjY5NVoiLCJpZCI6ODY5fSx7InN0YXR1cyI6InN1Y2Nlc3Nm + dWwiLCJmaW5pc2hlZCI6IjIwMTctMDUtMDRUMjA6NDE6NDguMzE1WiIsImlk + Ijo4Njd9LHsic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZpbmlzaGVkIjoiMjAx + Ny0wNS0wNFQyMDozOTo0OC4wMjJaIiwiaWQiOjg2NX1dfSwiY3JlYXRlZCI6 + IjIwMTctMDItMjBUMjE6MTI6MDUuMzkyWiIsIm1vZGlmaWVkIjoiMjAxNy0w + NS0wOFQxNToyMjowMi4yMTBaIiwibmFtZSI6Imx1Y3lfcHJpbnRfb3V0cHV0 + IiwiZGVzY3JpcHRpb24iOiIiLCJqb2JfdHlwZSI6InJ1biIsImludmVudG9y + eSI6bnVsbCwicHJvamVjdCI6bnVsbCwicGxheWJvb2siOiIiLCJjcmVkZW50 + aWFsIjpudWxsLCJjbG91ZF9jcmVkZW50aWFsIjpudWxsLCJuZXR3b3JrX2Ny + ZWRlbnRpYWwiOm51bGwsImZvcmtzIjo0OCwibGltaXQiOiIiLCJ2ZXJib3Np + dHkiOjMsImV4dHJhX3ZhcnMiOiIiLCJqb2JfdGFncyI6IiIsImZvcmNlX2hh + bmRsZXJzIjpmYWxzZSwic2tpcF90YWdzIjoiIiwic3RhcnRfYXRfdGFzayI6 + IiIsImxhc3Rfam9iX3J1biI6IjIwMTctMDUtMDhUMTU6MzA6NDQuNTkwMTM5 + WiIsImxhc3Rfam9iX2ZhaWxlZCI6dHJ1ZSwiaGFzX3NjaGVkdWxlcyI6ZmFs + c2UsIm5leHRfam9iX3J1biI6bnVsbCwic3RhdHVzIjoiZmFpbGVkIiwiaG9z + dF9jb25maWdfa2V5IjoiIiwiYXNrX3ZhcmlhYmxlc19vbl9sYXVuY2giOmZh + bHNlLCJhc2tfbGltaXRfb25fbGF1bmNoIjpmYWxzZSwiYXNrX3RhZ3Nfb25f + bGF1bmNoIjpmYWxzZSwiYXNrX2pvYl90eXBlX29uX2xhdW5jaCI6ZmFsc2Us + ImFza19pbnZlbnRvcnlfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2NyZWRlbnRp + YWxfb25fbGF1bmNoIjpmYWxzZSwic3VydmV5X2VuYWJsZWQiOmZhbHNlLCJi + ZWNvbWVfZW5hYmxlZCI6dHJ1ZSwiYWxsb3dfc2ltdWx0YW5lb3VzIjpmYWxz + ZX0seyJpZCI6MjkxLCJ0eXBlIjoiam9iX3RlbXBsYXRlIiwidXJsIjoiL2Fw + aS92MS9qb2JfdGVtcGxhdGVzLzI5MS8iLCJyZWxhdGVkIjp7ImNyZWF0ZWRf + YnkiOiIvYXBpL3YxL3VzZXJzLzEvIiwibGFiZWxzIjoiL2FwaS92MS9qb2Jf + dGVtcGxhdGVzLzI5MS9sYWJlbHMvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRl + c19lcnJvciI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8yOTEvbm90aWZpY2F0 + aW9uX3RlbXBsYXRlc19lcnJvci8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVz + X3N1Y2Nlc3MiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMjkxL25vdGlmaWNh + dGlvbl90ZW1wbGF0ZXNfc3VjY2Vzcy8iLCJqb2JzIjoiL2FwaS92MS9qb2Jf + dGVtcGxhdGVzLzI5MS9qb2JzLyIsIm9iamVjdF9yb2xlcyI6Ii9hcGkvdjEv + am9iX3RlbXBsYXRlcy8yOTEvb2JqZWN0X3JvbGVzLyIsIm5vdGlmaWNhdGlv + bl90ZW1wbGF0ZXNfYW55IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzI5MS9u + b3RpZmljYXRpb25fdGVtcGxhdGVzX2FueS8iLCJhY2Nlc3NfbGlzdCI6Ii9h + cGkvdjEvam9iX3RlbXBsYXRlcy8yOTEvYWNjZXNzX2xpc3QvIiwibGF1bmNo + IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzI5MS9sYXVuY2gvIiwic2NoZWR1 + bGVzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzI5MS9zY2hlZHVsZXMvIiwi + YWN0aXZpdHlfc3RyZWFtIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzI5MS9h + Y3Rpdml0eV9zdHJlYW0vIiwic3VydmV5X3NwZWMiOiIvYXBpL3YxL2pvYl90 + ZW1wbGF0ZXMvMjkxL3N1cnZleV9zcGVjLyJ9LCJzdW1tYXJ5X2ZpZWxkcyI6 + eyJjcmVhdGVkX2J5Ijp7ImlkIjoxLCJ1c2VybmFtZSI6ImFkbWluIiwiZmly + c3RfbmFtZSI6IiIsImxhc3RfbmFtZSI6IiJ9LCJvYmplY3Rfcm9sZXMiOnsi + YWRtaW5fcm9sZSI6eyJkZXNjcmlwdGlvbiI6IkNhbiBtYW5hZ2UgYWxsIGFz + cGVjdHMgb2YgdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjo5MjQsIm5hbWUiOiJB + ZG1pbiJ9LCJleGVjdXRlX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJNYXkgcnVu + IHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6OTI2LCJuYW1lIjoiRXhlY3V0ZSJ9 + LCJyZWFkX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJNYXkgdmlldyBzZXR0aW5n + cyBmb3IgdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjo5MjUsIm5hbWUiOiJSZWFk + In19LCJsYWJlbHMiOnsiY291bnQiOjAsInJlc3VsdHMiOltdfSwiY2FuX2Nv + cHkiOmZhbHNlLCJjYW5fZWRpdCI6dHJ1ZSwicmVjZW50X2pvYnMiOltdfSwi + Y3JlYXRlZCI6IjIwMTctMDMtMDdUMjE6MjQ6MjEuOTM5WiIsIm1vZGlmaWVk + IjoiMjAxNy0wMy0wN1QyMToyNDoyMS45MzlaIiwibmFtZSI6Imx1Y3kgdGVz + dCIsImRlc2NyaXB0aW9uIjoiIiwiam9iX3R5cGUiOiJydW4iLCJpbnZlbnRv + cnkiOm51bGwsInByb2plY3QiOm51bGwsInBsYXlib29rIjoiIiwiY3JlZGVu + dGlhbCI6bnVsbCwiY2xvdWRfY3JlZGVudGlhbCI6bnVsbCwibmV0d29ya19j + cmVkZW50aWFsIjpudWxsLCJmb3JrcyI6MCwibGltaXQiOiIiLCJ2ZXJib3Np + dHkiOjAsImV4dHJhX3ZhcnMiOiIiLCJqb2JfdGFncyI6IiIsImZvcmNlX2hh + bmRsZXJzIjpmYWxzZSwic2tpcF90YWdzIjoiIiwic3RhcnRfYXRfdGFzayI6 + IiIsImxhc3Rfam9iX3J1biI6IjIwMTctMDMtMDdUMjE6MjU6MDAuNTk0NDcy + WiIsImxhc3Rfam9iX2ZhaWxlZCI6ZmFsc2UsImhhc19zY2hlZHVsZXMiOmZh + bHNlLCJuZXh0X2pvYl9ydW4iOm51bGwsInN0YXR1cyI6InN1Y2Nlc3NmdWwi + LCJob3N0X2NvbmZpZ19rZXkiOiIiLCJhc2tfdmFyaWFibGVzX29uX2xhdW5j + aCI6ZmFsc2UsImFza19saW1pdF9vbl9sYXVuY2giOmZhbHNlLCJhc2tfdGFn + c19vbl9sYXVuY2giOmZhbHNlLCJhc2tfam9iX3R5cGVfb25fbGF1bmNoIjpm + YWxzZSwiYXNrX2ludmVudG9yeV9vbl9sYXVuY2giOmZhbHNlLCJhc2tfY3Jl + ZGVudGlhbF9vbl9sYXVuY2giOmZhbHNlLCJzdXJ2ZXlfZW5hYmxlZCI6ZmFs + c2UsImJlY29tZV9lbmFibGVkIjpmYWxzZSwiYWxsb3dfc2ltdWx0YW5lb3Vz + IjpmYWxzZX0seyJpZCI6MTU2LCJ0eXBlIjoiam9iX3RlbXBsYXRlIiwidXJs + IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE1Ni8iLCJyZWxhdGVkIjp7ImNy + ZWF0ZWRfYnkiOiIvYXBpL3YxL3VzZXJzLzEvIiwibGFiZWxzIjoiL2FwaS92 + MS9qb2JfdGVtcGxhdGVzLzE1Ni9sYWJlbHMvIiwibGFzdF9qb2IiOiIvYXBp + L3YxL2pvYnMvODYxLyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfZXJyb3Ii + OiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTU2L25vdGlmaWNhdGlvbl90ZW1w + bGF0ZXNfZXJyb3IvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRlc19zdWNjZXNz + IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE1Ni9ub3RpZmljYXRpb25fdGVt + cGxhdGVzX3N1Y2Nlc3MvIiwiam9icyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRl + cy8xNTYvam9icy8iLCJvYmplY3Rfcm9sZXMiOiIvYXBpL3YxL2pvYl90ZW1w + bGF0ZXMvMTU2L29iamVjdF9yb2xlcy8iLCJub3RpZmljYXRpb25fdGVtcGxh + dGVzX2FueSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xNTYvbm90aWZpY2F0 + aW9uX3RlbXBsYXRlc19hbnkvIiwiYWNjZXNzX2xpc3QiOiIvYXBpL3YxL2pv + Yl90ZW1wbGF0ZXMvMTU2L2FjY2Vzc19saXN0LyIsImxhdW5jaCI6Ii9hcGkv + djEvam9iX3RlbXBsYXRlcy8xNTYvbGF1bmNoLyIsInNjaGVkdWxlcyI6Ii9h + cGkvdjEvam9iX3RlbXBsYXRlcy8xNTYvc2NoZWR1bGVzLyIsImFjdGl2aXR5 + X3N0cmVhbSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xNTYvYWN0aXZpdHlf + c3RyZWFtLyIsInN1cnZleV9zcGVjIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVz + LzE1Ni9zdXJ2ZXlfc3BlYy8ifSwic3VtbWFyeV9maWVsZHMiOnsibGFzdF9q + b2IiOnsiaWQiOjg2MSwibmFtZSI6Imx1Y3lfdGVzdF8xIiwiZGVzY3JpcHRp + b24iOiJ0ZW1wb3JhcnkgdGVzdCIsImZpbmlzaGVkIjoiMjAxNy0wNS0wNFQy + MDozNTo0Ny4xNDBaIiwic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZhaWxlZCI6 + ZmFsc2V9LCJsYXN0X3VwZGF0ZSI6eyJpZCI6ODYxLCJuYW1lIjoibHVjeV90 + ZXN0XzEiLCJkZXNjcmlwdGlvbiI6InRlbXBvcmFyeSB0ZXN0Iiwic3RhdHVz + Ijoic3VjY2Vzc2Z1bCIsImZhaWxlZCI6ZmFsc2V9LCJjcmVhdGVkX2J5Ijp7 + ImlkIjoxLCJ1c2VybmFtZSI6ImFkbWluIiwiZmlyc3RfbmFtZSI6IiIsImxh + c3RfbmFtZSI6IiJ9LCJvYmplY3Rfcm9sZXMiOnsiYWRtaW5fcm9sZSI6eyJk + ZXNjcmlwdGlvbiI6IkNhbiBtYW5hZ2UgYWxsIGFzcGVjdHMgb2YgdGhlIGpv + YiB0ZW1wbGF0ZSIsImlkIjo0ODYsIm5hbWUiOiJBZG1pbiJ9LCJleGVjdXRl + X3JvbGUiOnsiZGVzY3JpcHRpb24iOiJNYXkgcnVuIHRoZSBqb2IgdGVtcGxh + dGUiLCJpZCI6NDg4LCJuYW1lIjoiRXhlY3V0ZSJ9LCJyZWFkX3JvbGUiOnsi + ZGVzY3JpcHRpb24iOiJNYXkgdmlldyBzZXR0aW5ncyBmb3IgdGhlIGpvYiB0 + ZW1wbGF0ZSIsImlkIjo0ODcsIm5hbWUiOiJSZWFkIn19LCJsYWJlbHMiOnsi + Y291bnQiOjAsInJlc3VsdHMiOltdfSwiY2FuX2NvcHkiOmZhbHNlLCJjYW5f + ZWRpdCI6dHJ1ZSwicmVjZW50X2pvYnMiOlt7InN0YXR1cyI6InN1Y2Nlc3Nm + dWwiLCJmaW5pc2hlZCI6IjIwMTctMDUtMDRUMjA6MzU6NDcuMTQwWiIsImlk + Ijo4NjF9LHsic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZpbmlzaGVkIjoiMjAx + Ny0wNS0wNFQyMDozNDoyNC4yNzlaIiwiaWQiOjg1OX0seyJzdGF0dXMiOiJm + YWlsZWQiLCJmaW5pc2hlZCI6IjIwMTctMDUtMDRUMjA6Mjk6MzUuNTU5WiIs + ImlkIjo4NTd9XX0sImNyZWF0ZWQiOiIyMDE3LTAyLTE3VDE5OjM0OjU4Ljcx + OVoiLCJtb2RpZmllZCI6IjIwMTctMDUtMDRUMjA6MzU6MTEuODM0WiIsIm5h + bWUiOiJsdWN5X3Rlc3RfMSIsImRlc2NyaXB0aW9uIjoidGVtcG9yYXJ5IHRl + c3QiLCJqb2JfdHlwZSI6InJ1biIsImludmVudG9yeSI6bnVsbCwicHJvamVj + dCI6bnVsbCwicGxheWJvb2siOiIiLCJjcmVkZW50aWFsIjpudWxsLCJjbG91 + ZF9jcmVkZW50aWFsIjpudWxsLCJuZXR3b3JrX2NyZWRlbnRpYWwiOm51bGws + ImZvcmtzIjowLCJsaW1pdCI6IiIsInZlcmJvc2l0eSI6MCwiZXh0cmFfdmFy + cyI6IiIsImpvYl90YWdzIjoiIiwiZm9yY2VfaGFuZGxlcnMiOmZhbHNlLCJz + a2lwX3RhZ3MiOiIiLCJzdGFydF9hdF90YXNrIjoiIiwibGFzdF9qb2JfcnVu + IjoiMjAxNy0wNS0wNFQyMDozNTo0Ny4xNDA5ODhaIiwibGFzdF9qb2JfZmFp + bGVkIjpmYWxzZSwiaGFzX3NjaGVkdWxlcyI6ZmFsc2UsIm5leHRfam9iX3J1 + biI6bnVsbCwic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImhvc3RfY29uZmlnX2tl + eSI6IiIsImFza192YXJpYWJsZXNfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2xp + bWl0X29uX2xhdW5jaCI6ZmFsc2UsImFza190YWdzX29uX2xhdW5jaCI6ZmFs + c2UsImFza19qb2JfdHlwZV9vbl9sYXVuY2giOmZhbHNlLCJhc2tfaW52ZW50 + b3J5X29uX2xhdW5jaCI6ZmFsc2UsImFza19jcmVkZW50aWFsX29uX2xhdW5j + aCI6ZmFsc2UsInN1cnZleV9lbmFibGVkIjpmYWxzZSwiYmVjb21lX2VuYWJs + ZWQiOnRydWUsImFsbG93X3NpbXVsdGFuZW91cyI6ZmFsc2V9LHsiaWQiOjE3 + OCwidHlwZSI6ImpvYl90ZW1wbGF0ZSIsInVybCI6Ii9hcGkvdjEvam9iX3Rl + bXBsYXRlcy8xNzgvIiwicmVsYXRlZCI6eyJjcmVhdGVkX2J5IjoiL2FwaS92 + MS91c2Vycy8xLyIsImxhYmVscyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8x + NzgvbGFiZWxzLyIsImxhc3Rfam9iIjoiL2FwaS92MS9qb2JzLzg0Mi8iLCJu + b3RpZmljYXRpb25fdGVtcGxhdGVzX2Vycm9yIjoiL2FwaS92MS9qb2JfdGVt + cGxhdGVzLzE3OC9ub3RpZmljYXRpb25fdGVtcGxhdGVzX2Vycm9yLyIsIm5v + dGlmaWNhdGlvbl90ZW1wbGF0ZXNfc3VjY2VzcyI6Ii9hcGkvdjEvam9iX3Rl + bXBsYXRlcy8xNzgvbm90aWZpY2F0aW9uX3RlbXBsYXRlc19zdWNjZXNzLyIs + ImpvYnMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTc4L2pvYnMvIiwib2Jq + ZWN0X3JvbGVzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE3OC9vYmplY3Rf + cm9sZXMvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRlc19hbnkiOiIvYXBpL3Yx + L2pvYl90ZW1wbGF0ZXMvMTc4L25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfYW55 + LyIsImFjY2Vzc19saXN0IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE3OC9h + Y2Nlc3NfbGlzdC8iLCJsYXVuY2giOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMv + MTc4L2xhdW5jaC8iLCJzY2hlZHVsZXMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0 + ZXMvMTc4L3NjaGVkdWxlcy8iLCJhY3Rpdml0eV9zdHJlYW0iOiIvYXBpL3Yx + L2pvYl90ZW1wbGF0ZXMvMTc4L2FjdGl2aXR5X3N0cmVhbS8iLCJzdXJ2ZXlf + c3BlYyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xNzgvc3VydmV5X3NwZWMv + In0sInN1bW1hcnlfZmllbGRzIjp7Imxhc3Rfam9iIjp7ImlkIjo4NDIsIm5h + bWUiOiJsdWN5X3ZhbGlkYXRlX2lucHV0cyIsImRlc2NyaXB0aW9uIjoiIiwi + ZmluaXNoZWQiOiIyMDE3LTA1LTA0VDE5OjAyOjU2LjQwOVoiLCJzdGF0dXMi + OiJmYWlsZWQiLCJmYWlsZWQiOnRydWV9LCJsYXN0X3VwZGF0ZSI6eyJpZCI6 + ODQyLCJuYW1lIjoibHVjeV92YWxpZGF0ZV9pbnB1dHMiLCJkZXNjcmlwdGlv + biI6IiIsInN0YXR1cyI6ImZhaWxlZCIsImZhaWxlZCI6dHJ1ZX0sImNyZWF0 + ZWRfYnkiOnsiaWQiOjEsInVzZXJuYW1lIjoiYWRtaW4iLCJmaXJzdF9uYW1l + IjoiIiwibGFzdF9uYW1lIjoiIn0sIm9iamVjdF9yb2xlcyI6eyJhZG1pbl9y + b2xlIjp7ImRlc2NyaXB0aW9uIjoiQ2FuIG1hbmFnZSBhbGwgYXNwZWN0cyBv + ZiB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjU3OSwibmFtZSI6IkFkbWluIn0s + ImV4ZWN1dGVfcm9sZSI6eyJkZXNjcmlwdGlvbiI6Ik1heSBydW4gdGhlIGpv + YiB0ZW1wbGF0ZSIsImlkIjo1ODEsIm5hbWUiOiJFeGVjdXRlIn0sInJlYWRf + cm9sZSI6eyJkZXNjcmlwdGlvbiI6Ik1heSB2aWV3IHNldHRpbmdzIGZvciB0 + aGUgam9iIHRlbXBsYXRlIiwiaWQiOjU4MCwibmFtZSI6IlJlYWQifX0sImxh + YmVscyI6eyJjb3VudCI6MCwicmVzdWx0cyI6W119LCJjYW5fY29weSI6ZmFs + c2UsImNhbl9lZGl0Ijp0cnVlLCJyZWNlbnRfam9icyI6W3sic3RhdHVzIjoi + ZmFpbGVkIiwiZmluaXNoZWQiOiIyMDE3LTA1LTA0VDE5OjAyOjU2LjQwOVoi + LCJpZCI6ODQyfSx7InN0YXR1cyI6ImZhaWxlZCIsImZpbmlzaGVkIjoiMjAx + Ny0wNS0wNFQxOTowMDoxOS40OTdaIiwiaWQiOjg0MH0seyJzdGF0dXMiOiJz + dWNjZXNzZnVsIiwiZmluaXNoZWQiOiIyMDE3LTA1LTA0VDE4OjU1OjQ0LjAw + OFoiLCJpZCI6ODM4fSx7InN0YXR1cyI6ImZhaWxlZCIsImZpbmlzaGVkIjoi + MjAxNy0wNS0wNFQxODo1NDoxOS44NjZaIiwiaWQiOjgzNn0seyJzdGF0dXMi + OiJmYWlsZWQiLCJmaW5pc2hlZCI6IjIwMTctMDUtMDRUMTg6NTE6MDguOTU4 + WiIsImlkIjo4MzR9LHsic3RhdHVzIjoiZmFpbGVkIiwiZmluaXNoZWQiOiIy + MDE3LTA1LTA0VDE0OjUzOjA0LjExMloiLCJpZCI6ODIxfSx7InN0YXR1cyI6 + InN1Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6IjIwMTctMDUtMDRUMTQ6NTI6MTgu + MzAwWiIsImlkIjo4MTl9XX0sImNyZWF0ZWQiOiIyMDE3LTAyLTIxVDE3OjIw + OjU3LjgzM1oiLCJtb2RpZmllZCI6IjIwMTctMDUtMDRUMTk6MDI6MjkuOTU4 + WiIsIm5hbWUiOiJsdWN5X3ZhbGlkYXRlX2lucHV0cyIsImRlc2NyaXB0aW9u + IjoiIiwiam9iX3R5cGUiOiJydW4iLCJpbnZlbnRvcnkiOm51bGwsInByb2pl + Y3QiOm51bGwsInBsYXlib29rIjoiIiwiY3JlZGVudGlhbCI6bnVsbCwiY2xv + dWRfY3JlZGVudGlhbCI6bnVsbCwibmV0d29ya19jcmVkZW50aWFsIjpudWxs + LCJmb3JrcyI6MCwibGltaXQiOiIiLCJ2ZXJib3NpdHkiOjMsImV4dHJhX3Zh + cnMiOiItLS1cbnBhcmFtMTogJ2luc3RhbGwnIiwiam9iX3RhZ3MiOiIiLCJm + b3JjZV9oYW5kbGVycyI6ZmFsc2UsInNraXBfdGFncyI6IiIsInN0YXJ0X2F0 + X3Rhc2siOiIiLCJsYXN0X2pvYl9ydW4iOiIyMDE3LTA1LTA0VDE5OjAyOjU2 + LjQwOTQ3MloiLCJsYXN0X2pvYl9mYWlsZWQiOnRydWUsImhhc19zY2hlZHVs + ZXMiOmZhbHNlLCJuZXh0X2pvYl9ydW4iOm51bGwsInN0YXR1cyI6ImZhaWxl + ZCIsImhvc3RfY29uZmlnX2tleSI6IiIsImFza192YXJpYWJsZXNfb25fbGF1 + bmNoIjpmYWxzZSwiYXNrX2xpbWl0X29uX2xhdW5jaCI6ZmFsc2UsImFza190 + YWdzX29uX2xhdW5jaCI6ZmFsc2UsImFza19qb2JfdHlwZV9vbl9sYXVuY2gi + OmZhbHNlLCJhc2tfaW52ZW50b3J5X29uX2xhdW5jaCI6ZmFsc2UsImFza19j + cmVkZW50aWFsX29uX2xhdW5jaCI6ZmFsc2UsInN1cnZleV9lbmFibGVkIjpm + YWxzZSwiYmVjb21lX2VuYWJsZWQiOnRydWUsImFsbG93X3NpbXVsdGFuZW91 + cyI6ZmFsc2V9LHsiaWQiOjEyNSwidHlwZSI6ImpvYl90ZW1wbGF0ZSIsInVy + bCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xMjUvIiwicmVsYXRlZCI6eyJj + cmVhdGVkX2J5IjoiL2FwaS92MS91c2Vycy8xLyIsImxhYmVscyI6Ii9hcGkv + djEvam9iX3RlbXBsYXRlcy8xMjUvbGFiZWxzLyIsImxhc3Rfam9iIjoiL2Fw + aS92MS9qb2JzLzgxMi8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVzX2Vycm9y + IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzEyNS9ub3RpZmljYXRpb25fdGVt + cGxhdGVzX2Vycm9yLyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfc3VjY2Vz + cyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xMjUvbm90aWZpY2F0aW9uX3Rl + bXBsYXRlc19zdWNjZXNzLyIsImpvYnMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0 + ZXMvMTI1L2pvYnMvIiwib2JqZWN0X3JvbGVzIjoiL2FwaS92MS9qb2JfdGVt + cGxhdGVzLzEyNS9vYmplY3Rfcm9sZXMvIiwibm90aWZpY2F0aW9uX3RlbXBs + YXRlc19hbnkiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTI1L25vdGlmaWNh + dGlvbl90ZW1wbGF0ZXNfYW55LyIsImFjY2Vzc19saXN0IjoiL2FwaS92MS9q + b2JfdGVtcGxhdGVzLzEyNS9hY2Nlc3NfbGlzdC8iLCJsYXVuY2giOiIvYXBp + L3YxL2pvYl90ZW1wbGF0ZXMvMTI1L2xhdW5jaC8iLCJzY2hlZHVsZXMiOiIv + YXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTI1L3NjaGVkdWxlcy8iLCJhY3Rpdml0 + eV9zdHJlYW0iOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTI1L2FjdGl2aXR5 + X3N0cmVhbS8iLCJzdXJ2ZXlfc3BlYyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRl + cy8xMjUvc3VydmV5X3NwZWMvIn0sInN1bW1hcnlfZmllbGRzIjp7Imxhc3Rf + am9iIjp7ImlkIjo4MTIsIm5hbWUiOiJtYWRodV90ZXN0IiwiZGVzY3JpcHRp + b24iOiIiLCJmaW5pc2hlZCI6IjIwMTctMDUtMDJUMTk6MzE6NTEuMDUzWiIs + InN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmYWlsZWQiOmZhbHNlfSwibGFzdF91 + cGRhdGUiOnsiaWQiOjgxMiwibmFtZSI6Im1hZGh1X3Rlc3QiLCJkZXNjcmlw + dGlvbiI6IiIsInN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmYWlsZWQiOmZhbHNl + fSwiY3JlYXRlZF9ieSI6eyJpZCI6MSwidXNlcm5hbWUiOiJhZG1pbiIsImZp + cnN0X25hbWUiOiIiLCJsYXN0X25hbWUiOiIifSwib2JqZWN0X3JvbGVzIjp7 + ImFkbWluX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJDYW4gbWFuYWdlIGFsbCBh + c3BlY3RzIG9mIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6MzgzLCJuYW1lIjoi + QWRtaW4ifSwiZXhlY3V0ZV9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiTWF5IHJ1 + biB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjM4NSwibmFtZSI6IkV4ZWN1dGUi + fSwicmVhZF9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiTWF5IHZpZXcgc2V0dGlu + Z3MgZm9yIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6Mzg0LCJuYW1lIjoiUmVh + ZCJ9fSwibGFiZWxzIjp7ImNvdW50IjowLCJyZXN1bHRzIjpbXX0sImNhbl9j + b3B5IjpmYWxzZSwiY2FuX2VkaXQiOnRydWUsInJlY2VudF9qb2JzIjpbeyJz + dGF0dXMiOiJzdWNjZXNzZnVsIiwiZmluaXNoZWQiOiIyMDE3LTA1LTAyVDE5 + OjMxOjUxLjA1M1oiLCJpZCI6ODEyfSx7InN0YXR1cyI6InN1Y2Nlc3NmdWwi + LCJmaW5pc2hlZCI6IjIwMTctMDUtMDJUMTk6MDQ6NDMuODg5WiIsImlkIjo4 + MTF9LHsic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZpbmlzaGVkIjoiMjAxNy0w + NS0wMlQxMzo1MDoxNy43OTVaIiwiaWQiOjgwOX0seyJzdGF0dXMiOiJzdWNj + ZXNzZnVsIiwiZmluaXNoZWQiOiIyMDE3LTA1LTAxVDIwOjUyOjMwLjQ4OVoi + LCJpZCI6ODAxfV19LCJjcmVhdGVkIjoiMjAxNy0wMi0xNVQxODowODozNy41 + NDJaIiwibW9kaWZpZWQiOiIyMDE3LTA1LTAyVDE5OjMxOjA1LjMzOVoiLCJu + YW1lIjoibWFkaHVfdGVzdCIsImRlc2NyaXB0aW9uIjoiIiwiam9iX3R5cGUi + OiJydW4iLCJpbnZlbnRvcnkiOm51bGwsInByb2plY3QiOm51bGwsInBsYXli + b29rIjoiIiwiY3JlZGVudGlhbCI6bnVsbCwiY2xvdWRfY3JlZGVudGlhbCI6 + bnVsbCwibmV0d29ya19jcmVkZW50aWFsIjpudWxsLCJmb3JrcyI6MCwibGlt + aXQiOiJsb2NhbGhvc3QiLCJ2ZXJib3NpdHkiOjAsImV4dHJhX3ZhcnMiOiIt + LS1cbiBwa2c6IGh0dHBkXG4gc2xlZXA6IDQwXG4gaG9zdDogbG9jYWxob3N0 + XG4gdXNlcjogcm9vdCIsImpvYl90YWdzIjoiIiwiZm9yY2VfaGFuZGxlcnMi + OmZhbHNlLCJza2lwX3RhZ3MiOiIiLCJzdGFydF9hdF90YXNrIjoiIiwibGFz + dF9qb2JfcnVuIjoiMjAxNy0wNS0wMlQxOTozMTo1MS4wNTMxMDdaIiwibGFz + dF9qb2JfZmFpbGVkIjpmYWxzZSwiaGFzX3NjaGVkdWxlcyI6ZmFsc2UsIm5l + eHRfam9iX3J1biI6bnVsbCwic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImhvc3Rf + Y29uZmlnX2tleSI6IiIsImFza192YXJpYWJsZXNfb25fbGF1bmNoIjpmYWxz + ZSwiYXNrX2xpbWl0X29uX2xhdW5jaCI6ZmFsc2UsImFza190YWdzX29uX2xh + dW5jaCI6ZmFsc2UsImFza19qb2JfdHlwZV9vbl9sYXVuY2giOmZhbHNlLCJh + c2tfaW52ZW50b3J5X29uX2xhdW5jaCI6dHJ1ZSwiYXNrX2NyZWRlbnRpYWxf + b25fbGF1bmNoIjp0cnVlLCJzdXJ2ZXlfZW5hYmxlZCI6ZmFsc2UsImJlY29t + ZV9lbmFibGVkIjpmYWxzZSwiYWxsb3dfc2ltdWx0YW5lb3VzIjpmYWxzZX0s + eyJpZCI6Mzc4LCJ0eXBlIjoiam9iX3RlbXBsYXRlIiwidXJsIjoiL2FwaS92 + MS9qb2JfdGVtcGxhdGVzLzM3OC8iLCJyZWxhdGVkIjp7ImNyZWF0ZWRfYnki + OiIvYXBpL3YxL3VzZXJzLzEvIiwibGFiZWxzIjoiL2FwaS92MS9qb2JfdGVt + cGxhdGVzLzM3OC9sYWJlbHMvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRlc19l + cnJvciI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8zNzgvbm90aWZpY2F0aW9u + X3RlbXBsYXRlc19lcnJvci8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVzX3N1 + Y2Nlc3MiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzc4L25vdGlmaWNhdGlv + bl90ZW1wbGF0ZXNfc3VjY2Vzcy8iLCJqb2JzIjoiL2FwaS92MS9qb2JfdGVt + cGxhdGVzLzM3OC9qb2JzLyIsIm9iamVjdF9yb2xlcyI6Ii9hcGkvdjEvam9i + X3RlbXBsYXRlcy8zNzgvb2JqZWN0X3JvbGVzLyIsIm5vdGlmaWNhdGlvbl90 + ZW1wbGF0ZXNfYW55IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzM3OC9ub3Rp + ZmljYXRpb25fdGVtcGxhdGVzX2FueS8iLCJhY2Nlc3NfbGlzdCI6Ii9hcGkv + djEvam9iX3RlbXBsYXRlcy8zNzgvYWNjZXNzX2xpc3QvIiwibGF1bmNoIjoi + L2FwaS92MS9qb2JfdGVtcGxhdGVzLzM3OC9sYXVuY2gvIiwic2NoZWR1bGVz + IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzM3OC9zY2hlZHVsZXMvIiwiYWN0 + aXZpdHlfc3RyZWFtIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzM3OC9hY3Rp + dml0eV9zdHJlYW0vIiwic3VydmV5X3NwZWMiOiIvYXBpL3YxL2pvYl90ZW1w + bGF0ZXMvMzc4L3N1cnZleV9zcGVjLyJ9LCJzdW1tYXJ5X2ZpZWxkcyI6eyJj + cmVhdGVkX2J5Ijp7ImlkIjoxLCJ1c2VybmFtZSI6ImFkbWluIiwiZmlyc3Rf + bmFtZSI6IiIsImxhc3RfbmFtZSI6IiJ9LCJvYmplY3Rfcm9sZXMiOnsiYWRt + aW5fcm9sZSI6eyJkZXNjcmlwdGlvbiI6IkNhbiBtYW5hZ2UgYWxsIGFzcGVj + dHMgb2YgdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjoxMjQzLCJuYW1lIjoiQWRt + aW4ifSwiZXhlY3V0ZV9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiTWF5IHJ1biB0 + aGUgam9iIHRlbXBsYXRlIiwiaWQiOjEyNDUsIm5hbWUiOiJFeGVjdXRlIn0s + InJlYWRfcm9sZSI6eyJkZXNjcmlwdGlvbiI6Ik1heSB2aWV3IHNldHRpbmdz + IGZvciB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjEyNDQsIm5hbWUiOiJSZWFk + In19LCJsYWJlbHMiOnsiY291bnQiOjAsInJlc3VsdHMiOltdfSwiY2FuX2Nv + cHkiOmZhbHNlLCJjYW5fZWRpdCI6dHJ1ZSwicmVjZW50X2pvYnMiOltdfSwi + Y3JlYXRlZCI6IjIwMTctMDMtMjBUMjA6MzU6MDkuNjQyWiIsIm1vZGlmaWVk + IjoiMjAxNy0wMy0yM1QxOToyMDozMC41MjVaIiwibmFtZSI6Im1pcV9hYWFf + cGxheWJvb2tfcHJlX3Jlc291cmNlX3JldGlyZW1lbnQiLCJkZXNjcmlwdGlv + biI6ImFhYV9wbGF5Ym9va19wcmVfcmVzb3VyY2UiLCJqb2JfdHlwZSI6InJ1 + biIsImludmVudG9yeSI6bnVsbCwicHJvamVjdCI6bnVsbCwicGxheWJvb2si + OiIiLCJjcmVkZW50aWFsIjpudWxsLCJjbG91ZF9jcmVkZW50aWFsIjpudWxs + LCJuZXR3b3JrX2NyZWRlbnRpYWwiOm51bGwsImZvcmtzIjowLCJsaW1pdCI6 + IiIsInZlcmJvc2l0eSI6MCwiZXh0cmFfdmFycyI6IntcIm51bWJlclwiOlwi + MVwifSIsImpvYl90YWdzIjoiIiwiZm9yY2VfaGFuZGxlcnMiOmZhbHNlLCJz + a2lwX3RhZ3MiOiIiLCJzdGFydF9hdF90YXNrIjoiIiwibGFzdF9qb2JfcnVu + IjoiMjAxNy0wMy0yM1QyMToyOTo1My40OTU4MDJaIiwibGFzdF9qb2JfZmFp + bGVkIjpmYWxzZSwiaGFzX3NjaGVkdWxlcyI6ZmFsc2UsIm5leHRfam9iX3J1 + biI6bnVsbCwic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImhvc3RfY29uZmlnX2tl + eSI6IiIsImFza192YXJpYWJsZXNfb25fbGF1bmNoIjp0cnVlLCJhc2tfbGlt + aXRfb25fbGF1bmNoIjp0cnVlLCJhc2tfdGFnc19vbl9sYXVuY2giOmZhbHNl + LCJhc2tfam9iX3R5cGVfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2ludmVudG9y + eV9vbl9sYXVuY2giOnRydWUsImFza19jcmVkZW50aWFsX29uX2xhdW5jaCI6 + dHJ1ZSwic3VydmV5X2VuYWJsZWQiOmZhbHNlLCJiZWNvbWVfZW5hYmxlZCI6 + ZmFsc2UsImFsbG93X3NpbXVsdGFuZW91cyI6ZmFsc2V9LHsiaWQiOjUwNSwi + dHlwZSI6ImpvYl90ZW1wbGF0ZSIsInVybCI6Ii9hcGkvdjEvam9iX3RlbXBs + YXRlcy81MDUvIiwicmVsYXRlZCI6eyJjcmVhdGVkX2J5IjoiL2FwaS92MS91 + c2Vycy8xLyIsIm1vZGlmaWVkX2J5IjoiL2FwaS92MS91c2Vycy8xLyIsImxh + YmVscyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy81MDUvbGFiZWxzLyIsImlu + dmVudG9yeSI6Ii9hcGkvdjEvaW52ZW50b3JpZXMvMzgvIiwibm90aWZpY2F0 + aW9uX3RlbXBsYXRlc19lcnJvciI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy81 + MDUvbm90aWZpY2F0aW9uX3RlbXBsYXRlc19lcnJvci8iLCJub3RpZmljYXRp + b25fdGVtcGxhdGVzX3N1Y2Nlc3MiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMv + NTA1L25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfc3VjY2Vzcy8iLCJqb2JzIjoi + L2FwaS92MS9qb2JfdGVtcGxhdGVzLzUwNS9qb2JzLyIsIm9iamVjdF9yb2xl + cyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy81MDUvb2JqZWN0X3JvbGVzLyIs + Im5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfYW55IjoiL2FwaS92MS9qb2JfdGVt + cGxhdGVzLzUwNS9ub3RpZmljYXRpb25fdGVtcGxhdGVzX2FueS8iLCJhY2Nl + c3NfbGlzdCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy81MDUvYWNjZXNzX2xp + c3QvIiwibGF1bmNoIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzUwNS9sYXVu + Y2gvIiwic2NoZWR1bGVzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzUwNS9z + Y2hlZHVsZXMvIiwiYWN0aXZpdHlfc3RyZWFtIjoiL2FwaS92MS9qb2JfdGVt + cGxhdGVzLzUwNS9hY3Rpdml0eV9zdHJlYW0vIiwic3VydmV5X3NwZWMiOiIv + YXBpL3YxL2pvYl90ZW1wbGF0ZXMvNTA1L3N1cnZleV9zcGVjLyJ9LCJzdW1t + YXJ5X2ZpZWxkcyI6eyJpbnZlbnRvcnkiOnsiaWQiOjM4LCJuYW1lIjoiTWFu + YWdlSVEgRGVmYXVsdCBJbnZlbnRvcnkiLCJkZXNjcmlwdGlvbiI6IiIsImhh + c19hY3RpdmVfZmFpbHVyZXMiOmZhbHNlLCJ0b3RhbF9ob3N0cyI6MSwiaG9z + dHNfd2l0aF9hY3RpdmVfZmFpbHVyZXMiOjAsInRvdGFsX2dyb3VwcyI6MCwi + Z3JvdXBzX3dpdGhfYWN0aXZlX2ZhaWx1cmVzIjowLCJoYXNfaW52ZW50b3J5 + X3NvdXJjZXMiOmZhbHNlLCJ0b3RhbF9pbnZlbnRvcnlfc291cmNlcyI6MCwi + aW52ZW50b3J5X3NvdXJjZXNfd2l0aF9mYWlsdXJlcyI6MH0sImNyZWF0ZWRf + YnkiOnsiaWQiOjEsInVzZXJuYW1lIjoiYWRtaW4iLCJmaXJzdF9uYW1lIjoi + IiwibGFzdF9uYW1lIjoiIn0sIm1vZGlmaWVkX2J5Ijp7ImlkIjoxLCJ1c2Vy + bmFtZSI6ImFkbWluIiwiZmlyc3RfbmFtZSI6IiIsImxhc3RfbmFtZSI6IiJ9 + LCJvYmplY3Rfcm9sZXMiOnsiYWRtaW5fcm9sZSI6eyJkZXNjcmlwdGlvbiI6 + IkNhbiBtYW5hZ2UgYWxsIGFzcGVjdHMgb2YgdGhlIGpvYiB0ZW1wbGF0ZSIs + ImlkIjoyMDgxLCJuYW1lIjoiQWRtaW4ifSwiZXhlY3V0ZV9yb2xlIjp7ImRl + c2NyaXB0aW9uIjoiTWF5IHJ1biB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjIw + ODMsIm5hbWUiOiJFeGVjdXRlIn0sInJlYWRfcm9sZSI6eyJkZXNjcmlwdGlv + biI6Ik1heSB2aWV3IHNldHRpbmdzIGZvciB0aGUgam9iIHRlbXBsYXRlIiwi + aWQiOjIwODIsIm5hbWUiOiJSZWFkIn19LCJsYWJlbHMiOnsiY291bnQiOjAs + InJlc3VsdHMiOltdfSwiY2FuX2NvcHkiOmZhbHNlLCJjYW5fZWRpdCI6dHJ1 + ZSwicmVjZW50X2pvYnMiOltdfSwiY3JlYXRlZCI6IjIwMTctMDYtMTVUMTM6 + Mzc6NTguMzI3WiIsIm1vZGlmaWVkIjoiMjAxNy0wNi0xNVQxMzozNzo1OC4z + MjdaIiwibmFtZSI6Im1pcV9hbnNpYmxlX3Rlc3RfcHJvdmlzaW9uIiwiZGVz + Y3JpcHRpb24iOiJhbnNpYmxlX3Rlc3QiLCJqb2JfdHlwZSI6InJ1biIsImlu + dmVudG9yeSI6MzgsInByb2plY3QiOm51bGwsInBsYXlib29rIjoiIiwiY3Jl + ZGVudGlhbCI6bnVsbCwiY2xvdWRfY3JlZGVudGlhbCI6bnVsbCwibmV0d29y + a19jcmVkZW50aWFsIjpudWxsLCJmb3JrcyI6MCwibGltaXQiOiIiLCJ2ZXJi + b3NpdHkiOjAsImV4dHJhX3ZhcnMiOiJ7fSIsImpvYl90YWdzIjoiIiwiZm9y + Y2VfaGFuZGxlcnMiOmZhbHNlLCJza2lwX3RhZ3MiOiIiLCJzdGFydF9hdF90 + YXNrIjoiIiwibGFzdF9qb2JfcnVuIjpudWxsLCJsYXN0X2pvYl9mYWlsZWQi + OmZhbHNlLCJoYXNfc2NoZWR1bGVzIjpmYWxzZSwibmV4dF9qb2JfcnVuIjpu + dWxsLCJzdGF0dXMiOiJuZXZlciB1cGRhdGVkIiwiaG9zdF9jb25maWdfa2V5 + IjoiIiwiYXNrX3ZhcmlhYmxlc19vbl9sYXVuY2giOnRydWUsImFza19saW1p + dF9vbl9sYXVuY2giOnRydWUsImFza190YWdzX29uX2xhdW5jaCI6ZmFsc2Us + ImFza19qb2JfdHlwZV9vbl9sYXVuY2giOmZhbHNlLCJhc2tfaW52ZW50b3J5 + X29uX2xhdW5jaCI6dHJ1ZSwiYXNrX2NyZWRlbnRpYWxfb25fbGF1bmNoIjp0 + cnVlLCJzdXJ2ZXlfZW5hYmxlZCI6ZmFsc2UsImJlY29tZV9lbmFibGVkIjpm + YWxzZSwiYWxsb3dfc2ltdWx0YW5lb3VzIjpmYWxzZX0seyJpZCI6NDgwLCJ0 + eXBlIjoiam9iX3RlbXBsYXRlIiwidXJsIjoiL2FwaS92MS9qb2JfdGVtcGxh + dGVzLzQ4MC8iLCJyZWxhdGVkIjp7ImNyZWF0ZWRfYnkiOiIvYXBpL3YxL3Vz + ZXJzLzEvIiwibGFiZWxzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzQ4MC9s + YWJlbHMvIiwiaW52ZW50b3J5IjoiL2FwaS92MS9pbnZlbnRvcmllcy8zOC8i + LCJsYXN0X2pvYiI6Ii9hcGkvdjEvam9icy83OTkvIiwibm90aWZpY2F0aW9u + X3RlbXBsYXRlc19lcnJvciI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy80ODAv + bm90aWZpY2F0aW9uX3RlbXBsYXRlc19lcnJvci8iLCJub3RpZmljYXRpb25f + dGVtcGxhdGVzX3N1Y2Nlc3MiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvNDgw + L25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfc3VjY2Vzcy8iLCJqb2JzIjoiL2Fw + aS92MS9qb2JfdGVtcGxhdGVzLzQ4MC9qb2JzLyIsIm9iamVjdF9yb2xlcyI6 + Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy80ODAvb2JqZWN0X3JvbGVzLyIsIm5v + dGlmaWNhdGlvbl90ZW1wbGF0ZXNfYW55IjoiL2FwaS92MS9qb2JfdGVtcGxh + dGVzLzQ4MC9ub3RpZmljYXRpb25fdGVtcGxhdGVzX2FueS8iLCJhY2Nlc3Nf + bGlzdCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy80ODAvYWNjZXNzX2xpc3Qv + IiwibGF1bmNoIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzQ4MC9sYXVuY2gv + Iiwic2NoZWR1bGVzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzQ4MC9zY2hl + ZHVsZXMvIiwiYWN0aXZpdHlfc3RyZWFtIjoiL2FwaS92MS9qb2JfdGVtcGxh + dGVzLzQ4MC9hY3Rpdml0eV9zdHJlYW0vIiwic3VydmV5X3NwZWMiOiIvYXBp + L3YxL2pvYl90ZW1wbGF0ZXMvNDgwL3N1cnZleV9zcGVjLyJ9LCJzdW1tYXJ5 + X2ZpZWxkcyI6eyJsYXN0X2pvYiI6eyJpZCI6Nzk5LCJuYW1lIjoibWlxX2Fw + cmlsMjhfbm9fcGxheWJvb2tfeWVzX3Jlc291cmNlMl9wcm92aXNpb24iLCJk + ZXNjcmlwdGlvbiI6ImFwcmlsMjhfbm9fcGxheWJvb2tfeWVzX3Jlc291cmNl + MiIsImZpbmlzaGVkIjoiMjAxNy0wNS0wMVQxOTowNToxOC4zMzlaIiwic3Rh + dHVzIjoic3VjY2Vzc2Z1bCIsImZhaWxlZCI6ZmFsc2V9LCJsYXN0X3VwZGF0 + ZSI6eyJpZCI6Nzk5LCJuYW1lIjoibWlxX2FwcmlsMjhfbm9fcGxheWJvb2tf + eWVzX3Jlc291cmNlMl9wcm92aXNpb24iLCJkZXNjcmlwdGlvbiI6ImFwcmls + Mjhfbm9fcGxheWJvb2tfeWVzX3Jlc291cmNlMiIsInN0YXR1cyI6InN1Y2Nl + c3NmdWwiLCJmYWlsZWQiOmZhbHNlfSwiaW52ZW50b3J5Ijp7ImlkIjozOCwi + bmFtZSI6Ik1hbmFnZUlRIERlZmF1bHQgSW52ZW50b3J5IiwiZGVzY3JpcHRp + b24iOiIiLCJoYXNfYWN0aXZlX2ZhaWx1cmVzIjpmYWxzZSwidG90YWxfaG9z + dHMiOjEsImhvc3RzX3dpdGhfYWN0aXZlX2ZhaWx1cmVzIjowLCJ0b3RhbF9n + cm91cHMiOjAsImdyb3Vwc193aXRoX2FjdGl2ZV9mYWlsdXJlcyI6MCwiaGFz + X2ludmVudG9yeV9zb3VyY2VzIjpmYWxzZSwidG90YWxfaW52ZW50b3J5X3Nv + dXJjZXMiOjAsImludmVudG9yeV9zb3VyY2VzX3dpdGhfZmFpbHVyZXMiOjB9 + LCJjcmVhdGVkX2J5Ijp7ImlkIjoxLCJ1c2VybmFtZSI6ImFkbWluIiwiZmly + c3RfbmFtZSI6IiIsImxhc3RfbmFtZSI6IiJ9LCJvYmplY3Rfcm9sZXMiOnsi + YWRtaW5fcm9sZSI6eyJkZXNjcmlwdGlvbiI6IkNhbiBtYW5hZ2UgYWxsIGFz + cGVjdHMgb2YgdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjoxOTM3LCJuYW1lIjoi + QWRtaW4ifSwiZXhlY3V0ZV9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiTWF5IHJ1 + biB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjE5MzksIm5hbWUiOiJFeGVjdXRl + In0sInJlYWRfcm9sZSI6eyJkZXNjcmlwdGlvbiI6Ik1heSB2aWV3IHNldHRp + bmdzIGZvciB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjE5MzgsIm5hbWUiOiJS + ZWFkIn19LCJsYWJlbHMiOnsiY291bnQiOjAsInJlc3VsdHMiOltdfSwiY2Fu + X2NvcHkiOmZhbHNlLCJjYW5fZWRpdCI6dHJ1ZSwicmVjZW50X2pvYnMiOlt7 + InN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6IjIwMTctMDUtMDFU + MTk6MDU6MTguMzM5WiIsImlkIjo3OTl9LHsic3RhdHVzIjoic3VjY2Vzc2Z1 + bCIsImZpbmlzaGVkIjoiMjAxNy0wNS0wMVQxODo0MzozNi4wNjRaIiwiaWQi + Ojc5N30seyJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiZmluaXNoZWQiOiIyMDE3 + LTA1LTAxVDE3OjQwOjA3LjQyOVoiLCJpZCI6Nzk0fSx7InN0YXR1cyI6InN1 + Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6IjIwMTctMDUtMDFUMTc6Mjk6NDAuODM1 + WiIsImlkIjo3OTJ9LHsic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZpbmlzaGVk + IjoiMjAxNy0wNS0wMVQxNzowODo1OS42NDFaIiwiaWQiOjc5MH0seyJzdGF0 + dXMiOiJzdWNjZXNzZnVsIiwiZmluaXNoZWQiOiIyMDE3LTA1LTAxVDE2OjU2 + OjIxLjY4NFoiLCJpZCI6Nzg4fSx7InN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJm + aW5pc2hlZCI6IjIwMTctMDUtMDFUMTU6NDg6MTUuMTc0WiIsImlkIjo3ODZ9 + LHsic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZpbmlzaGVkIjoiMjAxNy0wNC0y + OFQxODo0OTo1OC4zNjFaIiwiaWQiOjc4M30seyJzdGF0dXMiOiJzdWNjZXNz + ZnVsIiwiZmluaXNoZWQiOiIyMDE3LTA0LTI4VDE4OjE3OjI1LjA5M1oiLCJp + ZCI6NzgxfV19LCJjcmVhdGVkIjoiMjAxNy0wNC0yOFQxODoxMDozNy40NzFa + IiwibW9kaWZpZWQiOiIyMDE3LTA1LTAxVDE5OjA0OjUyLjQ1OVoiLCJuYW1l + IjoibWlxX2FwcmlsMjhfbm9fcGxheWJvb2tfeWVzX3Jlc291cmNlMl9wcm92 + aXNpb24iLCJkZXNjcmlwdGlvbiI6ImFwcmlsMjhfbm9fcGxheWJvb2tfeWVz + X3Jlc291cmNlMiIsImpvYl90eXBlIjoicnVuIiwiaW52ZW50b3J5IjozOCwi + cHJvamVjdCI6bnVsbCwicGxheWJvb2siOiIiLCJjcmVkZW50aWFsIjpudWxs + LCJjbG91ZF9jcmVkZW50aWFsIjpudWxsLCJuZXR3b3JrX2NyZWRlbnRpYWwi + Om51bGwsImZvcmtzIjowLCJsaW1pdCI6IiIsInZlcmJvc2l0eSI6MCwiZXh0 + cmFfdmFycyI6IntcIm51bWJlclwiOlwiMVwifSIsImpvYl90YWdzIjoiIiwi + Zm9yY2VfaGFuZGxlcnMiOmZhbHNlLCJza2lwX3RhZ3MiOiIiLCJzdGFydF9h + dF90YXNrIjoiIiwibGFzdF9qb2JfcnVuIjoiMjAxNy0wNS0wMVQxOTowNTox + OC4zMzk5MjZaIiwibGFzdF9qb2JfZmFpbGVkIjpmYWxzZSwiaGFzX3NjaGVk + dWxlcyI6ZmFsc2UsIm5leHRfam9iX3J1biI6bnVsbCwic3RhdHVzIjoic3Vj + Y2Vzc2Z1bCIsImhvc3RfY29uZmlnX2tleSI6IiIsImFza192YXJpYWJsZXNf + b25fbGF1bmNoIjp0cnVlLCJhc2tfbGltaXRfb25fbGF1bmNoIjp0cnVlLCJh + c2tfdGFnc19vbl9sYXVuY2giOmZhbHNlLCJhc2tfam9iX3R5cGVfb25fbGF1 + bmNoIjpmYWxzZSwiYXNrX2ludmVudG9yeV9vbl9sYXVuY2giOnRydWUsImFz + a19jcmVkZW50aWFsX29uX2xhdW5jaCI6dHJ1ZSwic3VydmV5X2VuYWJsZWQi + OmZhbHNlLCJiZWNvbWVfZW5hYmxlZCI6ZmFsc2UsImFsbG93X3NpbXVsdGFu + ZW91cyI6ZmFsc2V9LHsiaWQiOjQ3OSwidHlwZSI6ImpvYl90ZW1wbGF0ZSIs + InVybCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy80NzkvIiwicmVsYXRlZCI6 + eyJjcmVhdGVkX2J5IjoiL2FwaS92MS91c2Vycy8xLyIsImxhYmVscyI6Ii9h + cGkvdjEvam9iX3RlbXBsYXRlcy80NzkvbGFiZWxzLyIsImludmVudG9yeSI6 + Ii9hcGkvdjEvaW52ZW50b3JpZXMvMzgvIiwibGFzdF9qb2IiOiIvYXBpL3Yx + L2pvYnMvNzc5LyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfZXJyb3IiOiIv + YXBpL3YxL2pvYl90ZW1wbGF0ZXMvNDc5L25vdGlmaWNhdGlvbl90ZW1wbGF0 + ZXNfZXJyb3IvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRlc19zdWNjZXNzIjoi + L2FwaS92MS9qb2JfdGVtcGxhdGVzLzQ3OS9ub3RpZmljYXRpb25fdGVtcGxh + dGVzX3N1Y2Nlc3MvIiwiam9icyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy80 + Nzkvam9icy8iLCJvYmplY3Rfcm9sZXMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0 + ZXMvNDc5L29iamVjdF9yb2xlcy8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVz + X2FueSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy80Nzkvbm90aWZpY2F0aW9u + X3RlbXBsYXRlc19hbnkvIiwiYWNjZXNzX2xpc3QiOiIvYXBpL3YxL2pvYl90 + ZW1wbGF0ZXMvNDc5L2FjY2Vzc19saXN0LyIsImxhdW5jaCI6Ii9hcGkvdjEv + am9iX3RlbXBsYXRlcy80NzkvbGF1bmNoLyIsInNjaGVkdWxlcyI6Ii9hcGkv + djEvam9iX3RlbXBsYXRlcy80Nzkvc2NoZWR1bGVzLyIsImFjdGl2aXR5X3N0 + cmVhbSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy80NzkvYWN0aXZpdHlfc3Ry + ZWFtLyIsInN1cnZleV9zcGVjIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzQ3 + OS9zdXJ2ZXlfc3BlYy8ifSwic3VtbWFyeV9maWVsZHMiOnsibGFzdF9qb2Ii + OnsiaWQiOjc3OSwibmFtZSI6Im1pcV9hcHJpbDI4X25vX3BsYXlib29rX3ll + c19yZXNvdXJjZV9wcm92aXNpb24iLCJkZXNjcmlwdGlvbiI6ImFwcmlsMjhf + bm9fcGxheWJvb2tfeWVzX3Jlc291cmNlIiwiZmluaXNoZWQiOiIyMDE3LTA0 + LTI4VDE4OjA3OjEwLjIyM1oiLCJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiZmFp + bGVkIjpmYWxzZX0sImxhc3RfdXBkYXRlIjp7ImlkIjo3NzksIm5hbWUiOiJt + aXFfYXByaWwyOF9ub19wbGF5Ym9va195ZXNfcmVzb3VyY2VfcHJvdmlzaW9u + IiwiZGVzY3JpcHRpb24iOiJhcHJpbDI4X25vX3BsYXlib29rX3llc19yZXNv + dXJjZSIsInN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmYWlsZWQiOmZhbHNlfSwi + aW52ZW50b3J5Ijp7ImlkIjozOCwibmFtZSI6Ik1hbmFnZUlRIERlZmF1bHQg + SW52ZW50b3J5IiwiZGVzY3JpcHRpb24iOiIiLCJoYXNfYWN0aXZlX2ZhaWx1 + cmVzIjpmYWxzZSwidG90YWxfaG9zdHMiOjEsImhvc3RzX3dpdGhfYWN0aXZl + X2ZhaWx1cmVzIjowLCJ0b3RhbF9ncm91cHMiOjAsImdyb3Vwc193aXRoX2Fj + dGl2ZV9mYWlsdXJlcyI6MCwiaGFzX2ludmVudG9yeV9zb3VyY2VzIjpmYWxz + ZSwidG90YWxfaW52ZW50b3J5X3NvdXJjZXMiOjAsImludmVudG9yeV9zb3Vy + Y2VzX3dpdGhfZmFpbHVyZXMiOjB9LCJjcmVhdGVkX2J5Ijp7ImlkIjoxLCJ1 + c2VybmFtZSI6ImFkbWluIiwiZmlyc3RfbmFtZSI6IiIsImxhc3RfbmFtZSI6 + IiJ9LCJvYmplY3Rfcm9sZXMiOnsiYWRtaW5fcm9sZSI6eyJkZXNjcmlwdGlv + biI6IkNhbiBtYW5hZ2UgYWxsIGFzcGVjdHMgb2YgdGhlIGpvYiB0ZW1wbGF0 + ZSIsImlkIjoxOTE5LCJuYW1lIjoiQWRtaW4ifSwiZXhlY3V0ZV9yb2xlIjp7 + ImRlc2NyaXB0aW9uIjoiTWF5IHJ1biB0aGUgam9iIHRlbXBsYXRlIiwiaWQi + OjE5MjEsIm5hbWUiOiJFeGVjdXRlIn0sInJlYWRfcm9sZSI6eyJkZXNjcmlw + dGlvbiI6Ik1heSB2aWV3IHNldHRpbmdzIGZvciB0aGUgam9iIHRlbXBsYXRl + IiwiaWQiOjE5MjAsIm5hbWUiOiJSZWFkIn19LCJsYWJlbHMiOnsiY291bnQi + OjAsInJlc3VsdHMiOltdfSwiY2FuX2NvcHkiOmZhbHNlLCJjYW5fZWRpdCI6 + dHJ1ZSwicmVjZW50X2pvYnMiOlt7InN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJm + aW5pc2hlZCI6IjIwMTctMDQtMjhUMTg6MDc6MTAuMjIzWiIsImlkIjo3Nzl9 + LHsic3RhdHVzIjoiZmFpbGVkIiwiZmluaXNoZWQiOiIyMDE3LTA0LTI4VDE4 + OjAzOjQ2LjMxMVoiLCJpZCI6Nzc3fSx7InN0YXR1cyI6ImZhaWxlZCIsImZp + bmlzaGVkIjoiMjAxNy0wNC0yOFQxNzo1NDoxNS41NDRaIiwiaWQiOjc3NX1d + fSwiY3JlYXRlZCI6IjIwMTctMDQtMjhUMTc6NDk6MDIuMjI3WiIsIm1vZGlm + aWVkIjoiMjAxNy0wNC0yOFQxODowNjo0My4zMDZaIiwibmFtZSI6Im1pcV9h + cHJpbDI4X25vX3BsYXlib29rX3llc19yZXNvdXJjZV9wcm92aXNpb24iLCJk + ZXNjcmlwdGlvbiI6ImFwcmlsMjhfbm9fcGxheWJvb2tfeWVzX3Jlc291cmNl + Iiwiam9iX3R5cGUiOiJydW4iLCJpbnZlbnRvcnkiOjM4LCJwcm9qZWN0Ijpu + dWxsLCJwbGF5Ym9vayI6IiIsImNyZWRlbnRpYWwiOm51bGwsImNsb3VkX2Ny + ZWRlbnRpYWwiOm51bGwsIm5ldHdvcmtfY3JlZGVudGlhbCI6bnVsbCwiZm9y + a3MiOjAsImxpbWl0IjoiIiwidmVyYm9zaXR5IjowLCJleHRyYV92YXJzIjoi + e1wibnVtYmVyXCI6XCIxXCJ9Iiwiam9iX3RhZ3MiOiIiLCJmb3JjZV9oYW5k + bGVycyI6ZmFsc2UsInNraXBfdGFncyI6IiIsInN0YXJ0X2F0X3Rhc2siOiIi + LCJsYXN0X2pvYl9ydW4iOiIyMDE3LTA0LTI4VDE4OjA3OjEwLjIyMzY5MFoi + LCJsYXN0X2pvYl9mYWlsZWQiOmZhbHNlLCJoYXNfc2NoZWR1bGVzIjpmYWxz + ZSwibmV4dF9qb2JfcnVuIjpudWxsLCJzdGF0dXMiOiJzdWNjZXNzZnVsIiwi + aG9zdF9jb25maWdfa2V5IjoiIiwiYXNrX3ZhcmlhYmxlc19vbl9sYXVuY2gi + OnRydWUsImFza19saW1pdF9vbl9sYXVuY2giOnRydWUsImFza190YWdzX29u + X2xhdW5jaCI6ZmFsc2UsImFza19qb2JfdHlwZV9vbl9sYXVuY2giOmZhbHNl + LCJhc2tfaW52ZW50b3J5X29uX2xhdW5jaCI6dHJ1ZSwiYXNrX2NyZWRlbnRp + YWxfb25fbGF1bmNoIjp0cnVlLCJzdXJ2ZXlfZW5hYmxlZCI6ZmFsc2UsImJl + Y29tZV9lbmFibGVkIjpmYWxzZSwiYWxsb3dfc2ltdWx0YW5lb3VzIjpmYWxz + ZX0seyJpZCI6MzMzLCJ0eXBlIjoiam9iX3RlbXBsYXRlIiwidXJsIjoiL2Fw + aS92MS9qb2JfdGVtcGxhdGVzLzMzMy8iLCJyZWxhdGVkIjp7ImNyZWF0ZWRf + YnkiOiIvYXBpL3YxL3VzZXJzLzEvIiwibGFiZWxzIjoiL2FwaS92MS9qb2Jf + dGVtcGxhdGVzLzMzMy9sYWJlbHMvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRl + c19lcnJvciI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8zMzMvbm90aWZpY2F0 + aW9uX3RlbXBsYXRlc19lcnJvci8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVz + X3N1Y2Nlc3MiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzMzL25vdGlmaWNh + dGlvbl90ZW1wbGF0ZXNfc3VjY2Vzcy8iLCJqb2JzIjoiL2FwaS92MS9qb2Jf + dGVtcGxhdGVzLzMzMy9qb2JzLyIsIm9iamVjdF9yb2xlcyI6Ii9hcGkvdjEv + am9iX3RlbXBsYXRlcy8zMzMvb2JqZWN0X3JvbGVzLyIsIm5vdGlmaWNhdGlv + bl90ZW1wbGF0ZXNfYW55IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzMzMy9u + b3RpZmljYXRpb25fdGVtcGxhdGVzX2FueS8iLCJhY2Nlc3NfbGlzdCI6Ii9h + cGkvdjEvam9iX3RlbXBsYXRlcy8zMzMvYWNjZXNzX2xpc3QvIiwibGF1bmNo + IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzMzMy9sYXVuY2gvIiwic2NoZWR1 + bGVzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzMzMy9zY2hlZHVsZXMvIiwi + YWN0aXZpdHlfc3RyZWFtIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzMzMy9h + Y3Rpdml0eV9zdHJlYW0vIiwic3VydmV5X3NwZWMiOiIvYXBpL3YxL2pvYl90 + ZW1wbGF0ZXMvMzMzL3N1cnZleV9zcGVjLyJ9LCJzdW1tYXJ5X2ZpZWxkcyI6 + eyJjcmVhdGVkX2J5Ijp7ImlkIjoxLCJ1c2VybmFtZSI6ImFkbWluIiwiZmly + c3RfbmFtZSI6IiIsImxhc3RfbmFtZSI6IiJ9LCJvYmplY3Rfcm9sZXMiOnsi + YWRtaW5fcm9sZSI6eyJkZXNjcmlwdGlvbiI6IkNhbiBtYW5hZ2UgYWxsIGFz + cGVjdHMgb2YgdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjoxMDUwLCJuYW1lIjoi + QWRtaW4ifSwiZXhlY3V0ZV9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiTWF5IHJ1 + biB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjEwNTIsIm5hbWUiOiJFeGVjdXRl + In0sInJlYWRfcm9sZSI6eyJkZXNjcmlwdGlvbiI6Ik1heSB2aWV3IHNldHRp + bmdzIGZvciB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjEwNTEsIm5hbWUiOiJS + ZWFkIn19LCJsYWJlbHMiOnsiY291bnQiOjAsInJlc3VsdHMiOltdfSwiY2Fu + X2NvcHkiOmZhbHNlLCJjYW5fZWRpdCI6dHJ1ZSwicmVjZW50X2pvYnMiOltd + fSwiY3JlYXRlZCI6IjIwMTctMDMtMTVUMjI6NTU6MTkuNDc2WiIsIm1vZGlm + aWVkIjoiMjAxNy0wMy0xNlQxNzoxOToyOC41OTZaIiwibmFtZSI6Im1pcV9h + cF90aW5hX3Rlc3QxX3Byb3Zpc2lvbiIsImRlc2NyaXB0aW9uIjoiMTAuOC45 + OS4yMDcgYW5kIDEwLjguOTkuMjQ4Iiwiam9iX3R5cGUiOiJydW4iLCJpbnZl + bnRvcnkiOm51bGwsInByb2plY3QiOm51bGwsInBsYXlib29rIjoiIiwiY3Jl + ZGVudGlhbCI6bnVsbCwiY2xvdWRfY3JlZGVudGlhbCI6bnVsbCwibmV0d29y + a19jcmVkZW50aWFsIjpudWxsLCJmb3JrcyI6MCwibGltaXQiOiIiLCJ2ZXJi + b3NpdHkiOjAsImV4dHJhX3ZhcnMiOiJ7fSIsImpvYl90YWdzIjoiIiwiZm9y + Y2VfaGFuZGxlcnMiOmZhbHNlLCJza2lwX3RhZ3MiOiIiLCJzdGFydF9hdF90 + YXNrIjoiIiwibGFzdF9qb2JfcnVuIjoiMjAxNy0wMy0xNlQxNzoxOTo1OC45 + NDQ3ODBaIiwibGFzdF9qb2JfZmFpbGVkIjp0cnVlLCJoYXNfc2NoZWR1bGVz + IjpmYWxzZSwibmV4dF9qb2JfcnVuIjpudWxsLCJzdGF0dXMiOiJmYWlsZWQi + LCJob3N0X2NvbmZpZ19rZXkiOiIiLCJhc2tfdmFyaWFibGVzX29uX2xhdW5j + aCI6dHJ1ZSwiYXNrX2xpbWl0X29uX2xhdW5jaCI6dHJ1ZSwiYXNrX3RhZ3Nf + b25fbGF1bmNoIjpmYWxzZSwiYXNrX2pvYl90eXBlX29uX2xhdW5jaCI6ZmFs + c2UsImFza19pbnZlbnRvcnlfb25fbGF1bmNoIjp0cnVlLCJhc2tfY3JlZGVu + dGlhbF9vbl9sYXVuY2giOnRydWUsInN1cnZleV9lbmFibGVkIjpmYWxzZSwi + YmVjb21lX2VuYWJsZWQiOmZhbHNlLCJhbGxvd19zaW11bHRhbmVvdXMiOmZh + bHNlfSx7ImlkIjozNjgsInR5cGUiOiJqb2JfdGVtcGxhdGUiLCJ1cmwiOiIv + YXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzY4LyIsInJlbGF0ZWQiOnsiY3JlYXRl + ZF9ieSI6Ii9hcGkvdjEvdXNlcnMvMS8iLCJsYWJlbHMiOiIvYXBpL3YxL2pv + Yl90ZW1wbGF0ZXMvMzY4L2xhYmVscy8iLCJub3RpZmljYXRpb25fdGVtcGxh + dGVzX2Vycm9yIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzM2OC9ub3RpZmlj + YXRpb25fdGVtcGxhdGVzX2Vycm9yLyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0 + ZXNfc3VjY2VzcyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8zNjgvbm90aWZp + Y2F0aW9uX3RlbXBsYXRlc19zdWNjZXNzLyIsImpvYnMiOiIvYXBpL3YxL2pv + Yl90ZW1wbGF0ZXMvMzY4L2pvYnMvIiwib2JqZWN0X3JvbGVzIjoiL2FwaS92 + MS9qb2JfdGVtcGxhdGVzLzM2OC9vYmplY3Rfcm9sZXMvIiwibm90aWZpY2F0 + aW9uX3RlbXBsYXRlc19hbnkiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzY4 + L25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfYW55LyIsImFjY2Vzc19saXN0Ijoi + L2FwaS92MS9qb2JfdGVtcGxhdGVzLzM2OC9hY2Nlc3NfbGlzdC8iLCJsYXVu + Y2giOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzY4L2xhdW5jaC8iLCJzY2hl + ZHVsZXMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzY4L3NjaGVkdWxlcy8i + LCJhY3Rpdml0eV9zdHJlYW0iOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzY4 + L2FjdGl2aXR5X3N0cmVhbS8iLCJzdXJ2ZXlfc3BlYyI6Ii9hcGkvdjEvam9i + X3RlbXBsYXRlcy8zNjgvc3VydmV5X3NwZWMvIn0sInN1bW1hcnlfZmllbGRz + Ijp7ImNyZWF0ZWRfYnkiOnsiaWQiOjEsInVzZXJuYW1lIjoiYWRtaW4iLCJm + aXJzdF9uYW1lIjoiIiwibGFzdF9uYW1lIjoiIn0sIm9iamVjdF9yb2xlcyI6 + eyJhZG1pbl9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiQ2FuIG1hbmFnZSBhbGwg + YXNwZWN0cyBvZiB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjExOTMsIm5hbWUi + OiJBZG1pbiJ9LCJleGVjdXRlX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJNYXkg + cnVuIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6MTE5NSwibmFtZSI6IkV4ZWN1 + dGUifSwicmVhZF9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiTWF5IHZpZXcgc2V0 + dGluZ3MgZm9yIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6MTE5NCwibmFtZSI6 + IlJlYWQifX0sImxhYmVscyI6eyJjb3VudCI6MCwicmVzdWx0cyI6W119LCJj + YW5fY29weSI6ZmFsc2UsImNhbl9lZGl0Ijp0cnVlLCJyZWNlbnRfam9icyI6 + W119LCJjcmVhdGVkIjoiMjAxNy0wMy0xN1QxODozNToxMy42NDdaIiwibW9k + aWZpZWQiOiIyMDE3LTAzLTE3VDIxOjQ5OjA1LjcyNFoiLCJuYW1lIjoibWlx + X2FwX3RpbmFfdGVzdF9ucGJfbnJlc19wcm92aXNpb24iLCJkZXNjcmlwdGlv + biI6ImFwX3RpbmFfdGVzdF9ucGJfbnJlcyIsImpvYl90eXBlIjoicnVuIiwi + aW52ZW50b3J5IjpudWxsLCJwcm9qZWN0IjpudWxsLCJwbGF5Ym9vayI6IiIs + ImNyZWRlbnRpYWwiOm51bGwsImNsb3VkX2NyZWRlbnRpYWwiOm51bGwsIm5l + dHdvcmtfY3JlZGVudGlhbCI6bnVsbCwiZm9ya3MiOjAsImxpbWl0IjoiIiwi + dmVyYm9zaXR5IjowLCJleHRyYV92YXJzIjoie1wibnVtYmVyXCI6XCIxXCJ9 + Iiwiam9iX3RhZ3MiOiIiLCJmb3JjZV9oYW5kbGVycyI6ZmFsc2UsInNraXBf + dGFncyI6IiIsInN0YXJ0X2F0X3Rhc2siOiIiLCJsYXN0X2pvYl9ydW4iOiIy + MDE3LTAzLTE3VDIxOjQ5OjMwLjg1Mzk3MFoiLCJsYXN0X2pvYl9mYWlsZWQi + OmZhbHNlLCJoYXNfc2NoZWR1bGVzIjpmYWxzZSwibmV4dF9qb2JfcnVuIjpu + dWxsLCJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiaG9zdF9jb25maWdfa2V5Ijoi + IiwiYXNrX3ZhcmlhYmxlc19vbl9sYXVuY2giOnRydWUsImFza19saW1pdF9v + bl9sYXVuY2giOnRydWUsImFza190YWdzX29uX2xhdW5jaCI6ZmFsc2UsImFz + a19qb2JfdHlwZV9vbl9sYXVuY2giOmZhbHNlLCJhc2tfaW52ZW50b3J5X29u + X2xhdW5jaCI6dHJ1ZSwiYXNrX2NyZWRlbnRpYWxfb25fbGF1bmNoIjp0cnVl + LCJzdXJ2ZXlfZW5hYmxlZCI6ZmFsc2UsImJlY29tZV9lbmFibGVkIjpmYWxz + ZSwiYWxsb3dfc2ltdWx0YW5lb3VzIjpmYWxzZX1dfQ== + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:23 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/80/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:24 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:24 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/80/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:24 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:24 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/81/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:25 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: '{"description":"","spec":[{"index":1,"required":true,"min":null,"default":"","max":null,"question_description":"Survey","choices":"","variable":"test","question_name":"Survey","type":"text"},{"index":0,"question_description":"","min":0,"default":"","max":1024,"required":true,"choices":"","new_question":true,"variable":"why","question_name":"Why?","type":"text"}],"name":""}' + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:24 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/81/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:25 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: '{"description":"","spec":[{"index":1,"required":true,"min":null,"default":"","max":null,"question_description":"Survey","choices":"","variable":"test","question_name":"Survey","type":"text"},{"index":0,"question_description":"","min":0,"default":"","max":1024,"required":true,"choices":"","new_question":true,"variable":"why","question_name":"Why?","type":"text"}],"name":""}' + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:24 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/30/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:25 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:25 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/30/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:25 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:25 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/189/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:26 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:25 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/189/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:26 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:25 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/190/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:26 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.036s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:25 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/190/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:26 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:26 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/38/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:26 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:26 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/38/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:27 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:26 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/188/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:27 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:26 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/188/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:27 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:26 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/604/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:27 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:27 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/604/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:27 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:27 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/605/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:28 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: '{"description":"Description of the simple survey","spec":[{"question_description":"What + is your favorite color?","default":"blue","question_name":"example question","required":false,"variable":"favorite_color","type":"text"}],"name":"Simple + Survey"}' + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:27 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/605/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:28 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: '{"description":"Description of the simple survey","spec":[{"question_description":"What + is your favorite color?","default":"blue","question_name":"example question","required":false,"variable":"favorite_color","type":"text"}],"name":"Simple + Survey"}' + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:27 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/28/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:28 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.036s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:27 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/28/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:28 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:28 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/185/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:29 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:28 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/185/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:29 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:28 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/184/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:29 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:28 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/184/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:29 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:28 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/283/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:29 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:29 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/283/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:29 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:29 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/212/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:30 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:29 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/212/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:30 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:29 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/176/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:30 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:29 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/176/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:30 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:30 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/291/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:30 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:30 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/291/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:31 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:30 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/156/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:31 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:30 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/156/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:31 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.035s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:30 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/178/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:31 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.037s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:31 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/178/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:31 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:31 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/125/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:32 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:31 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/125/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:32 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:31 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/378/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:32 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:31 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/378/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:32 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:32 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/505/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:32 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:32 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/505/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:33 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:32 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/480/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:33 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:32 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/480/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:33 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.046s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:34 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/479/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:34 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:34 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/479/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:35 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:34 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/333/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:35 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:34 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/333/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:35 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:34 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/368/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:35 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:35 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/368/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:36 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:35 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/?page=2 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:36 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, HEAD, OPTIONS + X-Api-Time: + - 0.490s + Content-Length: + - '60495' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: '{"count":122,"next":"/api/v1/job_templates/?page=3","previous":"/api/v1/job_templates/?page=1","results":[{"id":371,"type":"job_template","url":"/api/v1/job_templates/371/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/371/labels/","notification_templates_error":"/api/v1/job_templates/371/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/371/notification_templates_success/","jobs":"/api/v1/job_templates/371/jobs/","object_roles":"/api/v1/job_templates/371/object_roles/","notification_templates_any":"/api/v1/job_templates/371/notification_templates_any/","access_list":"/api/v1/job_templates/371/access_list/","launch":"/api/v1/job_templates/371/launch/","schedules":"/api/v1/job_templates/371/schedules/","activity_stream":"/api/v1/job_templates/371/activity_stream/","survey_spec":"/api/v1/job_templates/371/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1217,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1219,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1218,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-17T22:25:29.562Z","modified":"2017-03-17T22:25:29.562Z","name":"miq_ap_tina_test_pb_nres2_provision","description":"ap_tina_test_pb_nres2","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"number\":\"1\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":372,"type":"job_template","url":"/api/v1/job_templates/372/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/372/labels/","notification_templates_error":"/api/v1/job_templates/372/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/372/notification_templates_success/","jobs":"/api/v1/job_templates/372/jobs/","object_roles":"/api/v1/job_templates/372/object_roles/","notification_templates_any":"/api/v1/job_templates/372/notification_templates_any/","access_list":"/api/v1/job_templates/372/access_list/","launch":"/api/v1/job_templates/372/launch/","schedules":"/api/v1/job_templates/372/schedules/","activity_stream":"/api/v1/job_templates/372/activity_stream/","survey_spec":"/api/v1/job_templates/372/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1220,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1222,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1221,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-17T22:26:42.126Z","modified":"2017-03-17T22:26:42.126Z","name":"miq_ap_tina_test_pb_nres2_retirement","description":"ap_tina_test_pb_nres2","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"number\":\"0\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":369,"type":"job_template","url":"/api/v1/job_templates/369/","related":{"created_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/369/labels/","notification_templates_error":"/api/v1/job_templates/369/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/369/notification_templates_success/","jobs":"/api/v1/job_templates/369/jobs/","object_roles":"/api/v1/job_templates/369/object_roles/","notification_templates_any":"/api/v1/job_templates/369/notification_templates_any/","access_list":"/api/v1/job_templates/369/access_list/","launch":"/api/v1/job_templates/369/launch/","schedules":"/api/v1/job_templates/369/schedules/","activity_stream":"/api/v1/job_templates/369/activity_stream/","survey_spec":"/api/v1/job_templates/369/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1201,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1203,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1202,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-17T22:09:52.298Z","modified":"2017-03-17T22:09:52.298Z","name":"miq_ap_tina_test_pb_nres_provision","description":"10.8.99.207 + and 10.8.99.248","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":"2017-03-17T22:19:24.196095Z","last_job_failed":true,"has_schedules":false,"next_job_run":null,"status":"failed","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":370,"type":"job_template","url":"/api/v1/job_templates/370/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/370/labels/","notification_templates_error":"/api/v1/job_templates/370/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/370/notification_templates_success/","jobs":"/api/v1/job_templates/370/jobs/","object_roles":"/api/v1/job_templates/370/object_roles/","notification_templates_any":"/api/v1/job_templates/370/notification_templates_any/","access_list":"/api/v1/job_templates/370/access_list/","launch":"/api/v1/job_templates/370/launch/","schedules":"/api/v1/job_templates/370/schedules/","activity_stream":"/api/v1/job_templates/370/activity_stream/","survey_spec":"/api/v1/job_templates/370/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1204,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1206,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1205,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-17T22:10:59.775Z","modified":"2017-03-17T22:10:59.775Z","name":"miq_ap_tina_test_pb_nres_retirement","description":"10.8.99.207 + and 10.8.99.248","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":474,"type":"job_template","url":"/api/v1/job_templates/474/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/474/labels/","notification_templates_error":"/api/v1/job_templates/474/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/474/notification_templates_success/","jobs":"/api/v1/job_templates/474/jobs/","object_roles":"/api/v1/job_templates/474/object_roles/","notification_templates_any":"/api/v1/job_templates/474/notification_templates_any/","access_list":"/api/v1/job_templates/474/access_list/","launch":"/api/v1/job_templates/474/launch/","schedules":"/api/v1/job_templates/474/schedules/","activity_stream":"/api/v1/job_templates/474/activity_stream/","survey_spec":"/api/v1/job_templates/474/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1897,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1899,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1898,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-04-17T17:24:25.044Z","modified":"2017-04-17T17:24:25.044Z","name":"miq_bd-test_provision","description":"bd-test","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":504,"type":"job_template","url":"/api/v1/job_templates/504/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/504/labels/","notification_templates_error":"/api/v1/job_templates/504/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/504/notification_templates_success/","jobs":"/api/v1/job_templates/504/jobs/","object_roles":"/api/v1/job_templates/504/object_roles/","notification_templates_any":"/api/v1/job_templates/504/notification_templates_any/","access_list":"/api/v1/job_templates/504/access_list/","launch":"/api/v1/job_templates/504/launch/","schedules":"/api/v1/job_templates/504/schedules/","activity_stream":"/api/v1/job_templates/504/activity_stream/","survey_spec":"/api/v1/job_templates/504/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":2066,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":2068,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":2067,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-05-18T21:27:41.401Z","modified":"2017-05-18T21:27:41.401Z","name":"miq_bill_demo_playbook_provision","description":"demo + playbook","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":481,"type":"job_template","url":"/api/v1/job_templates/481/","related":{"created_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/481/labels/","inventory":"/api/v1/inventories/38/","last_job":"/api/v1/jobs/891/","notification_templates_error":"/api/v1/job_templates/481/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/481/notification_templates_success/","jobs":"/api/v1/job_templates/481/jobs/","object_roles":"/api/v1/job_templates/481/object_roles/","notification_templates_any":"/api/v1/job_templates/481/notification_templates_any/","access_list":"/api/v1/job_templates/481/access_list/","launch":"/api/v1/job_templates/481/launch/","schedules":"/api/v1/job_templates/481/schedules/","activity_stream":"/api/v1/job_templates/481/activity_stream/","survey_spec":"/api/v1/job_templates/481/survey_spec/"},"summary_fields":{"last_job":{"id":891,"name":"miq_bill-may-1_provision","description":"test","finished":"2017-05-15T15:02:06.781Z","status":"successful","failed":false},"last_update":{"id":891,"name":"miq_bill-may-1_provision","description":"test","status":"successful","failed":false},"inventory":{"id":38,"name":"ManageIQ + Default Inventory","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1950,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1952,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1951,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[{"status":"successful","finished":"2017-05-15T15:02:06.781Z","id":891},{"status":"successful","finished":"2017-05-15T01:40:13.217Z","id":890}]},"created":"2017-05-01T13:42:28.832Z","modified":"2017-05-15T15:02:03.775Z","name":"miq_bill-may-1_provision","description":"test","job_type":"run","inventory":38,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":"2017-05-15T15:02:06.781796Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":482,"type":"job_template","url":"/api/v1/job_templates/482/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/482/labels/","inventory":"/api/v1/inventories/38/","notification_templates_error":"/api/v1/job_templates/482/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/482/notification_templates_success/","jobs":"/api/v1/job_templates/482/jobs/","object_roles":"/api/v1/job_templates/482/object_roles/","notification_templates_any":"/api/v1/job_templates/482/notification_templates_any/","access_list":"/api/v1/job_templates/482/access_list/","launch":"/api/v1/job_templates/482/launch/","schedules":"/api/v1/job_templates/482/schedules/","activity_stream":"/api/v1/job_templates/482/activity_stream/","survey_spec":"/api/v1/job_templates/482/survey_spec/"},"summary_fields":{"inventory":{"id":38,"name":"ManageIQ + Default Inventory","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1958,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1960,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1959,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-05-01T16:10:20.532Z","modified":"2017-05-01T16:10:20.532Z","name":"miq_bill-may-1_retirement","description":"test","job_type":"run","inventory":38,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":true,"allow_simultaneous":false},{"id":492,"type":"job_template","url":"/api/v1/job_templates/492/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/492/labels/","inventory":"/api/v1/inventories/38/","notification_templates_error":"/api/v1/job_templates/492/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/492/notification_templates_success/","jobs":"/api/v1/job_templates/492/jobs/","object_roles":"/api/v1/job_templates/492/object_roles/","notification_templates_any":"/api/v1/job_templates/492/notification_templates_any/","access_list":"/api/v1/job_templates/492/access_list/","launch":"/api/v1/job_templates/492/launch/","schedules":"/api/v1/job_templates/492/schedules/","activity_stream":"/api/v1/job_templates/492/activity_stream/","survey_spec":"/api/v1/job_templates/492/survey_spec/"},"summary_fields":{"inventory":{"id":38,"name":"ManageIQ + Default Inventory","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":2022,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":2024,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":2023,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-05-04T20:23:13.215Z","modified":"2017-05-04T20:30:27.222Z","name":"miq_bill-may-4_provision","description":"test","job_type":"run","inventory":38,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"var1\":\"va1\",\"var2\":\"2\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":true,"allow_simultaneous":false},{"id":493,"type":"job_template","url":"/api/v1/job_templates/493/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/493/labels/","inventory":"/api/v1/inventories/38/","project":"/api/v1/projects/490/","credential":"/api/v1/credentials/52/","notification_templates_error":"/api/v1/job_templates/493/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/493/notification_templates_success/","jobs":"/api/v1/job_templates/493/jobs/","object_roles":"/api/v1/job_templates/493/object_roles/","notification_templates_any":"/api/v1/job_templates/493/notification_templates_any/","access_list":"/api/v1/job_templates/493/access_list/","launch":"/api/v1/job_templates/493/launch/","schedules":"/api/v1/job_templates/493/schedules/","activity_stream":"/api/v1/job_templates/493/activity_stream/","survey_spec":"/api/v1/job_templates/493/survey_spec/"},"summary_fields":{"inventory":{"id":38,"name":"ManageIQ + Default Inventory","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"credential":{"id":52,"name":"lucy_machine","description":"","kind":"ssh","cloud":false},"project":{"id":490,"name":"LGNew","description":"LGNew","status":"never + updated"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":2025,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":2027,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":2026,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[]},"created":"2017-05-04T20:30:27.467Z","modified":"2017-05-04T20:30:27.467Z","name":"miq_bill-may-4_retirement","description":"test","job_type":"run","inventory":38,"project":490,"playbook":"lamp_haproxy/provision.yml","credential":52,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":290,"type":"job_template","url":"/api/v1/job_templates/290/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/290/labels/","notification_templates_error":"/api/v1/job_templates/290/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/290/notification_templates_success/","jobs":"/api/v1/job_templates/290/jobs/","object_roles":"/api/v1/job_templates/290/object_roles/","notification_templates_any":"/api/v1/job_templates/290/notification_templates_any/","access_list":"/api/v1/job_templates/290/access_list/","launch":"/api/v1/job_templates/290/launch/","schedules":"/api/v1/job_templates/290/schedules/","activity_stream":"/api/v1/job_templates/290/activity_stream/","survey_spec":"/api/v1/job_templates/290/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":921,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":923,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":922,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-07T16:05:48.464Z","modified":"2017-03-07T16:05:48.464Z","name":"miq_demo1_provision","description":"demo1","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":443,"type":"job_template","url":"/api/v1/job_templates/443/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/443/labels/","project":"/api/v1/projects/36/","notification_templates_error":"/api/v1/job_templates/443/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/443/notification_templates_success/","jobs":"/api/v1/job_templates/443/jobs/","object_roles":"/api/v1/job_templates/443/object_roles/","notification_templates_any":"/api/v1/job_templates/443/notification_templates_any/","access_list":"/api/v1/job_templates/443/access_list/","launch":"/api/v1/job_templates/443/launch/","schedules":"/api/v1/job_templates/443/schedules/","activity_stream":"/api/v1/job_templates/443/activity_stream/","survey_spec":"/api/v1/job_templates/443/survey_spec/"},"summary_fields":{"project":{"id":36,"name":"jwong-org2","description":"MIQ + UI update","status":"successful"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1717,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1719,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1718,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[]},"created":"2017-03-28T17:06:22.722Z","modified":"2017-03-28T17:06:22.722Z","name":"miq_demo57_provision","description":"Demo + Item for Sprint 57","job_type":"run","inventory":null,"project":36,"playbook":"locale/en.yml","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"var1\":\"val1\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":444,"type":"job_template","url":"/api/v1/job_templates/444/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/444/labels/","project":"/api/v1/projects/36/","notification_templates_error":"/api/v1/job_templates/444/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/444/notification_templates_success/","jobs":"/api/v1/job_templates/444/jobs/","object_roles":"/api/v1/job_templates/444/object_roles/","notification_templates_any":"/api/v1/job_templates/444/notification_templates_any/","access_list":"/api/v1/job_templates/444/access_list/","launch":"/api/v1/job_templates/444/launch/","schedules":"/api/v1/job_templates/444/schedules/","activity_stream":"/api/v1/job_templates/444/activity_stream/","survey_spec":"/api/v1/job_templates/444/survey_spec/"},"summary_fields":{"project":{"id":36,"name":"jwong-org2","description":"MIQ + UI update","status":"successful"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1720,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1722,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1721,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[]},"created":"2017-03-28T17:09:24.613Z","modified":"2017-03-28T17:09:24.613Z","name":"miq_demo57_retirement","description":"Demo + Item for Sprint 57","job_type":"run","inventory":null,"project":36,"playbook":"product/alerts/rss/test_vms.yml","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"var1\":\"val1\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":503,"type":"job_template","url":"/api/v1/job_templates/503/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/503/labels/","notification_templates_error":"/api/v1/job_templates/503/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/503/notification_templates_success/","jobs":"/api/v1/job_templates/503/jobs/","object_roles":"/api/v1/job_templates/503/object_roles/","notification_templates_any":"/api/v1/job_templates/503/notification_templates_any/","access_list":"/api/v1/job_templates/503/access_list/","launch":"/api/v1/job_templates/503/launch/","schedules":"/api/v1/job_templates/503/schedules/","activity_stream":"/api/v1/job_templates/503/activity_stream/","survey_spec":"/api/v1/job_templates/503/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":2063,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":2065,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":2064,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-05-18T21:13:23.807Z","modified":"2017-05-18T21:13:23.807Z","name":"miq_demo_playbook_provision","description":"demo + playbook","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":441,"type":"job_template","url":"/api/v1/job_templates/441/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/441/labels/","project":"/api/v1/projects/36/","notification_templates_error":"/api/v1/job_templates/441/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/441/notification_templates_success/","jobs":"/api/v1/job_templates/441/jobs/","object_roles":"/api/v1/job_templates/441/object_roles/","notification_templates_any":"/api/v1/job_templates/441/notification_templates_any/","access_list":"/api/v1/job_templates/441/access_list/","launch":"/api/v1/job_templates/441/launch/","schedules":"/api/v1/job_templates/441/schedules/","activity_stream":"/api/v1/job_templates/441/activity_stream/","survey_spec":"/api/v1/job_templates/441/survey_spec/"},"summary_fields":{"project":{"id":36,"name":"jwong-org2","description":"MIQ + UI update","status":"successful"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1708,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1710,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1709,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[]},"created":"2017-03-28T16:47:50.094Z","modified":"2017-03-28T16:47:50.094Z","name":"miq_demo_provision","description":"Demo + Item","job_type":"run","inventory":null,"project":36,"playbook":"product/charts/miq_reports/vim_perf_daily.yaml","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"var1\":\"value1\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":442,"type":"job_template","url":"/api/v1/job_templates/442/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/442/labels/","project":"/api/v1/projects/36/","notification_templates_error":"/api/v1/job_templates/442/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/442/notification_templates_success/","jobs":"/api/v1/job_templates/442/jobs/","object_roles":"/api/v1/job_templates/442/object_roles/","notification_templates_any":"/api/v1/job_templates/442/notification_templates_any/","access_list":"/api/v1/job_templates/442/access_list/","launch":"/api/v1/job_templates/442/launch/","schedules":"/api/v1/job_templates/442/schedules/","activity_stream":"/api/v1/job_templates/442/activity_stream/","survey_spec":"/api/v1/job_templates/442/survey_spec/"},"summary_fields":{"project":{"id":36,"name":"jwong-org2","description":"MIQ + UI update","status":"successful"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1711,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1713,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1712,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[]},"created":"2017-03-28T16:49:31.339Z","modified":"2017-03-28T16:49:31.339Z","name":"miq_demo_retirement","description":"Demo + Item","job_type":"run","inventory":null,"project":36,"playbook":"product/charts/miq_reports/vim_perf_daily.yaml","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"var1\":\"value1\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":610,"type":"job_template","url":"/api/v1/job_templates/610/","related":{"created_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/610/labels/","inventory":"/api/v1/inventories/116/","project":"/api/v1/projects/428/","credential":"/api/v1/credentials/187/","last_job":"/api/v1/jobs/1017/","notification_templates_error":"/api/v1/job_templates/610/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/610/notification_templates_success/","jobs":"/api/v1/job_templates/610/jobs/","object_roles":"/api/v1/job_templates/610/object_roles/","notification_templates_any":"/api/v1/job_templates/610/notification_templates_any/","access_list":"/api/v1/job_templates/610/access_list/","launch":"/api/v1/job_templates/610/launch/","schedules":"/api/v1/job_templates/610/schedules/","activity_stream":"/api/v1/job_templates/610/activity_stream/","survey_spec":"/api/v1/job_templates/610/survey_spec/"},"summary_fields":{"last_job":{"id":1017,"name":"miq_Embedded_Ansible1_provision","description":"Embedded_Ansible1","finished":"2017-08-03T20:47:25.670Z","status":"successful","failed":false},"last_update":{"id":1017,"name":"miq_Embedded_Ansible1_provision","description":"Embedded_Ansible1","status":"successful","failed":false},"inventory":{"id":116,"name":"billy","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"credential":{"id":187,"name":"billy","description":"","kind":"ssh","cloud":false},"project":{"id":428,"name":"gm_test_repo_1","description":"GM + forked repo of Madhu''s stuff","status":"successful"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":3087,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":3089,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":3088,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[{"status":"successful","finished":"2017-08-03T20:47:25.670Z","id":1017},{"status":"successful","finished":"2017-08-03T19:13:23.444Z","id":1015},{"status":"successful","finished":"2017-08-02T19:34:01.715Z","id":1013},{"status":"successful","finished":"2017-08-02T19:27:45.782Z","id":1011},{"status":"successful","finished":"2017-08-02T19:21:10.771Z","id":1009},{"status":"successful","finished":"2017-08-02T19:14:43.978Z","id":1007},{"status":"successful","finished":"2017-08-02T18:59:16.009Z","id":1005},{"status":"successful","finished":"2017-08-02T18:51:01.897Z","id":1003},{"status":"successful","finished":"2017-08-02T18:36:46.282Z","id":1001},{"status":"successful","finished":"2017-08-02T18:20:42.148Z","id":999}]},"created":"2017-08-01T19:02:38.756Z","modified":"2017-08-03T20:45:22.583Z","name":"miq_Embedded_Ansible1_provision","description":"Embedded_Ansible1","job_type":"run","inventory":116,"project":428,"playbook":"pkg_info.yaml","credential":187,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"hosts\":\"localhost\",\"pkg\":\"httpd\",\"sleep\":\"30\",\"user\":\"root\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":"2017-08-03T20:47:25.670404Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":611,"type":"job_template","url":"/api/v1/job_templates/611/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/611/labels/","inventory":"/api/v1/inventories/116/","project":"/api/v1/projects/428/","credential":"/api/v1/credentials/187/","notification_templates_error":"/api/v1/job_templates/611/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/611/notification_templates_success/","jobs":"/api/v1/job_templates/611/jobs/","object_roles":"/api/v1/job_templates/611/object_roles/","notification_templates_any":"/api/v1/job_templates/611/notification_templates_any/","access_list":"/api/v1/job_templates/611/access_list/","launch":"/api/v1/job_templates/611/launch/","schedules":"/api/v1/job_templates/611/schedules/","activity_stream":"/api/v1/job_templates/611/activity_stream/","survey_spec":"/api/v1/job_templates/611/survey_spec/"},"summary_fields":{"inventory":{"id":116,"name":"billy","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"credential":{"id":187,"name":"billy","description":"","kind":"ssh","cloud":false},"project":{"id":428,"name":"gm_test_repo_1","description":"GM + forked repo of Madhu''s stuff","status":"successful"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":3090,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":3092,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":3091,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[]},"created":"2017-08-01T19:16:28.241Z","modified":"2017-08-03T20:42:52.817Z","name":"miq_Embedded_Ansible1_retirement","description":"Embedded_Ansible1","job_type":"run","inventory":116,"project":428,"playbook":"pkg_info.yaml","credential":187,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"hosts\":\"localhost\",\"pkg\":\"httpd\",\"sleep\":\"30\",\"user\":\"root\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":334,"type":"job_template","url":"/api/v1/job_templates/334/","related":{"created_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/334/labels/","last_job":"/api/v1/jobs/962/","notification_templates_error":"/api/v1/job_templates/334/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/334/notification_templates_success/","jobs":"/api/v1/job_templates/334/jobs/","object_roles":"/api/v1/job_templates/334/object_roles/","notification_templates_any":"/api/v1/job_templates/334/notification_templates_any/","access_list":"/api/v1/job_templates/334/access_list/","launch":"/api/v1/job_templates/334/launch/","schedules":"/api/v1/job_templates/334/schedules/","activity_stream":"/api/v1/job_templates/334/activity_stream/","survey_spec":"/api/v1/job_templates/334/survey_spec/"},"summary_fields":{"last_job":{"id":962,"name":"miq_hk-1_provision","description":"hk-1","finished":"2017-07-18T19:33:01.524Z","status":"failed","failed":true},"last_update":{"id":962,"name":"miq_hk-1_provision","description":"hk-1","status":"failed","failed":true},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1058,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1060,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1059,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[{"status":"failed","finished":"2017-07-18T19:33:01.524Z","id":962}]},"created":"2017-03-15T23:22:58.670Z","modified":"2017-07-18T19:32:49.120Z","name":"miq_hk-1_provision","description":"hk-1","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"a\":null,\"aa\":null}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":"2017-07-18T19:33:01.524075Z","last_job_failed":true,"has_schedules":false,"next_job_run":null,"status":"failed","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":167,"type":"job_template","url":"/api/v1/job_templates/167/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/167/labels/","inventory":"/api/v1/inventories/6/","credential":"/api/v1/credentials/8/","notification_templates_error":"/api/v1/job_templates/167/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/167/notification_templates_success/","jobs":"/api/v1/job_templates/167/jobs/","object_roles":"/api/v1/job_templates/167/object_roles/","notification_templates_any":"/api/v1/job_templates/167/notification_templates_any/","access_list":"/api/v1/job_templates/167/access_list/","launch":"/api/v1/job_templates/167/launch/","schedules":"/api/v1/job_templates/167/schedules/","activity_stream":"/api/v1/job_templates/167/activity_stream/","survey_spec":"/api/v1/job_templates/167/survey_spec/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":2,"groups_with_active_failures":1,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"credential":{"id":8,"name":"bd-test-changed","description":"","kind":"ssh","cloud":false},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":516,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":518,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":517,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-02-17T20:26:09.993Z","modified":"2017-02-17T20:26:09.993Z","name":"miq_hk2_provision","description":"hk2","job_type":"run","inventory":6,"project":null,"playbook":"","credential":8,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":403,"type":"job_template","url":"/api/v1/job_templates/403/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/403/labels/","notification_templates_error":"/api/v1/job_templates/403/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/403/notification_templates_success/","jobs":"/api/v1/job_templates/403/jobs/","object_roles":"/api/v1/job_templates/403/object_roles/","notification_templates_any":"/api/v1/job_templates/403/notification_templates_any/","access_list":"/api/v1/job_templates/403/access_list/","launch":"/api/v1/job_templates/403/launch/","schedules":"/api/v1/job_templates/403/schedules/","activity_stream":"/api/v1/job_templates/403/activity_stream/","survey_spec":"/api/v1/job_templates/403/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1356,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1358,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1357,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-22T15:54:17.601Z","modified":"2017-03-22T16:17:03.441Z","name":"miq_hk2-test1_provision","description":"hk2-test1","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":402,"type":"job_template","url":"/api/v1/job_templates/402/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/402/labels/","notification_templates_error":"/api/v1/job_templates/402/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/402/notification_templates_success/","jobs":"/api/v1/job_templates/402/jobs/","object_roles":"/api/v1/job_templates/402/object_roles/","notification_templates_any":"/api/v1/job_templates/402/notification_templates_any/","access_list":"/api/v1/job_templates/402/access_list/","launch":"/api/v1/job_templates/402/launch/","schedules":"/api/v1/job_templates/402/schedules/","activity_stream":"/api/v1/job_templates/402/activity_stream/","survey_spec":"/api/v1/job_templates/402/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1353,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1355,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1354,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-22T15:48:50.345Z","modified":"2017-03-22T15:48:50.345Z","name":"miq_hk2-test_provision","description":"hk2-test","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":172,"type":"job_template","url":"/api/v1/job_templates/172/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/172/labels/","inventory":"/api/v1/inventories/6/","notification_templates_error":"/api/v1/job_templates/172/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/172/notification_templates_success/","jobs":"/api/v1/job_templates/172/jobs/","object_roles":"/api/v1/job_templates/172/object_roles/","notification_templates_any":"/api/v1/job_templates/172/notification_templates_any/","access_list":"/api/v1/job_templates/172/access_list/","launch":"/api/v1/job_templates/172/launch/","schedules":"/api/v1/job_templates/172/schedules/","activity_stream":"/api/v1/job_templates/172/activity_stream/","survey_spec":"/api/v1/job_templates/172/survey_spec/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":2,"groups_with_active_failures":1,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":531,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":533,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":532,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-02-17T22:20:46.437Z","modified":"2017-02-17T22:20:46.437Z","name":"miq_hk3_provision","description":"hk3","job_type":"run","inventory":6,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":183,"type":"job_template","url":"/api/v1/job_templates/183/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/183/labels/","inventory":"/api/v1/inventories/6/","credential":"/api/v1/credentials/8/","notification_templates_error":"/api/v1/job_templates/183/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/183/notification_templates_success/","jobs":"/api/v1/job_templates/183/jobs/","object_roles":"/api/v1/job_templates/183/object_roles/","notification_templates_any":"/api/v1/job_templates/183/notification_templates_any/","access_list":"/api/v1/job_templates/183/access_list/","launch":"/api/v1/job_templates/183/launch/","schedules":"/api/v1/job_templates/183/schedules/","activity_stream":"/api/v1/job_templates/183/activity_stream/","survey_spec":"/api/v1/job_templates/183/survey_spec/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":2,"groups_with_active_failures":1,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"credential":{"id":8,"name":"bd-test-changed","description":"","kind":"ssh","cloud":false},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":594,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":596,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":595,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-02-21T18:08:17.159Z","modified":"2017-02-21T18:08:17.159Z","name":"miq_hk_new_test2_provision","description":"hk_test","job_type":"run","inventory":6,"project":null,"playbook":"","credential":8,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"test\":\"test_val\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":205,"type":"job_template","url":"/api/v1/job_templates/205/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/205/labels/","inventory":"/api/v1/inventories/6/","project":"/api/v1/projects/37/","notification_templates_error":"/api/v1/job_templates/205/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/205/notification_templates_success/","jobs":"/api/v1/job_templates/205/jobs/","object_roles":"/api/v1/job_templates/205/object_roles/","notification_templates_any":"/api/v1/job_templates/205/notification_templates_any/","access_list":"/api/v1/job_templates/205/access_list/","launch":"/api/v1/job_templates/205/launch/","schedules":"/api/v1/job_templates/205/schedules/","activity_stream":"/api/v1/job_templates/205/activity_stream/","survey_spec":"/api/v1/job_templates/205/survey_spec/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":2,"groups_with_active_failures":1,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"project":{"id":37,"name":"Test + Project","description":"","status":"successful"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":666,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":668,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":667,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[]},"created":"2017-02-23T23:06:30.928Z","modified":"2017-02-23T23:06:30.928Z","name":"miq_hk_provision","description":"hk","job_type":"run","inventory":6,"project":37,"playbook":"hello_world.yml","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false}]}' + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:36 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/371/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:37 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:36 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/371/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:37 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:36 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/372/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:37 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.035s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:37 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/372/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:37 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.035s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:37 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/369/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:38 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:37 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/369/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:38 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:37 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/370/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:38 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:37 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/370/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:38 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:38 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/474/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:38 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:38 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/474/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:39 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:38 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/504/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:39 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:38 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/504/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:39 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.035s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:38 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/481/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:39 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:39 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/481/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:39 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:39 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/482/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:40 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:39 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/482/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:40 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:39 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/492/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:40 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:39 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/492/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:40 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:40 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/493/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:40 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:40 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/493/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:41 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:40 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/290/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:41 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:40 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/290/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:41 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:40 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/443/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:41 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:41 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/443/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:41 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:41 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/444/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:42 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:41 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/444/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:42 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:41 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/503/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:42 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:41 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/503/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:42 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:42 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/441/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:42 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:42 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/441/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:43 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:42 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/442/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:43 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:42 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/442/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:43 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:42 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/610/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:43 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:43 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/610/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:43 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:43 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/611/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:44 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:43 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/611/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:44 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:43 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/334/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:44 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:43 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/334/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:44 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:44 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/167/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:45 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:44 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/167/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:45 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:44 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/403/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:45 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:44 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/403/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:45 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:44 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/402/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:45 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:45 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/402/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:46 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.040s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:45 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/172/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:46 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:45 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/172/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:46 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:45 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/183/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:46 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:45 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/183/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:46 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:46 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/205/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:47 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:46 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/205/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:47 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:46 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/?page=3 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:47 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, HEAD, OPTIONS + X-Api-Time: + - 0.317s + Content-Length: + - '60946' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: '{"count":122,"next":"/api/v1/job_templates/?page=4","previous":"/api/v1/job_templates/?page=2","results":[{"id":209,"type":"job_template","url":"/api/v1/job_templates/209/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/209/labels/","inventory":"/api/v1/inventories/6/","notification_templates_error":"/api/v1/job_templates/209/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/209/notification_templates_success/","jobs":"/api/v1/job_templates/209/jobs/","object_roles":"/api/v1/job_templates/209/object_roles/","notification_templates_any":"/api/v1/job_templates/209/notification_templates_any/","access_list":"/api/v1/job_templates/209/access_list/","launch":"/api/v1/job_templates/209/launch/","schedules":"/api/v1/job_templates/209/schedules/","activity_stream":"/api/v1/job_templates/209/activity_stream/","survey_spec":"/api/v1/job_templates/209/survey_spec/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":2,"groups_with_active_failures":1,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":678,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":680,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":679,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-02-24T20:37:13.430Z","modified":"2017-02-24T20:37:13.430Z","name":"miq_hk_test_api_call_provision","description":"hk_test","job_type":"run","inventory":6,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":174,"type":"job_template","url":"/api/v1/job_templates/174/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/174/labels/","inventory":"/api/v1/inventories/6/","notification_templates_error":"/api/v1/job_templates/174/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/174/notification_templates_success/","jobs":"/api/v1/job_templates/174/jobs/","object_roles":"/api/v1/job_templates/174/object_roles/","notification_templates_any":"/api/v1/job_templates/174/notification_templates_any/","access_list":"/api/v1/job_templates/174/access_list/","launch":"/api/v1/job_templates/174/launch/","schedules":"/api/v1/job_templates/174/schedules/","activity_stream":"/api/v1/job_templates/174/activity_stream/","survey_spec":"/api/v1/job_templates/174/survey_spec/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":2,"groups_with_active_failures":1,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":537,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":539,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":538,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-02-20T18:19:31.097Z","modified":"2017-02-20T18:19:31.097Z","name":"miq_hk_test_new_provision","description":"hk_test_new","job_type":"run","inventory":6,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":175,"type":"job_template","url":"/api/v1/job_templates/175/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/175/labels/","inventory":"/api/v1/inventories/6/","cloud_credential":"/api/v1/credentials/2/","notification_templates_error":"/api/v1/job_templates/175/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/175/notification_templates_success/","jobs":"/api/v1/job_templates/175/jobs/","object_roles":"/api/v1/job_templates/175/object_roles/","notification_templates_any":"/api/v1/job_templates/175/notification_templates_any/","access_list":"/api/v1/job_templates/175/access_list/","launch":"/api/v1/job_templates/175/launch/","schedules":"/api/v1/job_templates/175/schedules/","activity_stream":"/api/v1/job_templates/175/activity_stream/","survey_spec":"/api/v1/job_templates/175/survey_spec/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":2,"groups_with_active_failures":1,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"cloud_credential":{"id":2,"name":"dev-vc60","description":"","kind":"vmware","cloud":true},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":540,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":542,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":541,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-02-20T18:20:18.758Z","modified":"2017-02-20T18:20:18.758Z","name":"miq_hk_test_new_retirement","description":"hk_test_new","job_type":"run","inventory":6,"project":null,"playbook":"","credential":null,"cloud_credential":2,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":182,"type":"job_template","url":"/api/v1/job_templates/182/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/182/labels/","inventory":"/api/v1/inventories/6/","credential":"/api/v1/credentials/8/","notification_templates_error":"/api/v1/job_templates/182/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/182/notification_templates_success/","jobs":"/api/v1/job_templates/182/jobs/","object_roles":"/api/v1/job_templates/182/object_roles/","notification_templates_any":"/api/v1/job_templates/182/notification_templates_any/","access_list":"/api/v1/job_templates/182/access_list/","launch":"/api/v1/job_templates/182/launch/","schedules":"/api/v1/job_templates/182/schedules/","activity_stream":"/api/v1/job_templates/182/activity_stream/","survey_spec":"/api/v1/job_templates/182/survey_spec/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":2,"groups_with_active_failures":1,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"credential":{"id":8,"name":"bd-test-changed","description":"","kind":"ssh","cloud":false},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":591,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":593,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":592,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-02-21T17:44:46.211Z","modified":"2017-02-21T17:44:46.211Z","name":"miq_hk_test_provision","description":"hk_test","job_type":"run","inventory":6,"project":null,"playbook":"","credential":8,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"val1\":\"value1\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":173,"type":"job_template","url":"/api/v1/job_templates/173/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/173/labels/","inventory":"/api/v1/inventories/6/","notification_templates_error":"/api/v1/job_templates/173/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/173/notification_templates_success/","jobs":"/api/v1/job_templates/173/jobs/","object_roles":"/api/v1/job_templates/173/object_roles/","notification_templates_any":"/api/v1/job_templates/173/notification_templates_any/","access_list":"/api/v1/job_templates/173/access_list/","launch":"/api/v1/job_templates/173/launch/","schedules":"/api/v1/job_templates/173/schedules/","activity_stream":"/api/v1/job_templates/173/activity_stream/","survey_spec":"/api/v1/job_templates/173/survey_spec/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":2,"groups_with_active_failures":1,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":534,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":536,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":535,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-02-17T22:25:37.717Z","modified":"2017-02-17T22:25:37.717Z","name":"miq_hk-test_provision","description":"hk-test","job_type":"run","inventory":6,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":470,"type":"job_template","url":"/api/v1/job_templates/470/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/470/labels/","project":"/api/v1/projects/36/","credential":"/api/v1/credentials/27/","cloud_credential":"/api/v1/credentials/10/","notification_templates_error":"/api/v1/job_templates/470/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/470/notification_templates_success/","jobs":"/api/v1/job_templates/470/jobs/","object_roles":"/api/v1/job_templates/470/object_roles/","notification_templates_any":"/api/v1/job_templates/470/notification_templates_any/","access_list":"/api/v1/job_templates/470/access_list/","launch":"/api/v1/job_templates/470/launch/","schedules":"/api/v1/job_templates/470/schedules/","activity_stream":"/api/v1/job_templates/470/activity_stream/","survey_spec":"/api/v1/job_templates/470/survey_spec/"},"summary_fields":{"cloud_credential":{"id":10,"name":"JwongMCred","description":"test + aws cred","kind":"aws","cloud":true},"credential":{"id":27,"name":"ManageIQ + Default Credential","description":"","kind":"ssh","cloud":false},"project":{"id":36,"name":"jwong-org2","description":"MIQ + UI update","status":"successful"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1873,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1875,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1874,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[]},"created":"2017-04-05T07:10:22.261Z","modified":"2017-04-05T07:10:22.261Z","name":"miq_Karel_provision","description":"is + here too","job_type":"run","inventory":null,"project":36,"playbook":"product/alerts/rss/microsoft_vms.yml","credential":27,"cloud_credential":10,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":495,"type":"job_template","url":"/api/v1/job_templates/495/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/495/labels/","inventory":"/api/v1/inventories/38/","project":"/api/v1/projects/457/","credential":"/api/v1/credentials/63/","notification_templates_error":"/api/v1/job_templates/495/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/495/notification_templates_success/","jobs":"/api/v1/job_templates/495/jobs/","object_roles":"/api/v1/job_templates/495/object_roles/","notification_templates_any":"/api/v1/job_templates/495/notification_templates_any/","access_list":"/api/v1/job_templates/495/access_list/","launch":"/api/v1/job_templates/495/launch/","schedules":"/api/v1/job_templates/495/schedules/","activity_stream":"/api/v1/job_templates/495/activity_stream/","survey_spec":"/api/v1/job_templates/495/survey_spec/"},"summary_fields":{"inventory":{"id":38,"name":"ManageIQ + Default Inventory","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"credential":{"id":63,"name":"Jose","description":"","kind":"ssh","cloud":false},"project":{"id":457,"name":"DB + Playbooks 2","description":"DB Playbooks 2","status":"never updated"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":2039,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":2041,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":2040,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[]},"created":"2017-05-11T13:10:54.733Z","modified":"2017-05-11T13:25:17.076Z","name":"miq_LGPlaybookTest2_provision","description":"LGPlaybookTest2","job_type":"run","inventory":38,"project":457,"playbook":"main.yml","credential":63,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":496,"type":"job_template","url":"/api/v1/job_templates/496/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/496/labels/","inventory":"/api/v1/inventories/38/","project":"/api/v1/projects/457/","credential":"/api/v1/credentials/8/","notification_templates_error":"/api/v1/job_templates/496/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/496/notification_templates_success/","jobs":"/api/v1/job_templates/496/jobs/","object_roles":"/api/v1/job_templates/496/object_roles/","notification_templates_any":"/api/v1/job_templates/496/notification_templates_any/","access_list":"/api/v1/job_templates/496/access_list/","launch":"/api/v1/job_templates/496/launch/","schedules":"/api/v1/job_templates/496/schedules/","activity_stream":"/api/v1/job_templates/496/activity_stream/","survey_spec":"/api/v1/job_templates/496/survey_spec/"},"summary_fields":{"inventory":{"id":38,"name":"ManageIQ + Default Inventory","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"credential":{"id":8,"name":"bd-test-changed","description":"","kind":"ssh","cloud":false},"project":{"id":457,"name":"DB + Playbooks 2","description":"DB Playbooks 2","status":"never updated"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":2042,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":2044,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":2043,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[]},"created":"2017-05-11T13:25:16.904Z","modified":"2017-05-11T13:25:16.904Z","name":"miq_LGPlaybookTest2_retirement","description":"LGPlaybookTest2","job_type":"run","inventory":38,"project":457,"playbook":"copy_file_example.yml","credential":8,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":true,"allow_simultaneous":false},{"id":500,"type":"job_template","url":"/api/v1/job_templates/500/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/500/labels/","inventory":"/api/v1/inventories/38/","notification_templates_error":"/api/v1/job_templates/500/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/500/notification_templates_success/","jobs":"/api/v1/job_templates/500/jobs/","object_roles":"/api/v1/job_templates/500/object_roles/","notification_templates_any":"/api/v1/job_templates/500/notification_templates_any/","access_list":"/api/v1/job_templates/500/access_list/","launch":"/api/v1/job_templates/500/launch/","schedules":"/api/v1/job_templates/500/schedules/","activity_stream":"/api/v1/job_templates/500/activity_stream/","survey_spec":"/api/v1/job_templates/500/survey_spec/"},"summary_fields":{"inventory":{"id":38,"name":"ManageIQ + Default Inventory","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":2054,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":2056,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":2055,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-05-12T18:19:02.062Z","modified":"2017-05-12T18:22:49.487Z","name":"miq_lucy1_provision","description":"10.8.99.207","job_type":"run","inventory":38,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"add_first\":\"one\",\"add_second\":\"two\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":502,"type":"job_template","url":"/api/v1/job_templates/502/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/502/labels/","inventory":"/api/v1/inventories/38/","notification_templates_error":"/api/v1/job_templates/502/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/502/notification_templates_success/","jobs":"/api/v1/job_templates/502/jobs/","object_roles":"/api/v1/job_templates/502/object_roles/","notification_templates_any":"/api/v1/job_templates/502/notification_templates_any/","access_list":"/api/v1/job_templates/502/access_list/","launch":"/api/v1/job_templates/502/launch/","schedules":"/api/v1/job_templates/502/schedules/","activity_stream":"/api/v1/job_templates/502/activity_stream/","survey_spec":"/api/v1/job_templates/502/survey_spec/"},"summary_fields":{"inventory":{"id":38,"name":"ManageIQ + Default Inventory","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":2060,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":2062,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":2061,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-05-15T13:45:08.475Z","modified":"2017-05-15T13:45:08.475Z","name":"miq_lucy_catalog_item_provision","description":"lucy_catalog_item","job_type":"run","inventory":38,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":412,"type":"job_template","url":"/api/v1/job_templates/412/","related":{"created_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/412/labels/","notification_templates_error":"/api/v1/job_templates/412/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/412/notification_templates_success/","jobs":"/api/v1/job_templates/412/jobs/","object_roles":"/api/v1/job_templates/412/object_roles/","notification_templates_any":"/api/v1/job_templates/412/notification_templates_any/","access_list":"/api/v1/job_templates/412/access_list/","launch":"/api/v1/job_templates/412/launch/","schedules":"/api/v1/job_templates/412/schedules/","activity_stream":"/api/v1/job_templates/412/activity_stream/","survey_spec":"/api/v1/job_templates/412/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1447,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1449,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1448,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-22T22:58:25.784Z","modified":"2017-03-27T16:35:41.422Z","name":"miq_Madhu_Test_provision","description":"Madhu + Test","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"user\":\"root\",\"host\":\"localhost\",\"pkg\":\"httpd\",\"sleep\":\"10\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":"2017-03-27T16:35:59.102254Z","last_job_failed":true,"has_schedules":false,"next_job_run":null,"status":"failed","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":164,"type":"job_template","url":"/api/v1/job_templates/164/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/164/labels/","inventory":"/api/v1/inventories/6/","notification_templates_error":"/api/v1/job_templates/164/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/164/notification_templates_success/","jobs":"/api/v1/job_templates/164/jobs/","object_roles":"/api/v1/job_templates/164/object_roles/","notification_templates_any":"/api/v1/job_templates/164/notification_templates_any/","access_list":"/api/v1/job_templates/164/access_list/","launch":"/api/v1/job_templates/164/launch/","schedules":"/api/v1/job_templates/164/schedules/","activity_stream":"/api/v1/job_templates/164/activity_stream/","survey_spec":"/api/v1/job_templates/164/survey_spec/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":2,"groups_with_active_failures":1,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":507,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":509,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":508,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-02-17T20:05:16.456Z","modified":"2017-02-17T20:05:16.456Z","name":"miq_miq-playbook-demo-hk_provision","description":"this + is a test","job_type":"run","inventory":6,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"var1\":\"default_val1\",\"var2\":\"default_val2\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":162,"type":"job_template","url":"/api/v1/job_templates/162/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/162/labels/","inventory":"/api/v1/inventories/6/","notification_templates_error":"/api/v1/job_templates/162/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/162/notification_templates_success/","jobs":"/api/v1/job_templates/162/jobs/","object_roles":"/api/v1/job_templates/162/object_roles/","notification_templates_any":"/api/v1/job_templates/162/notification_templates_any/","access_list":"/api/v1/job_templates/162/access_list/","launch":"/api/v1/job_templates/162/launch/","schedules":"/api/v1/job_templates/162/schedules/","activity_stream":"/api/v1/job_templates/162/activity_stream/","survey_spec":"/api/v1/job_templates/162/survey_spec/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":2,"groups_with_active_failures":1,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":501,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":503,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":502,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-02-17T20:05:14.224Z","modified":"2017-02-17T20:05:14.224Z","name":"miq_miq-playbook-demo_provision","description":"this + is a test","job_type":"run","inventory":6,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"var1\":\"default_val1\",\"var2\":\"default_val2\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":229,"type":"job_template","url":"/api/v1/job_templates/229/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/229/labels/","notification_templates_error":"/api/v1/job_templates/229/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/229/notification_templates_success/","jobs":"/api/v1/job_templates/229/jobs/","object_roles":"/api/v1/job_templates/229/object_roles/","notification_templates_any":"/api/v1/job_templates/229/notification_templates_any/","access_list":"/api/v1/job_templates/229/access_list/","launch":"/api/v1/job_templates/229/launch/","schedules":"/api/v1/job_templates/229/schedules/","activity_stream":"/api/v1/job_templates/229/activity_stream/","survey_spec":"/api/v1/job_templates/229/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":732,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":734,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":733,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-02-28T20:05:14.583Z","modified":"2017-02-28T20:05:14.583Z","name":"miq_mk_test3_provision","description":"mk_test3","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":227,"type":"job_template","url":"/api/v1/job_templates/227/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/227/labels/","notification_templates_error":"/api/v1/job_templates/227/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/227/notification_templates_success/","jobs":"/api/v1/job_templates/227/jobs/","object_roles":"/api/v1/job_templates/227/object_roles/","notification_templates_any":"/api/v1/job_templates/227/notification_templates_any/","access_list":"/api/v1/job_templates/227/access_list/","launch":"/api/v1/job_templates/227/launch/","schedules":"/api/v1/job_templates/227/schedules/","activity_stream":"/api/v1/job_templates/227/activity_stream/","survey_spec":"/api/v1/job_templates/227/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":726,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":728,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":727,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-02-28T18:54:01.740Z","modified":"2017-02-28T18:54:01.740Z","name":"miq_mk_testing1_provision","description":"mk_testing_1","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":475,"type":"job_template","url":"/api/v1/job_templates/475/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/475/labels/","inventory":"/api/v1/inventories/38/","last_job":"/api/v1/jobs/654/","notification_templates_error":"/api/v1/job_templates/475/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/475/notification_templates_success/","jobs":"/api/v1/job_templates/475/jobs/","object_roles":"/api/v1/job_templates/475/object_roles/","notification_templates_any":"/api/v1/job_templates/475/notification_templates_any/","access_list":"/api/v1/job_templates/475/access_list/","launch":"/api/v1/job_templates/475/launch/","schedules":"/api/v1/job_templates/475/schedules/","activity_stream":"/api/v1/job_templates/475/activity_stream/","survey_spec":"/api/v1/job_templates/475/survey_spec/"},"summary_fields":{"last_job":{"id":654,"name":"miq_newextravar_provision","description":"dd","finished":"2017-04-24T21:56:03.920Z","status":"successful","failed":false},"last_update":{"id":654,"name":"miq_newextravar_provision","description":"dd","status":"successful","failed":false},"inventory":{"id":38,"name":"ManageIQ + Default Inventory","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1903,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1905,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1904,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[{"status":"successful","finished":"2017-04-24T21:56:03.920Z","id":654}]},"created":"2017-04-24T21:50:27.914Z","modified":"2017-04-24T22:00:32.804Z","name":"miq_newextravar_provision","description":"dd","job_type":"run","inventory":38,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"foo\":\"foo_edit\",\"bar\":\"bar_edit\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":"2017-04-24T21:56:03.920565Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":285,"type":"job_template","url":"/api/v1/job_templates/285/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/285/labels/","notification_templates_error":"/api/v1/job_templates/285/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/285/notification_templates_success/","jobs":"/api/v1/job_templates/285/jobs/","object_roles":"/api/v1/job_templates/285/object_roles/","notification_templates_any":"/api/v1/job_templates/285/notification_templates_any/","access_list":"/api/v1/job_templates/285/access_list/","launch":"/api/v1/job_templates/285/launch/","schedules":"/api/v1/job_templates/285/schedules/","activity_stream":"/api/v1/job_templates/285/activity_stream/","survey_spec":"/api/v1/job_templates/285/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":906,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":908,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":907,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-03T22:47:11.320Z","modified":"2017-03-03T22:47:11.321Z","name":"miq_playbook2_provision","description":"s","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":133,"type":"job_template","url":"/api/v1/job_templates/133/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/133/labels/","inventory":"/api/v1/inventories/6/","notification_templates_error":"/api/v1/job_templates/133/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/133/notification_templates_success/","jobs":"/api/v1/job_templates/133/jobs/","object_roles":"/api/v1/job_templates/133/object_roles/","notification_templates_any":"/api/v1/job_templates/133/notification_templates_any/","access_list":"/api/v1/job_templates/133/access_list/","launch":"/api/v1/job_templates/133/launch/","schedules":"/api/v1/job_templates/133/schedules/","activity_stream":"/api/v1/job_templates/133/activity_stream/","survey_spec":"/api/v1/job_templates/133/survey_spec/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":2,"groups_with_active_failures":1,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":408,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":410,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":409,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-02-15T22:44:19.521Z","modified":"2017-02-15T22:44:19.521Z","name":"miq-playbook-demo1_provision_i5n7ciut","description":"this + is a test1","job_type":"run","inventory":6,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"OrderedDict([(u''var1'', + u''default_val1''), (u''var2'', u''default_val2'')])","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":128,"type":"job_template","url":"/api/v1/job_templates/128/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/128/labels/","inventory":"/api/v1/inventories/6/","notification_templates_error":"/api/v1/job_templates/128/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/128/notification_templates_success/","jobs":"/api/v1/job_templates/128/jobs/","object_roles":"/api/v1/job_templates/128/object_roles/","notification_templates_any":"/api/v1/job_templates/128/notification_templates_any/","access_list":"/api/v1/job_templates/128/access_list/","launch":"/api/v1/job_templates/128/launch/","schedules":"/api/v1/job_templates/128/schedules/","activity_stream":"/api/v1/job_templates/128/activity_stream/","survey_spec":"/api/v1/job_templates/128/survey_spec/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":2,"groups_with_active_failures":1,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":392,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":394,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":393,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-02-15T21:03:08.895Z","modified":"2017-02-15T21:03:08.895Z","name":"miq-playbook-demo_provision_5iu5fqb7","description":"this + is a test","job_type":"run","inventory":6,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"OrderedDict([(u''var1'', + u''default_val1''), (u''var2'', u''default_val2'')])","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":120,"type":"job_template","url":"/api/v1/job_templates/120/","related":{"created_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/120/labels/","project":"/api/v1/projects/37/","notification_templates_error":"/api/v1/job_templates/120/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/120/notification_templates_success/","jobs":"/api/v1/job_templates/120/jobs/","object_roles":"/api/v1/job_templates/120/object_roles/","notification_templates_any":"/api/v1/job_templates/120/notification_templates_any/","access_list":"/api/v1/job_templates/120/access_list/","launch":"/api/v1/job_templates/120/launch/","schedules":"/api/v1/job_templates/120/schedules/","activity_stream":"/api/v1/job_templates/120/activity_stream/","survey_spec":"/api/v1/job_templates/120/survey_spec/"},"summary_fields":{"project":{"id":37,"name":"Test + Project","description":"","status":"successful"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":367,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":369,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":368,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[]},"created":"2017-02-14T20:14:14.170Z","modified":"2017-02-20T23:06:56.945Z","name":"miq-playbook-demo_provision_hd2g8j13","description":"this + is a test","job_type":"run","inventory":null,"project":37,"playbook":"hello_world.yml","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"var1\":\"default_val1\",\"var2\":\"default_val2\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":"2017-02-20T23:10:59.875590Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":127,"type":"job_template","url":"/api/v1/job_templates/127/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/127/labels/","inventory":"/api/v1/inventories/6/","notification_templates_error":"/api/v1/job_templates/127/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/127/notification_templates_success/","jobs":"/api/v1/job_templates/127/jobs/","object_roles":"/api/v1/job_templates/127/object_roles/","notification_templates_any":"/api/v1/job_templates/127/notification_templates_any/","access_list":"/api/v1/job_templates/127/access_list/","launch":"/api/v1/job_templates/127/launch/","schedules":"/api/v1/job_templates/127/schedules/","activity_stream":"/api/v1/job_templates/127/activity_stream/","survey_spec":"/api/v1/job_templates/127/survey_spec/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":2,"groups_with_active_failures":1,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":389,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":391,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":390,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-02-15T20:58:13.503Z","modified":"2017-02-15T20:58:13.503Z","name":"miq-playbook-demo_provision_jr1iol1k","description":"this + is a test","job_type":"run","inventory":6,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"OrderedDict([(u''var1'', + u''default_val1''), (u''var2'', u''default_val2'')])","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":132,"type":"job_template","url":"/api/v1/job_templates/132/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/132/labels/","inventory":"/api/v1/inventories/6/","notification_templates_error":"/api/v1/job_templates/132/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/132/notification_templates_success/","jobs":"/api/v1/job_templates/132/jobs/","object_roles":"/api/v1/job_templates/132/object_roles/","notification_templates_any":"/api/v1/job_templates/132/notification_templates_any/","access_list":"/api/v1/job_templates/132/access_list/","launch":"/api/v1/job_templates/132/launch/","schedules":"/api/v1/job_templates/132/schedules/","activity_stream":"/api/v1/job_templates/132/activity_stream/","survey_spec":"/api/v1/job_templates/132/survey_spec/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":2,"groups_with_active_failures":1,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":405,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":407,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":406,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-02-15T22:41:21.421Z","modified":"2017-02-15T22:41:21.421Z","name":"miq-playbook-demo_provision_o4u6rzp8","description":"this + is a test","job_type":"run","inventory":6,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"OrderedDict([(u''var1'', + u''default_val1''), (u''var2'', u''default_val2'')])","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":488,"type":"job_template","url":"/api/v1/job_templates/488/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/488/labels/","notification_templates_error":"/api/v1/job_templates/488/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/488/notification_templates_success/","jobs":"/api/v1/job_templates/488/jobs/","object_roles":"/api/v1/job_templates/488/object_roles/","notification_templates_any":"/api/v1/job_templates/488/notification_templates_any/","access_list":"/api/v1/job_templates/488/access_list/","launch":"/api/v1/job_templates/488/launch/","schedules":"/api/v1/job_templates/488/schedules/","activity_stream":"/api/v1/job_templates/488/activity_stream/","survey_spec":"/api/v1/job_templates/488/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":2007,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":2009,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":2008,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-05-03T18:22:04.400Z","modified":"2017-07-17T20:16:15.673Z","name":"miq_playbook_hk1_provision","description":"playbook_hk1","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":486,"type":"job_template","url":"/api/v1/job_templates/486/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/486/labels/","notification_templates_error":"/api/v1/job_templates/486/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/486/notification_templates_success/","jobs":"/api/v1/job_templates/486/jobs/","object_roles":"/api/v1/job_templates/486/object_roles/","notification_templates_any":"/api/v1/job_templates/486/notification_templates_any/","access_list":"/api/v1/job_templates/486/access_list/","launch":"/api/v1/job_templates/486/launch/","schedules":"/api/v1/job_templates/486/schedules/","activity_stream":"/api/v1/job_templates/486/activity_stream/","survey_spec":"/api/v1/job_templates/486/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":2001,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":2003,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":2002,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-05-03T16:17:38.302Z","modified":"2017-07-17T21:53:41.139Z","name":"miq_playbook_hk2_provision","description":"playbook_hk2","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"v1\":\"v2\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":487,"type":"job_template","url":"/api/v1/job_templates/487/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/487/labels/","notification_templates_error":"/api/v1/job_templates/487/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/487/notification_templates_success/","jobs":"/api/v1/job_templates/487/jobs/","object_roles":"/api/v1/job_templates/487/object_roles/","notification_templates_any":"/api/v1/job_templates/487/notification_templates_any/","access_list":"/api/v1/job_templates/487/access_list/","launch":"/api/v1/job_templates/487/launch/","schedules":"/api/v1/job_templates/487/schedules/","activity_stream":"/api/v1/job_templates/487/activity_stream/","survey_spec":"/api/v1/job_templates/487/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":2004,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":2006,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":2005,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-05-03T16:20:11.729Z","modified":"2017-07-17T21:53:43.465Z","name":"miq_playbook_hk2_retirement","description":"playbook_hk2","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"r1\":\"r2\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":true,"allow_simultaneous":false}]}' + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:47 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/209/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:48 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:47 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/209/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:48 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:47 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/174/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:48 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.040s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:47 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/174/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:48 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.036s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:48 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/175/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:48 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:48 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/175/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:49 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:48 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/182/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:49 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:48 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/182/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:49 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:49 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/173/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:50 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:49 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/173/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:50 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:49 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/470/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:50 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:50 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/470/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:51 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:50 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/495/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:51 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:50 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/495/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:51 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:50 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/496/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:51 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:51 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/496/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:51 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:51 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/500/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:52 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.036s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:51 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/500/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:52 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:51 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/502/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:52 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:51 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/502/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:52 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:52 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/412/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:52 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:52 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/412/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:53 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:52 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/164/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:53 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:52 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/164/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:53 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.038s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:52 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/162/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:53 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:53 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/162/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:53 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:53 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/229/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:54 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.036s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:53 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/229/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:54 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:53 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/227/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:54 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:53 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/227/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:54 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:54 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/475/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:54 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:54 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/475/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:55 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:54 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/285/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:55 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:54 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/285/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:55 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:54 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/133/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:55 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:55 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/133/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:56 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:55 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/128/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:56 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:55 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/128/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:56 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:55 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/120/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:56 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:55 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/120/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:56 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:56 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/127/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:57 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:56 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/127/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:57 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:56 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/132/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:57 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:56 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/132/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:57 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:56 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/488/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:57 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:57 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/488/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:58 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:57 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/486/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:58 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:57 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/486/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:58 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:57 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/487/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:58 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:58 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/487/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:58 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:58 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/?page=4 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:35:59 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, HEAD, OPTIONS + X-Api-Time: + - 0.316s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: '{"count":122,"next":"/api/v1/job_templates/?page=5","previous":"/api/v1/job_templates/?page=3","results":[{"id":293,"type":"job_template","url":"/api/v1/job_templates/293/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/293/labels/","cloud_credential":"/api/v1/credentials/10/","notification_templates_error":"/api/v1/job_templates/293/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/293/notification_templates_success/","jobs":"/api/v1/job_templates/293/jobs/","object_roles":"/api/v1/job_templates/293/object_roles/","notification_templates_any":"/api/v1/job_templates/293/notification_templates_any/","access_list":"/api/v1/job_templates/293/access_list/","launch":"/api/v1/job_templates/293/launch/","schedules":"/api/v1/job_templates/293/schedules/","activity_stream":"/api/v1/job_templates/293/activity_stream/","survey_spec":"/api/v1/job_templates/293/survey_spec/"},"summary_fields":{"cloud_credential":{"id":10,"name":"JwongMCred","description":"test + aws cred","kind":"aws","cloud":true},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":930,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":932,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":931,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-08T18:00:49.062Z","modified":"2017-03-08T18:00:49.062Z","name":"miq_Playbook_Item1_provision","description":"Playbook_Item1","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":10,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":606,"type":"job_template","url":"/api/v1/job_templates/606/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/606/labels/","project":"/api/v1/projects/457/","notification_templates_error":"/api/v1/job_templates/606/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/606/notification_templates_success/","jobs":"/api/v1/job_templates/606/jobs/","object_roles":"/api/v1/job_templates/606/object_roles/","notification_templates_any":"/api/v1/job_templates/606/notification_templates_any/","access_list":"/api/v1/job_templates/606/access_list/","launch":"/api/v1/job_templates/606/launch/","schedules":"/api/v1/job_templates/606/schedules/","activity_stream":"/api/v1/job_templates/606/activity_stream/","survey_spec":"/api/v1/job_templates/606/survey_spec/"},"summary_fields":{"project":{"id":457,"name":"DB + Playbooks 2","description":"DB Playbooks 2","status":"never updated"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":3060,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":3062,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":3061,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[]},"created":"2017-07-17T20:16:15.000Z","modified":"2017-07-17T20:16:15.000Z","name":"miq_playbook_provision","description":"playbook","job_type":"run","inventory":null,"project":457,"playbook":"main.yml","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"var1\":\"val1\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":243,"type":"job_template","url":"/api/v1/job_templates/243/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/243/labels/","notification_templates_error":"/api/v1/job_templates/243/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/243/notification_templates_success/","jobs":"/api/v1/job_templates/243/jobs/","object_roles":"/api/v1/job_templates/243/object_roles/","notification_templates_any":"/api/v1/job_templates/243/notification_templates_any/","access_list":"/api/v1/job_templates/243/access_list/","launch":"/api/v1/job_templates/243/launch/","schedules":"/api/v1/job_templates/243/schedules/","activity_stream":"/api/v1/job_templates/243/activity_stream/","survey_spec":"/api/v1/job_templates/243/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":780,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":782,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":781,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-01T22:41:22.586Z","modified":"2017-03-01T22:41:22.586Z","name":"miq_s13_provision","description":"s13","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":244,"type":"job_template","url":"/api/v1/job_templates/244/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/244/labels/","notification_templates_error":"/api/v1/job_templates/244/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/244/notification_templates_success/","jobs":"/api/v1/job_templates/244/jobs/","object_roles":"/api/v1/job_templates/244/object_roles/","notification_templates_any":"/api/v1/job_templates/244/notification_templates_any/","access_list":"/api/v1/job_templates/244/access_list/","launch":"/api/v1/job_templates/244/launch/","schedules":"/api/v1/job_templates/244/schedules/","activity_stream":"/api/v1/job_templates/244/activity_stream/","survey_spec":"/api/v1/job_templates/244/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":783,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":785,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":784,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-01T22:57:14.146Z","modified":"2017-03-01T22:57:14.146Z","name":"miq_s14_provision","description":"s14","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":228,"type":"job_template","url":"/api/v1/job_templates/228/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/228/labels/","notification_templates_error":"/api/v1/job_templates/228/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/228/notification_templates_success/","jobs":"/api/v1/job_templates/228/jobs/","object_roles":"/api/v1/job_templates/228/object_roles/","notification_templates_any":"/api/v1/job_templates/228/notification_templates_any/","access_list":"/api/v1/job_templates/228/access_list/","launch":"/api/v1/job_templates/228/launch/","schedules":"/api/v1/job_templates/228/schedules/","activity_stream":"/api/v1/job_templates/228/activity_stream/","survey_spec":"/api/v1/job_templates/228/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":729,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":731,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":730,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-02-28T19:29:17.673Z","modified":"2017-02-28T19:29:17.673Z","name":"miq_Sprint_55_demo_provision","description":"Sprint + 55 Demo","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"var1\":\"value1\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":292,"type":"job_template","url":"/api/v1/job_templates/292/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/292/labels/","cloud_credential":"/api/v1/credentials/7/","notification_templates_error":"/api/v1/job_templates/292/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/292/notification_templates_success/","jobs":"/api/v1/job_templates/292/jobs/","object_roles":"/api/v1/job_templates/292/object_roles/","notification_templates_any":"/api/v1/job_templates/292/notification_templates_any/","access_list":"/api/v1/job_templates/292/access_list/","launch":"/api/v1/job_templates/292/launch/","schedules":"/api/v1/job_templates/292/schedules/","activity_stream":"/api/v1/job_templates/292/activity_stream/","survey_spec":"/api/v1/job_templates/292/survey_spec/"},"summary_fields":{"cloud_credential":{"id":7,"name":"syseng-e2e-vcenter6","description":"This + is a vCenter","kind":"vmware","cloud":true},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":927,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":929,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":928,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-08T17:42:41.828Z","modified":"2017-03-08T17:42:41.828Z","name":"miq_t1_provision","description":"t1","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":7,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":180,"type":"job_template","url":"/api/v1/job_templates/180/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/180/labels/","inventory":"/api/v1/inventories/6/","notification_templates_error":"/api/v1/job_templates/180/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/180/notification_templates_success/","jobs":"/api/v1/job_templates/180/jobs/","object_roles":"/api/v1/job_templates/180/object_roles/","notification_templates_any":"/api/v1/job_templates/180/notification_templates_any/","access_list":"/api/v1/job_templates/180/access_list/","launch":"/api/v1/job_templates/180/launch/","schedules":"/api/v1/job_templates/180/schedules/","activity_stream":"/api/v1/job_templates/180/activity_stream/","survey_spec":"/api/v1/job_templates/180/survey_spec/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":2,"groups_with_active_failures":1,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":585,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":587,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":586,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-02-21T17:27:49.455Z","modified":"2017-02-21T17:27:49.455Z","name":"miq_test1_provision","description":"ytest1","job_type":"run","inventory":6,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":410,"type":"job_template","url":"/api/v1/job_templates/410/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/410/labels/","notification_templates_error":"/api/v1/job_templates/410/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/410/notification_templates_success/","jobs":"/api/v1/job_templates/410/jobs/","object_roles":"/api/v1/job_templates/410/object_roles/","notification_templates_any":"/api/v1/job_templates/410/notification_templates_any/","access_list":"/api/v1/job_templates/410/access_list/","launch":"/api/v1/job_templates/410/launch/","schedules":"/api/v1/job_templates/410/schedules/","activity_stream":"/api/v1/job_templates/410/activity_stream/","survey_spec":"/api/v1/job_templates/410/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1441,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1443,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1442,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-22T22:36:38.084Z","modified":"2017-03-22T22:38:31.597Z","name":"miq_Test1_provision","description":"Test1","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"pkg\":\"httpd\",\"sleep\":\"10\",\"user\":\"root\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":497,"type":"job_template","url":"/api/v1/job_templates/497/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/497/labels/","project":"/api/v1/projects/457/","notification_templates_error":"/api/v1/job_templates/497/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/497/notification_templates_success/","jobs":"/api/v1/job_templates/497/jobs/","object_roles":"/api/v1/job_templates/497/object_roles/","notification_templates_any":"/api/v1/job_templates/497/notification_templates_any/","access_list":"/api/v1/job_templates/497/access_list/","launch":"/api/v1/job_templates/497/launch/","schedules":"/api/v1/job_templates/497/schedules/","activity_stream":"/api/v1/job_templates/497/activity_stream/","survey_spec":"/api/v1/job_templates/497/survey_spec/"},"summary_fields":{"project":{"id":457,"name":"DB + Playbooks 2","description":"DB Playbooks 2","status":"never updated"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":2045,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":2047,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":2046,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[]},"created":"2017-05-11T18:04:15.831Z","modified":"2017-05-11T18:04:15.831Z","name":"miq_test2_provision","description":"test2","job_type":"run","inventory":null,"project":457,"playbook":"copy_file_example.yml","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":286,"type":"job_template","url":"/api/v1/job_templates/286/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/286/labels/","notification_templates_error":"/api/v1/job_templates/286/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/286/notification_templates_success/","jobs":"/api/v1/job_templates/286/jobs/","object_roles":"/api/v1/job_templates/286/object_roles/","notification_templates_any":"/api/v1/job_templates/286/notification_templates_any/","access_list":"/api/v1/job_templates/286/access_list/","launch":"/api/v1/job_templates/286/launch/","schedules":"/api/v1/job_templates/286/schedules/","activity_stream":"/api/v1/job_templates/286/activity_stream/","survey_spec":"/api/v1/job_templates/286/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":909,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":911,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":910,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-06T16:54:56.736Z","modified":"2017-03-06T16:54:56.736Z","name":"miq_test_bz_1428607_provision","description":"test_bz_1428607","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"pkg\":\"httpd\",\"user\":\"root\",\"sleep\":\"40\",\"host\":\"localhost\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":287,"type":"job_template","url":"/api/v1/job_templates/287/","related":{"created_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/287/labels/","notification_templates_error":"/api/v1/job_templates/287/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/287/notification_templates_success/","jobs":"/api/v1/job_templates/287/jobs/","object_roles":"/api/v1/job_templates/287/object_roles/","notification_templates_any":"/api/v1/job_templates/287/notification_templates_any/","access_list":"/api/v1/job_templates/287/access_list/","launch":"/api/v1/job_templates/287/launch/","schedules":"/api/v1/job_templates/287/schedules/","activity_stream":"/api/v1/job_templates/287/activity_stream/","survey_spec":"/api/v1/job_templates/287/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":912,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":914,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":913,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-06T17:39:08.916Z","modified":"2017-03-06T17:42:12.032Z","name":"miq_test_bz_mk_provision","description":"test_bz_mk","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"sleep\":\"40\",\"pkg\":\"httpd\",\"user\":\"root\",\"host\":\"localhost\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":"2017-03-06T17:43:27.561587Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":499,"type":"job_template","url":"/api/v1/job_templates/499/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/499/labels/","inventory":"/api/v1/inventories/38/","notification_templates_error":"/api/v1/job_templates/499/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/499/notification_templates_success/","jobs":"/api/v1/job_templates/499/jobs/","object_roles":"/api/v1/job_templates/499/object_roles/","notification_templates_any":"/api/v1/job_templates/499/notification_templates_any/","access_list":"/api/v1/job_templates/499/access_list/","launch":"/api/v1/job_templates/499/launch/","schedules":"/api/v1/job_templates/499/schedules/","activity_stream":"/api/v1/job_templates/499/activity_stream/","survey_spec":"/api/v1/job_templates/499/survey_spec/"},"summary_fields":{"inventory":{"id":38,"name":"ManageIQ + Default Inventory","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":2051,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":2053,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":2052,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-05-12T18:09:58.114Z","modified":"2017-05-12T18:09:58.114Z","name":"miq_test_for_lucy_provision","description":"Dmitry + Misharov @quarckster","job_type":"run","inventory":38,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"test1\":\"value1\",\"test2\":\"value2\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":360,"type":"job_template","url":"/api/v1/job_templates/360/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/360/labels/","notification_templates_error":"/api/v1/job_templates/360/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/360/notification_templates_success/","jobs":"/api/v1/job_templates/360/jobs/","object_roles":"/api/v1/job_templates/360/object_roles/","notification_templates_any":"/api/v1/job_templates/360/notification_templates_any/","access_list":"/api/v1/job_templates/360/access_list/","launch":"/api/v1/job_templates/360/launch/","schedules":"/api/v1/job_templates/360/schedules/","activity_stream":"/api/v1/job_templates/360/activity_stream/","survey_spec":"/api/v1/job_templates/360/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1161,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1163,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1162,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-16T22:13:57.039Z","modified":"2017-05-11T18:04:16.120Z","name":"miq_test-hk1_provision","description":"test-hk1","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"key1\":\"val1\",\"key2\":\"val2\",\"aaa\":\"sssss\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":343,"type":"job_template","url":"/api/v1/job_templates/343/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/343/labels/","project":"/api/v1/projects/36/","notification_templates_error":"/api/v1/job_templates/343/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/343/notification_templates_success/","jobs":"/api/v1/job_templates/343/jobs/","object_roles":"/api/v1/job_templates/343/object_roles/","notification_templates_any":"/api/v1/job_templates/343/notification_templates_any/","access_list":"/api/v1/job_templates/343/access_list/","launch":"/api/v1/job_templates/343/launch/","schedules":"/api/v1/job_templates/343/schedules/","activity_stream":"/api/v1/job_templates/343/activity_stream/","survey_spec":"/api/v1/job_templates/343/survey_spec/"},"summary_fields":{"project":{"id":36,"name":"jwong-org2","description":"MIQ + UI update","status":"successful"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1100,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1102,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1101,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[]},"created":"2017-03-16T18:55:02.535Z","modified":"2017-03-16T18:55:02.535Z","name":"miq_test-hk_provision","description":"test-hk","job_type":"run","inventory":null,"project":36,"playbook":"product/alerts/rss/lifecycle_events.yml","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"sds\":\"sda\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":226,"type":"job_template","url":"/api/v1/job_templates/226/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/226/labels/","notification_templates_error":"/api/v1/job_templates/226/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/226/notification_templates_success/","jobs":"/api/v1/job_templates/226/jobs/","object_roles":"/api/v1/job_templates/226/object_roles/","notification_templates_any":"/api/v1/job_templates/226/notification_templates_any/","access_list":"/api/v1/job_templates/226/access_list/","launch":"/api/v1/job_templates/226/launch/","schedules":"/api/v1/job_templates/226/schedules/","activity_stream":"/api/v1/job_templates/226/activity_stream/","survey_spec":"/api/v1/job_templates/226/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":723,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":725,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":724,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-02-28T18:35:45.417Z","modified":"2017-02-28T18:35:45.417Z","name":"miq_testing_provision","description":"testing","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":471,"type":"job_template","url":"/api/v1/job_templates/471/","related":{"created_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/471/labels/","inventory":"/api/v1/inventories/38/","last_job":"/api/v1/jobs/657/","notification_templates_error":"/api/v1/job_templates/471/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/471/notification_templates_success/","jobs":"/api/v1/job_templates/471/jobs/","object_roles":"/api/v1/job_templates/471/object_roles/","notification_templates_any":"/api/v1/job_templates/471/notification_templates_any/","access_list":"/api/v1/job_templates/471/access_list/","launch":"/api/v1/job_templates/471/launch/","schedules":"/api/v1/job_templates/471/schedules/","activity_stream":"/api/v1/job_templates/471/activity_stream/","survey_spec":"/api/v1/job_templates/471/survey_spec/"},"summary_fields":{"last_job":{"id":657,"name":"miq_TESTLG1_provision","description":"TESTLG1","finished":"2017-04-26T03:47:15.730Z","status":"successful","failed":false},"last_update":{"id":657,"name":"miq_TESTLG1_provision","description":"TESTLG1","status":"successful","failed":false},"inventory":{"id":38,"name":"ManageIQ + Default Inventory","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1879,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1881,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1880,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[{"status":"successful","finished":"2017-04-26T03:47:15.730Z","id":657},{"status":"successful","finished":"2017-04-26T03:23:57.631Z","id":656}]},"created":"2017-04-06T13:14:19.080Z","modified":"2017-04-26T03:47:06.928Z","name":"miq_TESTLG1_provision","description":"TESTLG1","job_type":"run","inventory":38,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"var1\":\"value1\",\"var2\":\"value2\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":"2017-04-26T03:47:15.730075Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":346,"type":"job_template","url":"/api/v1/job_templates/346/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/346/labels/","notification_templates_error":"/api/v1/job_templates/346/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/346/notification_templates_success/","jobs":"/api/v1/job_templates/346/jobs/","object_roles":"/api/v1/job_templates/346/object_roles/","notification_templates_any":"/api/v1/job_templates/346/notification_templates_any/","access_list":"/api/v1/job_templates/346/access_list/","launch":"/api/v1/job_templates/346/launch/","schedules":"/api/v1/job_templates/346/schedules/","activity_stream":"/api/v1/job_templates/346/activity_stream/","survey_spec":"/api/v1/job_templates/346/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1109,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1111,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1110,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-16T19:48:20.063Z","modified":"2017-03-27T19:06:46.468Z","name":"miq_TestLG2_retirement","description":"testLG2","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":436,"type":"job_template","url":"/api/v1/job_templates/436/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/436/labels/","project":"/api/v1/projects/40/","notification_templates_error":"/api/v1/job_templates/436/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/436/notification_templates_success/","jobs":"/api/v1/job_templates/436/jobs/","object_roles":"/api/v1/job_templates/436/object_roles/","notification_templates_any":"/api/v1/job_templates/436/notification_templates_any/","access_list":"/api/v1/job_templates/436/access_list/","launch":"/api/v1/job_templates/436/launch/","schedules":"/api/v1/job_templates/436/schedules/","activity_stream":"/api/v1/job_templates/436/activity_stream/","survey_spec":"/api/v1/job_templates/436/survey_spec/"},"summary_fields":{"project":{"id":40,"name":"RH-labs","description":"Red + Hat innovation Labs","status":"successful"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1677,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1679,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1678,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[]},"created":"2017-03-27T19:09:00.475Z","modified":"2017-03-27T19:09:00.475Z","name":"miq_Test + LG3_provision","description":"Test LG3","job_type":"run","inventory":null,"project":40,"playbook":"playbooks/check-service.yaml","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":434,"type":"job_template","url":"/api/v1/job_templates/434/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/434/labels/","inventory":"/api/v1/inventories/38/","notification_templates_error":"/api/v1/job_templates/434/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/434/notification_templates_success/","jobs":"/api/v1/job_templates/434/jobs/","object_roles":"/api/v1/job_templates/434/object_roles/","notification_templates_any":"/api/v1/job_templates/434/notification_templates_any/","access_list":"/api/v1/job_templates/434/access_list/","launch":"/api/v1/job_templates/434/launch/","schedules":"/api/v1/job_templates/434/schedules/","activity_stream":"/api/v1/job_templates/434/activity_stream/","survey_spec":"/api/v1/job_templates/434/survey_spec/"},"summary_fields":{"inventory":{"id":38,"name":"ManageIQ + Default Inventory","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1671,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1673,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1672,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-27T19:06:47.040Z","modified":"2017-03-27T20:53:26.382Z","name":"miq_TestLG3_provision","description":"TestLG3","job_type":"run","inventory":38,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":439,"type":"job_template","url":"/api/v1/job_templates/439/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/439/labels/","project":"/api/v1/projects/37/","credential":"/api/v1/credentials/8/","notification_templates_error":"/api/v1/job_templates/439/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/439/notification_templates_success/","jobs":"/api/v1/job_templates/439/jobs/","object_roles":"/api/v1/job_templates/439/object_roles/","notification_templates_any":"/api/v1/job_templates/439/notification_templates_any/","access_list":"/api/v1/job_templates/439/access_list/","launch":"/api/v1/job_templates/439/launch/","schedules":"/api/v1/job_templates/439/schedules/","activity_stream":"/api/v1/job_templates/439/activity_stream/","survey_spec":"/api/v1/job_templates/439/survey_spec/"},"summary_fields":{"credential":{"id":8,"name":"bd-test-changed","description":"","kind":"ssh","cloud":false},"project":{"id":37,"name":"Test + Project","description":"","status":"successful"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1686,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1688,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1687,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[]},"created":"2017-03-27T20:18:35.400Z","modified":"2017-03-27T20:18:35.400Z","name":"miq_Test + LG3_retirement","description":"Test LG3","job_type":"run","inventory":null,"project":37,"playbook":"hello_world.yml","credential":8,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":288,"type":"job_template","url":"/api/v1/job_templates/288/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/288/labels/","credential":"/api/v1/credentials/8/","cloud_credential":"/api/v1/credentials/16/","notification_templates_error":"/api/v1/job_templates/288/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/288/notification_templates_success/","jobs":"/api/v1/job_templates/288/jobs/","object_roles":"/api/v1/job_templates/288/object_roles/","notification_templates_any":"/api/v1/job_templates/288/notification_templates_any/","access_list":"/api/v1/job_templates/288/access_list/","launch":"/api/v1/job_templates/288/launch/","schedules":"/api/v1/job_templates/288/schedules/","activity_stream":"/api/v1/job_templates/288/activity_stream/","survey_spec":"/api/v1/job_templates/288/survey_spec/"},"summary_fields":{"cloud_credential":{"id":16,"name":"lucy + dev00","description":"","kind":"vmware","cloud":true},"credential":{"id":8,"name":"bd-test-changed","description":"","kind":"ssh","cloud":false},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":915,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":917,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":916,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-06T21:14:37.917Z","modified":"2017-03-06T21:14:37.917Z","name":"miq_testLG_provision","description":"testLG","job_type":"run","inventory":null,"project":null,"playbook":"","credential":8,"cloud_credential":16,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":345,"type":"job_template","url":"/api/v1/job_templates/345/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/345/labels/","notification_templates_error":"/api/v1/job_templates/345/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/345/notification_templates_success/","jobs":"/api/v1/job_templates/345/jobs/","object_roles":"/api/v1/job_templates/345/object_roles/","notification_templates_any":"/api/v1/job_templates/345/notification_templates_any/","access_list":"/api/v1/job_templates/345/access_list/","launch":"/api/v1/job_templates/345/launch/","schedules":"/api/v1/job_templates/345/schedules/","activity_stream":"/api/v1/job_templates/345/activity_stream/","survey_spec":"/api/v1/job_templates/345/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1106,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1108,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1107,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-16T19:47:16.826Z","modified":"2017-03-27T19:06:43.358Z","name":"miq_TestLG_provision","description":"testLG2","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"a\":\"a\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":289,"type":"job_template","url":"/api/v1/job_templates/289/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/289/labels/","credential":"/api/v1/credentials/8/","cloud_credential":"/api/v1/credentials/10/","notification_templates_error":"/api/v1/job_templates/289/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/289/notification_templates_success/","jobs":"/api/v1/job_templates/289/jobs/","object_roles":"/api/v1/job_templates/289/object_roles/","notification_templates_any":"/api/v1/job_templates/289/notification_templates_any/","access_list":"/api/v1/job_templates/289/access_list/","launch":"/api/v1/job_templates/289/launch/","schedules":"/api/v1/job_templates/289/schedules/","activity_stream":"/api/v1/job_templates/289/activity_stream/","survey_spec":"/api/v1/job_templates/289/survey_spec/"},"summary_fields":{"cloud_credential":{"id":10,"name":"JwongMCred","description":"test + aws cred","kind":"aws","cloud":true},"credential":{"id":8,"name":"bd-test-changed","description":"","kind":"ssh","cloud":false},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":918,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":920,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":919,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-06T21:15:46.628Z","modified":"2017-03-06T21:15:46.628Z","name":"miq_testLG_retirement","description":"testLG","job_type":"run","inventory":null,"project":null,"playbook":"","credential":8,"cloud_credential":10,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":134,"type":"job_template","url":"/api/v1/job_templates/134/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/134/labels/","inventory":"/api/v1/inventories/6/","notification_templates_error":"/api/v1/job_templates/134/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/134/notification_templates_success/","jobs":"/api/v1/job_templates/134/jobs/","object_roles":"/api/v1/job_templates/134/object_roles/","notification_templates_any":"/api/v1/job_templates/134/notification_templates_any/","access_list":"/api/v1/job_templates/134/access_list/","launch":"/api/v1/job_templates/134/launch/","schedules":"/api/v1/job_templates/134/schedules/","activity_stream":"/api/v1/job_templates/134/activity_stream/","survey_spec":"/api/v1/job_templates/134/survey_spec/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":2,"groups_with_active_failures":1,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":411,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":413,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":412,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-02-16T17:00:54.541Z","modified":"2017-02-16T17:00:54.541Z","name":"miq_test_name_provision","description":"test_description","job_type":"run","inventory":6,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"p_var1\":\"p_val1\",\"p_var2\":\"p_val2\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":135,"type":"job_template","url":"/api/v1/job_templates/135/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/135/labels/","inventory":"/api/v1/inventories/6/","notification_templates_error":"/api/v1/job_templates/135/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/135/notification_templates_success/","jobs":"/api/v1/job_templates/135/jobs/","object_roles":"/api/v1/job_templates/135/object_roles/","notification_templates_any":"/api/v1/job_templates/135/notification_templates_any/","access_list":"/api/v1/job_templates/135/access_list/","launch":"/api/v1/job_templates/135/launch/","schedules":"/api/v1/job_templates/135/schedules/","activity_stream":"/api/v1/job_templates/135/activity_stream/","survey_spec":"/api/v1/job_templates/135/survey_spec/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":2,"groups_with_active_failures":1,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":414,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":416,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":415,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-02-16T17:01:01.728Z","modified":"2017-02-16T17:01:01.729Z","name":"miq_test_name_retirement","description":"test_description","job_type":"run","inventory":6,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"r_var1\":\"r_val1\",\"r_var2\":\"r_val2\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false}]}' + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:59 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/293/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:00 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:59 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/293/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:00 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:59 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/606/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:00 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:35:59 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/606/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:00 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:00 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/243/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:00 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:00 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/243/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:01 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:00 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/244/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:01 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:00 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/244/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:01 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:00 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/228/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:01 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:01 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/228/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:01 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:01 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/292/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:02 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:01 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/292/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:02 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:01 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/180/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:02 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:01 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/180/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:02 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:02 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/410/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:03 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:02 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/410/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:03 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.036s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:02 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/497/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:03 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:02 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/497/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:03 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:02 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/286/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:03 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:03 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/286/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:04 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:03 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/287/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:04 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:03 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/287/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:04 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:03 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/499/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:04 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.035s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:04 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/499/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:05 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:04 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/360/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:05 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:04 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/360/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:05 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:05 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/343/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:06 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:05 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/343/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:06 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:05 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/226/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:06 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:06 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/226/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:07 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:06 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/471/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:07 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:06 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/471/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:07 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:06 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/346/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:07 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:07 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/346/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:08 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:07 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/436/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:08 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:07 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/436/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:08 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:07 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/434/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:08 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:07 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/434/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:08 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:08 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/439/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:09 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:08 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/439/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:09 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.038s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:08 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/288/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:09 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:08 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/288/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:09 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:08 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/345/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:09 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:09 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/345/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:10 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:09 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/289/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:10 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:09 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/289/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:10 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:09 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/134/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:10 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:09 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/134/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:10 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:10 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/135/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:11 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:10 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/135/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:11 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:10 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/?page=5 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:11 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, HEAD, OPTIONS + X-Api-Time: + - 0.291s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: '{"count":122,"next":null,"previous":"/api/v1/job_templates/?page=4","results":[{"id":225,"type":"job_template","url":"/api/v1/job_templates/225/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/225/labels/","notification_templates_error":"/api/v1/job_templates/225/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/225/notification_templates_success/","jobs":"/api/v1/job_templates/225/jobs/","object_roles":"/api/v1/job_templates/225/object_roles/","notification_templates_any":"/api/v1/job_templates/225/notification_templates_any/","access_list":"/api/v1/job_templates/225/access_list/","launch":"/api/v1/job_templates/225/launch/","schedules":"/api/v1/job_templates/225/schedules/","activity_stream":"/api/v1/job_templates/225/activity_stream/","survey_spec":"/api/v1/job_templates/225/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":720,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":722,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":721,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-02-28T16:58:35.253Z","modified":"2017-02-28T16:58:35.253Z","name":"miq_test_need_a_catalog_first_provision","description":"test_need_a_catalog_first","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":303,"type":"job_template","url":"/api/v1/job_templates/303/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/303/labels/","notification_templates_error":"/api/v1/job_templates/303/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/303/notification_templates_success/","jobs":"/api/v1/job_templates/303/jobs/","object_roles":"/api/v1/job_templates/303/object_roles/","notification_templates_any":"/api/v1/job_templates/303/notification_templates_any/","access_list":"/api/v1/job_templates/303/access_list/","launch":"/api/v1/job_templates/303/launch/","schedules":"/api/v1/job_templates/303/schedules/","activity_stream":"/api/v1/job_templates/303/activity_stream/","survey_spec":"/api/v1/job_templates/303/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":960,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":962,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":961,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-09T15:07:03.544Z","modified":"2017-03-09T15:07:03.544Z","name":"miq_test_playbook_a_provision","description":"test_playbook_a","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"sleep\":\"40\",\"pkg\":\"httpd\",\"user\":\"root\",\"host\":\"localhost\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":224,"type":"job_template","url":"/api/v1/job_templates/224/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/224/labels/","notification_templates_error":"/api/v1/job_templates/224/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/224/notification_templates_success/","jobs":"/api/v1/job_templates/224/jobs/","object_roles":"/api/v1/job_templates/224/object_roles/","notification_templates_any":"/api/v1/job_templates/224/notification_templates_any/","access_list":"/api/v1/job_templates/224/access_list/","launch":"/api/v1/job_templates/224/launch/","schedules":"/api/v1/job_templates/224/schedules/","activity_stream":"/api/v1/job_templates/224/activity_stream/","survey_spec":"/api/v1/job_templates/224/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":717,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":719,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":718,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-02-28T15:56:12.201Z","modified":"2017-02-28T15:56:12.201Z","name":"miq_test_provision","description":"test","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":411,"type":"job_template","url":"/api/v1/job_templates/411/","related":{"created_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/411/labels/","notification_templates_error":"/api/v1/job_templates/411/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/411/notification_templates_success/","jobs":"/api/v1/job_templates/411/jobs/","object_roles":"/api/v1/job_templates/411/object_roles/","notification_templates_any":"/api/v1/job_templates/411/notification_templates_any/","access_list":"/api/v1/job_templates/411/access_list/","launch":"/api/v1/job_templates/411/launch/","schedules":"/api/v1/job_templates/411/schedules/","activity_stream":"/api/v1/job_templates/411/activity_stream/","survey_spec":"/api/v1/job_templates/411/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1444,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1446,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1445,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-22T22:40:08.963Z","modified":"2017-03-22T22:51:32.797Z","name":"miq_Test + Service_provision","description":"Test Service","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"host\":\"localhost\",\"sleep\":\"10\",\"pkg\":\"httpd\",\"usr\":\"root\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":"2017-03-22T22:51:38.814071Z","last_job_failed":true,"has_schedules":false,"next_job_run":null,"status":"failed","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":501,"type":"job_template","url":"/api/v1/job_templates/501/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/501/labels/","inventory":"/api/v1/inventories/38/","notification_templates_error":"/api/v1/job_templates/501/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/501/notification_templates_success/","jobs":"/api/v1/job_templates/501/jobs/","object_roles":"/api/v1/job_templates/501/object_roles/","notification_templates_any":"/api/v1/job_templates/501/notification_templates_any/","access_list":"/api/v1/job_templates/501/access_list/","launch":"/api/v1/job_templates/501/launch/","schedules":"/api/v1/job_templates/501/schedules/","activity_stream":"/api/v1/job_templates/501/activity_stream/","survey_spec":"/api/v1/job_templates/501/survey_spec/"},"summary_fields":{"inventory":{"id":38,"name":"ManageIQ + Default Inventory","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":2057,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":2059,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":2058,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-05-12T18:35:17.055Z","modified":"2017-05-12T18:41:15.801Z","name":"miq_tina1_provision","description":"tina1","job_type":"run","inventory":38,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"first\":\"one\",\"second\":\"two\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":354,"type":"job_template","url":"/api/v1/job_templates/354/","related":{"created_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/354/labels/","notification_templates_error":"/api/v1/job_templates/354/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/354/notification_templates_success/","jobs":"/api/v1/job_templates/354/jobs/","object_roles":"/api/v1/job_templates/354/object_roles/","notification_templates_any":"/api/v1/job_templates/354/notification_templates_any/","access_list":"/api/v1/job_templates/354/access_list/","launch":"/api/v1/job_templates/354/launch/","schedules":"/api/v1/job_templates/354/schedules/","activity_stream":"/api/v1/job_templates/354/activity_stream/","survey_spec":"/api/v1/job_templates/354/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1133,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1135,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1134,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-16T21:27:15.754Z","modified":"2017-03-16T21:31:18.094Z","name":"miq_tina_ap_test2_provision","description":"tina_ap_test2","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"number\":\"1\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":"2017-03-16T21:31:43.713167Z","last_job_failed":true,"has_schedules":false,"next_job_run":null,"status":"failed","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":355,"type":"job_template","url":"/api/v1/job_templates/355/","related":{"created_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/355/labels/","notification_templates_error":"/api/v1/job_templates/355/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/355/notification_templates_success/","jobs":"/api/v1/job_templates/355/jobs/","object_roles":"/api/v1/job_templates/355/object_roles/","notification_templates_any":"/api/v1/job_templates/355/notification_templates_any/","access_list":"/api/v1/job_templates/355/access_list/","launch":"/api/v1/job_templates/355/launch/","schedules":"/api/v1/job_templates/355/schedules/","activity_stream":"/api/v1/job_templates/355/activity_stream/","survey_spec":"/api/v1/job_templates/355/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1141,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1143,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1142,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-16T21:36:02.955Z","modified":"2017-03-17T16:50:59.636Z","name":"miq_tina_ap_test3_provision","description":"tina_ap_test3","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"number\":\"1\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":"2017-03-17T16:51:25.842439Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":342,"type":"job_template","url":"/api/v1/job_templates/342/","related":{"created_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/342/labels/","notification_templates_error":"/api/v1/job_templates/342/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/342/notification_templates_success/","jobs":"/api/v1/job_templates/342/jobs/","object_roles":"/api/v1/job_templates/342/object_roles/","notification_templates_any":"/api/v1/job_templates/342/notification_templates_any/","access_list":"/api/v1/job_templates/342/access_list/","launch":"/api/v1/job_templates/342/launch/","schedules":"/api/v1/job_templates/342/schedules/","activity_stream":"/api/v1/job_templates/342/activity_stream/","survey_spec":"/api/v1/job_templates/342/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1087,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1089,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1088,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-16T17:34:14.108Z","modified":"2017-03-16T17:38:10.695Z","name":"miq_tina_no_retirement_playbook_default_provision","description":"tina_no_retirement_playbook_default","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"number\":\"0\"}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":"2017-03-16T17:38:55.543253Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":446,"type":"job_template","url":"/api/v1/job_templates/446/","related":{"created_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/446/labels/","inventory":"/api/v1/inventories/38/","notification_templates_error":"/api/v1/job_templates/446/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/446/notification_templates_success/","jobs":"/api/v1/job_templates/446/jobs/","object_roles":"/api/v1/job_templates/446/object_roles/","notification_templates_any":"/api/v1/job_templates/446/notification_templates_any/","access_list":"/api/v1/job_templates/446/access_list/","launch":"/api/v1/job_templates/446/launch/","schedules":"/api/v1/job_templates/446/schedules/","activity_stream":"/api/v1/job_templates/446/activity_stream/","survey_spec":"/api/v1/job_templates/446/survey_spec/"},"summary_fields":{"inventory":{"id":38,"name":"ManageIQ + Default Inventory","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1734,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1736,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1735,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-28T18:31:52.980Z","modified":"2017-03-30T13:51:07.583Z","name":"miq_wei0328-2_provision","description":"test","job_type":"run","inventory":38,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":"2017-03-30T13:51:22.758271Z","last_job_failed":true,"has_schedules":false,"next_job_run":null,"status":"failed","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":447,"type":"job_template","url":"/api/v1/job_templates/447/","related":{"created_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/447/labels/","inventory":"/api/v1/inventories/38/","credential":"/api/v1/credentials/27/","notification_templates_error":"/api/v1/job_templates/447/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/447/notification_templates_success/","jobs":"/api/v1/job_templates/447/jobs/","object_roles":"/api/v1/job_templates/447/object_roles/","notification_templates_any":"/api/v1/job_templates/447/notification_templates_any/","access_list":"/api/v1/job_templates/447/access_list/","launch":"/api/v1/job_templates/447/launch/","schedules":"/api/v1/job_templates/447/schedules/","activity_stream":"/api/v1/job_templates/447/activity_stream/","survey_spec":"/api/v1/job_templates/447/survey_spec/"},"summary_fields":{"inventory":{"id":38,"name":"ManageIQ + Default Inventory","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"credential":{"id":27,"name":"ManageIQ + Default Credential","description":"","kind":"ssh","cloud":false},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1737,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1739,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1738,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-28T18:34:29.551Z","modified":"2017-03-29T14:13:45.904Z","name":"miq_wei0328-2_retirement","description":"test","job_type":"run","inventory":38,"project":null,"playbook":"","credential":27,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":"2017-03-29T14:13:52.366261Z","last_job_failed":true,"has_schedules":false,"next_job_run":null,"status":"failed","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":483,"type":"job_template","url":"/api/v1/job_templates/483/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/483/labels/","inventory":"/api/v1/inventories/38/","notification_templates_error":"/api/v1/job_templates/483/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/483/notification_templates_success/","jobs":"/api/v1/job_templates/483/jobs/","object_roles":"/api/v1/job_templates/483/object_roles/","notification_templates_any":"/api/v1/job_templates/483/notification_templates_any/","access_list":"/api/v1/job_templates/483/access_list/","launch":"/api/v1/job_templates/483/launch/","schedules":"/api/v1/job_templates/483/schedules/","activity_stream":"/api/v1/job_templates/483/activity_stream/","survey_spec":"/api/v1/job_templates/483/survey_spec/"},"summary_fields":{"inventory":{"id":38,"name":"ManageIQ + Default Inventory","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1961,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1963,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1962,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-05-01T16:10:53.012Z","modified":"2017-05-01T16:10:53.012Z","name":"miq_wei323-2_provision","description":"we","job_type":"run","inventory":38,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":179,"type":"job_template","url":"/api/v1/job_templates/179/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/179/labels/","inventory":"/api/v1/inventories/6/","notification_templates_error":"/api/v1/job_templates/179/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/179/notification_templates_success/","jobs":"/api/v1/job_templates/179/jobs/","object_roles":"/api/v1/job_templates/179/object_roles/","notification_templates_any":"/api/v1/job_templates/179/notification_templates_any/","access_list":"/api/v1/job_templates/179/access_list/","launch":"/api/v1/job_templates/179/launch/","schedules":"/api/v1/job_templates/179/schedules/","activity_stream":"/api/v1/job_templates/179/activity_stream/","survey_spec":"/api/v1/job_templates/179/survey_spec/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":2,"groups_with_active_failures":1,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":582,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":584,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":583,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-02-21T17:27:49.421Z","modified":"2017-02-21T17:27:49.421Z","name":"miq_werew_provision","description":"ewrw","job_type":"run","inventory":6,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":275,"type":"job_template","url":"/api/v1/job_templates/275/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/275/labels/","notification_templates_error":"/api/v1/job_templates/275/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/275/notification_templates_success/","jobs":"/api/v1/job_templates/275/jobs/","object_roles":"/api/v1/job_templates/275/object_roles/","notification_templates_any":"/api/v1/job_templates/275/notification_templates_any/","access_list":"/api/v1/job_templates/275/access_list/","launch":"/api/v1/job_templates/275/launch/","schedules":"/api/v1/job_templates/275/schedules/","activity_stream":"/api/v1/job_templates/275/activity_stream/","survey_spec":"/api/v1/job_templates/275/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":873,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":875,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":874,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-02T23:18:56.747Z","modified":"2017-03-02T23:18:56.747Z","name":"miq_www_provision","description":"www","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":332,"type":"job_template","url":"/api/v1/job_templates/332/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/332/labels/","notification_templates_error":"/api/v1/job_templates/332/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/332/notification_templates_success/","jobs":"/api/v1/job_templates/332/jobs/","object_roles":"/api/v1/job_templates/332/object_roles/","notification_templates_any":"/api/v1/job_templates/332/notification_templates_any/","access_list":"/api/v1/job_templates/332/access_list/","launch":"/api/v1/job_templates/332/launch/","schedules":"/api/v1/job_templates/332/schedules/","activity_stream":"/api/v1/job_templates/332/activity_stream/","survey_spec":"/api/v1/job_templates/332/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1047,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1049,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1048,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-15T22:48:46.080Z","modified":"2017-03-15T22:48:46.080Z","name":"miq_wwww_provision","description":"www","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":270,"type":"job_template","url":"/api/v1/job_templates/270/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/270/labels/","credential":"/api/v1/credentials/8/","cloud_credential":"/api/v1/credentials/10/","notification_templates_error":"/api/v1/job_templates/270/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/270/notification_templates_success/","jobs":"/api/v1/job_templates/270/jobs/","object_roles":"/api/v1/job_templates/270/object_roles/","notification_templates_any":"/api/v1/job_templates/270/notification_templates_any/","access_list":"/api/v1/job_templates/270/access_list/","launch":"/api/v1/job_templates/270/launch/","schedules":"/api/v1/job_templates/270/schedules/","activity_stream":"/api/v1/job_templates/270/activity_stream/","survey_spec":"/api/v1/job_templates/270/survey_spec/"},"summary_fields":{"cloud_credential":{"id":10,"name":"JwongMCred","description":"test + aws cred","kind":"aws","cloud":true},"credential":{"id":8,"name":"bd-test-changed","description":"","kind":"ssh","cloud":false},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":858,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":860,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":859,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-02T22:43:11.166Z","modified":"2017-03-02T22:43:11.166Z","name":"miq_xyz_provision","description":"xyz","job_type":"run","inventory":null,"project":null,"playbook":"","credential":8,"cloud_credential":10,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":274,"type":"job_template","url":"/api/v1/job_templates/274/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/274/labels/","credential":"/api/v1/credentials/8/","notification_templates_error":"/api/v1/job_templates/274/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/274/notification_templates_success/","jobs":"/api/v1/job_templates/274/jobs/","object_roles":"/api/v1/job_templates/274/object_roles/","notification_templates_any":"/api/v1/job_templates/274/notification_templates_any/","access_list":"/api/v1/job_templates/274/access_list/","launch":"/api/v1/job_templates/274/launch/","schedules":"/api/v1/job_templates/274/schedules/","activity_stream":"/api/v1/job_templates/274/activity_stream/","survey_spec":"/api/v1/job_templates/274/survey_spec/"},"summary_fields":{"credential":{"id":8,"name":"bd-test-changed","description":"","kind":"ssh","cloud":false},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":870,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":872,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":871,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-02T23:01:05.898Z","modified":"2017-03-02T23:01:05.898Z","name":"miq_zzz_provision","description":"zzz","job_type":"run","inventory":null,"project":null,"playbook":"","credential":8,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{}","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":131,"type":"job_template","url":"/api/v1/job_templates/131/","related":{"created_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/131/labels/","notification_templates_error":"/api/v1/job_templates/131/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/131/notification_templates_success/","jobs":"/api/v1/job_templates/131/jobs/","object_roles":"/api/v1/job_templates/131/object_roles/","notification_templates_any":"/api/v1/job_templates/131/notification_templates_any/","access_list":"/api/v1/job_templates/131/access_list/","launch":"/api/v1/job_templates/131/launch/","schedules":"/api/v1/job_templates/131/schedules/","activity_stream":"/api/v1/job_templates/131/activity_stream/","survey_spec":"/api/v1/job_templates/131/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":402,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":404,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":403,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-02-15T21:20:20.879Z","modified":"2017-02-15T21:20:27.584Z","name":"mk_multi_sleep","description":"","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"---\nuser: + root\npkg: abrt\nsleep: 60\nhost: localhost","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":"2017-02-15T21:23:05.639657Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","host_config_key":"","ask_variables_on_launch":false,"ask_limit_on_launch":false,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":false,"ask_credential_on_launch":false,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":41,"type":"job_template","url":"/api/v1/job_templates/41/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/41/labels/","inventory":"/api/v1/inventories/6/","project":"/api/v1/projects/40/","notification_templates_error":"/api/v1/job_templates/41/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/41/notification_templates_success/","jobs":"/api/v1/job_templates/41/jobs/","object_roles":"/api/v1/job_templates/41/object_roles/","notification_templates_any":"/api/v1/job_templates/41/notification_templates_any/","access_list":"/api/v1/job_templates/41/access_list/","launch":"/api/v1/job_templates/41/launch/","schedules":"/api/v1/job_templates/41/schedules/","activity_stream":"/api/v1/job_templates/41/activity_stream/","survey_spec":"/api/v1/job_templates/41/survey_spec/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":2,"groups_with_active_failures":1,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"project":{"id":40,"name":"RH-labs","description":"Red + Hat innovation Labs","status":"successful"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":119,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":121,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":120,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[]},"created":"2017-01-30T11:16:59.175Z","modified":"2017-01-30T11:22:01.953Z","name":"rh-labs-test","description":"","job_type":"run","inventory":6,"project":40,"playbook":"playbooks/check-service.yaml","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":false,"ask_limit_on_launch":false,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":false,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":126,"type":"job_template","url":"/api/v1/job_templates/126/","related":{"created_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/126/labels/","notification_templates_error":"/api/v1/job_templates/126/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/126/notification_templates_success/","jobs":"/api/v1/job_templates/126/jobs/","object_roles":"/api/v1/job_templates/126/object_roles/","notification_templates_any":"/api/v1/job_templates/126/notification_templates_any/","access_list":"/api/v1/job_templates/126/access_list/","launch":"/api/v1/job_templates/126/launch/","schedules":"/api/v1/job_templates/126/schedules/","activity_stream":"/api/v1/job_templates/126/activity_stream/","survey_spec":"/api/v1/job_templates/126/survey_spec/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":386,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":388,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":387,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-02-15T19:58:08.013Z","modified":"2017-02-15T20:10:12.126Z","name":"simple","description":"","job_type":"run","inventory":null,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"---\npkg: + httpd\nhost: localhost\nuser: root","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":"2017-02-15T20:10:47.470258Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","host_config_key":"","ask_variables_on_launch":false,"ask_limit_on_launch":false,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":false,"ask_credential_on_launch":false,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":129,"type":"job_template","url":"/api/v1/job_templates/129/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/129/labels/","inventory":"/api/v1/inventories/6/","notification_templates_error":"/api/v1/job_templates/129/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/129/notification_templates_success/","jobs":"/api/v1/job_templates/129/jobs/","object_roles":"/api/v1/job_templates/129/object_roles/","notification_templates_any":"/api/v1/job_templates/129/notification_templates_any/","access_list":"/api/v1/job_templates/129/access_list/","launch":"/api/v1/job_templates/129/launch/","schedules":"/api/v1/job_templates/129/schedules/","activity_stream":"/api/v1/job_templates/129/activity_stream/","survey_spec":"/api/v1/job_templates/129/survey_spec/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":2,"groups_with_active_failures":1,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":395,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":397,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":396,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-02-15T21:05:49.191Z","modified":"2017-02-15T21:05:49.191Z","name":"test_name_provision_krojxg3n","description":"test_description","job_type":"run","inventory":6,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"OrderedDict([(u''p_var1'', + u''p_val1''), (u''p_var2'', u''p_val2'')])","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":130,"type":"job_template","url":"/api/v1/job_templates/130/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/130/labels/","inventory":"/api/v1/inventories/6/","notification_templates_error":"/api/v1/job_templates/130/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/130/notification_templates_success/","jobs":"/api/v1/job_templates/130/jobs/","object_roles":"/api/v1/job_templates/130/object_roles/","notification_templates_any":"/api/v1/job_templates/130/notification_templates_any/","access_list":"/api/v1/job_templates/130/access_list/","launch":"/api/v1/job_templates/130/launch/","schedules":"/api/v1/job_templates/130/schedules/","activity_stream":"/api/v1/job_templates/130/activity_stream/","survey_spec":"/api/v1/job_templates/130/survey_spec/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":2,"groups_with_active_failures":1,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":398,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":400,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":399,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-02-15T21:05:56.574Z","modified":"2017-02-15T21:05:56.574Z","name":"test_name_retirement_sn6s4vge","description":"test_description","job_type":"run","inventory":6,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"OrderedDict([(u''r_var1'', + u''r_val1''), (u''r_var2'', u''r_val2'')])","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":452,"type":"job_template","url":"/api/v1/job_templates/452/","related":{"created_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/452/labels/","inventory":"/api/v1/inventories/63/","notification_templates_error":"/api/v1/job_templates/452/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/452/notification_templates_success/","jobs":"/api/v1/job_templates/452/jobs/","object_roles":"/api/v1/job_templates/452/object_roles/","notification_templates_any":"/api/v1/job_templates/452/notification_templates_any/","access_list":"/api/v1/job_templates/452/access_list/","launch":"/api/v1/job_templates/452/launch/","schedules":"/api/v1/job_templates/452/schedules/","activity_stream":"/api/v1/job_templates/452/activity_stream/","survey_spec":"/api/v1/job_templates/452/survey_spec/"},"summary_fields":{"inventory":{"id":63,"name":"bill-host1","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the job template","id":1808,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":1810,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":1809,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":false,"can_edit":true,"recent_jobs":[]},"created":"2017-03-30T18:21:54.904Z","modified":"2017-03-30T18:22:43.362Z","name":"wei-test1","description":"","job_type":"run","inventory":63,"project":null,"playbook":"","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":"2017-03-30T18:24:59.795742Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","host_config_key":"","ask_variables_on_launch":false,"ask_limit_on_launch":false,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":false,"ask_credential_on_launch":false,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false}]}' + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:11 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/225/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:12 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:11 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/225/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:12 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:11 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/303/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:12 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:11 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/303/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:12 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.036s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:11 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/224/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:12 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:12 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/224/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:13 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:12 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/411/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:13 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:13 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/411/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:14 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:13 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/501/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:14 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:13 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/501/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:14 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:13 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/354/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:14 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:13 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/354/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:14 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.036s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:14 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/355/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:15 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:14 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/355/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:15 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.035s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:14 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/342/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:15 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:14 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/342/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:15 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:14 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/446/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:15 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:15 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/446/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:16 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.035s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:15 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/447/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:16 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:15 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/447/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:16 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:15 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/483/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:16 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:16 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/483/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:16 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:16 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/179/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:17 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:16 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/179/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:17 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:16 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/275/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:19 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:18 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/275/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:19 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:18 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/332/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:19 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:19 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/332/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:19 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:19 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/270/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:20 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:19 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/270/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:20 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:19 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/274/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:20 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:19 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/274/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:20 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:19 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/131/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:20 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.036s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:20 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/131/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:21 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:20 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/41/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:21 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:20 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/41/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:21 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:20 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/126/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:21 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:21 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/126/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:22 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.035s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:21 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/129/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:22 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:21 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/129/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:22 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:21 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/130/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:22 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:21 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/130/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:22 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" http_version: - recorded_at: Thu, 09 Feb 2017 09:37:48 GMT + recorded_at: Mon, 14 Aug 2017 20:36:22 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/hosts/?page=3 + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/452/survey_spec/ body: encoding: US-ASCII string: '' @@ -1849,688 +11974,97 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:47 GMT + - Mon, 14 Aug 2017 20:36:23 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: - Accept,Cookie Allow: - - GET, POST, HEAD, OPTIONS + - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.220s - Content-Length: - - '91156' - Content-Type: - - application/json - body: - encoding: UTF-8 - string: '{"count":84,"next":"/api/v1/hosts/?page=4","previous":"/api/v1/hosts/?page=2","results":[{"id":57,"type":"host","url":"/api/v1/hosts/57/","related":{"job_host_summaries":"/api/v1/hosts/57/job_host_summaries/","variable_data":"/api/v1/hosts/57/variable_data/","job_events":"/api/v1/hosts/57/job_events/","ad_hoc_commands":"/api/v1/hosts/57/ad_hoc_commands/","fact_versions":"/api/v1/hosts/57/fact_versions/","inventory_sources":"/api/v1/hosts/57/inventory_sources/","groups":"/api/v1/hosts/57/groups/","activity_stream":"/api/v1/hosts/57/activity_stream/","all_groups":"/api/v1/hosts/57/all_groups/","ad_hoc_command_events":"/api/v1/hosts/57/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/7/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":7,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:40.207Z","modified":"2016-10-12T18:19:16.036Z","name":"joev-miq-repmgr-sb","description":"imported","inventory":2,"enabled":true,"instance_id":"420c7ee2-6417-deab-0c88-f687036af710","variables":"{\"vmware_vmPathName\": - \"[NFS Share] joev-miq-repmgr-sb/joev-miq-repmgr-sb.vmx\", \"vmware_ipAddress\": - \"10.8.99.235\", \"vmware_guestMemoryUsage\": 122, \"vmware_networks\": [\"VM - Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 6 (64-bit)\", - \"vmware_product_instanceId\": null, \"vmware_balloonedMemory\": 0, \"vmware_hostSystem\": - \"ibm-x3550m4-03.example.com\", \"vmware_product_classId\": - null, \"vmware_distributedCpuEntitlement\": 0, \"ansible_ssh_host\": \"10.8.99.235\", - \"vmware_product_key\": 0, \"vmware_unshared\": 4539793946, \"vmware_guestState\": - \"running\", \"vmware_staticMemoryEntitlement\": 6241, \"vmware_toolsStatus\": - \"toolsOk\", \"vmware_overallStatus\": \"green\", \"vmware_minRequiredEVCModeKey\": - \"intel-sandybridge\", \"vmware_uuid\": \"420c7ee2-6417-deab-0c88-f687036af710\", - \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_product_version\": - \"master\", \"vmware_staticCpuEntitlement\": 1431, \"vmware_uncommitted\": - 38409879552, \"vmware_distributedMemoryEntitlement\": 707, \"vmware_product_appUrl\": - null, \"vmware_template\": false, \"vmware_overallCpuDemand\": 0, \"vmware_product_fullVersion\": - null, \"vmware_ftSecondaryLatency\": -1, \"vmware_numVirtualDisks\": 1, \"vmware_annotation\": - null, \"vmware_maxMemoryUsage\": 6144, \"vmware_recordReplayState\": \"inactive\", - \"vmware_sharedMemory\": 82, \"vmware_privateMemory\": 1390, \"vmware_resourcePool\": - \"Resources\", \"vmware_product_name\": \"ManageIQ\", \"vmware_overallCpuUsage\": - 0, \"vmware_suspendInterval\": 0, \"vmware_toolsInstallerMounted\": false, - \"vmware_memoryReservation\": 0, \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": - \"dhcp-8-99-235.example.com\", \"vmware_product_vendor\": - \"ManageIQ\", \"vmware_uptimeSeconds\": 8071, \"vmware_memorySizeMB\": 6144, - \"vmware_instanceUuid\": \"500c22a0-7d5d-ce9d-de7f-93de5bceaec0\", \"vmware_compressedMemory\": - 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": 4, \"vmware_installBootRequired\": - false, \"vmware_committed\": 4540178770, \"vmware_name\": \"joev-miq-repmgr-sb\", - \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", \"vmware_cpuReservation\": - 0, \"vmware_hostMemoryUsage\": 1452, \"vmware_connectionState\": \"connected\", - \"vmware_guestHeartbeatStatus\": \"green\", \"vmware_toolsRunningStatus\": - \"guestToolsRunning\", \"vmware_powerState\": \"poweredOn\", \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_guestId\": \"rhel6_64Guest\", - \"vmware_swappedMemory\": 0, \"vmware_consumedOverheadMemory\": 43, \"vmware_ftLatencyStatus\": - \"gray\"}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":7},{"id":58,"type":"host","url":"/api/v1/hosts/58/","related":{"job_host_summaries":"/api/v1/hosts/58/job_host_summaries/","variable_data":"/api/v1/hosts/58/variable_data/","job_events":"/api/v1/hosts/58/job_events/","ad_hoc_commands":"/api/v1/hosts/58/ad_hoc_commands/","fact_versions":"/api/v1/hosts/58/fact_versions/","inventory_sources":"/api/v1/hosts/58/inventory_sources/","groups":"/api/v1/hosts/58/groups/","activity_stream":"/api/v1/hosts/58/activity_stream/","all_groups":"/api/v1/hosts/58/all_groups/","ad_hoc_command_events":"/api/v1/hosts/58/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.212Z","modified":"2016-08-31T16:59:43.545Z","name":"joev-miq-sb-sb","description":"imported","inventory":2,"enabled":false,"instance_id":"420c1d29-ebfb-b769-d56f-3797a52e59ff","variables":"{\"vmware_vmPathName\": - \"[NFS Share] joev-miq-sb-sb/joev-miq-sb-sb.vmx\", \"vmware_guestMemoryUsage\": - 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"Red - Hat Enterprise Linux 6 (64-bit)\", \"vmware_product_instanceId\": null, \"vmware_balloonedMemory\": - 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_product_classId\": null, \"vmware_distributedCpuEntitlement\": 0, - \"vmware_product_key\": 0, \"vmware_unshared\": 5579055969, \"vmware_guestState\": - \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": - \"toolsNotRunning\", \"vmware_overallStatus\": \"green\", \"vmware_uuid\": - \"420c1d29-ebfb-b769-d56f-3797a52e59ff\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_product_version\": \"master\", \"vmware_staticCpuEntitlement\": - 0, \"vmware_uncommitted\": 48328527872, \"vmware_distributedMemoryEntitlement\": - 0, \"vmware_product_appUrl\": null, \"vmware_template\": false, \"vmware_overallCpuDemand\": - 0, \"vmware_product_fullVersion\": null, \"vmware_ftSecondaryLatency\": -1, - \"vmware_numVirtualDisks\": 1, \"vmware_annotation\": null, \"vmware_recordReplayState\": - \"inactive\", \"vmware_sharedMemory\": 0, \"vmware_privateMemory\": 0, \"vmware_resourcePool\": - \"Resources\", \"vmware_product_name\": \"ManageIQ\", \"vmware_overallCpuUsage\": - 0, \"vmware_suspendInterval\": 0, \"vmware_toolsInstallerMounted\": false, - \"vmware_memoryReservation\": 0, \"vmware_numMksConnections\": 0, \"vmware_numEthernetCards\": - 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": \"dhcp-8-99-217.example.com\", - \"vmware_product_vendor\": \"ManageIQ\", \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": - 6144, \"vmware_instanceUuid\": \"500cfd3e-4464-c051-0ece-039973a2651b\", \"vmware_compressedMemory\": - 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": 4, \"vmware_installBootRequired\": - false, \"vmware_committed\": 12031710848, \"vmware_name\": \"joev-miq-sb-sb\", - \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", \"vmware_cpuReservation\": - 0, \"vmware_hostMemoryUsage\": 0, \"vmware_connectionState\": \"connected\", - \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_toolsRunningStatus\": - \"guestToolsNotRunning\", \"vmware_powerState\": \"poweredOff\", \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_guestId\": \"rhel6_64Guest\", - \"vmware_swappedMemory\": 0, \"vmware_consumedOverheadMemory\": 0, \"vmware_ftLatencyStatus\": - \"gray\"}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":59,"type":"host","url":"/api/v1/hosts/59/","related":{"job_host_summaries":"/api/v1/hosts/59/job_host_summaries/","variable_data":"/api/v1/hosts/59/variable_data/","job_events":"/api/v1/hosts/59/job_events/","ad_hoc_commands":"/api/v1/hosts/59/ad_hoc_commands/","fact_versions":"/api/v1/hosts/59/fact_versions/","inventory_sources":"/api/v1/hosts/59/inventory_sources/","groups":"/api/v1/hosts/59/groups/","activity_stream":"/api/v1/hosts/59/activity_stream/","all_groups":"/api/v1/hosts/59/all_groups/","ad_hoc_command_events":"/api/v1/hosts/59/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/35/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":35,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:40.218Z","modified":"2016-10-12T18:19:16.041Z","name":"jp-img2","description":"imported","inventory":2,"enabled":true,"instance_id":"420c5b6e-8f7e-2f89-fbd1-0261491d3f1d","variables":"{\"vmware_privateMemory\": - 1401, \"vmware_resourcePool\": \"Resources\", \"vmware_ipAddress\": \"10.8.99.246\", - \"vmware_guestMemoryUsage\": 0, \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": - 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"CentOS - 4/5/6/7 (64-bit)\", \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": - 0, \"vmware_maxCpuUsage\": 4798, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 41, - \"vmware_hostName\": \"dhcp-8-99-226.example.com\", - \"vmware_instanceUuid\": \"500c6f11-1d94-18b0-01ca-8072be00d302\", \"vmware_distributedCpuEntitlement\": - 0, \"ansible_ssh_host\": \"10.8.99.246\", \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_uptimeSeconds\": 179637, \"vmware_memorySizeMB\": 8192, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] jp-img2/jp-img2.vmx\", \"vmware_guestState\": - \"running\", \"vmware_staticMemoryEntitlement\": 8317, \"vmware_toolsStatus\": - \"toolsOk\", \"vmware_overallStatus\": \"green\", \"vmware_numCpu\": 2, \"vmware_uuid\": - \"420c5b6e-8f7e-2f89-fbd1-0261491d3f1d\", \"vmware_installBootRequired\": - false, \"vmware_committed\": 39935137014, \"vmware_name\": \"jp-img2\", \"vmware_toolsVersionStatus\": - \"guestToolsUnmanaged\", \"vmware_minRequiredEVCModeKey\": \"intel-sandybridge\", - \"vmware_uncommitted\": 67440459776, \"vmware_hostMemoryUsage\": 1464, \"vmware_distributedMemoryEntitlement\": - 694, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"green\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - false, \"vmware_toolsRunningStatus\": \"guestToolsRunning\", \"vmware_staticCpuEntitlement\": - 715, \"vmware_overallCpuDemand\": 0, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": - [\"NFS Share\"], \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": - \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": \"poweredOn\", - \"vmware_guestId\": \"centos64Guest\", \"vmware_numVirtualDisks\": 1, \"vmware_swappedMemory\": - 0, \"vmware_annotation\": null, \"vmware_maxMemoryUsage\": 8192, \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 39933723153, \"vmware_sharedMemory\": 155}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":35},{"id":60,"type":"host","url":"/api/v1/hosts/60/","related":{"job_host_summaries":"/api/v1/hosts/60/job_host_summaries/","variable_data":"/api/v1/hosts/60/variable_data/","job_events":"/api/v1/hosts/60/job_events/","ad_hoc_commands":"/api/v1/hosts/60/ad_hoc_commands/","fact_versions":"/api/v1/hosts/60/fact_versions/","inventory_sources":"/api/v1/hosts/60/inventory_sources/","groups":"/api/v1/hosts/60/groups/","activity_stream":"/api/v1/hosts/60/activity_stream/","all_groups":"/api/v1/hosts/60/all_groups/","ad_hoc_command_events":"/api/v1/hosts/60/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.223Z","modified":"2016-08-31T16:59:43.554Z","name":"jprause-brewery7","description":"imported","inventory":2,"enabled":false,"instance_id":"420c665e-b42d-26d2-21a2-0a54d4d79cba","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": 0, - \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": - [\"VM Network\"], \"vmware_guestFullName\": \"CentOS 4/5/6/7 (64-bit)\", \"vmware_toolsInstallerMounted\": - false, \"vmware_memoryReservation\": 0, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostName\": - \"jprause-brewery7\", \"vmware_instanceUuid\": \"500c9982-6622-52b4-1301-0c870e7b42ac\", - \"vmware_distributedCpuEntitlement\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 16384, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] jprause-brewery7/jprause-brewery7.vmx\", - \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": - 0, \"vmware_toolsStatus\": \"toolsNotRunning\", \"vmware_overallStatus\": - \"green\", \"vmware_numCpu\": 4, \"vmware_uuid\": \"420c665e-b42d-26d2-21a2-0a54d4d79cba\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 133770352248, - \"vmware_name\": \"jprause-brewery7\", \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", - \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": 33908158464, \"vmware_hostMemoryUsage\": - 0, \"vmware_distributedMemoryEntitlement\": 0, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_template\": false, \"vmware_toolsRunningStatus\": - \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": 0, \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_cpuReservation\": 0, - \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": - \"poweredOff\", \"vmware_guestId\": \"centos64Guest\", \"vmware_numVirtualDisks\": - 2, \"vmware_swappedMemory\": 0, \"vmware_annotation\": \"CentOS 7.2 ImageFactory - VM\", \"vmware_recordReplayState\": \"inactive\", \"vmware_unshared\": 133769327685, - \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":61,"type":"host","url":"/api/v1/hosts/61/","related":{"job_host_summaries":"/api/v1/hosts/61/job_host_summaries/","variable_data":"/api/v1/hosts/61/variable_data/","job_events":"/api/v1/hosts/61/job_events/","ad_hoc_commands":"/api/v1/hosts/61/ad_hoc_commands/","fact_versions":"/api/v1/hosts/61/fact_versions/","inventory_sources":"/api/v1/hosts/61/inventory_sources/","groups":"/api/v1/hosts/61/groups/","activity_stream":"/api/v1/hosts/61/activity_stream/","all_groups":"/api/v1/hosts/61/all_groups/","ad_hoc_command_events":"/api/v1/hosts/61/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.229Z","modified":"2016-08-31T16:59:43.559Z","name":"jprause-img-factory","description":"imported","inventory":2,"enabled":false,"instance_id":"420c7636-ae0a-6f5e-9792-59774df7924a","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": 0, - \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": - [\"VM Network\"], \"vmware_guestFullName\": \"CentOS 4/5/6/7 (64-bit)\", \"vmware_toolsInstallerMounted\": - false, \"vmware_memoryReservation\": 0, \"vmware_maxCpuUsage\": 4798, \"vmware_numMksConnections\": - 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": - 0, \"vmware_hostName\": \"dhcp-8-99-249.example.com\", - \"vmware_instanceUuid\": \"500c7a0d-0538-3baf-ba22-fb070f840b89\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_hostSystem\": \"ibm-x3550m4-01.example.com\", - \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 8192, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] jprause-img-factory/jprause-img-factory.vmx\", - \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": - 0, \"vmware_toolsStatus\": \"toolsNotRunning\", \"vmware_overallStatus\": - \"green\", \"vmware_numCpu\": 2, \"vmware_uuid\": \"420c7636-ae0a-6f5e-9792-59774df7924a\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 47246993009, - \"vmware_name\": \"jprause-img-factory\", \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", - \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": 68911484928, \"vmware_hostMemoryUsage\": - 0, \"vmware_distributedMemoryEntitlement\": 0, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_template\": false, \"vmware_toolsRunningStatus\": - \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": 0, \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_cpuReservation\": 0, - \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": - \"poweredOff\", \"vmware_guestId\": \"centos64Guest\", \"vmware_numVirtualDisks\": - 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": null, \"vmware_maxMemoryUsage\": - 8192, \"vmware_recordReplayState\": \"inactive\", \"vmware_unshared\": 47245746717, - \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":62,"type":"host","url":"/api/v1/hosts/62/","related":{"job_host_summaries":"/api/v1/hosts/62/job_host_summaries/","variable_data":"/api/v1/hosts/62/variable_data/","job_events":"/api/v1/hosts/62/job_events/","ad_hoc_commands":"/api/v1/hosts/62/ad_hoc_commands/","fact_versions":"/api/v1/hosts/62/fact_versions/","inventory_sources":"/api/v1/hosts/62/inventory_sources/","groups":"/api/v1/hosts/62/groups/","activity_stream":"/api/v1/hosts/62/activity_stream/","all_groups":"/api/v1/hosts/62/all_groups/","ad_hoc_command_events":"/api/v1/hosts/62/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.234Z","modified":"2016-08-31T16:59:43.564Z","name":"jwong-centos7-old","description":"imported","inventory":2,"enabled":false,"instance_id":"420c240f-7d98-98df-14a4-65596827ca25","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": 0, - \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": - [\"VM Network\"], \"vmware_guestFullName\": \"CentOS 4/5/6/7 (64-bit)\", \"vmware_toolsInstallerMounted\": - false, \"vmware_memoryReservation\": 0, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostName\": - \"dhcp-8-99-210.example.com\", \"vmware_instanceUuid\": - \"500c871d-ba8d-ef9e-89c0-78095c8f987f\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] jwong-centos7/jwong-centos7.vmx\", - \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": - 0, \"vmware_toolsStatus\": \"toolsNotRunning\", \"vmware_overallStatus\": - \"green\", \"vmware_numCpu\": 1, \"vmware_uuid\": \"420c240f-7d98-98df-14a4-65596827ca25\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 4074699488, \"vmware_name\": - \"jwong-centos7-old\", \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", - \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": 30477475840, \"vmware_hostMemoryUsage\": - 0, \"vmware_distributedMemoryEntitlement\": 0, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_template\": false, \"vmware_toolsRunningStatus\": - \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": 0, \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_cpuReservation\": 0, - \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": - \"poweredOff\", \"vmware_guestId\": \"centos64Guest\", \"vmware_numVirtualDisks\": - 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": null, \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 4074316332, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":63,"type":"host","url":"/api/v1/hosts/63/","related":{"job_host_summaries":"/api/v1/hosts/63/job_host_summaries/","variable_data":"/api/v1/hosts/63/variable_data/","job_events":"/api/v1/hosts/63/job_events/","ad_hoc_commands":"/api/v1/hosts/63/ad_hoc_commands/","fact_versions":"/api/v1/hosts/63/fact_versions/","inventory_sources":"/api/v1/hosts/63/inventory_sources/","groups":"/api/v1/hosts/63/groups/","activity_stream":"/api/v1/hosts/63/activity_stream/","all_groups":"/api/v1/hosts/63/all_groups/","ad_hoc_command_events":"/api/v1/hosts/63/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/20/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":20,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:40.239Z","modified":"2016-10-12T18:19:16.045Z","name":"jwong-dev","description":"imported","inventory":2,"enabled":true,"instance_id":"420cb104-d414-76e8-996f-fb361acc10d6","variables":"{\"vmware_privateMemory\": - 475, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": - 0, \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": - [\"VM Network\"], \"vmware_guestFullName\": \"CentOS 4/5/6/7 (64-bit)\", \"vmware_toolsInstallerMounted\": - false, \"vmware_memoryReservation\": 0, \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": - 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": - 43, \"vmware_hostSystem\": \"ibm-x3550m4-01.example.com\", - \"vmware_instanceUuid\": \"500cd4eb-2647-0faa-e0bd-27d7c09422cb\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_uptimeSeconds\": 2233053, \"vmware_memorySizeMB\": 8192, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[datastore1] jwong-centos7(2)/jwong-centos7(2).vmx\", - \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": - 8350, \"vmware_toolsStatus\": \"toolsNotInstalled\", \"vmware_overallStatus\": - \"green\", \"vmware_numCpu\": 4, \"vmware_uuid\": \"420cb104-d414-76e8-996f-fb361acc10d6\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 19305259016, - \"vmware_name\": \"jwong-dev\", \"vmware_toolsVersionStatus\": \"guestToolsNotInstalled\", - \"vmware_minRequiredEVCModeKey\": \"intel-sandybridge\", \"vmware_uncommitted\": - 42831184734, \"vmware_hostMemoryUsage\": 547, \"vmware_distributedMemoryEntitlement\": - 474, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"gray\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - false, \"vmware_toolsRunningStatus\": \"guestToolsNotRunning\", \"vmware_staticCpuEntitlement\": - 1431, \"vmware_overallCpuDemand\": 0, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": - [\"datastore1\"], \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": - \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": \"poweredOn\", - \"vmware_guestId\": \"centos64Guest\", \"vmware_numVirtualDisks\": 1, \"vmware_swappedMemory\": - 0, \"vmware_annotation\": null, \"vmware_maxMemoryUsage\": 8192, \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 1918894080, \"vmware_sharedMemory\": 165}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":20},{"id":64,"type":"host","url":"/api/v1/hosts/64/","related":{"job_host_summaries":"/api/v1/hosts/64/job_host_summaries/","variable_data":"/api/v1/hosts/64/variable_data/","job_events":"/api/v1/hosts/64/job_events/","ad_hoc_commands":"/api/v1/hosts/64/ad_hoc_commands/","fact_versions":"/api/v1/hosts/64/fact_versions/","inventory_sources":"/api/v1/hosts/64/inventory_sources/","groups":"/api/v1/hosts/64/groups/","activity_stream":"/api/v1/hosts/64/activity_stream/","all_groups":"/api/v1/hosts/64/all_groups/","ad_hoc_command_events":"/api/v1/hosts/64/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/11/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":11,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:40.245Z","modified":"2016-10-12T18:19:16.050Z","name":"jwong-esxi1.example.com","description":"imported","inventory":2,"enabled":true,"instance_id":"420cf288-bc81-acd9-78c0-052dc4bb08f8","variables":"{\"vmware_privateMemory\": - 2680, \"vmware_resourcePool\": \"Resources\", \"vmware_ipAddress\": \"10.8.97.18\", - \"vmware_guestMemoryUsage\": 245, \"vmware_overallCpuUsage\": 335, \"vmware_suspendInterval\": - 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"VMware - ESXi 6.0\", \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": - 0, \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 53, - \"vmware_hostName\": \"jwong-esxi1\", \"vmware_instanceUuid\": \"500cbde3-5317-e8d9-2596-957e6469ae2d\", - \"vmware_distributedCpuEntitlement\": 215, \"ansible_ssh_host\": \"10.8.97.18\", - \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_uptimeSeconds\": 179513, \"vmware_memorySizeMB\": 12288, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] jwong-esxi1.example.com/jwong-esxi1.example.com.vmx\", - \"vmware_guestState\": \"running\", \"vmware_staticMemoryEntitlement\": 12468, - \"vmware_toolsStatus\": \"toolsOk\", \"vmware_overallStatus\": \"green\", - \"vmware_numCpu\": 4, \"vmware_uuid\": \"420cf288-bc81-acd9-78c0-052dc4bb08f8\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 2463135919, \"vmware_name\": - \"jwong-esxi1.example.com\", \"vmware_toolsVersionStatus\": - \"guestToolsCurrent\", \"vmware_minRequiredEVCModeKey\": \"intel-sandybridge\", - \"vmware_uncommitted\": 727682654208, \"vmware_hostMemoryUsage\": 3080, \"vmware_distributedMemoryEntitlement\": - 1396, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"green\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - false, \"vmware_toolsRunningStatus\": \"guestToolsRunning\", \"vmware_staticCpuEntitlement\": - 1431, \"vmware_overallCpuDemand\": 359, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": - [\"NFS Share\"], \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": - \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": \"poweredOn\", - \"vmware_guestId\": \"vmkernel6Guest\", \"vmware_numVirtualDisks\": 4, \"vmware_swappedMemory\": - 0, \"vmware_annotation\": null, \"vmware_maxMemoryUsage\": 12288, \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 2461788409, \"vmware_sharedMemory\": 2808}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":11},{"id":65,"type":"host","url":"/api/v1/hosts/65/","related":{"job_host_summaries":"/api/v1/hosts/65/job_host_summaries/","variable_data":"/api/v1/hosts/65/variable_data/","job_events":"/api/v1/hosts/65/job_events/","ad_hoc_commands":"/api/v1/hosts/65/ad_hoc_commands/","fact_versions":"/api/v1/hosts/65/fact_versions/","inventory_sources":"/api/v1/hosts/65/inventory_sources/","groups":"/api/v1/hosts/65/groups/","activity_stream":"/api/v1/hosts/65/activity_stream/","all_groups":"/api/v1/hosts/65/all_groups/","ad_hoc_command_events":"/api/v1/hosts/65/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/22/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":22,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:40.250Z","modified":"2016-10-12T18:19:16.054Z","name":"jwong-esxi2","description":"imported","inventory":2,"enabled":true,"instance_id":"420c67ab-3d87-40a0-a834-b329bdb3d366","variables":"{\"vmware_privateMemory\": - 2663, \"vmware_resourcePool\": \"Resources\", \"vmware_ipAddress\": \"10.8.97.19\", - \"vmware_guestMemoryUsage\": 245, \"vmware_overallCpuUsage\": 503, \"vmware_suspendInterval\": - 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"VMware - ESXi 6.0\", \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": - 0, \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 54, - \"vmware_hostName\": \"jwong-esxi2\", \"vmware_instanceUuid\": \"500c67c1-fc85-bfb9-b612-8d86f266905f\", - \"vmware_distributedCpuEntitlement\": 335, \"ansible_ssh_host\": \"10.8.97.19\", - \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_uptimeSeconds\": 178753, \"vmware_memorySizeMB\": 12288, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] jwong-esxi2/jwong-esxi2.vmx\", \"vmware_guestState\": - \"running\", \"vmware_staticMemoryEntitlement\": 12459, \"vmware_toolsStatus\": - \"toolsOk\", \"vmware_overallStatus\": \"green\", \"vmware_numCpu\": 4, \"vmware_uuid\": - \"420c67ab-3d87-40a0-a834-b329bdb3d366\", \"vmware_installBootRequired\": - false, \"vmware_committed\": 5398514598, \"vmware_name\": \"jwong-esxi2\", - \"vmware_toolsVersionStatus\": \"guestToolsCurrent\", \"vmware_minRequiredEVCModeKey\": - \"intel-sandybridge\", \"vmware_uncommitted\": 703272427520, \"vmware_hostMemoryUsage\": - 3135, \"vmware_distributedMemoryEntitlement\": 1300, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"green\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_template\": false, \"vmware_toolsRunningStatus\": - \"guestToolsRunning\", \"vmware_staticCpuEntitlement\": 1431, \"vmware_overallCpuDemand\": - 551, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"Prod_ISOs_NFS\", - \"NFS Share\"], \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": - \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": \"poweredOn\", - \"vmware_guestId\": \"vmkernel6Guest\", \"vmware_numVirtualDisks\": 3, \"vmware_swappedMemory\": - 0, \"vmware_annotation\": null, \"vmware_maxMemoryUsage\": 12288, \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 5397177909, \"vmware_sharedMemory\": 2793}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":22},{"id":66,"type":"host","url":"/api/v1/hosts/66/","related":{"job_host_summaries":"/api/v1/hosts/66/job_host_summaries/","variable_data":"/api/v1/hosts/66/variable_data/","job_events":"/api/v1/hosts/66/job_events/","ad_hoc_commands":"/api/v1/hosts/66/ad_hoc_commands/","fact_versions":"/api/v1/hosts/66/fact_versions/","inventory_sources":"/api/v1/hosts/66/inventory_sources/","groups":"/api/v1/hosts/66/groups/","activity_stream":"/api/v1/hosts/66/activity_stream/","all_groups":"/api/v1/hosts/66/all_groups/","ad_hoc_command_events":"/api/v1/hosts/66/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/23/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":23,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:40.255Z","modified":"2016-10-12T18:19:16.059Z","name":"jwong-esxi3","description":"imported","inventory":2,"enabled":true,"instance_id":"420c690c-26c8-fcd1-7413-18cea5be066a","variables":"{\"vmware_privateMemory\": - 2711, \"vmware_resourcePool\": \"Resources\", \"vmware_ipAddress\": \"10.8.97.20\", - \"vmware_guestMemoryUsage\": 122, \"vmware_overallCpuUsage\": 311, \"vmware_suspendInterval\": - 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"VMware - ESXi 6.0\", \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": - 0, \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 55, - \"vmware_hostName\": \"jwong-esxi3\", \"vmware_instanceUuid\": \"500c0d0e-fecc-c475-abab-aa20ca89766f\", - \"vmware_distributedCpuEntitlement\": 359, \"ansible_ssh_host\": \"10.8.97.20\", - \"vmware_hostSystem\": \"ibm-x3550m4-01.example.com\", - \"vmware_uptimeSeconds\": 179442, \"vmware_memorySizeMB\": 12288, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] jwong-esxi3/jwong-esxi3.vmx\", \"vmware_guestState\": - \"running\", \"vmware_staticMemoryEntitlement\": 12459, \"vmware_toolsStatus\": - \"toolsOk\", \"vmware_overallStatus\": \"green\", \"vmware_numCpu\": 4, \"vmware_uuid\": - \"420c690c-26c8-fcd1-7413-18cea5be066a\", \"vmware_installBootRequired\": - false, \"vmware_committed\": 5112921036, \"vmware_name\": \"jwong-esxi3\", - \"vmware_toolsVersionStatus\": \"guestToolsCurrent\", \"vmware_minRequiredEVCModeKey\": - \"intel-sandybridge\", \"vmware_uncommitted\": 703558037504, \"vmware_hostMemoryUsage\": - 3217, \"vmware_distributedMemoryEntitlement\": 1400, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"green\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_template\": false, \"vmware_toolsRunningStatus\": - \"guestToolsRunning\", \"vmware_staticCpuEntitlement\": 1431, \"vmware_overallCpuDemand\": - 359, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"Prod_ISOs_NFS\", - \"NFS Share\"], \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": - \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": \"poweredOn\", - \"vmware_guestId\": \"vmkernel6Guest\", \"vmware_numVirtualDisks\": 3, \"vmware_swappedMemory\": - 0, \"vmware_annotation\": null, \"vmware_maxMemoryUsage\": 12288, \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 5111567925, \"vmware_sharedMemory\": 3003}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":23},{"id":67,"type":"host","url":"/api/v1/hosts/67/","related":{"job_host_summaries":"/api/v1/hosts/67/job_host_summaries/","variable_data":"/api/v1/hosts/67/variable_data/","job_events":"/api/v1/hosts/67/job_events/","ad_hoc_commands":"/api/v1/hosts/67/ad_hoc_commands/","fact_versions":"/api/v1/hosts/67/fact_versions/","inventory_sources":"/api/v1/hosts/67/inventory_sources/","groups":"/api/v1/hosts/67/groups/","activity_stream":"/api/v1/hosts/67/activity_stream/","all_groups":"/api/v1/hosts/67/all_groups/","ad_hoc_command_events":"/api/v1/hosts/67/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/17/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":17,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:40.261Z","modified":"2016-10-12T18:19:16.063Z","name":"jwong-upstream-appliance","description":"imported","inventory":2,"enabled":true,"instance_id":"420c32cb-14a8-01b1-af26-ff5f1fd26d72","variables":"{\"vmware_vmPathName\": - \"[datastore1] jwong-upstream-appliance/jwong-upstream-appliance.vmx\", \"vmware_ipAddress\": - \"10.8.99.217\", \"vmware_guestMemoryUsage\": 0, \"vmware_networks\": [\"VM - Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 6 (64-bit)\", - \"vmware_product_instanceId\": null, \"vmware_balloonedMemory\": 0, \"vmware_hostSystem\": - \"ibm-x3550m4-01.example.com\", \"vmware_product_classId\": - null, \"vmware_distributedCpuEntitlement\": 23, \"ansible_ssh_host\": \"10.8.99.217\", - \"vmware_product_key\": 0, \"vmware_unshared\": 43168825344, \"vmware_guestState\": - \"running\", \"vmware_staticMemoryEntitlement\": 8290, \"vmware_toolsStatus\": - \"toolsOk\", \"vmware_overallStatus\": \"green\", \"vmware_minRequiredEVCModeKey\": - \"intel-sandybridge\", \"vmware_uuid\": \"420c32cb-14a8-01b1-af26-ff5f1fd26d72\", - \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_product_version\": - \"master\", \"vmware_staticCpuEntitlement\": 1431, \"vmware_uncommitted\": - 42730521445, \"vmware_distributedMemoryEntitlement\": 2329, \"vmware_product_appUrl\": - null, \"vmware_template\": false, \"vmware_overallCpuDemand\": 23, \"vmware_product_fullVersion\": - null, \"vmware_ftSecondaryLatency\": -1, \"vmware_numVirtualDisks\": 1, \"vmware_annotation\": - null, \"vmware_maxMemoryUsage\": 8192, \"vmware_recordReplayState\": \"inactive\", - \"vmware_sharedMemory\": 265, \"vmware_privateMemory\": 7927, \"vmware_resourcePool\": - \"Resources\", \"vmware_product_name\": \"ManageIQ\", \"vmware_overallCpuUsage\": - 23, \"vmware_suspendInterval\": 0, \"vmware_toolsInstallerMounted\": false, - \"vmware_memoryReservation\": 0, \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": - \"upstream\", \"vmware_product_vendor\": \"ManageIQ\", \"vmware_uptimeSeconds\": - 492533, \"vmware_memorySizeMB\": 8192, \"vmware_instanceUuid\": \"500c712a-265f-f2ac-0852-e303cca74dd7\", - \"vmware_compressedMemory\": 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": - 4, \"vmware_installBootRequired\": false, \"vmware_committed\": 60555090158, - \"vmware_name\": \"jwong-upstream-appliance\", \"vmware_toolsVersionStatus\": - \"guestToolsUnmanaged\", \"vmware_cpuReservation\": 0, \"vmware_hostMemoryUsage\": - 8021, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"green\", \"vmware_toolsRunningStatus\": \"guestToolsRunning\", \"vmware_powerState\": - \"poweredOn\", \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"datastore1\"], - \"vmware_guestId\": \"rhel6_64Guest\", \"vmware_swappedMemory\": 0, \"vmware_consumedOverheadMemory\": - 59, \"vmware_ftLatencyStatus\": \"gray\"}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":17},{"id":68,"type":"host","url":"/api/v1/hosts/68/","related":{"job_host_summaries":"/api/v1/hosts/68/job_host_summaries/","variable_data":"/api/v1/hosts/68/variable_data/","job_events":"/api/v1/hosts/68/job_events/","ad_hoc_commands":"/api/v1/hosts/68/ad_hoc_commands/","fact_versions":"/api/v1/hosts/68/fact_versions/","inventory_sources":"/api/v1/hosts/68/inventory_sources/","groups":"/api/v1/hosts/68/groups/","activity_stream":"/api/v1/hosts/68/activity_stream/","all_groups":"/api/v1/hosts/68/all_groups/","ad_hoc_command_events":"/api/v1/hosts/68/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/30/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":30,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:40.266Z","modified":"2016-10-12T18:19:16.068Z","name":"jwong-vc60","description":"imported","inventory":2,"enabled":true,"instance_id":"4200d0fa-6745-a0d3-a17b-532947ec7453","variables":"{\"vmware_privateMemory\": - 16172, \"vmware_resourcePool\": \"Resources\", \"vmware_ipAddress\": \"10.8.97.17\", - \"vmware_guestMemoryUsage\": 2129, \"vmware_overallCpuUsage\": 1247, \"vmware_suspendInterval\": - 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"SUSE - Linux Enterprise 11 (64-bit)\", \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": - 0, \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 79, - \"vmware_hostName\": \"jwong-vc60\", \"vmware_instanceUuid\": \"500015cd-2d52-00b9-d3ec-2c93dd0ef9d3\", - \"vmware_distributedCpuEntitlement\": 863, \"ansible_ssh_host\": \"10.8.97.17\", - \"vmware_hostSystem\": \"ibm-x3550m4-01.example.com\", - \"vmware_uptimeSeconds\": 178410, \"vmware_memorySizeMB\": 16384, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] jwong-vc60/jwong-vc60.vmx\", \"vmware_guestState\": - \"running\", \"vmware_staticMemoryEntitlement\": 16523, \"vmware_toolsStatus\": - \"toolsOk\", \"vmware_overallStatus\": \"green\", \"vmware_numCpu\": 4, \"vmware_uuid\": - \"4200d0fa-6745-a0d3-a17b-532947ec7453\", \"vmware_installBootRequired\": - false, \"vmware_committed\": 17482467517, \"vmware_name\": \"jwong-vc60\", - \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", \"vmware_minRequiredEVCModeKey\": - \"intel-sandybridge\", \"vmware_uncommitted\": 153664905216, \"vmware_hostMemoryUsage\": - 16302, \"vmware_distributedMemoryEntitlement\": 6075, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"green\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_template\": false, \"vmware_toolsRunningStatus\": - \"guestToolsRunning\", \"vmware_staticCpuEntitlement\": 1431, \"vmware_overallCpuDemand\": - 1343, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"NFS Share\"], - \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": - -1, \"vmware_powerState\": \"poweredOn\", \"vmware_guestId\": \"sles11_64Guest\", - \"vmware_numVirtualDisks\": 11, \"vmware_swappedMemory\": 0, \"vmware_annotation\": - \"VMware vCenter Server Appliance\", \"vmware_maxMemoryUsage\": 16384, \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 17480169426, \"vmware_sharedMemory\": 206}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":30},{"id":1,"type":"host","url":"/api/v1/hosts/1/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/1/job_host_summaries/","variable_data":"/api/v1/hosts/1/variable_data/","job_events":"/api/v1/hosts/1/job_events/","ad_hoc_commands":"/api/v1/hosts/1/ad_hoc_commands/","fact_versions":"/api/v1/hosts/1/fact_versions/","inventory_sources":"/api/v1/hosts/1/inventory_sources/","groups":"/api/v1/hosts/1/groups/","activity_stream":"/api/v1/hosts/1/activity_stream/","all_groups":"/api/v1/hosts/1/all_groups/","ad_hoc_command_events":"/api/v1/hosts/1/ad_hoc_command_events/","inventory":"/api/v1/inventories/1/","last_job":"/api/v1/jobs/103/","last_job_host_summary":"/api/v1/job_host_summaries/50/"},"summary_fields":{"last_job":{"id":103,"name":"bd-test","description":"","finished":"2017-02-06T15:07:19.588Z","status":"successful","failed":false,"job_template_id":30,"job_template_name":"bd-test"},"last_job_host_summary":{"id":50,"failed":false},"inventory":{"id":1,"name":"Demo - Inventory","description":"","has_active_failures":false,"total_hosts":2,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"recent_jobs":[{"status":"successful","finished":"2017-02-06T15:07:19.588Z","id":103,"name":"bd-test"},{"status":"successful","finished":"2016-11-30T16:28:21.612Z","id":69,"name":"bd-test"},{"status":"successful","finished":"2016-11-29T22:14:40.790Z","id":67,"name":"bd-test"},{"status":"successful","finished":"2016-11-29T22:10:39.315Z","id":63,"name":"bd-test"},{"status":"successful","finished":"2016-11-29T21:56:23.738Z","id":61,"name":"bd-test"}]},"created":"2016-08-02T17:57:03.207Z","modified":"2017-02-06T15:07:19.490Z","name":"localhost","description":"","inventory":1,"enabled":true,"instance_id":"","variables":"ansible_connection: - local","has_active_failures":false,"has_inventory_sources":false,"last_job":103,"last_job_host_summary":50},{"id":84,"type":"host","url":"/api/v1/hosts/84/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/84/job_host_summaries/","variable_data":"/api/v1/hosts/84/variable_data/","job_events":"/api/v1/hosts/84/job_events/","ad_hoc_commands":"/api/v1/hosts/84/ad_hoc_commands/","fact_versions":"/api/v1/hosts/84/fact_versions/","inventory_sources":"/api/v1/hosts/84/inventory_sources/","groups":"/api/v1/hosts/84/groups/","activity_stream":"/api/v1/hosts/84/activity_stream/","all_groups":"/api/v1/hosts/84/all_groups/","ad_hoc_command_events":"/api/v1/hosts/84/ad_hoc_command_events/","inventory":"/api/v1/inventories/6/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":2,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"recent_jobs":[]},"created":"2017-01-30T11:28:59.770Z","modified":"2017-01-30T11:28:59.770Z","name":"localhost","description":"","inventory":6,"enabled":true,"instance_id":"","variables":"","has_active_failures":false,"has_inventory_sources":false,"last_job":null,"last_job_host_summary":null},{"id":69,"type":"host","url":"/api/v1/hosts/69/","related":{"job_host_summaries":"/api/v1/hosts/69/job_host_summaries/","variable_data":"/api/v1/hosts/69/variable_data/","job_events":"/api/v1/hosts/69/job_events/","ad_hoc_commands":"/api/v1/hosts/69/ad_hoc_commands/","fact_versions":"/api/v1/hosts/69/fact_versions/","inventory_sources":"/api/v1/hosts/69/inventory_sources/","groups":"/api/v1/hosts/69/groups/","activity_stream":"/api/v1/hosts/69/activity_stream/","all_groups":"/api/v1/hosts/69/all_groups/","ad_hoc_command_events":"/api/v1/hosts/69/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.271Z","modified":"2016-08-31T16:59:43.596Z","name":"lucy_54","description":"imported","inventory":2,"enabled":false,"instance_id":"423307de-ccba-3188-0634-98b295a90aa0","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": 0, - \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": - [\"VM Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 6 (64-bit)\", - \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": 0, - \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostName\": - \"dhcp-8-99-217.example.com\", \"vmware_instanceUuid\": - \"5033aca6-0e5d-31f7-5921-bf61a3eee024\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_hostSystem\": \"ibm-x3550m4-03.example.com\", - \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 6144, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] lucy_54/lucy_54.vmx\", \"vmware_guestState\": - \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": - \"toolsNotRunning\", \"vmware_overallStatus\": \"green\", \"vmware_numCpu\": - 4, \"vmware_uuid\": \"423307de-ccba-3188-0634-98b295a90aa0\", \"vmware_installBootRequired\": - false, \"vmware_committed\": 8243838877, \"vmware_name\": \"lucy_54\", \"vmware_toolsVersionStatus\": - \"guestToolsUnmanaged\", \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": - 41344778240, \"vmware_hostMemoryUsage\": 0, \"vmware_distributedMemoryEntitlement\": - 0, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"gray\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - false, \"vmware_toolsRunningStatus\": \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": - 0, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"NFS Share\"], - \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": - -1, \"vmware_powerState\": \"poweredOff\", \"vmware_guestId\": \"rhel6_64Guest\", - \"vmware_numVirtualDisks\": 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": - null, \"vmware_maxMemoryUsage\": 6144, \"vmware_recordReplayState\": \"inactive\", - \"vmware_unshared\": 8242561551, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":70,"type":"host","url":"/api/v1/hosts/70/","related":{"job_host_summaries":"/api/v1/hosts/70/job_host_summaries/","variable_data":"/api/v1/hosts/70/variable_data/","job_events":"/api/v1/hosts/70/job_events/","ad_hoc_commands":"/api/v1/hosts/70/ad_hoc_commands/","fact_versions":"/api/v1/hosts/70/fact_versions/","inventory_sources":"/api/v1/hosts/70/inventory_sources/","groups":"/api/v1/hosts/70/groups/","activity_stream":"/api/v1/hosts/70/activity_stream/","all_groups":"/api/v1/hosts/70/all_groups/","ad_hoc_command_events":"/api/v1/hosts/70/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/24/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":24,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:40.277Z","modified":"2016-10-12T18:19:16.072Z","name":"lucy_555","description":"imported","inventory":2,"enabled":true,"instance_id":"420cfba0-7cc5-212e-3c27-b30eab582690","variables":"{\"vmware_vmPathName\": - \"[datastore1] Red Hat CloudForms 4.0/Red Hat CloudForms 4.0.vmx\", \"vmware_ipAddress\": - \"10.8.99.207\", \"vmware_guestMemoryUsage\": 2048, \"vmware_networks\": [\"VM - Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 6 (64-bit)\", - \"vmware_product_instanceId\": null, \"vmware_balloonedMemory\": 0, \"vmware_hostSystem\": - \"ibm-x3550m4-01.example.com\", \"vmware_product_classId\": - null, \"vmware_distributedCpuEntitlement\": 143, \"ansible_ssh_host\": \"10.8.99.207\", - \"vmware_product_key\": 0, \"vmware_unshared\": 47244640256, \"vmware_guestState\": - \"running\", \"vmware_staticMemoryEntitlement\": 8290, \"vmware_toolsStatus\": - \"toolsOk\", \"vmware_overallStatus\": \"green\", \"vmware_minRequiredEVCModeKey\": - \"intel-sandybridge\", \"vmware_uuid\": \"420cfba0-7cc5-212e-3c27-b30eab582690\", - \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_product_version\": - \"4.0\", \"vmware_staticCpuEntitlement\": 1431, \"vmware_uncommitted\": 1016, - \"vmware_distributedMemoryEntitlement\": 3738, \"vmware_product_appUrl\": - null, \"vmware_template\": false, \"vmware_overallCpuDemand\": 143, \"vmware_product_fullVersion\": - null, \"vmware_ftSecondaryLatency\": -1, \"vmware_numVirtualDisks\": 2, \"vmware_annotation\": - null, \"vmware_maxMemoryUsage\": 8192, \"vmware_recordReplayState\": \"inactive\", - \"vmware_sharedMemory\": 48, \"vmware_privateMemory\": 5982, \"vmware_resourcePool\": - \"Resources\", \"vmware_product_name\": \"Red Hat CloudForms 4.0\", \"vmware_overallCpuUsage\": - 143, \"vmware_suspendInterval\": 0, \"vmware_toolsInstallerMounted\": false, - \"vmware_memoryReservation\": 0, \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": - \"lucy_555\", \"vmware_product_vendor\": \"Red Hat, Inc.\", \"vmware_uptimeSeconds\": - 675007, \"vmware_memorySizeMB\": 8192, \"vmware_instanceUuid\": \"500c0810-9110-2ffc-4aa3-a93c41decac1\", - \"vmware_compressedMemory\": 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": - 4, \"vmware_installBootRequired\": false, \"vmware_committed\": 56030903778, - \"vmware_name\": \"lucy_555\", \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", - \"vmware_cpuReservation\": 0, \"vmware_hostMemoryUsage\": 6041, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"green\", \"vmware_toolsRunningStatus\": - \"guestToolsRunning\", \"vmware_powerState\": \"poweredOn\", \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"datastore1\"], \"vmware_guestId\": \"rhel6_64Guest\", - \"vmware_swappedMemory\": 0, \"vmware_consumedOverheadMemory\": 54, \"vmware_ftLatencyStatus\": - \"gray\"}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":24},{"id":71,"type":"host","url":"/api/v1/hosts/71/","related":{"job_host_summaries":"/api/v1/hosts/71/job_host_summaries/","variable_data":"/api/v1/hosts/71/variable_data/","job_events":"/api/v1/hosts/71/job_events/","ad_hoc_commands":"/api/v1/hosts/71/ad_hoc_commands/","fact_versions":"/api/v1/hosts/71/fact_versions/","inventory_sources":"/api/v1/hosts/71/inventory_sources/","groups":"/api/v1/hosts/71/groups/","activity_stream":"/api/v1/hosts/71/activity_stream/","all_groups":"/api/v1/hosts/71/all_groups/","ad_hoc_command_events":"/api/v1/hosts/71/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/10/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":10,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:40.282Z","modified":"2016-10-12T18:19:16.077Z","name":"lucy_561","description":"imported","inventory":2,"enabled":true,"instance_id":"420c1de8-2029-ebf4-2d4d-2dd9a7a9d095","variables":"{\"vmware_vmPathName\": - \"[datastore1] Red Hat CloudForms 4.1 Nightly/Red Hat CloudForms 4.1 Nightly.vmx\", - \"vmware_ipAddress\": \"10.8.99.215\", \"vmware_guestMemoryUsage\": 2949, - \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"Red Hat - Enterprise Linux 6 (64-bit)\", \"vmware_product_instanceId\": null, \"vmware_balloonedMemory\": - 0, \"vmware_hostSystem\": \"ibm-x3550m4-01.example.com\", - \"vmware_product_classId\": null, \"vmware_distributedCpuEntitlement\": 359, - \"ansible_ssh_host\": \"10.8.99.215\", \"vmware_product_key\": 0, \"vmware_unshared\": - 47244640256, \"vmware_guestState\": \"running\", \"vmware_staticMemoryEntitlement\": - 8311, \"vmware_toolsStatus\": \"toolsOk\", \"vmware_overallStatus\": \"green\", - \"vmware_minRequiredEVCModeKey\": \"intel-sandybridge\", \"vmware_uuid\": - \"420c1de8-2029-ebf4-2d4d-2dd9a7a9d095\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_product_version\": \"4.1-nightly\", \"vmware_staticCpuEntitlement\": - 1431, \"vmware_uncommitted\": 1024, \"vmware_distributedMemoryEntitlement\": - 4361, \"vmware_product_appUrl\": null, \"vmware_template\": false, \"vmware_overallCpuDemand\": - 359, \"vmware_product_fullVersion\": null, \"vmware_ftSecondaryLatency\": - -1, \"vmware_numVirtualDisks\": 2, \"vmware_annotation\": null, \"vmware_maxMemoryUsage\": - 8192, \"vmware_recordReplayState\": \"inactive\", \"vmware_sharedMemory\": - 61, \"vmware_privateMemory\": 6665, \"vmware_resourcePool\": \"Resources\", - \"vmware_product_name\": \"Red Hat CloudForms 4.1 Nightly\", \"vmware_overallCpuUsage\": - 335, \"vmware_suspendInterval\": 0, \"vmware_toolsInstallerMounted\": false, - \"vmware_memoryReservation\": 0, \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": - \"lucy-56\", \"vmware_product_vendor\": \"Red Hat, Inc.\", \"vmware_uptimeSeconds\": - 682954, \"vmware_memorySizeMB\": 8192, \"vmware_instanceUuid\": \"500ce219-3a39-5af8-3c81-f0f14241c3fc\", - \"vmware_compressedMemory\": 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": - 4, \"vmware_installBootRequired\": false, \"vmware_committed\": 56030904194, - \"vmware_name\": \"lucy_561\", \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", - \"vmware_cpuReservation\": 0, \"vmware_hostMemoryUsage\": 6728, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"green\", \"vmware_toolsRunningStatus\": - \"guestToolsRunning\", \"vmware_powerState\": \"poweredOn\", \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"datastore1\"], \"vmware_guestId\": \"rhel6_64Guest\", - \"vmware_swappedMemory\": 0, \"vmware_consumedOverheadMemory\": 55, \"vmware_ftLatencyStatus\": - \"gray\"}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":10},{"id":72,"type":"host","url":"/api/v1/hosts/72/","related":{"job_host_summaries":"/api/v1/hosts/72/job_host_summaries/","variable_data":"/api/v1/hosts/72/variable_data/","job_events":"/api/v1/hosts/72/job_events/","ad_hoc_commands":"/api/v1/hosts/72/ad_hoc_commands/","fact_versions":"/api/v1/hosts/72/fact_versions/","inventory_sources":"/api/v1/hosts/72/inventory_sources/","groups":"/api/v1/hosts/72/groups/","activity_stream":"/api/v1/hosts/72/activity_stream/","all_groups":"/api/v1/hosts/72/all_groups/","ad_hoc_command_events":"/api/v1/hosts/72/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/12/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":12,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:40.287Z","modified":"2016-10-12T18:19:16.081Z","name":"miq-brewery7","description":"imported","inventory":2,"enabled":true,"instance_id":"420cb39d-8c47-fd77-3672-e84d63604f8f","variables":"{\"vmware_privateMemory\": - 1816, \"vmware_resourcePool\": \"Resources\", \"vmware_ipAddress\": \"10.8.97.15\", - \"vmware_guestMemoryUsage\": 0, \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": - 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"CentOS - 4/5/6/7 (64-bit)\", \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": - 0, \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 49, - \"vmware_hostName\": \"miq-brewery7\", \"vmware_instanceUuid\": \"500c4a95-c6da-e132-efca-11d761282a1c\", - \"vmware_distributedCpuEntitlement\": 23, \"ansible_ssh_host\": \"10.8.97.15\", - \"vmware_hostSystem\": \"ibm-x3550m4-03.example.com\", - \"vmware_uptimeSeconds\": 91299, \"vmware_memorySizeMB\": 16384, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] miq-brewery7_1/miq-brewery7.vmx\", - \"vmware_guestState\": \"running\", \"vmware_staticMemoryEntitlement\": 16594, - \"vmware_toolsStatus\": \"toolsOk\", \"vmware_overallStatus\": \"green\", - \"vmware_numCpu\": 4, \"vmware_uuid\": \"420cb39d-8c47-fd77-3672-e84d63604f8f\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 131529230537, - \"vmware_name\": \"miq-brewery7\", \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", - \"vmware_minRequiredEVCModeKey\": \"intel-sandybridge\", \"vmware_uncommitted\": - 150193582080, \"vmware_hostMemoryUsage\": 1871, \"vmware_distributedMemoryEntitlement\": - 833, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"green\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - false, \"vmware_toolsRunningStatus\": \"guestToolsRunning\", \"vmware_staticCpuEntitlement\": - 1431, \"vmware_overallCpuDemand\": 23, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": - [\"NFS Share\"], \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": - \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": \"poweredOn\", - \"vmware_guestId\": \"centos64Guest\", \"vmware_numVirtualDisks\": 2, \"vmware_swappedMemory\": - 0, \"vmware_annotation\": \"CentOS 7.2 ImageFactory VM\", \"vmware_maxMemoryUsage\": - 16384, \"vmware_recordReplayState\": \"inactive\", \"vmware_unshared\": 131528189653, - \"vmware_sharedMemory\": 110}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":12},{"id":73,"type":"host","url":"/api/v1/hosts/73/","related":{"job_host_summaries":"/api/v1/hosts/73/job_host_summaries/","variable_data":"/api/v1/hosts/73/variable_data/","job_events":"/api/v1/hosts/73/job_events/","ad_hoc_commands":"/api/v1/hosts/73/ad_hoc_commands/","fact_versions":"/api/v1/hosts/73/fact_versions/","inventory_sources":"/api/v1/hosts/73/inventory_sources/","groups":"/api/v1/hosts/73/groups/","activity_stream":"/api/v1/hosts/73/activity_stream/","all_groups":"/api/v1/hosts/73/all_groups/","ad_hoc_command_events":"/api/v1/hosts/73/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.293Z","modified":"2016-08-31T16:59:43.614Z","name":"mk_centos_7.1","description":"imported","inventory":2,"enabled":false,"instance_id":"420cf912-fa6d-95ba-eeb8-1f2fc764f296","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"\", \"vmware_guestMemoryUsage\": 0, \"vmware_overallCpuUsage\": - 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": - \"CentOS 4/5/6/7 (64-bit)\", \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": - 0, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": - 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_instanceUuid\": \"500cc24a-4e94-db0f-b6e3-e0c162ec4cf8\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] mk_centos_7.1/mk_centos_7.1.vmtx\", - \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": - 0, \"vmware_toolsStatus\": \"toolsNotRunning\", \"vmware_overallStatus\": - \"green\", \"vmware_numCpu\": 1, \"vmware_uuid\": \"420cf912-fa6d-95ba-eeb8-1f2fc764f296\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 1655078419, \"vmware_name\": - \"mk_centos_7.1\", \"vmware_toolsVersionStatus\": \"guestToolsCurrent\", \"vmware_staticCpuEntitlement\": - 0, \"vmware_uncommitted\": 43634143232, \"vmware_hostMemoryUsage\": 0, \"vmware_distributedMemoryEntitlement\": - 0, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"gray\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - true, \"vmware_toolsRunningStatus\": \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": - 0, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"NFS Share\"], - \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": - -1, \"vmware_powerState\": \"poweredOff\", \"vmware_guestId\": \"centos64Guest\", - \"vmware_numVirtualDisks\": 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": - null, \"vmware_recordReplayState\": \"inactive\", \"vmware_unshared\": 1655067175, - \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":74,"type":"host","url":"/api/v1/hosts/74/","related":{"job_host_summaries":"/api/v1/hosts/74/job_host_summaries/","variable_data":"/api/v1/hosts/74/variable_data/","job_events":"/api/v1/hosts/74/job_events/","ad_hoc_commands":"/api/v1/hosts/74/ad_hoc_commands/","fact_versions":"/api/v1/hosts/74/fact_versions/","inventory_sources":"/api/v1/hosts/74/inventory_sources/","groups":"/api/v1/hosts/74/groups/","activity_stream":"/api/v1/hosts/74/activity_stream/","all_groups":"/api/v1/hosts/74/all_groups/","ad_hoc_command_events":"/api/v1/hosts/74/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.298Z","modified":"2016-08-31T16:59:43.619Z","name":"nc-cfme-db-primary","description":"imported","inventory":2,"enabled":false,"instance_id":"420ca140-7057-a964-ad7a-f9fb51e3c8e9","variables":"{\"vmware_vmPathName\": - \"[NFS Share] nc-cfme-db-primary/nc-cfme-db-primary.vmx\", \"vmware_guestMemoryUsage\": - 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"Red - Hat Enterprise Linux 6 (64-bit)\", \"vmware_product_instanceId\": null, \"vmware_balloonedMemory\": - 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_product_classId\": null, \"vmware_distributedCpuEntitlement\": 0, - \"vmware_product_key\": 0, \"vmware_unshared\": 4635002055, \"vmware_guestState\": - \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": - \"toolsNotRunning\", \"vmware_overallStatus\": \"green\", \"vmware_uuid\": - \"420ca140-7057-a964-ad7a-f9fb51e3c8e9\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_product_version\": \"4.1-rc2.1-nightly\", \"vmware_staticCpuEntitlement\": - 0, \"vmware_uncommitted\": 49385975808, \"vmware_distributedMemoryEntitlement\": - 0, \"vmware_product_appUrl\": null, \"vmware_template\": false, \"vmware_overallCpuDemand\": - 0, \"vmware_product_fullVersion\": null, \"vmware_ftSecondaryLatency\": -1, - \"vmware_numVirtualDisks\": 1, \"vmware_annotation\": null, \"vmware_recordReplayState\": - \"inactive\", \"vmware_sharedMemory\": 0, \"vmware_privateMemory\": 0, \"vmware_resourcePool\": - \"Resources\", \"vmware_product_name\": \"Red Hat CloudForms 4.1 RC2.1 Nightly\", - \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_toolsInstallerMounted\": - false, \"vmware_memoryReservation\": 0, \"vmware_numMksConnections\": 0, \"vmware_numEthernetCards\": - 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": \"dhcp-8-99-239.example.com\", - \"vmware_product_vendor\": \"Red Hat, Inc.\", \"vmware_uptimeSeconds\": 0, - \"vmware_memorySizeMB\": 8192, \"vmware_instanceUuid\": \"500c7825-5f67-1c20-df2e-a274ec4ee74c\", - \"vmware_compressedMemory\": 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": - 4, \"vmware_installBootRequired\": false, \"vmware_committed\": 21834913162, - \"vmware_name\": \"nc-cfme-db-primary\", \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", - \"vmware_cpuReservation\": 0, \"vmware_hostMemoryUsage\": 0, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_toolsRunningStatus\": - \"guestToolsNotRunning\", \"vmware_powerState\": \"poweredOff\", \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_guestId\": \"rhel6_64Guest\", - \"vmware_swappedMemory\": 0, \"vmware_consumedOverheadMemory\": 0, \"vmware_ftLatencyStatus\": - \"gray\"}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":75,"type":"host","url":"/api/v1/hosts/75/","related":{"job_host_summaries":"/api/v1/hosts/75/job_host_summaries/","variable_data":"/api/v1/hosts/75/variable_data/","job_events":"/api/v1/hosts/75/job_events/","ad_hoc_commands":"/api/v1/hosts/75/ad_hoc_commands/","fact_versions":"/api/v1/hosts/75/fact_versions/","inventory_sources":"/api/v1/hosts/75/inventory_sources/","groups":"/api/v1/hosts/75/groups/","activity_stream":"/api/v1/hosts/75/activity_stream/","all_groups":"/api/v1/hosts/75/all_groups/","ad_hoc_command_events":"/api/v1/hosts/75/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.303Z","modified":"2016-08-31T16:59:43.623Z","name":"nc-cfme-db-standby1","description":"imported","inventory":2,"enabled":false,"instance_id":"420c899f-a158-4b4f-2f78-33dc61399939","variables":"{\"vmware_vmPathName\": - \"[NFS Share] cfme-db-standby1/cfme-db-standby1.vmx\", \"vmware_guestMemoryUsage\": - 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"Red - Hat Enterprise Linux 6 (64-bit)\", \"vmware_product_instanceId\": null, \"vmware_balloonedMemory\": - 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_product_classId\": null, \"vmware_distributedCpuEntitlement\": 0, - \"vmware_product_key\": 0, \"vmware_unshared\": 4541588327, \"vmware_guestState\": - \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": - \"toolsNotRunning\", \"vmware_overallStatus\": \"green\", \"vmware_uuid\": - \"420c899f-a158-4b4f-2f78-33dc61399939\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_product_version\": \"4.1-rc2.1-nightly\", \"vmware_staticCpuEntitlement\": - 0, \"vmware_uncommitted\": 49399259136, \"vmware_distributedMemoryEntitlement\": - 0, \"vmware_product_appUrl\": null, \"vmware_template\": false, \"vmware_overallCpuDemand\": - 0, \"vmware_product_fullVersion\": null, \"vmware_ftSecondaryLatency\": -1, - \"vmware_numVirtualDisks\": 1, \"vmware_annotation\": null, \"vmware_recordReplayState\": - \"inactive\", \"vmware_sharedMemory\": 0, \"vmware_privateMemory\": 0, \"vmware_resourcePool\": - \"Resources\", \"vmware_product_name\": \"Red Hat CloudForms 4.1 RC2.1 Nightly\", - \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_toolsInstallerMounted\": - false, \"vmware_memoryReservation\": 0, \"vmware_numMksConnections\": 0, \"vmware_numEthernetCards\": - 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": \"dhcp-8-99-223.example.com\", - \"vmware_product_vendor\": \"Red Hat, Inc.\", \"vmware_uptimeSeconds\": 0, - \"vmware_memorySizeMB\": 8192, \"vmware_instanceUuid\": \"500c3bb1-3ca0-b84e-49bc-716999210331\", - \"vmware_compressedMemory\": 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": - 4, \"vmware_installBootRequired\": false, \"vmware_committed\": 13142158361, - \"vmware_name\": \"nc-cfme-db-standby1\", \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", - \"vmware_cpuReservation\": 0, \"vmware_hostMemoryUsage\": 0, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_toolsRunningStatus\": - \"guestToolsNotRunning\", \"vmware_powerState\": \"poweredOff\", \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_guestId\": \"rhel6_64Guest\", - \"vmware_swappedMemory\": 0, \"vmware_consumedOverheadMemory\": 0, \"vmware_ftLatencyStatus\": - \"gray\"}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":76,"type":"host","url":"/api/v1/hosts/76/","related":{"job_host_summaries":"/api/v1/hosts/76/job_host_summaries/","variable_data":"/api/v1/hosts/76/variable_data/","job_events":"/api/v1/hosts/76/job_events/","ad_hoc_commands":"/api/v1/hosts/76/ad_hoc_commands/","fact_versions":"/api/v1/hosts/76/fact_versions/","inventory_sources":"/api/v1/hosts/76/inventory_sources/","groups":"/api/v1/hosts/76/groups/","activity_stream":"/api/v1/hosts/76/activity_stream/","all_groups":"/api/v1/hosts/76/all_groups/","ad_hoc_command_events":"/api/v1/hosts/76/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.309Z","modified":"2016-08-31T16:59:43.628Z","name":"nc-cfme-db-standby2","description":"imported","inventory":2,"enabled":false,"instance_id":"420c7d82-dfcf-ff25-1fdb-d1ed2de9d289","variables":"{\"vmware_vmPathName\": - \"[NFS Share] nc-cfme-db-standby2_1/nc-cfme-db-standby2.vmx\", \"vmware_guestMemoryUsage\": - 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"Red - Hat Enterprise Linux 6 (64-bit)\", \"vmware_product_instanceId\": null, \"vmware_balloonedMemory\": - 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_product_classId\": null, \"vmware_distributedCpuEntitlement\": 0, - \"vmware_product_key\": 0, \"vmware_unshared\": 4497724272, \"vmware_guestState\": - \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": - \"toolsNotRunning\", \"vmware_overallStatus\": \"green\", \"vmware_uuid\": - \"420c7d82-dfcf-ff25-1fdb-d1ed2de9d289\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_product_version\": \"4.1-rc2.1-nightly\", \"vmware_staticCpuEntitlement\": - 0, \"vmware_uncommitted\": 49409482752, \"vmware_distributedMemoryEntitlement\": - 0, \"vmware_product_appUrl\": null, \"vmware_template\": false, \"vmware_overallCpuDemand\": - 0, \"vmware_product_fullVersion\": null, \"vmware_ftSecondaryLatency\": -1, - \"vmware_numVirtualDisks\": 1, \"vmware_annotation\": null, \"vmware_recordReplayState\": - \"inactive\", \"vmware_sharedMemory\": 0, \"vmware_privateMemory\": 0, \"vmware_resourcePool\": - \"Resources\", \"vmware_product_name\": \"Red Hat CloudForms 4.1 RC2.1 Nightly\", - \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_toolsInstallerMounted\": - false, \"vmware_memoryReservation\": 0, \"vmware_numMksConnections\": 0, \"vmware_numEthernetCards\": - 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": \"dhcp-8-99-215.example.com\", - \"vmware_product_vendor\": \"Red Hat, Inc.\", \"vmware_uptimeSeconds\": 0, - \"vmware_memorySizeMB\": 8192, \"vmware_instanceUuid\": \"500c02aa-7f5c-e726-8425-7a1320c173e3\", - \"vmware_compressedMemory\": 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": - 4, \"vmware_installBootRequired\": false, \"vmware_committed\": 13097884125, - \"vmware_name\": \"nc-cfme-db-standby2\", \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", - \"vmware_cpuReservation\": 0, \"vmware_hostMemoryUsage\": 0, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_toolsRunningStatus\": - \"guestToolsNotRunning\", \"vmware_powerState\": \"poweredOff\", \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_guestId\": \"rhel6_64Guest\", - \"vmware_swappedMemory\": 0, \"vmware_consumedOverheadMemory\": 0, \"vmware_ftLatencyStatus\": - \"gray\"}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":77,"type":"host","url":"/api/v1/hosts/77/","related":{"job_host_summaries":"/api/v1/hosts/77/job_host_summaries/","variable_data":"/api/v1/hosts/77/variable_data/","job_events":"/api/v1/hosts/77/job_events/","ad_hoc_commands":"/api/v1/hosts/77/ad_hoc_commands/","fact_versions":"/api/v1/hosts/77/fact_versions/","inventory_sources":"/api/v1/hosts/77/inventory_sources/","groups":"/api/v1/hosts/77/groups/","activity_stream":"/api/v1/hosts/77/activity_stream/","all_groups":"/api/v1/hosts/77/all_groups/","ad_hoc_command_events":"/api/v1/hosts/77/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/26/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":26,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:40.314Z","modified":"2016-10-12T18:19:16.086Z","name":"nick-brewery","description":"imported","inventory":2,"enabled":true,"instance_id":"4233fd3a-a0b6-a4b3-2ceb-fec1b6f57c95","variables":"{\"vmware_privateMemory\": - 10387, \"vmware_resourcePool\": \"Resources\", \"vmware_ipAddress\": \"10.8.97.4\", - \"vmware_guestMemoryUsage\": 0, \"vmware_overallCpuUsage\": 23, \"vmware_suspendInterval\": - 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"CentOS - 4/5/6/7 (64-bit)\", \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": - 0, \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 78, - \"vmware_hostName\": \"nick-brewery\", \"vmware_instanceUuid\": \"50333f3f-9b3e-2e1f-d937-062b14098cde\", - \"vmware_distributedCpuEntitlement\": 23, \"ansible_ssh_host\": \"10.8.97.4\", - \"vmware_hostSystem\": \"ibm-x3550m4-03.example.com\", - \"vmware_uptimeSeconds\": 7875, \"vmware_memorySizeMB\": 16384, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] nick-brewery/nick-brewery.vmx\", \"vmware_guestState\": - \"running\", \"vmware_staticMemoryEntitlement\": 16594, \"vmware_toolsStatus\": - \"toolsOk\", \"vmware_overallStatus\": \"green\", \"vmware_numCpu\": 4, \"vmware_uuid\": - \"4233fd3a-a0b6-a4b3-2ceb-fec1b6f57c95\", \"vmware_installBootRequired\": - false, \"vmware_committed\": 79040635662, \"vmware_name\": \"nick-brewery\", - \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", \"vmware_minRequiredEVCModeKey\": - \"intel-sandybridge\", \"vmware_uncommitted\": 7804731392, \"vmware_hostMemoryUsage\": - 11047, \"vmware_distributedMemoryEntitlement\": 3267, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"green\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_template\": false, \"vmware_toolsRunningStatus\": - \"guestToolsRunning\", \"vmware_staticCpuEntitlement\": 1431, \"vmware_overallCpuDemand\": - 23, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"NFS Share\"], - \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": - -1, \"vmware_powerState\": \"poweredOn\", \"vmware_guestId\": \"centos64Guest\", - \"vmware_numVirtualDisks\": 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": - \"CentOS 7.1 ImageFactory VM\", \"vmware_maxMemoryUsage\": 16384, \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 78094615064, \"vmware_sharedMemory\": 5997}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":26},{"id":7,"type":"host","url":"/api/v1/hosts/7/","related":{"job_host_summaries":"/api/v1/hosts/7/job_host_summaries/","variable_data":"/api/v1/hosts/7/variable_data/","job_events":"/api/v1/hosts/7/job_events/","ad_hoc_commands":"/api/v1/hosts/7/ad_hoc_commands/","fact_versions":"/api/v1/hosts/7/fact_versions/","inventory_sources":"/api/v1/hosts/7/inventory_sources/","groups":"/api/v1/hosts/7/groups/","activity_stream":"/api/v1/hosts/7/activity_stream/","all_groups":"/api/v1/hosts/7/all_groups/","ad_hoc_command_events":"/api/v1/hosts/7/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/34/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":34,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:39.940Z","modified":"2016-10-12T18:19:16.090Z","name":"Red - Hat CloudForms 4.1 Nightly (12-Jul-2016 09","description":"imported","inventory":2,"enabled":true,"instance_id":"","variables":"{}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":34},{"id":78,"type":"host","url":"/api/v1/hosts/78/","related":{"job_host_summaries":"/api/v1/hosts/78/job_host_summaries/","variable_data":"/api/v1/hosts/78/variable_data/","job_events":"/api/v1/hosts/78/job_events/","ad_hoc_commands":"/api/v1/hosts/78/ad_hoc_commands/","fact_versions":"/api/v1/hosts/78/fact_versions/","inventory_sources":"/api/v1/hosts/78/inventory_sources/","groups":"/api/v1/hosts/78/groups/","activity_stream":"/api/v1/hosts/78/activity_stream/","all_groups":"/api/v1/hosts/78/all_groups/","ad_hoc_command_events":"/api/v1/hosts/78/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/28/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":28,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:40.320Z","modified":"2016-10-12T18:19:16.095Z","name":"satoe-brewery","description":"imported","inventory":2,"enabled":true,"instance_id":"564d25c2-cb51-9434-f647-3ff92cf69192","variables":"{\"vmware_privateMemory\": - 15119, \"vmware_resourcePool\": \"Resources\", \"vmware_ipAddress\": \"192.168.122.1\", - \"vmware_guestMemoryUsage\": 0, \"vmware_overallCpuUsage\": 23, \"vmware_suspendInterval\": - 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"Red - Hat Fedora (64-bit)\", \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": - 0, \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 99, - \"vmware_hostName\": \"satoe-brewery\", \"vmware_instanceUuid\": \"52833b35-2412-2a35-07cb-b5cc79030220\", - \"vmware_distributedCpuEntitlement\": 23, \"ansible_ssh_host\": \"192.168.122.1\", - \"vmware_hostSystem\": \"ibm-x3550m4-03.example.com\", - \"vmware_uptimeSeconds\": 91372, \"vmware_memorySizeMB\": 16384, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] kegerator2/kegerator2.vmx\", \"vmware_guestState\": - \"running\", \"vmware_staticMemoryEntitlement\": 16605, \"vmware_toolsStatus\": - \"toolsOk\", \"vmware_overallStatus\": \"green\", \"vmware_numCpu\": 4, \"vmware_uuid\": - \"564d25c2-cb51-9434-f647-3ff92cf69192\", \"vmware_installBootRequired\": - false, \"vmware_committed\": 231127633926, \"vmware_name\": \"satoe-brewery\", - \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", \"vmware_minRequiredEVCModeKey\": - \"intel-sandybridge\", \"vmware_uncommitted\": 27079094272, \"vmware_hostMemoryUsage\": - 15420, \"vmware_distributedMemoryEntitlement\": 5081, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"green\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_template\": false, \"vmware_toolsRunningStatus\": - \"guestToolsRunning\", \"vmware_staticCpuEntitlement\": 1431, \"vmware_overallCpuDemand\": - 23, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"NFS Share\"], - \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": - -1, \"vmware_powerState\": \"poweredOn\", \"vmware_guestId\": \"fedora64Guest\", - \"vmware_numVirtualDisks\": 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": - null, \"vmware_maxMemoryUsage\": 16384, \"vmware_recordReplayState\": \"inactive\", - \"vmware_unshared\": 231126225732, \"vmware_sharedMemory\": 1265}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":28}]}' + - 0.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:22 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/452/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:23 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:22 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 301 + message: MOVED PERMANENTLY + headers: + Date: + - Mon, 14 Aug 2017 20:36:23 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Location: + - https://dev-ansible-tower3.example.com/api/v1/projects/ + Content-Length: + - '0' + Content-Type: + - text/html; charset=utf-8 + body: + encoding: UTF-8 + string: '' http_version: - recorded_at: Thu, 09 Feb 2017 09:37:49 GMT + recorded_at: Mon, 14 Aug 2017 20:36:22 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/hosts/?page=4 + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -2547,7 +12081,7 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:49 GMT + - Mon, 14 Aug 2017 20:36:23 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: @@ -2555,284 +12089,375 @@ http_interactions: Allow: - GET, POST, HEAD, OPTIONS X-Api-Time: - - 0.112s + - 0.312s Content-Length: - - '34249' + - '54522' Content-Type: - application/json body: encoding: UTF-8 - string: '{"count":84,"next":null,"previous":"/api/v1/hosts/?page=3","results":[{"id":79,"type":"host","url":"/api/v1/hosts/79/","related":{"job_host_summaries":"/api/v1/hosts/79/job_host_summaries/","variable_data":"/api/v1/hosts/79/variable_data/","job_events":"/api/v1/hosts/79/job_events/","ad_hoc_commands":"/api/v1/hosts/79/ad_hoc_commands/","fact_versions":"/api/v1/hosts/79/fact_versions/","inventory_sources":"/api/v1/hosts/79/inventory_sources/","groups":"/api/v1/hosts/79/groups/","activity_stream":"/api/v1/hosts/79/activity_stream/","all_groups":"/api/v1/hosts/79/all_groups/","ad_hoc_command_events":"/api/v1/hosts/79/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/14/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":14,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:40.325Z","modified":"2016-10-12T18:19:16.099Z","name":"satoe-build-rhel72","description":"imported","inventory":2,"enabled":true,"instance_id":"420c776f-d431-d0da-4fe9-8a2a227695ae","variables":"{\"vmware_privateMemory\": - 1894, \"vmware_resourcePool\": \"Resources\", \"vmware_ipAddress\": \"10.8.97.10\", - \"vmware_guestMemoryUsage\": 20, \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": - 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"Red - Hat Enterprise Linux 7 (64-bit)\", \"vmware_toolsInstallerMounted\": false, - \"vmware_memoryReservation\": 0, \"vmware_maxCpuUsage\": 2399, \"vmware_numMksConnections\": - 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": - 34, \"vmware_hostName\": \"satoe-cfme-build\", \"vmware_instanceUuid\": \"500caa77-7289-699f-af4c-bbe8fc840dd3\", - \"vmware_distributedCpuEntitlement\": 0, \"ansible_ssh_host\": \"10.8.97.10\", - \"vmware_hostSystem\": \"ibm-x3550m4-03.example.com\", - \"vmware_uptimeSeconds\": 2230610, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] satoe-build-rhel72/satoe-build-rhel72.vmx\", - \"vmware_guestState\": \"running\", \"vmware_staticMemoryEntitlement\": 2114, - \"vmware_toolsStatus\": \"toolsOk\", \"vmware_overallStatus\": \"green\", - \"vmware_numCpu\": 1, \"vmware_uuid\": \"420c776f-d431-d0da-4fe9-8a2a227695ae\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 21751895543, - \"vmware_name\": \"satoe-build-rhel72\", \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", - \"vmware_minRequiredEVCModeKey\": \"intel-sandybridge\", \"vmware_uncommitted\": - 5830225920, \"vmware_hostMemoryUsage\": 1930, \"vmware_distributedMemoryEntitlement\": - 749, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"green\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - false, \"vmware_toolsRunningStatus\": \"guestToolsRunning\", \"vmware_staticCpuEntitlement\": - 362, \"vmware_overallCpuDemand\": 0, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": - [\"NFS Share\"], \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": - \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": \"poweredOn\", - \"vmware_guestId\": \"rhel7_64Guest\", \"vmware_numVirtualDisks\": 1, \"vmware_swappedMemory\": - 0, \"vmware_annotation\": null, \"vmware_maxMemoryUsage\": 2048, \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 21750305645, \"vmware_sharedMemory\": 32}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":14},{"id":80,"type":"host","url":"/api/v1/hosts/80/","related":{"job_host_summaries":"/api/v1/hosts/80/job_host_summaries/","variable_data":"/api/v1/hosts/80/variable_data/","job_events":"/api/v1/hosts/80/job_events/","ad_hoc_commands":"/api/v1/hosts/80/ad_hoc_commands/","fact_versions":"/api/v1/hosts/80/fact_versions/","inventory_sources":"/api/v1/hosts/80/inventory_sources/","groups":"/api/v1/hosts/80/groups/","activity_stream":"/api/v1/hosts/80/activity_stream/","all_groups":"/api/v1/hosts/80/all_groups/","ad_hoc_command_events":"/api/v1/hosts/80/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.331Z","modified":"2016-08-31T16:59:43.652Z","name":"test_billya","description":"imported","inventory":2,"enabled":false,"instance_id":"420cb94b-3d65-86a5-ca7e-f3c7c0c6c716","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": 0, - \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": - [\"VM Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 7 (64-bit)\", - \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": 0, - \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": - 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"test-vc60-host1.example.com\", - \"vmware_instanceUuid\": \"500c9705-7ea2-615e-32b4-66a487142f26\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[datastore1] test_billya/test_billya.vmx\", \"vmware_guestState\": - \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": - \"toolsNotInstalled\", \"vmware_overallStatus\": \"green\", \"vmware_numCpu\": - 1, \"vmware_uuid\": \"420cb94b-3d65-86a5-ca7e-f3c7c0c6c716\", \"vmware_installBootRequired\": - false, \"vmware_committed\": 24275974, \"vmware_name\": \"test_billya\", \"vmware_toolsVersionStatus\": - \"guestToolsNotInstalled\", \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": - 19495289331, \"vmware_hostMemoryUsage\": 0, \"vmware_distributedMemoryEntitlement\": - 0, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": - \"gray\", \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_template\": - false, \"vmware_toolsRunningStatus\": \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": - 0, \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"datastore1\"], - \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": - -1, \"vmware_powerState\": \"poweredOff\", \"vmware_guestId\": \"rhel7_64Guest\", - \"vmware_numVirtualDisks\": 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": - \"Owner: w w\\nEmail: wfitzger@redhat.com\\nSource: ag_rhel7_template\\n\\nMIQ - GUID=49daff48-f750-11e5-8377-f45c898c7d55\", \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 24117248, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":81,"type":"host","url":"/api/v1/hosts/81/","related":{"job_host_summaries":"/api/v1/hosts/81/job_host_summaries/","variable_data":"/api/v1/hosts/81/variable_data/","job_events":"/api/v1/hosts/81/job_events/","ad_hoc_commands":"/api/v1/hosts/81/ad_hoc_commands/","fact_versions":"/api/v1/hosts/81/fact_versions/","inventory_sources":"/api/v1/hosts/81/inventory_sources/","groups":"/api/v1/hosts/81/groups/","activity_stream":"/api/v1/hosts/81/activity_stream/","all_groups":"/api/v1/hosts/81/all_groups/","ad_hoc_command_events":"/api/v1/hosts/81/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.336Z","modified":"2016-08-31T16:59:43.656Z","name":"test_mkanoor_05_24_16","description":"imported","inventory":2,"enabled":false,"instance_id":"420c358a-4428-baab-205d-9b654d541cca","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": 0, - \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": - [\"VM Network\"], \"vmware_guestFullName\": \"CentOS 4/5/6/7 (64-bit)\", \"vmware_toolsInstallerMounted\": - false, \"vmware_memoryReservation\": 0, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostName\": - \"dhcp-8-99-237.example.com\", \"vmware_instanceUuid\": - \"500c8890-1e81-8c04-3b95-d6ff3cc0d26c\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] test_mkanoor_05_24_16/test_mkanoor_05_24_16.vmx\", - \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": - 0, \"vmware_toolsStatus\": \"toolsNotRunning\", \"vmware_overallStatus\": - \"green\", \"vmware_numCpu\": 1, \"vmware_uuid\": \"420c358a-4428-baab-205d-9b654d541cca\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 1886125283, \"vmware_name\": - \"test_mkanoor_05_24_16\", \"vmware_toolsVersionStatus\": \"guestToolsCurrent\", - \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": 43403456512, \"vmware_hostMemoryUsage\": - 0, \"vmware_distributedMemoryEntitlement\": 0, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_template\": false, \"vmware_toolsRunningStatus\": - \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": 0, \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_cpuReservation\": 0, - \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": - \"poweredOff\", \"vmware_guestId\": \"centos64Guest\", \"vmware_numVirtualDisks\": - 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": null, \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 1885753903, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":11,"type":"host","url":"/api/v1/hosts/11/","related":{"job_host_summaries":"/api/v1/hosts/11/job_host_summaries/","variable_data":"/api/v1/hosts/11/variable_data/","job_events":"/api/v1/hosts/11/job_events/","ad_hoc_commands":"/api/v1/hosts/11/ad_hoc_commands/","fact_versions":"/api/v1/hosts/11/fact_versions/","inventory_sources":"/api/v1/hosts/11/inventory_sources/","groups":"/api/v1/hosts/11/groups/","activity_stream":"/api/v1/hosts/11/activity_stream/","all_groups":"/api/v1/hosts/11/all_groups/","ad_hoc_command_events":"/api/v1/hosts/11/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/38/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":38,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:39.961Z","modified":"2016-10-12T18:19:16.104Z","name":"Upstream - Master 20160628","description":"imported","inventory":2,"enabled":true,"instance_id":"420c18fb-0847-5896-170a-95f6518d88e2","variables":"{\"vmware_vmPathName\": - \"[NFS Share] Upstream Master 20160628/Upstream Master 20160628.vmx\", \"vmware_ipAddress\": - \"10.8.99.226\", \"vmware_guestMemoryUsage\": 61, \"vmware_networks\": [\"VM - Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 6 (64-bit)\", - \"vmware_product_instanceId\": null, \"vmware_balloonedMemory\": 0, \"vmware_hostSystem\": - \"ibm-x3550m4-03.example.com\", \"vmware_product_classId\": - null, \"vmware_distributedCpuEntitlement\": 0, \"ansible_ssh_host\": \"10.8.99.226\", - \"vmware_product_key\": 0, \"vmware_unshared\": 13553160759, \"vmware_guestState\": - \"running\", \"vmware_staticMemoryEntitlement\": 6231, \"vmware_toolsStatus\": - \"toolsOk\", \"vmware_overallStatus\": \"green\", \"vmware_minRequiredEVCModeKey\": - \"intel-sandybridge\", \"vmware_uuid\": \"420c18fb-0847-5896-170a-95f6518d88e2\", - \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_product_version\": - \"master\", \"vmware_staticCpuEntitlement\": 1431, \"vmware_uncommitted\": - 29396512768, \"vmware_distributedMemoryEntitlement\": 1776, \"vmware_product_appUrl\": - null, \"vmware_template\": false, \"vmware_overallCpuDemand\": 0, \"vmware_product_fullVersion\": - null, \"vmware_ftSecondaryLatency\": -1, \"vmware_numVirtualDisks\": 1, \"vmware_annotation\": - null, \"vmware_maxMemoryUsage\": 6144, \"vmware_recordReplayState\": \"inactive\", - \"vmware_sharedMemory\": 0, \"vmware_privateMemory\": 5980, \"vmware_resourcePool\": - \"Resources\", \"vmware_product_name\": \"ManageIQ\", \"vmware_overallCpuUsage\": - 0, \"vmware_suspendInterval\": 0, \"vmware_toolsInstallerMounted\": false, - \"vmware_memoryReservation\": 0, \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": - \"dhcp-8-99-226.example.com\", \"vmware_product_vendor\": - \"ManageIQ\", \"vmware_uptimeSeconds\": 86498, \"vmware_memorySizeMB\": 6144, - \"vmware_instanceUuid\": \"500c7906-97fd-e39a-b98f-777a99d85ddf\", \"vmware_compressedMemory\": - 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": 4, \"vmware_installBootRequired\": - false, \"vmware_committed\": 13554614694, \"vmware_name\": \"Upstream Master - 20160628\", \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", \"vmware_cpuReservation\": - 0, \"vmware_hostMemoryUsage\": 6031, \"vmware_connectionState\": \"connected\", - \"vmware_guestHeartbeatStatus\": \"green\", \"vmware_toolsRunningStatus\": - \"guestToolsRunning\", \"vmware_powerState\": \"poweredOn\", \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_guestId\": \"rhel6_64Guest\", - \"vmware_swappedMemory\": 0, \"vmware_consumedOverheadMemory\": 52, \"vmware_ftLatencyStatus\": - \"gray\"}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":38},{"id":8,"type":"host","url":"/api/v1/hosts/8/","related":{"job_host_summaries":"/api/v1/hosts/8/job_host_summaries/","variable_data":"/api/v1/hosts/8/variable_data/","job_events":"/api/v1/hosts/8/job_events/","ad_hoc_commands":"/api/v1/hosts/8/ad_hoc_commands/","fact_versions":"/api/v1/hosts/8/fact_versions/","inventory_sources":"/api/v1/hosts/8/inventory_sources/","groups":"/api/v1/hosts/8/groups/","activity_stream":"/api/v1/hosts/8/activity_stream/","all_groups":"/api/v1/hosts/8/all_groups/","ad_hoc_command_events":"/api/v1/hosts/8/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:39.945Z","modified":"2016-08-31T16:59:43.665Z","name":"Upstream - Master 2016-08-19-1","description":"imported","inventory":2,"enabled":false,"instance_id":"420c5b3d-07d2-58f0-95f0-8f99bc72d4c9","variables":"{\"vmware_vmPathName\": - \"[NFS Share] ManageIQ Upstream 2016-08-19/ManageIQ Upstream 2016-08-19.vmx\", - \"vmware_guestMemoryUsage\": 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": - \"Red Hat Enterprise Linux 6 (64-bit)\", \"vmware_product_instanceId\": null, - \"vmware_balloonedMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-03.example.com\", - \"vmware_product_classId\": null, \"vmware_distributedCpuEntitlement\": 0, - \"vmware_product_key\": 0, \"vmware_unshared\": 4408238651, \"vmware_guestState\": - \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": - \"toolsNotRunning\", \"vmware_overallStatus\": \"green\", \"vmware_uuid\": - \"420c5b3d-07d2-58f0-95f0-8f99bc72d4c9\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_product_version\": \"master\", \"vmware_staticCpuEntitlement\": - 0, \"vmware_uncommitted\": 45179101184, \"vmware_distributedMemoryEntitlement\": - 0, \"vmware_product_appUrl\": null, \"vmware_template\": false, \"vmware_overallCpuDemand\": - 0, \"vmware_product_fullVersion\": null, \"vmware_ftSecondaryLatency\": -1, - \"vmware_numVirtualDisks\": 1, \"vmware_annotation\": null, \"vmware_maxMemoryUsage\": - 6144, \"vmware_recordReplayState\": \"inactive\", \"vmware_sharedMemory\": - 0, \"vmware_privateMemory\": 0, \"vmware_resourcePool\": \"Resources\", \"vmware_product_name\": - \"ManageIQ\", \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, - \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": 0, - \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": 0, \"vmware_numEthernetCards\": - 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": \"dhcp-8-99-248.example.com\", - \"vmware_product_vendor\": \"ManageIQ\", \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": - 6144, \"vmware_instanceUuid\": \"500c19f6-4c2d-0328-e4c3-b02a6cdebeff\", \"vmware_compressedMemory\": - 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": 4, \"vmware_installBootRequired\": - false, \"vmware_committed\": 4408467124, \"vmware_name\": \"Upstream Master - 2016-08-19-1\", \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", \"vmware_cpuReservation\": - 0, \"vmware_hostMemoryUsage\": 0, \"vmware_connectionState\": \"connected\", - \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_toolsRunningStatus\": - \"guestToolsNotRunning\", \"vmware_powerState\": \"poweredOff\", \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_guestId\": \"rhel6_64Guest\", - \"vmware_swappedMemory\": 0, \"vmware_consumedOverheadMemory\": 0, \"vmware_ftLatencyStatus\": - \"gray\"}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":9,"type":"host","url":"/api/v1/hosts/9/","related":{"job_host_summaries":"/api/v1/hosts/9/job_host_summaries/","variable_data":"/api/v1/hosts/9/variable_data/","job_events":"/api/v1/hosts/9/job_events/","ad_hoc_commands":"/api/v1/hosts/9/ad_hoc_commands/","fact_versions":"/api/v1/hosts/9/fact_versions/","inventory_sources":"/api/v1/hosts/9/inventory_sources/","groups":"/api/v1/hosts/9/groups/","activity_stream":"/api/v1/hosts/9/activity_stream/","all_groups":"/api/v1/hosts/9/all_groups/","ad_hoc_command_events":"/api/v1/hosts/9/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/","last_job":"/api/v1/jobs/36/","last_job_host_summary":"/api/v1/job_host_summaries/21/"},"summary_fields":{"last_job":{"id":36,"name":"Demo - Job Template","description":"","finished":"2016-10-12T18:19:15.491Z","status":"failed","failed":true,"job_template_id":5,"job_template_name":"Demo - Job Template"},"last_job_host_summary":{"id":21,"failed":true},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36,"name":"Demo - Job Template"}]},"created":"2016-08-31T16:59:39.950Z","modified":"2016-10-12T18:19:16.108Z","name":"Upstream - Master 2016-08-19-2","description":"imported","inventory":2,"enabled":true,"instance_id":"420ce26b-10bc-27ef-7032-5c00c829ea42","variables":"{\"vmware_vmPathName\": - \"[NFS Share] Upstream Master 2016-08-19-2/Upstream Master 2016-08-19-2.vmx\", - \"vmware_ipAddress\": \"10.8.99.249\", \"vmware_guestMemoryUsage\": 122, \"vmware_networks\": - [\"VM Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 6 (64-bit)\", - \"vmware_product_instanceId\": null, \"vmware_balloonedMemory\": 0, \"vmware_hostSystem\": - \"ibm-x3550m4-03.example.com\", \"vmware_product_classId\": - null, \"vmware_distributedCpuEntitlement\": 0, \"ansible_ssh_host\": \"10.8.99.249\", - \"vmware_product_key\": 0, \"vmware_unshared\": 4499153467, \"vmware_guestState\": - \"running\", \"vmware_staticMemoryEntitlement\": 6231, \"vmware_toolsStatus\": - \"toolsOk\", \"vmware_overallStatus\": \"green\", \"vmware_minRequiredEVCModeKey\": - \"intel-sandybridge\", \"vmware_uuid\": \"420ce26b-10bc-27ef-7032-5c00c829ea42\", - \"vmware_faultToleranceState\": \"notConfigured\", \"vmware_product_version\": - \"master\", \"vmware_staticCpuEntitlement\": 1431, \"vmware_uncommitted\": - 38450520064, \"vmware_distributedMemoryEntitlement\": 513, \"vmware_product_appUrl\": - null, \"vmware_template\": false, \"vmware_overallCpuDemand\": 0, \"vmware_product_fullVersion\": - null, \"vmware_ftSecondaryLatency\": -1, \"vmware_numVirtualDisks\": 1, \"vmware_annotation\": - null, \"vmware_maxMemoryUsage\": 6144, \"vmware_recordReplayState\": \"inactive\", - \"vmware_sharedMemory\": 134, \"vmware_privateMemory\": 694, \"vmware_resourcePool\": - \"Resources\", \"vmware_product_name\": \"ManageIQ\", \"vmware_overallCpuUsage\": - 0, \"vmware_suspendInterval\": 0, \"vmware_toolsInstallerMounted\": false, - \"vmware_memoryReservation\": 0, \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": - 1, \"vmware_numEthernetCards\": 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": - \"dhcp-8-99-249.example.com\", \"vmware_product_vendor\": - \"ManageIQ\", \"vmware_uptimeSeconds\": 524102, \"vmware_memorySizeMB\": 6144, - \"vmware_instanceUuid\": \"500c924f-ca30-a041-0453-55990e5f2a46\", \"vmware_compressedMemory\": - 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": 4, \"vmware_installBootRequired\": - false, \"vmware_committed\": 4499729260, \"vmware_name\": \"Upstream Master - 2016-08-19-2\", \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", \"vmware_cpuReservation\": - 0, \"vmware_hostMemoryUsage\": 769, \"vmware_connectionState\": \"connected\", - \"vmware_guestHeartbeatStatus\": \"green\", \"vmware_toolsRunningStatus\": - \"guestToolsRunning\", \"vmware_powerState\": \"poweredOn\", \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_guestId\": \"rhel6_64Guest\", - \"vmware_swappedMemory\": 0, \"vmware_consumedOverheadMemory\": 49, \"vmware_ftLatencyStatus\": - \"gray\"}","has_active_failures":true,"has_inventory_sources":true,"last_job":36,"last_job_host_summary":21},{"id":10,"type":"host","url":"/api/v1/hosts/10/","related":{"job_host_summaries":"/api/v1/hosts/10/job_host_summaries/","variable_data":"/api/v1/hosts/10/variable_data/","job_events":"/api/v1/hosts/10/job_events/","ad_hoc_commands":"/api/v1/hosts/10/ad_hoc_commands/","fact_versions":"/api/v1/hosts/10/fact_versions/","inventory_sources":"/api/v1/hosts/10/inventory_sources/","groups":"/api/v1/hosts/10/groups/","activity_stream":"/api/v1/hosts/10/activity_stream/","all_groups":"/api/v1/hosts/10/all_groups/","ad_hoc_command_events":"/api/v1/hosts/10/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:39.956Z","modified":"2016-08-31T16:59:43.674Z","name":"Upstream - Master 2016-08-19-3","description":"imported","inventory":2,"enabled":false,"instance_id":"420cdcea-6a7c-6dae-ce7a-285b0d9ff837","variables":"{\"vmware_vmPathName\": - \"[NFS Share] Upstream Master 2016-08-19-3/Upstream Master 2016-08-19-3.vmx\", - \"vmware_guestMemoryUsage\": 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": - \"Red Hat Enterprise Linux 6 (64-bit)\", \"vmware_product_instanceId\": null, - \"vmware_balloonedMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-01.example.com\", - \"vmware_product_classId\": null, \"vmware_distributedCpuEntitlement\": 0, - \"vmware_product_key\": 0, \"vmware_unshared\": 4405457467, \"vmware_guestState\": - \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": - \"toolsNotRunning\", \"vmware_overallStatus\": \"green\", \"vmware_uuid\": - \"420cdcea-6a7c-6dae-ce7a-285b0d9ff837\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_product_version\": \"master\", \"vmware_staticCpuEntitlement\": - 0, \"vmware_uncommitted\": 45181882368, \"vmware_distributedMemoryEntitlement\": - 0, \"vmware_product_appUrl\": null, \"vmware_template\": false, \"vmware_overallCpuDemand\": - 0, \"vmware_product_fullVersion\": null, \"vmware_ftSecondaryLatency\": -1, - \"vmware_numVirtualDisks\": 1, \"vmware_annotation\": null, \"vmware_maxMemoryUsage\": - 6144, \"vmware_recordReplayState\": \"inactive\", \"vmware_sharedMemory\": - 0, \"vmware_privateMemory\": 0, \"vmware_resourcePool\": \"Resources\", \"vmware_product_name\": - \"ManageIQ\", \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, - \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": 0, - \"vmware_maxCpuUsage\": 9596, \"vmware_numMksConnections\": 0, \"vmware_numEthernetCards\": - 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": \"dhcp-8-99-212.example.com\", - \"vmware_product_vendor\": \"ManageIQ\", \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": - 6144, \"vmware_instanceUuid\": \"500ca844-5d90-10d8-27c8-a7d90baad9d5\", \"vmware_compressedMemory\": - 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": 4, \"vmware_installBootRequired\": - false, \"vmware_committed\": 4405666202, \"vmware_name\": \"Upstream Master - 2016-08-19-3\", \"vmware_toolsVersionStatus\": \"guestToolsUnmanaged\", \"vmware_cpuReservation\": - 0, \"vmware_hostMemoryUsage\": 0, \"vmware_connectionState\": \"connected\", - \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_toolsRunningStatus\": - \"guestToolsNotRunning\", \"vmware_powerState\": \"poweredOff\", \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_guestId\": \"rhel6_64Guest\", - \"vmware_swappedMemory\": 0, \"vmware_consumedOverheadMemory\": 0, \"vmware_ftLatencyStatus\": - \"gray\"}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":12,"type":"host","url":"/api/v1/hosts/12/","related":{"job_host_summaries":"/api/v1/hosts/12/job_host_summaries/","variable_data":"/api/v1/hosts/12/variable_data/","job_events":"/api/v1/hosts/12/job_events/","ad_hoc_commands":"/api/v1/hosts/12/ad_hoc_commands/","fact_versions":"/api/v1/hosts/12/fact_versions/","inventory_sources":"/api/v1/hosts/12/inventory_sources/","groups":"/api/v1/hosts/12/groups/","activity_stream":"/api/v1/hosts/12/activity_stream/","all_groups":"/api/v1/hosts/12/all_groups/","ad_hoc_command_events":"/api/v1/hosts/12/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:39.967Z","modified":"2016-08-31T16:59:43.679Z","name":"Win2k12DC-template","description":"imported","inventory":2,"enabled":false,"instance_id":"423384ab-4d40-9997-ccd9-e490e8807bc5","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"\", \"vmware_guestMemoryUsage\": 0, \"vmware_overallCpuUsage\": - 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": [\"VM NFS Network\"], - \"vmware_guestFullName\": \"Microsoft Windows Server 2012 (64-bit)\", \"vmware_toolsInstallerMounted\": - false, \"vmware_memoryReservation\": 0, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": - \"ibm-x3550m4-04.example.com\", \"vmware_instanceUuid\": - \"50334b93-08e7-f25e-8da0-dc969e6d675e\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 4096, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] dev-scvmm2k12.vmtx\", \"vmware_guestState\": - \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": - \"toolsNotInstalled\", \"vmware_overallStatus\": \"green\", \"vmware_numCpu\": - 2, \"vmware_uuid\": \"423384ab-4d40-9997-ccd9-e490e8807bc5\", \"vmware_installBootRequired\": - false, \"vmware_committed\": 2784, \"vmware_name\": \"Win2k12DC-template\", - \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": 4488081408, \"vmware_hostMemoryUsage\": - 0, \"vmware_distributedMemoryEntitlement\": 0, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_template\": true, \"vmware_toolsRunningStatus\": - \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": 0, \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_cpuReservation\": 0, - \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": - \"poweredOff\", \"vmware_guestId\": \"windows8Server64Guest\", \"vmware_numVirtualDisks\": - 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": null, \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 0, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":82,"type":"host","url":"/api/v1/hosts/82/","related":{"job_host_summaries":"/api/v1/hosts/82/job_host_summaries/","variable_data":"/api/v1/hosts/82/variable_data/","job_events":"/api/v1/hosts/82/job_events/","ad_hoc_commands":"/api/v1/hosts/82/ad_hoc_commands/","fact_versions":"/api/v1/hosts/82/fact_versions/","inventory_sources":"/api/v1/hosts/82/inventory_sources/","groups":"/api/v1/hosts/82/groups/","activity_stream":"/api/v1/hosts/82/activity_stream/","all_groups":"/api/v1/hosts/82/all_groups/","ad_hoc_command_events":"/api/v1/hosts/82/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2016-08-31T16:59:40.342Z","modified":"2016-08-31T16:59:43.684Z","name":"windows_2012_temp","description":"imported","inventory":2,"enabled":false,"instance_id":"420cdbe0-1634-6447-5a48-a7428c66d175","variables":"{\"vmware_privateMemory\": - 0, \"vmware_resourcePool\": \"\", \"vmware_guestMemoryUsage\": 0, \"vmware_overallCpuUsage\": - 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": - \"Microsoft Windows Server 2012 (64-bit)\", \"vmware_toolsInstallerMounted\": - false, \"vmware_memoryReservation\": 0, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": - 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostName\": - \"windows_2012\", \"vmware_instanceUuid\": \"500c5536-1572-080a-b8f2-839df67b3b76\", - \"vmware_distributedCpuEntitlement\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", - \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 4096, \"vmware_compressedMemory\": - 0, \"vmware_vmPathName\": \"[NFS Share] windows_2012_temp/windows_2012_temp.vmtx\", - \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": - 0, \"vmware_toolsStatus\": \"toolsNotRunning\", \"vmware_overallStatus\": - \"green\", \"vmware_numCpu\": 2, \"vmware_uuid\": \"420cdbe0-1634-6447-5a48-a7428c66d175\", - \"vmware_installBootRequired\": false, \"vmware_committed\": 10506988130, - \"vmware_name\": \"windows_2012_temp\", \"vmware_toolsVersionStatus\": \"guestToolsCurrent\", - \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": 56259166208, \"vmware_hostMemoryUsage\": - 0, \"vmware_distributedMemoryEntitlement\": 0, \"vmware_connectionState\": - \"connected\", \"vmware_guestHeartbeatStatus\": \"gray\", \"vmware_faultToleranceState\": - \"notConfigured\", \"vmware_template\": true, \"vmware_toolsRunningStatus\": - \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": 0, \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"NFS Share\"], \"vmware_cpuReservation\": 0, - \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": -1, \"vmware_powerState\": - \"poweredOff\", \"vmware_guestId\": \"windows8Server64Guest\", \"vmware_numVirtualDisks\": - 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": null, \"vmware_recordReplayState\": - \"inactive\", \"vmware_unshared\": 10505941525, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null}]}' + string: '{"count":29,"next":"/api/v1/projects/?page=2","previous":null,"results":[{"id":36,"type":"project","url":"/api/v1/projects/36/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/88/","notification_templates_error":"/api/v1/projects/36/notification_templates_error/","notification_templates_success":"/api/v1/projects/36/notification_templates_success/","object_roles":"/api/v1/projects/36/object_roles/","notification_templates_any":"/api/v1/projects/36/notification_templates_any/","project_updates":"/api/v1/projects/36/project_updates/","update":"/api/v1/projects/36/update/","access_list":"/api/v1/projects/36/access_list/","playbooks":"/api/v1/projects/36/playbooks/","schedules":"/api/v1/projects/36/schedules/","teams":"/api/v1/projects/36/teams/","activity_stream":"/api/v1/projects/36/activity_stream/","organization":"/api/v1/organizations/2/","last_update":"/api/v1/project_updates/88/"},"summary_fields":{"last_job":{"id":88,"name":"jwong-org2","description":"","finished":"2017-01-09T22:30:24.403Z","status":"successful","failed":false},"last_update":{"id":88,"name":"jwong-org2","description":"","status":"successful","failed":false},"organization":{"id":2,"name":"Test + Org","description":"For tests"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":78,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":80,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":81,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":79,"name":"Read"}}},"created":"2017-01-09T20:52:37.728Z","modified":"2017-03-22T10:01:44.718Z","name":"jwong-org2","description":"MIQ + UI update","local_path":"_36__jwong_org2","scm_type":"git","scm_url":"https://github.com/ManageIQ/manageiq","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-01-09T22:30:24.403065Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","organization":2,"scm_delete_on_next_update":false,"scm_update_on_launch":false,"scm_update_cache_timeout":0,"last_update_failed":false,"last_updated":"2017-01-09T22:30:24.403065Z"},{"id":37,"type":"project","url":"/api/v1/projects/37/","related":{"created_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/217/","notification_templates_error":"/api/v1/projects/37/notification_templates_error/","notification_templates_success":"/api/v1/projects/37/notification_templates_success/","object_roles":"/api/v1/projects/37/object_roles/","notification_templates_any":"/api/v1/projects/37/notification_templates_any/","project_updates":"/api/v1/projects/37/project_updates/","update":"/api/v1/projects/37/update/","access_list":"/api/v1/projects/37/access_list/","playbooks":"/api/v1/projects/37/playbooks/","schedules":"/api/v1/projects/37/schedules/","teams":"/api/v1/projects/37/teams/","activity_stream":"/api/v1/projects/37/activity_stream/","organization":"/api/v1/organizations/2/","last_update":"/api/v1/project_updates/217/"},"summary_fields":{"last_job":{"id":217,"name":"Test + Project","description":"","finished":"2017-02-20T23:10:47.688Z","status":"successful","failed":false},"last_update":{"id":217,"name":"Test + Project","description":"","status":"successful","failed":false},"organization":{"id":2,"name":"Test + Org","description":"For tests"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":82,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":84,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":85,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":83,"name":"Read"}}},"created":"2017-01-09T20:52:53.974Z","modified":"2017-01-09T20:52:54.110Z","name":"Test + Project","description":"","local_path":"_37__test_project","scm_type":"git","scm_url":"https://github.com/ansible/ansible-tower-samples","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-02-20T23:10:47.688999Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","organization":2,"scm_delete_on_next_update":false,"scm_update_on_launch":true,"scm_update_cache_timeout":0,"last_update_failed":false,"last_updated":"2017-02-20T23:10:47.688999Z"},{"id":40,"type":"project","url":"/api/v1/projects/40/","related":{"created_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/99/","notification_templates_error":"/api/v1/projects/40/notification_templates_error/","notification_templates_success":"/api/v1/projects/40/notification_templates_success/","object_roles":"/api/v1/projects/40/object_roles/","notification_templates_any":"/api/v1/projects/40/notification_templates_any/","project_updates":"/api/v1/projects/40/project_updates/","update":"/api/v1/projects/40/update/","access_list":"/api/v1/projects/40/access_list/","playbooks":"/api/v1/projects/40/playbooks/","schedules":"/api/v1/projects/40/schedules/","teams":"/api/v1/projects/40/teams/","activity_stream":"/api/v1/projects/40/activity_stream/","organization":"/api/v1/organizations/3/","last_update":"/api/v1/project_updates/99/"},"summary_fields":{"last_job":{"id":99,"name":"RH-labs","description":"Red + Hat innovation Labs","finished":"2017-01-30T11:29:33.684Z","status":"successful","failed":false},"last_update":{"id":99,"name":"RH-labs","description":"Red + Hat innovation Labs","status":"successful","failed":false},"organization":{"id":3,"name":"ACME + Corp","description":"Which belongs to goern"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":115,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":117,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":118,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":116,"name":"Read"}}},"created":"2017-01-30T11:14:00.785Z","modified":"2017-01-30T11:14:00.911Z","name":"RH-labs","description":"Red + Hat innovation Labs","local_path":"_40__rh_labs","scm_type":"git","scm_url":"https://github.com/goern/artifactory-on-openshift","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-01-30T11:29:33.684145Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","organization":3,"scm_delete_on_next_update":false,"scm_update_on_launch":false,"scm_update_cache_timeout":0,"last_update_failed":false,"last_updated":"2017-01-30T11:29:33.684145Z"},{"id":422,"type":"project","url":"/api/v1/projects/422/","related":{"created_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/534/","notification_templates_error":"/api/v1/projects/422/notification_templates_error/","notification_templates_success":"/api/v1/projects/422/notification_templates_success/","object_roles":"/api/v1/projects/422/object_roles/","notification_templates_any":"/api/v1/projects/422/notification_templates_any/","project_updates":"/api/v1/projects/422/project_updates/","update":"/api/v1/projects/422/update/","access_list":"/api/v1/projects/422/access_list/","playbooks":"/api/v1/projects/422/playbooks/","schedules":"/api/v1/projects/422/schedules/","teams":"/api/v1/projects/422/teams/","activity_stream":"/api/v1/projects/422/activity_stream/","last_update":"/api/v1/project_updates/534/"},"summary_fields":{"last_job":{"id":534,"name":"Tywin","description":"Lannister","finished":"2017-03-23T17:41:52.750Z","status":"successful","failed":false},"last_update":{"id":534,"name":"Tywin","description":"Lannister","status":"successful","failed":false},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":1495,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":1497,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1498,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":1496,"name":"Read"}}},"created":"2017-03-23T17:41:49.079Z","modified":"2017-03-23T17:41:49.169Z","name":"Tywin","description":"Lannister","local_path":"_422__tywin","scm_type":"git","scm_url":"https://github.com/ManageIQ/guides","scm_branch":"master","scm_clean":true,"scm_delete_on_update":true,"credential":null,"last_job_run":"2017-03-23T17:41:52.750808Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","organization":null,"scm_delete_on_next_update":false,"scm_update_on_launch":true,"scm_update_cache_timeout":0,"last_update_failed":false,"last_updated":"2017-03-23T17:41:52.750808Z"},{"id":428,"type":"project","url":"/api/v1/projects/428/","related":{"created_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/1018/","notification_templates_error":"/api/v1/projects/428/notification_templates_error/","notification_templates_success":"/api/v1/projects/428/notification_templates_success/","object_roles":"/api/v1/projects/428/object_roles/","notification_templates_any":"/api/v1/projects/428/notification_templates_any/","project_updates":"/api/v1/projects/428/project_updates/","update":"/api/v1/projects/428/update/","access_list":"/api/v1/projects/428/access_list/","playbooks":"/api/v1/projects/428/playbooks/","schedules":"/api/v1/projects/428/schedules/","teams":"/api/v1/projects/428/teams/","activity_stream":"/api/v1/projects/428/activity_stream/","last_update":"/api/v1/project_updates/1018/"},"summary_fields":{"last_job":{"id":1018,"name":"gm_test_repo_1","description":"GM + forked repo of Madhu''s stuff","finished":"2017-08-03T20:45:13.278Z","status":"successful","failed":false},"last_update":{"id":1018,"name":"gm_test_repo_1","description":"GM + forked repo of Madhu''s stuff","status":"successful","failed":false},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":1635,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":1637,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1638,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":1636,"name":"Read"}}},"created":"2017-03-24T18:32:49.808Z","modified":"2017-08-03T20:45:10.477Z","name":"gm_test_repo_1","description":"GM + forked repo of Madhu''s stuff","local_path":"_428__gm_test_repo","scm_type":"git","scm_url":"https://github.com/gmcculloug/playbook.git","scm_branch":"master","scm_clean":true,"scm_delete_on_update":true,"credential":null,"last_job_run":"2017-08-03T20:45:13.278247Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","organization":null,"scm_delete_on_next_update":false,"scm_update_on_launch":true,"scm_update_cache_timeout":0,"last_update_failed":false,"last_updated":"2017-08-03T20:45:13.278247Z"},{"id":432,"type":"project","url":"/api/v1/projects/432/","related":{"created_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/903/","notification_templates_error":"/api/v1/projects/432/notification_templates_error/","notification_templates_success":"/api/v1/projects/432/notification_templates_success/","object_roles":"/api/v1/projects/432/object_roles/","notification_templates_any":"/api/v1/projects/432/notification_templates_any/","project_updates":"/api/v1/projects/432/project_updates/","update":"/api/v1/projects/432/update/","access_list":"/api/v1/projects/432/access_list/","playbooks":"/api/v1/projects/432/playbooks/","schedules":"/api/v1/projects/432/schedules/","teams":"/api/v1/projects/432/teams/","activity_stream":"/api/v1/projects/432/activity_stream/","last_update":"/api/v1/project_updates/903/"},"summary_fields":{"last_job":{"id":903,"name":"neKarel","description":"neKarel","finished":"2017-06-06T08:18:45.725Z","status":"failed","failed":true},"last_update":{"id":903,"name":"neKarel","description":"neKarel","status":"failed","failed":true},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":1655,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":1657,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1658,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":1656,"name":"Read"}}},"created":"2017-03-27T16:32:00.427Z","modified":"2017-06-06T08:18:31.056Z","name":"neKarel","description":"neKarel","local_path":"_432__nekarel","scm_type":"git","scm_url":"http://127.0.0.1","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-06-06T08:18:45.725899Z","last_job_failed":true,"has_schedules":false,"next_job_run":null,"status":"failed","organization":null,"scm_delete_on_next_update":false,"scm_update_on_launch":false,"scm_update_cache_timeout":0,"last_update_failed":true,"last_updated":"2017-06-06T08:18:45.725899Z"},{"id":433,"type":"project","url":"/api/v1/projects/433/","related":{"created_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/573/","notification_templates_error":"/api/v1/projects/433/notification_templates_error/","notification_templates_success":"/api/v1/projects/433/notification_templates_success/","object_roles":"/api/v1/projects/433/object_roles/","notification_templates_any":"/api/v1/projects/433/notification_templates_any/","project_updates":"/api/v1/projects/433/project_updates/","update":"/api/v1/projects/433/update/","access_list":"/api/v1/projects/433/access_list/","playbooks":"/api/v1/projects/433/playbooks/","schedules":"/api/v1/projects/433/schedules/","teams":"/api/v1/projects/433/teams/","activity_stream":"/api/v1/projects/433/activity_stream/","last_update":"/api/v1/project_updates/573/"},"summary_fields":{"last_job":{"id":573,"name":"hk2","description":"hk2","finished":"2017-03-27T16:57:06.381Z","status":"failed","failed":true},"last_update":{"id":573,"name":"hk2","description":"hk2","status":"failed","failed":true},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":1664,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":1666,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1667,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":1665,"name":"Read"}}},"created":"2017-03-27T16:56:54.501Z","modified":"2017-03-27T16:56:54.611Z","name":"hk2","description":"hk2","local_path":"_433__hk2","scm_type":"git","scm_url":"https://test","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-03-27T16:57:06.381254Z","last_job_failed":true,"has_schedules":false,"next_job_run":null,"status":"failed","organization":null,"scm_delete_on_next_update":false,"scm_update_on_launch":false,"scm_update_cache_timeout":0,"last_update_failed":true,"last_updated":"2017-03-27T16:57:06.381254Z"},{"id":440,"type":"project","url":"/api/v1/projects/440/","related":{"created_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/577/","notification_templates_error":"/api/v1/projects/440/notification_templates_error/","notification_templates_success":"/api/v1/projects/440/notification_templates_success/","object_roles":"/api/v1/projects/440/object_roles/","notification_templates_any":"/api/v1/projects/440/notification_templates_any/","project_updates":"/api/v1/projects/440/project_updates/","update":"/api/v1/projects/440/update/","access_list":"/api/v1/projects/440/access_list/","playbooks":"/api/v1/projects/440/playbooks/","schedules":"/api/v1/projects/440/schedules/","teams":"/api/v1/projects/440/teams/","activity_stream":"/api/v1/projects/440/activity_stream/","last_update":"/api/v1/project_updates/577/"},"summary_fields":{"last_job":{"id":577,"name":"Hk2","description":"hk2","finished":"2017-03-28T15:35:38.225Z","status":"failed","failed":true},"last_update":{"id":577,"name":"Hk2","description":"hk2","status":"failed","failed":true},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":1704,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":1706,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1707,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":1705,"name":"Read"}}},"created":"2017-03-28T15:35:28.298Z","modified":"2017-03-28T15:35:28.405Z","name":"Hk2","description":"hk2","local_path":"_440__hk2","scm_type":"git","scm_url":"https://test","scm_branch":"test","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-03-28T15:35:38.225329Z","last_job_failed":true,"has_schedules":false,"next_job_run":null,"status":"failed","organization":null,"scm_delete_on_next_update":false,"scm_update_on_launch":true,"scm_update_cache_timeout":0,"last_update_failed":true,"last_updated":"2017-03-28T15:35:38.225329Z"},{"id":448,"type":"project","url":"/api/v1/projects/448/","related":{"created_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/583/","notification_templates_error":"/api/v1/projects/448/notification_templates_error/","notification_templates_success":"/api/v1/projects/448/notification_templates_success/","object_roles":"/api/v1/projects/448/object_roles/","notification_templates_any":"/api/v1/projects/448/notification_templates_any/","project_updates":"/api/v1/projects/448/project_updates/","update":"/api/v1/projects/448/update/","access_list":"/api/v1/projects/448/access_list/","playbooks":"/api/v1/projects/448/playbooks/","schedules":"/api/v1/projects/448/schedules/","teams":"/api/v1/projects/448/teams/","activity_stream":"/api/v1/projects/448/activity_stream/","last_update":"/api/v1/project_updates/583/"},"summary_fields":{"last_job":{"id":583,"name":"demo","description":"","finished":"2017-03-29T07:41:15.420Z","status":"failed","failed":true},"last_update":{"id":583,"name":"demo","description":"","status":"failed","failed":true},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":1757,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":1759,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1760,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":1758,"name":"Read"}}},"created":"2017-03-29T07:41:07.078Z","modified":"2017-03-29T07:41:07.203Z","name":"demo","description":"","local_path":"_448__demo","scm_type":"git","scm_url":"http://github.com","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-03-29T07:41:15.420647Z","last_job_failed":true,"has_schedules":false,"next_job_run":null,"status":"failed","organization":null,"scm_delete_on_next_update":false,"scm_update_on_launch":false,"scm_update_cache_timeout":0,"last_update_failed":true,"last_updated":"2017-03-29T07:41:15.420647Z"},{"id":453,"type":"project","url":"/api/v1/projects/453/","related":{"created_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/622/","notification_templates_error":"/api/v1/projects/453/notification_templates_error/","notification_templates_success":"/api/v1/projects/453/notification_templates_success/","object_roles":"/api/v1/projects/453/object_roles/","notification_templates_any":"/api/v1/projects/453/notification_templates_any/","project_updates":"/api/v1/projects/453/project_updates/","update":"/api/v1/projects/453/update/","access_list":"/api/v1/projects/453/access_list/","playbooks":"/api/v1/projects/453/playbooks/","schedules":"/api/v1/projects/453/schedules/","teams":"/api/v1/projects/453/teams/","activity_stream":"/api/v1/projects/453/activity_stream/","last_update":"/api/v1/project_updates/622/"},"summary_fields":{"last_job":{"id":622,"name":"BZ + 1437377","description":"","finished":"2017-04-10T07:59:01.508Z","status":"successful","failed":false},"last_update":{"id":622,"name":"BZ + 1437377","description":"","status":"successful","failed":false},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":1811,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":1813,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1814,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":1812,"name":"Read"}}},"created":"2017-04-04T07:29:22.891Z","modified":"2017-04-10T07:37:11.651Z","name":"BZ + 1437377","description":"","local_path":"_453__bz_1437377","scm_type":"git","scm_url":"https://github.com/ManageIQ/manageiq","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-04-10T07:59:01.508661Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","organization":null,"scm_delete_on_next_update":false,"scm_update_on_launch":false,"scm_update_cache_timeout":0,"last_update_failed":false,"last_updated":"2017-04-10T07:59:01.508661Z"},{"id":454,"type":"project","url":"/api/v1/projects/454/","related":{"created_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/611/","notification_templates_error":"/api/v1/projects/454/notification_templates_error/","notification_templates_success":"/api/v1/projects/454/notification_templates_success/","object_roles":"/api/v1/projects/454/object_roles/","notification_templates_any":"/api/v1/projects/454/notification_templates_any/","project_updates":"/api/v1/projects/454/project_updates/","update":"/api/v1/projects/454/update/","access_list":"/api/v1/projects/454/access_list/","playbooks":"/api/v1/projects/454/playbooks/","schedules":"/api/v1/projects/454/schedules/","teams":"/api/v1/projects/454/teams/","activity_stream":"/api/v1/projects/454/activity_stream/","last_update":"/api/v1/project_updates/611/"},"summary_fields":{"last_job":{"id":611,"name":"Manager + Resource","description":"","finished":"2017-04-04T07:57:42.787Z","status":"successful","failed":false},"last_update":{"id":611,"name":"Manager + Resource","description":"","status":"successful","failed":false},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":1815,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":1817,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1818,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":1816,"name":"Read"}}},"created":"2017-04-04T07:57:16.462Z","modified":"2017-04-04T07:57:16.565Z","name":"Manager + Resource","description":"","local_path":"_454__manager_resource","scm_type":"git","scm_url":"https://github.com/ManageIq/manageiq","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-04-04T07:57:42.787214Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","organization":null,"scm_delete_on_next_update":false,"scm_update_on_launch":false,"scm_update_cache_timeout":0,"last_update_failed":false,"last_updated":"2017-04-04T07:57:42.787214Z"},{"id":455,"type":"project","url":"/api/v1/projects/455/","related":{"created_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/612/","notification_templates_error":"/api/v1/projects/455/notification_templates_error/","notification_templates_success":"/api/v1/projects/455/notification_templates_success/","object_roles":"/api/v1/projects/455/object_roles/","notification_templates_any":"/api/v1/projects/455/notification_templates_any/","project_updates":"/api/v1/projects/455/project_updates/","update":"/api/v1/projects/455/update/","access_list":"/api/v1/projects/455/access_list/","playbooks":"/api/v1/projects/455/playbooks/","schedules":"/api/v1/projects/455/schedules/","teams":"/api/v1/projects/455/teams/","activity_stream":"/api/v1/projects/455/activity_stream/","last_update":"/api/v1/project_updates/612/"},"summary_fields":{"last_job":{"id":612,"name":"Failure + I should be","description":"","finished":"2017-04-04T08:10:32.912Z","status":"successful","failed":false},"last_update":{"id":612,"name":"Failure + I should be","description":"","status":"successful","failed":false},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":1819,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":1821,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1822,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":1820,"name":"Read"}}},"created":"2017-04-04T08:10:07.459Z","modified":"2017-04-04T08:10:07.562Z","name":"Failure + I should be","description":"","local_path":"_455__failure_i_should_be","scm_type":"git","scm_url":"https://github.com/ManageIQ/manageiq","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-04-04T08:10:32.912183Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","organization":null,"scm_delete_on_next_update":false,"scm_update_on_launch":false,"scm_update_cache_timeout":0,"last_update_failed":false,"last_updated":"2017-04-04T08:10:32.912183Z"},{"id":457,"type":"project","url":"/api/v1/projects/457/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","notification_templates_error":"/api/v1/projects/457/notification_templates_error/","notification_templates_success":"/api/v1/projects/457/notification_templates_success/","object_roles":"/api/v1/projects/457/object_roles/","notification_templates_any":"/api/v1/projects/457/notification_templates_any/","project_updates":"/api/v1/projects/457/project_updates/","update":"/api/v1/projects/457/update/","access_list":"/api/v1/projects/457/access_list/","playbooks":"/api/v1/projects/457/playbooks/","schedules":"/api/v1/projects/457/schedules/","teams":"/api/v1/projects/457/teams/","activity_stream":"/api/v1/projects/457/activity_stream/","organization":"/api/v1/organizations/4/"},"summary_fields":{"organization":{"id":4,"name":"ManageIQ","description":"ManageIQ + Default Organization"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":1832,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":1834,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1835,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":1833,"name":"Read"}}},"created":"2017-04-04T19:19:23.633Z","modified":"2017-08-01T15:29:47.630Z","name":"DB + Playbooks 2","description":"DB Playbooks 2","local_path":"_457__db_playbooks_2","scm_type":"git","scm_url":"https://github.com/syncrou/ansible_playbooks.git","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-04-04T19:19:27.821246Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","organization":4,"scm_delete_on_next_update":false,"scm_update_on_launch":true,"scm_update_cache_timeout":0,"last_update_failed":false,"last_updated":"2017-04-04T19:19:27.821246Z"},{"id":469,"type":"project","url":"/api/v1/projects/469/","related":{"created_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/620/","notification_templates_error":"/api/v1/projects/469/notification_templates_error/","notification_templates_success":"/api/v1/projects/469/notification_templates_success/","object_roles":"/api/v1/projects/469/object_roles/","notification_templates_any":"/api/v1/projects/469/notification_templates_any/","project_updates":"/api/v1/projects/469/project_updates/","update":"/api/v1/projects/469/update/","access_list":"/api/v1/projects/469/access_list/","playbooks":"/api/v1/projects/469/playbooks/","schedules":"/api/v1/projects/469/schedules/","teams":"/api/v1/projects/469/teams/","activity_stream":"/api/v1/projects/469/activity_stream/","last_update":"/api/v1/project_updates/620/"},"summary_fields":{"last_job":{"id":620,"name":"Carlos","description":"","finished":"2017-04-10T07:42:58.907Z","status":"successful","failed":false},"last_update":{"id":620,"name":"Carlos","description":"","status":"successful","failed":false},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":1869,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":1871,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1872,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":1870,"name":"Read"}}},"created":"2017-04-05T06:55:42.308Z","modified":"2017-04-05T06:55:42.426Z","name":"Carlos","description":"","local_path":"_469__carlos","scm_type":"git","scm_url":"https://github.com/ManageIQ/manageiq","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-04-10T07:42:58.907046Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","organization":null,"scm_delete_on_next_update":false,"scm_update_on_launch":false,"scm_update_cache_timeout":0,"last_update_failed":false,"last_updated":"2017-04-10T07:42:58.907046Z"},{"id":473,"type":"project","url":"/api/v1/projects/473/","related":{"created_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/643/","notification_templates_error":"/api/v1/projects/473/notification_templates_error/","notification_templates_success":"/api/v1/projects/473/notification_templates_success/","object_roles":"/api/v1/projects/473/object_roles/","notification_templates_any":"/api/v1/projects/473/notification_templates_any/","project_updates":"/api/v1/projects/473/project_updates/","update":"/api/v1/projects/473/update/","access_list":"/api/v1/projects/473/access_list/","playbooks":"/api/v1/projects/473/playbooks/","schedules":"/api/v1/projects/473/schedules/","teams":"/api/v1/projects/473/teams/","activity_stream":"/api/v1/projects/473/activity_stream/","last_update":"/api/v1/project_updates/643/"},"summary_fields":{"last_job":{"id":643,"name":"Proving + a point","description":"","finished":"2017-04-12T13:53:54.990Z","status":"failed","failed":true},"last_update":{"id":643,"name":"Proving + a point","description":"","status":"failed","failed":true},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":1893,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":1895,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1896,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":1894,"name":"Read"}}},"created":"2017-04-12T13:53:48.138Z","modified":"2017-04-12T13:53:48.262Z","name":"Proving + a point","description":"","local_path":"_473__proving_a_point","scm_type":"git","scm_url":"http://127.0.0.1:3000/api/configuration_script_sources/10000000000043","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-04-12T13:53:54.990146Z","last_job_failed":true,"has_schedules":false,"next_job_run":null,"status":"failed","organization":null,"scm_delete_on_next_update":false,"scm_update_on_launch":false,"scm_update_cache_timeout":0,"last_update_failed":true,"last_updated":"2017-04-12T13:53:54.990146Z"},{"id":484,"type":"project","url":"/api/v1/projects/484/","related":{"created_by":"/api/v1/users/1/","credential":"/api/v1/credentials/12/","last_job":"/api/v1/project_updates/847/","notification_templates_error":"/api/v1/projects/484/notification_templates_error/","notification_templates_success":"/api/v1/projects/484/notification_templates_success/","object_roles":"/api/v1/projects/484/object_roles/","notification_templates_any":"/api/v1/projects/484/notification_templates_any/","project_updates":"/api/v1/projects/484/project_updates/","update":"/api/v1/projects/484/update/","access_list":"/api/v1/projects/484/access_list/","playbooks":"/api/v1/projects/484/playbooks/","schedules":"/api/v1/projects/484/schedules/","teams":"/api/v1/projects/484/teams/","activity_stream":"/api/v1/projects/484/activity_stream/","last_update":"/api/v1/project_updates/847/"},"summary_fields":{"last_job":{"id":847,"name":"TestLG1new","description":"TestLG1_2","finished":"2017-05-04T19:19:47.452Z","status":"failed","failed":true},"last_update":{"id":847,"name":"TestLG1new","description":"TestLG1_2","status":"failed","failed":true},"credential":{"id":12,"name":"jwong-scm","description":"github + cred","kind":"scm","cloud":false},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":1994,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":1996,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1997,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":1995,"name":"Read"}}},"created":"2017-05-01T21:32:42.782Z","modified":"2017-05-04T19:19:37.117Z","name":"TestLG1new","description":"TestLG1_2","local_path":"_484__testlg1","scm_type":"git","scm_url":"https://github.com/ansible/ansible-example.git","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":12,"last_job_run":"2017-05-04T19:19:47.452147Z","last_job_failed":true,"has_schedules":false,"next_job_run":null,"status":"failed","organization":null,"scm_delete_on_next_update":true,"scm_update_on_launch":true,"scm_update_cache_timeout":0,"last_update_failed":true,"last_updated":"2017-05-04T19:19:47.452147Z"},{"id":489,"type":"project","url":"/api/v1/projects/489/","related":{"created_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/818/","notification_templates_error":"/api/v1/projects/489/notification_templates_error/","notification_templates_success":"/api/v1/projects/489/notification_templates_success/","object_roles":"/api/v1/projects/489/object_roles/","notification_templates_any":"/api/v1/projects/489/notification_templates_any/","project_updates":"/api/v1/projects/489/project_updates/","update":"/api/v1/projects/489/update/","access_list":"/api/v1/projects/489/access_list/","playbooks":"/api/v1/projects/489/playbooks/","schedules":"/api/v1/projects/489/schedules/","teams":"/api/v1/projects/489/teams/","activity_stream":"/api/v1/projects/489/activity_stream/","last_update":"/api/v1/project_updates/818/"},"summary_fields":{"last_job":{"id":818,"name":"TestAdd","description":"Test + Add","finished":"2017-05-03T21:06:54.674Z","status":"failed","failed":true},"last_update":{"id":818,"name":"TestAdd","description":"Test + Add","status":"failed","failed":true},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":2010,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":2012,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":2013,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":2011,"name":"Read"}}},"created":"2017-05-03T21:06:46.451Z","modified":"2017-05-03T21:06:46.591Z","name":"TestAdd","description":"Test + Add","local_path":"_489__testadd","scm_type":"git","scm_url":"http://github.ansibleexamples.git","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-05-03T21:06:54.674633Z","last_job_failed":true,"has_schedules":false,"next_job_run":null,"status":"failed","organization":null,"scm_delete_on_next_update":false,"scm_update_on_launch":false,"scm_update_cache_timeout":0,"last_update_failed":true,"last_updated":"2017-05-03T21:06:54.674633Z"},{"id":490,"type":"project","url":"/api/v1/projects/490/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","notification_templates_error":"/api/v1/projects/490/notification_templates_error/","notification_templates_success":"/api/v1/projects/490/notification_templates_success/","object_roles":"/api/v1/projects/490/object_roles/","notification_templates_any":"/api/v1/projects/490/notification_templates_any/","project_updates":"/api/v1/projects/490/project_updates/","update":"/api/v1/projects/490/update/","access_list":"/api/v1/projects/490/access_list/","playbooks":"/api/v1/projects/490/playbooks/","schedules":"/api/v1/projects/490/schedules/","teams":"/api/v1/projects/490/teams/","activity_stream":"/api/v1/projects/490/activity_stream/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":2014,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":2016,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":2017,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":2015,"name":"Read"}}},"created":"2017-05-04T18:45:26.195Z","modified":"2017-08-01T15:29:47.656Z","name":"LGNew","description":"LGNew","local_path":"_490__lgnew","scm_type":"git","scm_url":"https://github.com/ansible/ansible-examples.git","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-05-04T19:05:45.636570Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","organization":null,"scm_delete_on_next_update":false,"scm_update_on_launch":true,"scm_update_cache_timeout":0,"last_update_failed":false,"last_updated":"2017-05-04T19:05:45.636570Z"},{"id":491,"type":"project","url":"/api/v1/projects/491/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","notification_templates_error":"/api/v1/projects/491/notification_templates_error/","notification_templates_success":"/api/v1/projects/491/notification_templates_success/","object_roles":"/api/v1/projects/491/object_roles/","notification_templates_any":"/api/v1/projects/491/notification_templates_any/","project_updates":"/api/v1/projects/491/project_updates/","update":"/api/v1/projects/491/update/","access_list":"/api/v1/projects/491/access_list/","playbooks":"/api/v1/projects/491/playbooks/","schedules":"/api/v1/projects/491/schedules/","teams":"/api/v1/projects/491/teams/","activity_stream":"/api/v1/projects/491/activity_stream/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":2018,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":2020,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":2021,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":2019,"name":"Read"}}},"created":"2017-05-04T19:21:48.780Z","modified":"2017-08-01T15:29:47.676Z","name":"Repo1","description":"Repo1","local_path":"_491__repo1","scm_type":"git","scm_url":"https://github.com/ansible/ansible-examples.git","scm_branch":"","scm_clean":true,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-05-04T19:57:35.563416Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","organization":null,"scm_delete_on_next_update":false,"scm_update_on_launch":true,"scm_update_cache_timeout":0,"last_update_failed":false,"last_updated":"2017-05-04T19:57:35.563416Z"},{"id":506,"type":"project","url":"/api/v1/projects/506/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","notification_templates_error":"/api/v1/projects/506/notification_templates_error/","notification_templates_success":"/api/v1/projects/506/notification_templates_success/","object_roles":"/api/v1/projects/506/object_roles/","notification_templates_any":"/api/v1/projects/506/notification_templates_any/","project_updates":"/api/v1/projects/506/project_updates/","update":"/api/v1/projects/506/update/","access_list":"/api/v1/projects/506/access_list/","playbooks":"/api/v1/projects/506/playbooks/","schedules":"/api/v1/projects/506/schedules/","teams":"/api/v1/projects/506/teams/","activity_stream":"/api/v1/projects/506/activity_stream/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":2084,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":2086,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":2087,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":2085,"name":"Read"}}},"created":"2017-06-16T14:22:23.202Z","modified":"2017-08-01T15:29:47.694Z","name":"mine","description":"","local_path":"_506__mine","scm_type":"git","scm_url":"git@github.com:cloudera/repository-example.git","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":null,"last_job_failed":true,"has_schedules":false,"next_job_run":null,"status":"never + updated","organization":null,"scm_delete_on_next_update":false,"scm_update_on_launch":false,"scm_update_cache_timeout":0,"last_update_failed":true,"last_updated":null},{"id":507,"type":"project","url":"/api/v1/projects/507/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","notification_templates_error":"/api/v1/projects/507/notification_templates_error/","notification_templates_success":"/api/v1/projects/507/notification_templates_success/","object_roles":"/api/v1/projects/507/object_roles/","notification_templates_any":"/api/v1/projects/507/notification_templates_any/","project_updates":"/api/v1/projects/507/project_updates/","update":"/api/v1/projects/507/update/","access_list":"/api/v1/projects/507/access_list/","playbooks":"/api/v1/projects/507/playbooks/","schedules":"/api/v1/projects/507/schedules/","teams":"/api/v1/projects/507/teams/","activity_stream":"/api/v1/projects/507/activity_stream/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":2088,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":2090,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":2091,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":2089,"name":"Read"}}},"created":"2017-06-16T14:31:43.094Z","modified":"2017-08-01T15:29:47.710Z","name":"mine-http","description":"","local_path":"_507__mine_http","scm_type":"git","scm_url":"https://github.com/cloudera/repository-example.git","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-06-16T14:31:47.851533Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never + updated","organization":null,"scm_delete_on_next_update":false,"scm_update_on_launch":false,"scm_update_cache_timeout":0,"last_update_failed":false,"last_updated":"2017-06-16T14:31:47.851533Z"},{"id":508,"type":"project","url":"/api/v1/projects/508/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","notification_templates_error":"/api/v1/projects/508/notification_templates_error/","notification_templates_success":"/api/v1/projects/508/notification_templates_success/","object_roles":"/api/v1/projects/508/object_roles/","notification_templates_any":"/api/v1/projects/508/notification_templates_any/","project_updates":"/api/v1/projects/508/project_updates/","update":"/api/v1/projects/508/update/","access_list":"/api/v1/projects/508/access_list/","playbooks":"/api/v1/projects/508/playbooks/","schedules":"/api/v1/projects/508/schedules/","teams":"/api/v1/projects/508/teams/","activity_stream":"/api/v1/projects/508/activity_stream/"},"summary_fields":{"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":2092,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":2094,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":2095,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":2093,"name":"Read"}}},"created":"2017-06-16T14:41:43.523Z","modified":"2017-08-01T15:29:47.725Z","name":"mine-ssh","description":"","local_path":"_508__mine_ssh","scm_type":"git","scm_url":"git@github.com:cloudera/repository-example.git","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":null,"last_job_failed":true,"has_schedules":false,"next_job_run":null,"status":"never + updated","organization":null,"scm_delete_on_next_update":false,"scm_update_on_launch":false,"scm_update_cache_timeout":0,"last_update_failed":true,"last_updated":null},{"id":600,"type":"project","url":"/api/v1/projects/600/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","notification_templates_error":"/api/v1/projects/600/notification_templates_error/","notification_templates_success":"/api/v1/projects/600/notification_templates_success/","object_roles":"/api/v1/projects/600/object_roles/","notification_templates_any":"/api/v1/projects/600/notification_templates_any/","project_updates":"/api/v1/projects/600/project_updates/","update":"/api/v1/projects/600/update/","access_list":"/api/v1/projects/600/access_list/","playbooks":"/api/v1/projects/600/playbooks/","schedules":"/api/v1/projects/600/schedules/","teams":"/api/v1/projects/600/teams/","activity_stream":"/api/v1/projects/600/activity_stream/","organization":"/api/v1/organizations/2/"},"summary_fields":{"organization":{"id":2,"name":"Test + Org","description":"For tests"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":2972,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":2974,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":2975,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":2973,"name":"Read"}}},"created":"2017-06-29T14:03:22.263Z","modified":"2017-07-25T17:52:22.723Z","name":"manual_repo_jwong","description":"stored + locally to tower","local_path":"jwong_repo3","scm_type":"","scm_url":"","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-07-25T17:51:32.405313Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"ok","organization":2,"scm_delete_on_next_update":false,"scm_update_on_launch":false,"scm_update_cache_timeout":0,"last_update_failed":false,"last_updated":"2017-07-25T17:51:32.405313Z"},{"id":601,"type":"project","url":"/api/v1/projects/601/","related":{"created_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/953/","notification_templates_error":"/api/v1/projects/601/notification_templates_error/","notification_templates_success":"/api/v1/projects/601/notification_templates_success/","object_roles":"/api/v1/projects/601/object_roles/","notification_templates_any":"/api/v1/projects/601/notification_templates_any/","project_updates":"/api/v1/projects/601/project_updates/","update":"/api/v1/projects/601/update/","access_list":"/api/v1/projects/601/access_list/","playbooks":"/api/v1/projects/601/playbooks/","schedules":"/api/v1/projects/601/schedules/","teams":"/api/v1/projects/601/teams/","activity_stream":"/api/v1/projects/601/activity_stream/","organization":"/api/v1/organizations/2/","last_update":"/api/v1/project_updates/953/"},"summary_fields":{"last_job":{"id":953,"name":"git-url-repo","description":"","finished":"2017-06-29T16:12:00.465Z","status":"failed","failed":true},"last_update":{"id":953,"name":"git-url-repo","description":"","status":"failed","failed":true},"organization":{"id":2,"name":"Test + Org","description":"For tests"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":2976,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":2978,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":2979,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":2977,"name":"Read"}}},"created":"2017-06-29T16:11:51.802Z","modified":"2017-06-29T16:11:52.122Z","name":"git-url-repo","description":"","local_path":"_601__git_url_repo","scm_type":"git","scm_url":"git@github.com:jameswnl/playbooks.git","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-06-29T16:12:00.465312Z","last_job_failed":true,"has_schedules":false,"next_job_run":null,"status":"failed","organization":2,"scm_delete_on_next_update":false,"scm_update_on_launch":false,"scm_update_cache_timeout":0,"last_update_failed":true,"last_updated":"2017-06-29T16:12:00.465312Z"},{"id":603,"type":"project","url":"/api/v1/projects/603/","related":{"created_by":"/api/v1/users/1/","credential":"/api/v1/credentials/176/","last_job":"/api/v1/project_updates/959/","notification_templates_error":"/api/v1/projects/603/notification_templates_error/","notification_templates_success":"/api/v1/projects/603/notification_templates_success/","object_roles":"/api/v1/projects/603/object_roles/","notification_templates_any":"/api/v1/projects/603/notification_templates_any/","project_updates":"/api/v1/projects/603/project_updates/","update":"/api/v1/projects/603/update/","access_list":"/api/v1/projects/603/access_list/","playbooks":"/api/v1/projects/603/playbooks/","schedules":"/api/v1/projects/603/schedules/","teams":"/api/v1/projects/603/teams/","activity_stream":"/api/v1/projects/603/activity_stream/","organization":"/api/v1/organizations/44/","last_update":"/api/v1/project_updates/959/"},"summary_fields":{"last_job":{"id":959,"name":"hello_repo","description":"","finished":"2017-07-14T18:46:38.166Z","status":"successful","failed":false},"last_update":{"id":959,"name":"hello_repo","description":"","status":"successful","failed":false},"credential":{"id":176,"name":"hello_scm_cred","description":"","kind":"scm","cloud":false},"organization":{"id":44,"name":"spec_test_org","description":"for + miq spec tests"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":3047,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":3049,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":3050,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":3048,"name":"Read"}}},"created":"2017-07-14T18:46:26.343Z","modified":"2017-07-14T18:46:26.486Z","name":"hello_repo","description":"","local_path":"_603__hello_repo","scm_type":"git","scm_url":"https://github.com/jameswnl/ansible-examples","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":176,"last_job_run":"2017-07-14T18:46:38.166748Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","organization":44,"scm_delete_on_next_update":false,"scm_update_on_launch":false,"scm_update_cache_timeout":0,"last_update_failed":false,"last_updated":"2017-07-14T18:46:38.166748Z"}]}' + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:23 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/36/playbooks/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:24 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, HEAD, OPTIONS + X-Api-Time: + - 1.981s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: '["db/schema.yml","locale/en.yml","product/alerts/rss/dev_vms.yml","product/alerts/rss/lifecycle_events.yml","product/alerts/rss/microsoft_vms.yml","product/alerts/rss/newest_vms.yml","product/alerts/rss/prod_vms.yml","product/alerts/rss/test_vms.yml","product/alerts/rss/vmware_vms.yml","product/chargeback/chargeback_vm_monthly.yaml","product/charts/miq_reports/ontap_logical_disk.yaml","product/charts/miq_reports/vim_perf_daily.yaml","product/charts/miq_reports/vim_perf_daily_cloud.yaml","product/charts/miq_reports/vim_perf_daily_middleware_datasource.yaml","product/charts/miq_reports/vim_perf_daily_middleware_messaging_jms_queue.yaml","product/charts/miq_reports/vim_perf_daily_middleware_messaging_jms_topic.yaml","product/charts/miq_reports/vim_perf_daily_middleware_server.yaml","product/charts/miq_reports/vim_perf_hourly.yaml","product/charts/miq_reports/vim_perf_hourly_cloud.yaml","product/charts/miq_reports/vim_perf_hourly_middleware_datasource.yaml","product/charts/miq_reports/vim_perf_hourly_middleware_messaging_jms_queue.yaml","product/charts/miq_reports/vim_perf_hourly_middleware_messaging_jms_topic.yaml","product/charts/miq_reports/vim_perf_hourly_middleware_server.yaml","product/charts/miq_reports/vim_perf_planning.yaml","product/charts/miq_reports/vim_perf_realtime.yaml","product/charts/miq_reports/vim_perf_realtime_middleware_datasource.yaml","product/charts/miq_reports/vim_perf_realtime_middleware_messaging_jms_queue.yaml","product/charts/miq_reports/vim_perf_realtime_middleware_messaging_jms_topic.yaml","product/charts/miq_reports/vim_perf_realtime_middleware_server.yaml","product/charts/miq_reports/vim_perf_summ_daily.yaml","product/charts/miq_reports/vim_perf_tag_daily.yaml","product/charts/miq_reports/vim_perf_tag_hourly.yaml","product/charts/miq_reports/vim_perf_topday.yaml","product/charts/miq_reports/vim_perf_tophour.yaml","product/charts/miq_reports/vim_perf_util_4_ts.yaml","product/charts/miq_reports/vim_perf_util_daily.yaml","product/charts/miq_reports/vmdb_database.yaml","product/charts/miq_reports/vmdb_table.yaml","product/compare/ems_clusters.yaml","product/compare/hosts.yaml","product/compare/vms.yaml","product/reports/100_Configuration + Management - Virtual Machines/005_VMs with Free Space _ 50% by Department.yaml","product/reports/100_Configuration + Management - Virtual Machines/006_VMs w_Free Space _ 75% by Function.yaml","product/reports/100_Configuration + Management - Virtual Machines/007_VMs w_Free Space _ 75% by LOB.yaml","product/reports/100_Configuration + Management - Virtual Machines/009_VM Disk Usage.yaml","product/reports/100_Configuration + Management - Virtual Machines/010_VMs_ Hardware.yaml","product/reports/100_Configuration + Management - Virtual Machines/020_Vendor and Type.yaml","product/reports/100_Configuration + Management - Virtual Machines/022_Vendor and Guest OS.yaml","product/reports/100_Configuration + Management - Virtual Machines/025_Location and Size.yaml","product/reports/100_Configuration + Management - Virtual Machines/026_VMs_ UUIDs.yaml","product/reports/100_Configuration + Management - Virtual Machines/027_VMs_ with no UUID.yaml","product/reports/100_Configuration + Management - Virtual Machines/028_VMs with Volume Free Space -= 20%.yaml","product/reports/100_Configuration + Management - Virtual Machines/029_VMs with Volume Free Space -= 80%.yaml","product/reports/100_Configuration + Management - Virtual Machines/030_by MAC Address.yaml","product/reports/100_Configuration + Management - Virtual Machines/031_Unregistered VMs.yaml","product/reports/100_Configuration + Management - Virtual Machines/032_Orphaned VMs.yaml","product/reports/100_Configuration + Management - Virtual Machines/036_Snapshot Summary.yaml","product/reports/100_Configuration + Management - Virtual Machines/050_User Accounts Windows .yaml","product/reports/100_Configuration + Management - Virtual Machines/051_User Accounts Linux.yaml","product/reports/100_Configuration + Management - Virtual Machines/052_Account Groups Windows .yaml","product/reports/100_Configuration + Management - Virtual Machines/053_Account Groups Linux.yaml","product/reports/100_Configuration + Management - Virtual Machines/059_Guest OS Information (any OS).yaml","product/reports/100_Configuration + Management - Virtual Machines/060_Guest OS Information - Windows.yaml","product/reports/100_Configuration + Management - Virtual Machines/062_Guest OS Information - Linux.yaml","product/reports/100_Configuration + Management - Virtual Machines/063_Guest OS Password Information.yaml","product/reports/100_Configuration + Management - Virtual Machines/064_Guest OS HKLM Registry Information.yaml","product/reports/110_Configuration + Management - Hosts/010_Summary.yaml","product/reports/110_Configuration Management + - Hosts/011_Host Summary with VM info.yaml","product/reports/110_Configuration + Management - Hosts/012_Virtual Infrastructure Platforms.yaml","product/reports/110_Configuration + Management - Hosts/015_Host - ESX Services.yaml","product/reports/110_Configuration + Management - Hosts/016_Host - ESX Service Console Packages.yaml","product/reports/110_Configuration + Management - Hosts/020_Date Brought under Management.yaml","product/reports/110_Configuration + Management - Hosts/030_Hardware.yaml","product/reports/110_Configuration Management + - Hosts/040_Summary for VMs.yaml","product/reports/110_Configuration Management + - Hosts/050_Patches.yaml","product/reports/110_Configuration Management - + Hosts/060_VM Relationships.yaml","product/reports/110_Configuration Management + - Hosts/070_Storage Adapters.yaml","product/reports/110_Configuration Management + - Hosts/080_Network information.yaml","product/reports/110_Configuration Management + - Hosts/090_vLANs and vSwitches.yaml","product/reports/120_Configuration Management + - Providers/010_Summary.yaml","product/reports/120_Configuration Management + - Providers/020_Host Relationships.yaml","product/reports/120_Configuration + Management - Providers/030_VM Relationships.yaml","product/reports/120_Configuration + Management - Providers/040_Monthly Host Count per Provider.yaml","product/reports/120_Configuration + Management - Providers/050_Monthly Vm Count per Provider.yaml","product/reports/130_Configuration + Management - Clusters/010_Summary.yaml","product/reports/130_Configuration + Management - Clusters/020_Hosts Affinity.yaml","product/reports/130_Configuration + Management - Clusters/030_VM Affinity with Power State.yaml","product/reports/130_Configuration + Management - Clusters/040_Cluster Resources.yaml","product/reports/140_Configuration + Management - Resource Pools/010_Summary.yaml","product/reports/150_Configuration + Management - Storage/010_Summary.yaml","product/reports/150_Configuration + Management - Storage/020_Summary for VMs.yaml","product/reports/150_Configuration + Management - Storage/030_Summary for Hosts.yaml","product/reports/150_Configuration + Management - Storage/040_LUN Information.yaml","product/reports/160_Configuration + Management - VM Folders/010_Folders_ VM Relationships.yaml","product/reports/170_Configuration + Management - Containers/010_Nodes by Capacity.yaml","product/reports/170_Configuration + Management - Containers/020_Nodes by CPU Usage.yaml","product/reports/170_Configuration + Management - Containers/030_Nodes by Memory Usage.yaml","product/reports/170_Configuration + Management - Containers/040_Recently Discovered Container Groups.yaml","product/reports/170_Configuration + Management - Containers/050_Number of Nodes per CPU Cores.yaml","product/reports/170_Configuration + Management - Containers/060_Container Groups per Ready Status.yaml","product/reports/170_Configuration + Management - Containers/070_Projects by Pod Number.yaml","product/reports/170_Configuration + Management - Containers/080_Projects by CPU Usage.yaml","product/reports/170_Configuration + Management - Containers/090_Projects by Memory Usage.yaml","product/reports/170_Configuration + Management - Containers/100_Pod counts For Container Images by Project.yaml","product/reports/170_Configuration + Management - Containers/110_Number of Images per Node.yaml","product/reports/300_Migration + Readiness - Virtual Machines/010_Summary - VMs migration ready.yaml","product/reports/300_Migration + Readiness - Virtual Machines/011_Summary - VMs NOT migration ready.yaml","product/reports/300_Migration + Readiness - Virtual Machines/020_Detailed - VMs migration ready.yaml","product/reports/300_Migration + Readiness - Virtual Machines/021_Detailed - VMs NOT migration ready.yaml","product/reports/400_Operations- + Virtual Machines/010_Registered VMs by Free Space.yaml","product/reports/400_Operations- + Virtual Machines/015_Registered Free Space _35%.yaml","product/reports/400_Operations- + Virtual Machines/016_Unregistered Free Space _35%.yaml","product/reports/400_Operations- + Virtual Machines/020_Online VMs.yaml","product/reports/400_Operations- Virtual + Machines/022_VMs not Powered On.yaml","product/reports/400_Operations- Virtual + Machines/040_VMs_ Offline VMs not yet Scanned.yaml","product/reports/400_Operations- + Virtual Machines/045_VMs_ Offline VMs with Snapshot.yaml","product/reports/400_Operations- + Virtual Machines/050_VMs without VMware tools.yaml","product/reports/400_Operations- + Virtual Machines/055_VMs with old VMware tools.yaml","product/reports/400_Operations- + Virtual Machines/060_VMware Tools Versions.yaml","product/reports/410_Operations + - EVM/025_EVM Snapshots.yaml","product/reports/410_Operations - EVM/026_Consolidate + Helper Snapshots.yaml","product/reports/410_Operations - EVM/030_EVM Server_ + UserID Usage Report.yaml","product/reports/410_Operations - EVM/032_EVM Server_ + UserIDs Never Used.yaml","product/reports/420_Operations - Clusters/010_Cluster + - DRS migrations.yaml","product/reports/421_Operations - Events/VC Snapshot + Events by User.yaml","product/reports/425_VM Sprawl - Candidates/052_VMs with + Volume Free Space -= 75%.yaml","product/reports/425_VM Sprawl - Candidates/053_VMs + with disk free space _ 5GB.yaml","product/reports/425_VM Sprawl - Candidates/054_VM + Uptime - longest running.yaml","product/reports/425_VM Sprawl - Candidates/055_VMs + Powered Off registered to a Host.yaml","product/reports/425_VM Sprawl - Candidates/056_VMs + pending Retirement.yaml","product/reports/425_VM Sprawl - Candidates/057_VMs + that are Retired.yaml","product/reports/425_VM Sprawl - Candidates/058_VMs + with invalid allocation of RAM.yaml","product/reports/425_VM Sprawl - Candidates/059_Summary + of VM Create and Deletes.yaml","product/reports/450_Relationships - Virtual + Machines, Folders, Clusters/010_VMs Relationships.yaml","product/reports/450_Relationships + - Virtual Machines, Folders, Clusters/020_VM Folders relationships.yaml","product/reports/450_Relationships + - Virtual Machines, Folders, Clusters/030_Clusters Relationships.yaml","product/reports/500_Events + - Operations/110_vm_operational_vm_power.yaml","product/reports/500_Events + - Operations/120_Events_for_VM_prod_webserver.yaml","product/reports/500_Events + - Operations/130_Reconfigure_Events_by_Department.yaml","product/reports/500_Events + - Operations/140_VC_Events_initiated_by_username_EVM.yaml","product/reports/520_Events + - Policy/110_Policy Events.yaml","product/reports/520_Events - Policy/120_Policy + Events2.yaml","product/reports/650_Performance by Asset Type - Virtual Machines/050_Host + CPU Usage per VM.yaml","product/reports/650_Performance by Asset Type - Virtual + Machines/065_VM Performance - daily over last week.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/100_VMs_with_Max_Daily_Mem_ 50%_past_mo.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/110_VMs_with_Avg_Daily_Mem_ 50%_past_mo.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/120_VMs_with_Avg_Daily_CPU_ 85%_past_mo.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/130_VMs_with_Max_Daily_CPU_ 85%_past_mo .yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/140_VMs with Avg Daily Mem _ 95%_past_mo + .yaml","product/reports/650_Performance by Asset Type - Virtual Machines/150_All + Departments with Performance.yaml","product/reports/650_Performance by Asset + Type - Virtual Machines/160_Top CPU Consumers weekly.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/170_Top Memory Consumers weekly.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/180_Top Storage Consumers.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/190_VM Resource Utilization.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/200_Weekly Utilization Overview.yaml","product/reports/660_Performance + by Asset Type - Clusters/110_Cluster_Memory_and_CPU_Usage_7_days.yaml","product/reports/670_Performance + by Asset Type - Middleware Servers/110_JVM Heap Usage - daily over last week.yaml","product/reports/670_Performance + by Asset Type - Middleware Servers/120_JVM Non Heap Usage - daily over last + week.yaml","product/reports/670_Performance by Asset Type - Middleware Servers/130_JVM + Garbage Collection - daily over last week.yaml","product/reports/670_Performance + by Asset Type - Middleware Servers/140_Transactions - every minute over last + hour.yaml","product/reports/670_Performance by Asset Type - Middleware Servers/150_Transactions + - hourly over last day.yaml","product/reports/680_Performance by Asset Type + - Middleware Datasources/110_Datasource Pool - every minute for the last hour.yaml","product/reports/680_Performance + by Asset Type - Middleware Datasources/120_Datasource Pool - hourly for the + last day.yaml","product/reports/700_Running Processes - Virtual Machines/110_Processes_for_prod_ + VMs_sort_by_CPU_Time.yaml","product/reports/750_Trending - Clusters/050_Cluster + memory trend 6 months.yaml","product/reports/750_Trending - Clusters/060_Cluster + CPU Trends last week.yaml","product/reports/750_Trending - Clusters/070_Cluster + IO Trends last week.yaml","product/reports/750_Trending - Clusters/080_Cluster + Memory Trends last week.yaml","product/reports/760_Trending - Storage/110_Datastore_Capacity_Trend_over_6 + mos.yaml","product/reports/770_Trending - Hosts/110_Host_Peak_CPU_Used_Trend_over_6_mos.yaml","product/reports/770_Trending + - Hosts/110_Host_Peak_Memory_Used_Trends_for_6_Mos.yaml","product/reports/770_Trending + - Hosts/120_Host CPU Trends last week.yaml","product/reports/770_Trending + - Hosts/130_Host IO Trends last week.yaml","product/reports/770_Trending - + Hosts/140_Host Memory Trends last week.yaml","product/reports/780_Tenants + - Tenant Quotas/001_Tenant Quotas.yaml","product/reports/900_Provisioning + - Activity Reports/110_Provisioning Activity - by Approver.yaml","product/reports/900_Provisioning + - Activity Reports/120_Provisioning Activity - by Datastore.yaml","product/reports/900_Provisioning + - Activity Reports/130_Provisioning Activity - by Requester.yaml","product/reports/900_Provisioning + - Activity Reports/140_Provisioning Activity - by VM.yaml","product/timelines/miq_reports/tl_bottleneck_events.yaml","product/timelines/miq_reports/tl_events_daily.yaml","product/timelines/miq_reports/tl_events_hourly.yaml","product/timelines/miq_reports/tl_policy_events_daily.yaml","product/timelines/miq_reports/tl_policy_events_hourly.yaml","product/views/Account-groups.yaml","product/views/Account-users.yaml","product/views/AdvancedSetting.yaml","product/views/ArbitrationProfile.yaml","product/views/AutomationRequest.yaml","product/views/AvailabilityZone.yaml","product/views/ChargebackRate.yaml","product/views/CimBaseStorageExtent.yaml","product/views/CimStorageExtent.yaml","product/views/CloudNetwork.yaml","product/views/CloudObjectStoreContainer-cloud_object_store_containers.yaml","product/views/CloudObjectStoreContainer.yaml","product/views/CloudObjectStoreObject-cloud_object_store_objects.yaml","product/views/CloudObjectStoreObject.yaml","product/views/CloudService.yaml","product/views/CloudSubnet.yaml","product/views/CloudTenant.yaml","product/views/CloudVolume-based_volumes.yaml","product/views/CloudVolume.yaml","product/views/CloudVolumeBackup-cloud_volume_backups.yaml","product/views/CloudVolumeBackup.yaml","product/views/CloudVolumeSnapshot-cloud_volume_snapshots.yaml","product/views/CloudVolumeSnapshot.yaml","product/views/Condition.yaml","product/views/ConditionSet.yaml","product/views/ConfiguredSystem.yaml","product/views/Container.yaml","product/views/ContainerBuild.yaml","product/views/ContainerGroup.yaml","product/views/ContainerImage.yaml","product/views/ContainerImageRegistry.yaml","product/views/ContainerNode.yaml","product/views/ContainerProject.yaml","product/views/ContainerReplicator.yaml","product/views/ContainerRoute.yaml","product/views/ContainerService.yaml","product/views/ContainerTemplate.yaml","product/views/CustomizationTemplate.yaml","product/views/Dialog.yaml","product/views/ems_block_storage.yaml","product/views/ems_object_storage.yaml","product/views/EmsCluster.yaml","product/views/EventLog-event_logs.yaml","product/views/Filesystem.yaml","product/views/FirewallRule.yaml","product/views/Flavor.yaml","product/views/FloatingIp.yaml","product/views/Group.yaml","product/views/GuestApplication.yaml","product/views/Host.yaml","product/views/HostAggregate.yaml","product/views/InstanceOrImage.yaml","product/views/IsoDatastore.yaml","product/views/Job.yaml","product/views/LdapRegion.yaml","product/views/LoadBalancer.yaml","product/views/ManageIQ_Providers_AnsibleTower_ConfigurationManager.yaml","product/views/ManageIQ_Providers_AnsibleTower_ConfigurationManager_ConfigurationScript.yaml","product/views/ManageIQ_Providers_AnsibleTower_ConfigurationManager_ConfiguredSystem.yaml","product/views/ManageIQ_Providers_AnsibleTower_ConfigurationManager_Job.yaml","product/views/ManageIQ_Providers_CloudManager.yaml","product/views/ManageIQ_Providers_CloudManager_AuthKeyPair.yaml","product/views/ManageIQ_Providers_CloudManager_OrchestrationStack.yaml","product/views/ManageIQ_Providers_CloudManager_Template-all_vms_and_templates.yaml","product/views/ManageIQ_Providers_CloudManager_Template.yaml","product/views/ManageIQ_Providers_CloudManager_Vm-all_vms_and_templates.yaml","product/views/ManageIQ_Providers_CloudManager_Vm-vms.yaml","product/views/ManageIQ_Providers_CloudManager_Vm.yaml","product/views/ManageIQ_Providers_ConfigurationManager.yaml","product/views/ManageIQ_Providers_ContainerManager.yaml","product/views/ManageIQ_Providers_DatawarehouseManager.yaml","product/views/ManageIQ_Providers_Foreman_ConfigurationManager.yaml","product/views/ManageIQ_Providers_Foreman_ConfigurationManager_ConfiguredSystem.yaml","product/views/ManageIQ_Providers_InfraManager.yaml","product/views/ManageIQ_Providers_InfraManager_Template.yaml","product/views/ManageIQ_Providers_InfraManager_Vm.yaml","product/views/ManageIQ_Providers_MiddlewareManager.yaml","product/views/ManageIQ_Providers_NetworkManager.yaml","product/views/ManageIQ_Providers_StorageManager.yaml","product/views/ManageIQ_Providers_Vmware_CloudManager_OrchestrationTemplate.yaml","product/views/MiddlewareDatasource.yaml","product/views/MiddlewareDeployment.yaml","product/views/MiddlewareDomain.yaml","product/views/MiddlewareMessaging.yaml","product/views/MiddlewareServer.yaml","product/views/MiddlewareServerGroup.yaml","product/views/MiqAction.yaml","product/views/MiqActionSet.yaml","product/views/MiqAeClass.yaml","product/views/MiqAeInstance.yaml","product/views/MiqAlert.yaml","product/views/MiqDialog.yaml","product/views/MiqEvent-actions.yaml","product/views/MiqEvent.yaml","product/views/MiqGroup.yaml","product/views/MiqPolicy.yaml","product/views/MiqPolicySet.yaml","product/views/MiqProvision.yaml","product/views/MiqReportResult-all.yaml","product/views/MiqReportResult.yaml","product/views/MiqRequest.yaml","product/views/MiqSchedule.yaml","product/views/MiqServer.yaml","product/views/MiqTask.yaml","product/views/MiqTemplate-all_miq_templates.yaml","product/views/MiqTemplate.yaml","product/views/MiqUserRole.yaml","product/views/MiqWidget-all.yaml","product/views/MiqWidget.yaml","product/views/MiqWorker.yaml","product/views/NetworkPort.yaml","product/views/NetworkRouter.yaml","product/views/OntapFileShare.yaml","product/views/OntapLogicalDisk.yaml","product/views/OntapStorageSystem.yaml","product/views/OntapStorageVolume.yaml","product/views/OpenscapRuleResult.yaml","product/views/OrchestrationStack.yaml","product/views/OrchestrationStackOutput.yaml","product/views/OrchestrationStackParameter.yaml","product/views/OrchestrationStackResource.yaml","product/views/OrchestrationTemplate.yaml","product/views/OrchestrationTemplateAzure.yaml","product/views/OrchestrationTemplateCfn.yaml","product/views/OrchestrationTemplateHot.yaml","product/views/OrchestrationTemplateVnfd.yaml","product/views/OsProcess-processes.yaml","product/views/Patch.yaml","product/views/PersistentVolume.yaml","product/views/Policy.yaml","product/views/PolicySet.yaml","product/views/ProductUpdate.yaml","product/views/PxeImageType.yaml","product/views/PxeServer.yaml","product/views/RegistryItem.yaml","product/views/ResourcePool.yaml","product/views/ScanHistory.yaml","product/views/ScanItemSet.yaml","product/views/SecurityGroup.yaml","product/views/ServerBuild.yaml","product/views/Service.yaml","product/views/ServiceCatalog.yaml","product/views/ServiceTemplate.yaml","product/views/ServiceTemplateCatalog.yaml","product/views/SniaLocalFileSystem.yaml","product/views/Storage.yaml","product/views/StorageCluster.yaml","product/views/StorageFile-debris_files.yaml","product/views/StorageFile-disk_files.yaml","product/views/StorageFile-files.yaml","product/views/StorageFile-snapshot_files.yaml","product/views/StorageFile-vm_misc_files.yaml","product/views/StorageFile-vm_ram_files.yaml","product/views/StorageManager.yaml","product/views/SystemService-filesystem_drivers.yaml","product/views/SystemService-kernel_drivers.yaml","product/views/SystemService-linux_initprocesses.yaml","product/views/SystemService-win32_services.yaml","product/views/SystemService.yaml","product/views/Tenant.yaml","product/views/User.yaml","product/views/Vm-all_vms.yaml","product/views/Vm-VmReconfigureRequest.yaml","product/views/Vm.yaml","product/views/Vm__restricted.yaml","product/views/VmdbDatabaseConnection.yaml","product/views/VmdbDatabaseSetting.yaml","product/views/VmdbIndex.yaml","product/views/VmdbTableEvm.yaml","product/views/VmOrTemplate-all_archived.yaml","product/views/VmOrTemplate-all_orphaned.yaml","product/views/VmOrTemplate-all_vms_and_templates.yaml","product/views/VmOrTemplate.yaml","product/views/Vsc.yaml","spec/migrations/data/20150625220141_fix_serialized_reports_for_rails_four_spec/binary_blob_hash.yaml","spec/migrations/data/20150625220141_fix_serialized_reports_for_rails_four_spec/binary_blob_obj.yaml","spec/migrations/data/20150625220141_fix_serialized_reports_for_rails_four_spec/miq_report_hash.yaml","spec/migrations/data/20150625220141_fix_serialized_reports_for_rails_four_spec/miq_report_obj.yaml","spec/models/rss_feed/data/newest_vms.yml"]' + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:25 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/37/playbooks/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:26 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, HEAD, OPTIONS + X-Api-Time: + - 0.032s + Content-Length: + - '19' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: '["hello_world.yml"]' http_version: - recorded_at: Thu, 09 Feb 2017 09:37:53 GMT + recorded_at: Mon, 14 Aug 2017 20:36:25 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/config + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/40/playbooks/ body: encoding: US-ASCII string: '' @@ -2845,27 +12470,31 @@ http_interactions: - "*/*" response: status: - code: 301 - message: MOVED PERMANENTLY + code: 200 + message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:52 GMT + - Mon, 14 Aug 2017 20:36:26 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 - Location: - - https://dev-ansible-tower3.example.com/api/v1/config/ + Vary: + - Accept,Cookie + Allow: + - GET, HEAD, OPTIONS + X-Api-Time: + - 0.034s Content-Length: - - '0' + - '190' Content-Type: - - text/html; charset=utf-8 + - application/json body: encoding: UTF-8 - string: '' + string: '["playbooks/check-service.yaml","playbooks/create-default-repositories.yaml","playbooks/delete-persistentvolumeclaims.yaml","playbooks/deploy-service.yaml","playbooks/undeploy-service.yaml"]' http_version: - recorded_at: Thu, 09 Feb 2017 09:37:53 GMT + recorded_at: Mon, 14 Aug 2017 20:36:26 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/config/ + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/422/playbooks/ body: encoding: US-ASCII string: '' @@ -2882,245 +12511,64 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:52 GMT + - Mon, 14 Aug 2017 20:36:27 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: - Accept,Cookie Allow: - - GET, POST, DELETE, HEAD, OPTIONS + - GET, HEAD, OPTIONS X-Api-Time: - - 0.223s - Content-Length: - - '9766' + - 0.034s + Transfer-Encoding: + - chunked Content-Type: - application/json body: - encoding: ASCII-8BIT - string: !binary |- - eyJldWxhIjoiQU5TSUJMRSBUT1dFUiBCWSBSRUQgSEFUIEVORCBVU0VSIExJ - Q0VOU0UgQUdSRUVNRU5UXG5cblRoaXMgZW5kIHVzZXIgbGljZW5zZSBhZ3Jl - ZW1lbnQgKOKAnEVVTEHigJ0pIGdvdmVybnMgdGhlIHVzZSBvZiB0aGUgQW5z - aWJsZSBUb3dlciBzb2Z0d2FyZSBhbmQgYW55IHJlbGF0ZWQgdXBkYXRlcywg - dXBncmFkZXMsIHZlcnNpb25zLCBhcHBlYXJhbmNlLCBzdHJ1Y3R1cmUgYW5k - IG9yZ2FuaXphdGlvbiAodGhlIOKAnEFuc2libGUgVG93ZXIgU29mdHdhcmXi - gJ0pLCByZWdhcmRsZXNzIG9mIHRoZSBkZWxpdmVyeSBtZWNoYW5pc20uICBc - blxuMS4gIExpY2Vuc2UgR3JhbnQuICBTdWJqZWN0IHRvIHRoZSB0ZXJtcyBv - ZiB0aGlzIEVVTEEsIFJlZCBIYXQsIEluYy4gYW5kIGl0cyBhZmZpbGlhdGVz - ICjigJxSZWQgSGF04oCdKSBncmFudCB0byB5b3UgKOKAnFlvdeKAnSkgYSBu - b24tdHJhbnNmZXJhYmxlLCBub24tZXhjbHVzaXZlLCB3b3JsZHdpZGUsIG5v - bi1zdWJsaWNlbnNhYmxlLCBsaW1pdGVkLCByZXZvY2FibGUgbGljZW5zZSB0 - byB1c2UgdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgZm9yIHRoZSB0ZXJt - IG9mIHRoZSBhc3NvY2lhdGVkIFJlZCBIYXQgU29mdHdhcmUgU3Vic2NyaXB0 - aW9uKHMpIGFuZCBpbiBhIHF1YW50aXR5IGVxdWFsIHRvIHRoZSBudW1iZXIg - b2YgUmVkIEhhdCBTb2Z0d2FyZSBTdWJzY3JpcHRpb25zIHB1cmNoYXNlZCBm - cm9tIFJlZCBIYXQgZm9yIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlICji - gJxMaWNlbnNl4oCdKSwgZWFjaCBhcyBzZXQgZm9ydGggb24gdGhlIGFwcGxp - Y2FibGUgUmVkIEhhdCBvcmRlcmluZyBkb2N1bWVudC4gIFlvdSBhY3F1aXJl - IG9ubHkgdGhlIHJpZ2h0IHRvIHVzZSB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0 - d2FyZSBhbmQgZG8gbm90IGFjcXVpcmUgYW55IHJpZ2h0cyBvZiBvd25lcnNo - aXAuIFJlZCBIYXQgcmVzZXJ2ZXMgYWxsIHJpZ2h0cyB0byB0aGUgQW5zaWJs - ZSBUb3dlciBTb2Z0d2FyZSBub3QgZXhwcmVzc2x5IGdyYW50ZWQgdG8gWW91 - LiAgVGhpcyBMaWNlbnNlIGdyYW50IHBlcnRhaW5zIHNvbGVseSB0byBZb3Vy - IHVzZSBvZiB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZSBhbmQgaXMgbm90 - IGludGVuZGVkIHRvIGxpbWl0IFlvdXIgcmlnaHRzIHVuZGVyLCBvciBncmFu - dCBZb3UgcmlnaHRzIHRoYXQgc3VwZXJzZWRlLCB0aGUgbGljZW5zZSB0ZXJt - cyBvZiBhbnkgc29mdHdhcmUgcGFja2FnZXMgd2hpY2ggbWF5IGJlIG1hZGUg - YXZhaWxhYmxlIHdpdGggdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgdGhh - dCBhcmUgc3ViamVjdCB0byBhbiBvcGVuIHNvdXJjZSBzb2Z0d2FyZSBsaWNl - bnNlLiAgXG4gXG4yLiAgSW50ZWxsZWN0dWFsIFByb3BlcnR5IFJpZ2h0cy4g - IFRpdGxlIHRvIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlIGFuZCBlYWNo - IGNvbXBvbmVudCwgY29weSBhbmQgbW9kaWZpY2F0aW9uLCBpbmNsdWRpbmcg - YWxsIGRlcml2YXRpdmUgd29ya3Mgd2hldGhlciBtYWRlIGJ5IFJlZCBIYXQs - IFlvdSBvciBvbiBSZWQgSGF0J3MgYmVoYWxmLCBpbmNsdWRpbmcgdGhvc2Ug - bWFkZSBhdCBZb3VyIHN1Z2dlc3Rpb24gYW5kIGFsbCBhc3NvY2lhdGVkIGlu - dGVsbGVjdHVhbCBwcm9wZXJ0eSByaWdodHMsIGFyZSBhbmQgc2hhbGwgcmVt - YWluIHRoZSBzb2xlIGFuZCBleGNsdXNpdmUgcHJvcGVydHkgb2YgUmVkIEhh - dCBhbmQvb3IgaXQgbGljZW5zb3JzLiAgVGhlIExpY2Vuc2UgZG9lcyBub3Qg - YXV0aG9yaXplIFlvdSAobm9yIG1heSBZb3UgYWxsb3cgYW55IHRoaXJkIHBh - cnR5LCBzcGVjaWZpY2FsbHkgbm9uLWVtcGxveWVlcyBvZiBZb3VycykgdG86 - IChhKSBjb3B5LCBkaXN0cmlidXRlLCByZXByb2R1Y2UsIHVzZSBvciBhbGxv - dyB0aGlyZCBwYXJ0eSBhY2Nlc3MgdG8gdGhlIEFuc2libGUgVG93ZXIgU29m - dHdhcmUgZXhjZXB0IGFzIGV4cHJlc3NseSBhdXRob3JpemVkIGhlcmV1bmRl - cjsgKGIpIGRlY29tcGlsZSwgZGlzYXNzZW1ibGUsIHJldmVyc2UgZW5naW5l - ZXIsIHRyYW5zbGF0ZSwgbW9kaWZ5LCBjb252ZXJ0IG9yIGFwcGx5IGFueSBw - cm9jZWR1cmUgb3IgcHJvY2VzcyB0byB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0 - d2FyZSBpbiBvcmRlciB0byBhc2NlcnRhaW4sIGRlcml2ZSwgYW5kL29yIGFw - cHJvcHJpYXRlIGZvciBhbnkgcmVhc29uIG9yIHB1cnBvc2UsIGluY2x1ZGlu - ZyB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZSBzb3VyY2UgY29kZSBvciBz - b3VyY2UgbGlzdGluZ3Mgb3IgYW55IHRyYWRlIHNlY3JldCBpbmZvcm1hdGlv - biBvciBwcm9jZXNzIGNvbnRhaW5lZCBpbiB0aGUgQW5zaWJsZSBUb3dlciBT - b2Z0d2FyZSAoZXhjZXB0IGFzIHBlcm1pdHRlZCB1bmRlciBhcHBsaWNhYmxl - IGxhdyk7IChjKSBleGVjdXRlIG9yIGluY29ycG9yYXRlIG90aGVyIHNvZnR3 - YXJlIChleGNlcHQgZm9yIGFwcHJvdmVkIHNvZnR3YXJlIGFzIGFwcGVhcnMg - aW4gdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgZG9jdW1lbnRhdGlvbiBv - ciBzcGVjaWZpY2FsbHkgYXBwcm92ZWQgYnkgUmVkIEhhdCBpbiB3cml0aW5n - KSBpbnRvIEFuc2libGUgVG93ZXIgU29mdHdhcmUsIG9yIGNyZWF0ZSBhIGRl - cml2YXRpdmUgd29yayBvZiBhbnkgcGFydCBvZiB0aGUgQW5zaWJsZSBUb3dl - ciBTb2Z0d2FyZTsgKGQpIHJlbW92ZSBhbnkgdHJhZGVtYXJrcywgdHJhZGUg - bmFtZXMgb3IgdGl0bGVzLCBjb3B5cmlnaHRzIGxlZ2VuZHMgb3IgYW55IG90 - aGVyIHByb3ByaWV0YXJ5IG1hcmtpbmcgb24gdGhlIEFuc2libGUgVG93ZXIg - U29mdHdhcmU7IChlKSBkaXNjbG9zZSB0aGUgcmVzdWx0cyBvZiBhbnkgYmVu - Y2htYXJraW5nIG9mIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlICh3aGV0 - aGVyIG9yIG5vdCBvYnRhaW5lZCB3aXRoIFJlZCBIYXTigJlzIGFzc2lzdGFu - Y2UpIHRvIGFueSB0aGlyZCBwYXJ0eTsgKGYpIGF0dGVtcHQgdG8gY2lyY3Vt - dmVudCBhbnkgdXNlciBsaW1pdHMgb3Igb3RoZXIgbGljZW5zZSwgdGltaW5n - IG9yIHVzZSByZXN0cmljdGlvbnMgdGhhdCBhcmUgYnVpbHQgaW50bywgZGVm - aW5lZCBvciBhZ3JlZWQgdXBvbiwgcmVnYXJkaW5nIHRoZSBBbnNpYmxlIFRv - d2VyIFNvZnR3YXJlLiBZb3UgYXJlIGhlcmVieSBub3RpZmllZCB0aGF0IHRo - ZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlIG1heSBjb250YWluIHRpbWUtb3V0 - IGRldmljZXMsIGNvdW50ZXIgZGV2aWNlcywgYW5kL29yIG90aGVyIGRldmlj - ZXMgaW50ZW5kZWQgdG8gZW5zdXJlIHRoZSBsaW1pdHMgb2YgdGhlIExpY2Vu - c2Ugd2lsbCBub3QgYmUgZXhjZWVkZWQgKOKAnExpbWl0aW5nIERldmljZXPi - gJ0pLiAgSWYgdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgY29udGFpbnMg - TGltaXRpbmcgRGV2aWNlcywgUmVkIEhhdCB3aWxsIHByb3ZpZGUgWW91IG1h - dGVyaWFscyBuZWNlc3NhcnkgdG8gdXNlIHRoZSBBbnNpYmxlIFRvd2VyIFNv - ZnR3YXJlIHRvIHRoZSBleHRlbnQgcGVybWl0dGVkLiAgWW91IG1heSBub3Qg - dGFtcGVyIHdpdGggb3Igb3RoZXJ3aXNlIHRha2UgYW55IGFjdGlvbiB0byBk - ZWZlYXQgb3IgY2lyY3VtdmVudCBhIExpbWl0aW5nIERldmljZSBvciBvdGhl - ciBjb250cm9sIG1lYXN1cmUsIGluY2x1ZGluZyBidXQgbm90IGxpbWl0ZWQg - dG8sIHJlc2V0dGluZyB0aGUgdW5pdCBhbW91bnQgb3IgdXNpbmcgZmFsc2Ug - aG9zdCBpZGVudGlmaWNhdGlvbiBudW1iZXIgZm9yIHRoZSBwdXJwb3NlIG9m - IGV4dGVuZGluZyBhbnkgdGVybSBvZiB0aGUgTGljZW5zZS4gXG5cbjMuICBF - dmFsdWF0aW9uIExpY2Vuc2VzLiBVbmxlc3MgWW91IGhhdmUgcHVyY2hhc2Vk - IEFuc2libGUgVG93ZXIgU29mdHdhcmUgU3Vic2NyaXB0aW9ucyBmcm9tIFJl - ZCBIYXQgb3IgYW4gYXV0aG9yaXplZCByZXNlbGxlciB1bmRlciB0aGUgdGVy - bXMgb2YgYSBjb21tZXJjaWFsIGFncmVlbWVudCB3aXRoIFJlZCBIYXQsIGFs - bCB1c2Ugb2YgdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgc2hhbGwgYmUg - bGltaXRlZCB0byB0ZXN0aW5nIHB1cnBvc2VzIGFuZCBub3QgZm9yIHByb2R1 - Y3Rpb24gdXNlICjigJxFdmFsdWF0aW9u4oCdKS4gVW5sZXNzIG90aGVyd2lz - ZSBhZ3JlZWQgYnkgUmVkIEhhdCwgRXZhbHVhdGlvbiBvZiB0aGUgQW5zaWJs - ZSBUb3dlciBTb2Z0d2FyZSBzaGFsbCBiZSBsaW1pdGVkIHRvIGFuIGV2YWx1 - YXRpb24gZW52aXJvbm1lbnQgYW5kIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3 - YXJlIHNoYWxsIG5vdCBiZSB1c2VkIHRvIG1hbmFnZSBhbnkgc3lzdGVtcyBv - ciB2aXJ0dWFsIG1hY2hpbmVzIG9uIG5ldHdvcmtzIGJlaW5nIHVzZWQgaW4g - dGhlIG9wZXJhdGlvbiBvZiBZb3VyIGJ1c2luZXNzIG9yIGFueSBvdGhlciBu - b24tZXZhbHVhdGlvbiBwdXJwb3NlLiAgVW5sZXNzIG90aGVyd2lzZSBhZ3Jl - ZWQgYnkgUmVkIEhhdCwgWW91IHNoYWxsIGxpbWl0IGFsbCBFdmFsdWF0aW9u - IHVzZSB0byBhIHNpbmdsZSAzMCBkYXkgZXZhbHVhdGlvbiBwZXJpb2QgYW5k - IHNoYWxsIG5vdCBkb3dubG9hZCBvciBvdGhlcndpc2Ugb2J0YWluIGFkZGl0 - aW9uYWwgY29waWVzIG9mIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlIG9y - IGxpY2Vuc2Uga2V5cyBmb3IgRXZhbHVhdGlvbi5cblxuNC4gIExpbWl0ZWQg - V2FycmFudHkuICBFeGNlcHQgYXMgc3BlY2lmaWNhbGx5IHN0YXRlZCBpbiB0 - aGlzIFNlY3Rpb24gNCwgdG8gdGhlIG1heGltdW0gZXh0ZW50IHBlcm1pdHRl - ZCB1bmRlciBhcHBsaWNhYmxlIGxhdywgdGhlIEFuc2libGUgVG93ZXIgU29m - dHdhcmUgYW5kIHRoZSBjb21wb25lbnRzIGFyZSBwcm92aWRlZCBhbmQgbGlj - ZW5zZWQg4oCcYXMgaXPigJ0gd2l0aG91dCB3YXJyYW50eSBvZiBhbnkga2lu - ZCwgZXhwcmVzc2VkIG9yIGltcGxpZWQsIGluY2x1ZGluZyB0aGUgaW1wbGll - ZCB3YXJyYW50aWVzIG9mIG1lcmNoYW50YWJpbGl0eSwgbm9uLWluZnJpbmdl - bWVudCBvciBmaXRuZXNzIGZvciBhIHBhcnRpY3VsYXIgcHVycG9zZS4gIFJl - ZCBIYXQgd2FycmFudHMgc29sZWx5IHRvIFlvdSB0aGF0IHRoZSBtZWRpYSBv - biB3aGljaCB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZSBtYXkgYmUgZnVy - bmlzaGVkIHdpbGwgYmUgZnJlZSBmcm9tIGRlZmVjdHMgaW4gbWF0ZXJpYWxz - IGFuZCBtYW51ZmFjdHVyZSB1bmRlciBub3JtYWwgdXNlIGZvciBhIHBlcmlv - ZCBvZiB0aGlydHkgKDMwKSBkYXlzIGZyb20gdGhlIGRhdGUgb2YgZGVsaXZl - cnkgdG8gWW91LiAgUmVkIEhhdCBkb2VzIG5vdCB3YXJyYW50IHRoYXQgdGhl - IGZ1bmN0aW9ucyBjb250YWluZWQgaW4gdGhlIEFuc2libGUgVG93ZXIgU29m - dHdhcmUgd2lsbCBtZWV0IFlvdXIgcmVxdWlyZW1lbnRzIG9yIHRoYXQgdGhl - IG9wZXJhdGlvbiBvZiB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZSB3aWxs - IGJlIGVudGlyZWx5IGVycm9yIGZyZWUsIGFwcGVhciBwcmVjaXNlbHkgYXMg - ZGVzY3JpYmVkIGluIHRoZSBhY2NvbXBhbnlpbmcgZG9jdW1lbnRhdGlvbiwg - b3IgY29tcGx5IHdpdGggcmVndWxhdG9yeSByZXF1aXJlbWVudHMuIFxuXG41 - LiAgTGltaXRhdGlvbiBvZiBSZW1lZGllcyBhbmQgTGlhYmlsaXR5LiBUbyB0 - aGUgbWF4aW11bSBleHRlbnQgcGVybWl0dGVkIGJ5IGFwcGxpY2FibGUgbGF3 - LCBZb3VyIGV4Y2x1c2l2ZSByZW1lZHkgdW5kZXIgdGhpcyBFVUxBIGlzIHRv - IHJldHVybiBhbnkgZGVmZWN0aXZlIG1lZGlhIHdpdGhpbiB0aGlydHkgKDMw - KSBkYXlzIG9mIGRlbGl2ZXJ5IGFsb25nIHdpdGggYSBjb3B5IG9mIFlvdXIg - cGF5bWVudCByZWNlaXB0IGFuZCBSZWQgSGF0LCBhdCBpdHMgb3B0aW9uLCB3 - aWxsIHJlcGxhY2UgaXQgb3IgcmVmdW5kIHRoZSBtb25leSBwYWlkIGJ5IFlv - dSBmb3IgdGhlIG1lZGlhLiAgVG8gdGhlIG1heGltdW0gZXh0ZW50IHBlcm1p - dHRlZCB1bmRlciBhcHBsaWNhYmxlIGxhdywgbmVpdGhlciBSZWQgSGF0IG5v - ciBhbnkgUmVkIEhhdCBhdXRob3JpemVkIGRpc3RyaWJ1dG9yIHdpbGwgYmUg - bGlhYmxlIHRvIFlvdSBmb3IgYW55IGluY2lkZW50YWwgb3IgY29uc2VxdWVu - dGlhbCBkYW1hZ2VzLCBpbmNsdWRpbmcgbG9zdCBwcm9maXRzIG9yIGxvc3Qg - c2F2aW5ncyBhcmlzaW5nIG91dCBvZiB0aGUgdXNlIG9yIGluYWJpbGl0eSB0 - byB1c2UgdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgb3IgYW55IGNvbXBv - bmVudCwgZXZlbiBpZiBSZWQgSGF0IG9yIHRoZSBhdXRob3JpemVkIGRpc3Ry - aWJ1dG9yIGhhcyBiZWVuIGFkdmlzZWQgb2YgdGhlIHBvc3NpYmlsaXR5IG9m - IHN1Y2ggZGFtYWdlcy4gIEluIG5vIGV2ZW50IHNoYWxsIFJlZCBIYXQncyBs - aWFiaWxpdHkgb3IgYW4gYXV0aG9yaXplZCBkaXN0cmlidXRvcuKAmXMgbGlh - YmlsaXR5IGV4Y2VlZCB0aGUgYW1vdW50IHRoYXQgWW91IHBhaWQgdG8gUmVk - IEhhdCBmb3IgdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgZHVyaW5nIHRo - ZSB0d2VsdmUgbW9udGhzIHByZWNlZGluZyB0aGUgZmlyc3QgZXZlbnQgZ2l2 - aW5nIHJpc2UgdG8gbGlhYmlsaXR5LlxuXG42LiAgRXhwb3J0IENvbnRyb2wu - ICBJbiBhY2NvcmRhbmNlIHdpdGggdGhlIGxhd3Mgb2YgdGhlIFVuaXRlZCBT - dGF0ZXMgYW5kIG90aGVyIGNvdW50cmllcywgWW91IHJlcHJlc2VudCBhbmQg - d2FycmFudCB0aGF0IFlvdTogKGEpIHVuZGVyc3RhbmQgdGhhdCB0aGUgQW5z - aWJsZSBUb3dlciBTb2Z0d2FyZSBhbmQgaXRzIGNvbXBvbmVudHMgbWF5IGJl - IHN1YmplY3QgdG8gZXhwb3J0IGNvbnRyb2xzIHVuZGVyIHRoZSBVLlMuIENv - bW1lcmNlIERlcGFydG1lbnTigJlzIEV4cG9ydCBBZG1pbmlzdHJhdGlvbiBS - ZWd1bGF0aW9ucyAo4oCcRUFS4oCdKTsgKGIpIGFyZSBub3QgbG9jYXRlZCBp - biBhbnkgY291bnRyeSBsaXN0ZWQgaW4gQ291bnRyeSBHcm91cCBFOjEgaW4g - U3VwcGxlbWVudCBOby4gMSB0byBwYXJ0IDc0MCBvZiB0aGUgRUFSOyAoYykg - d2lsbCBub3QgZXhwb3J0LCByZS1leHBvcnQsIG9yIHRyYW5zZmVyIHRoZSBB - bnNpYmxlIFRvd2VyIFNvZnR3YXJlIHRvIGFueSBwcm9oaWJpdGVkIGRlc3Rp - bmF0aW9uIG9yIHRvIGFueSBlbmQgdXNlciB3aG8gaGFzIGJlZW4gcHJvaGli - aXRlZCBmcm9tIHBhcnRpY2lwYXRpbmcgaW4gVVMgZXhwb3J0IHRyYW5zYWN0 - aW9ucyBieSBhbnkgZmVkZXJhbCBhZ2VuY3kgb2YgdGhlIFVTIGdvdmVybm1l - bnQ7ICAoZCkgd2lsbCBub3QgdXNlIG9yIHRyYW5zZmVyIHRoZSBBbnNpYmxl - IFRvd2VyIFNvZnR3YXJlIGZvciB1c2UgaW4gY29ubmVjdGlvbiB3aXRoIHRo - ZSBkZXNpZ24sIGRldmVsb3BtZW50IG9yIHByb2R1Y3Rpb24gb2YgbnVjbGVh - ciwgY2hlbWljYWwgb3IgYmlvbG9naWNhbCB3ZWFwb25zLCBvciByb2NrZXQg - c3lzdGVtcywgc3BhY2UgbGF1bmNoIHZlaGljbGVzLCBvciBzb3VuZGluZyBy - b2NrZXRzIG9yIHVubWFubmVkIGFpciB2ZWhpY2xlIHN5c3RlbXM7IChlKSB1 - bmRlcnN0YW5kIGFuZCBhZ3JlZSB0aGF0IGlmIHlvdSBhcmUgaW4gdGhlIFVu - aXRlZCBTdGF0ZXMgYW5kIHlvdSBleHBvcnQgb3IgdHJhbnNmZXIgdGhlIEFu - c2libGUgVG93ZXIgU29mdHdhcmUgdG8gZWxpZ2libGUgZW5kIHVzZXJzLCB5 - b3Ugd2lsbCwgdG8gdGhlIGV4dGVudCByZXF1aXJlZCBieSBFQVIgU2VjdGlv - biA3NDAuMTcgb2J0YWluIGEgbGljZW5zZSBmb3Igc3VjaCBleHBvcnQgb3Ig - dHJhbnNmZXIgYW5kIHdpbGwgc3VibWl0IHNlbWktYW5udWFsIHJlcG9ydHMg - dG8gdGhlIENvbW1lcmNlIERlcGFydG1lbnTigJlzIEJ1cmVhdSBvZiBJbmR1 - c3RyeSBhbmQgU2VjdXJpdHksIHdoaWNoIGluY2x1ZGUgdGhlIG5hbWUgYW5k - IGFkZHJlc3MgKGluY2x1ZGluZyBjb3VudHJ5KSBvZiBlYWNoIHRyYW5zZmVy - ZWU7IGFuZCAoZikgdW5kZXJzdGFuZCB0aGF0IGNvdW50cmllcyBpbmNsdWRp - bmcgdGhlIFVuaXRlZCBTdGF0ZXMgbWF5IHJlc3RyaWN0IHRoZSBpbXBvcnQs - IHVzZSwgb3IgZXhwb3J0IG9mIGVuY3J5cHRpb24gcHJvZHVjdHMgKHdoaWNo - IG1heSBpbmNsdWRlIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlKSBhbmQg - YWdyZWUgdGhhdCB5b3Ugc2hhbGwgYmUgc29sZWx5IHJlc3BvbnNpYmxlIGZv - ciBjb21wbGlhbmNlIHdpdGggYW55IHN1Y2ggaW1wb3J0LCB1c2UsIG9yIGV4 - cG9ydCByZXN0cmljdGlvbnMuXG5cbjcuICBHZW5lcmFsLiAgSWYgYW55IHBy - b3Zpc2lvbiBvZiB0aGlzIEVVTEEgaXMgaGVsZCB0byBiZSB1bmVuZm9yY2Vh - YmxlLCB0aGF0IHNoYWxsIG5vdCBhZmZlY3QgdGhlIGVuZm9yY2VhYmlsaXR5 - IG9mIHRoZSByZW1haW5pbmcgcHJvdmlzaW9ucy4gIFRoaXMgYWdyZWVtZW50 - IHNoYWxsIGJlIGdvdmVybmVkIGJ5IHRoZSBsYXdzIG9mIHRoZSBTdGF0ZSBv - ZiBOZXcgWW9yayBhbmQgb2YgdGhlIFVuaXRlZCBTdGF0ZXMsIHdpdGhvdXQg - cmVnYXJkIHRvIGFueSBjb25mbGljdCBvZiBsYXdzIHByb3Zpc2lvbnMuIFRo - ZSByaWdodHMgYW5kIG9ibGlnYXRpb25zIG9mIHRoZSBwYXJ0aWVzIHRvIHRo - aXMgRVVMQSBzaGFsbCBub3QgYmUgZ292ZXJuZWQgYnkgdGhlIFVuaXRlZCBO - YXRpb25zIENvbnZlbnRpb24gb24gdGhlIEludGVybmF0aW9uYWwgU2FsZSBv - ZiBHb29kcy4gXG5cbkNvcHlyaWdodCDCqSAyMDE1IFJlZCBIYXQsIEluYy4g - IEFsbCByaWdodHMgcmVzZXJ2ZWQuICBcIlJlZCBIYXRcIiBhbmQg4oCcQW5z - aWJsZSBUb3dlcuKAnSBhcmUgcmVnaXN0ZXJlZCB0cmFkZW1hcmtzIG9mIFJl - ZCBIYXQsIEluYy4gIEFsbCBvdGhlciB0cmFkZW1hcmtzIGFyZSB0aGUgcHJv - cGVydHkgb2YgdGhlaXIgcmVzcGVjdGl2ZSBvd25lcnMuXG4iLCJsaWNlbnNl - X2luZm8iOnsiZGVwbG95bWVudF9pZCI6ImEzZGJkYzdmNTRlNDlhNjAzN2M0 - MzFmYTc4YmZmZTc0NjY3ZmRhY2EiLCJzdWJzY3JpcHRpb25fbmFtZSI6IkFu - c2libGUgVG93ZXIgYnkgUmVkIEhhdCwgU3RhbmRhcmQgKDEwMCBNYW5hZ2Vk - IE5vZGVzKSIsImN1cnJlbnRfaW5zdGFuY2VzIjo4MywiZmVhdHVyZXMiOnsi - c3VydmV5cyI6dHJ1ZSwibXVsdGlwbGVfb3JnYW5pemF0aW9ucyI6dHJ1ZSwi - c3lzdGVtX3RyYWNraW5nIjp0cnVlLCJlbnRlcnByaXNlX2F1dGgiOnRydWUs - InJlYnJhbmRpbmciOnRydWUsImFjdGl2aXR5X3N0cmVhbXMiOnRydWUsImxk - YXAiOnRydWUsImhhIjp0cnVlfSwiZGF0ZV9leHBpcmVkIjpmYWxzZSwiYXZh - aWxhYmxlX2luc3RhbmNlcyI6MTAwLCJob3N0bmFtZSI6ImZmNmI5ZTFmNTYx - NTRhNjFiZWViNWE0ZGJkY2EzMjFhIiwiZnJlZV9pbnN0YW5jZXMiOjE3LCJp - bnN0YW5jZV9jb3VudCI6MTAwLCJ0aW1lX3JlbWFpbmluZyI6MzEyMTExNDcs - ImNvbXBsaWFudCI6dHJ1ZSwiZ3JhY2VfcGVyaW9kX3JlbWFpbmluZyI6MzM4 - MDMxNDcsImNvbnRhY3RfZW1haWwiOiJqb2VzbWl0QHJlZGhhdC5jb20iLCJj - b21wYW55X25hbWUiOiJSZWQgSGF0LCBJbmMuIiwiZGF0ZV93YXJuaW5nIjpm - YWxzZSwibGljZW5zZV90eXBlIjoiZW50ZXJwcmlzZSIsImNvbnRhY3RfbmFt - ZSI6IkpvZSAgU21pdGgiLCJsaWNlbnNlX2RhdGUiOjE1MTc4NDc4MTksImxp - Y2Vuc2Vfa2V5IjoiZWQ5ZDAwZjFhMjU0ZTJiMGI3NzBiYWViMmIyNjg4YzQz - N2U5ZGVlNDE3OTY2N2RmYmZmY2QxOTNlNTA4YTI2MyIsInZhbGlkX2tleSI6 - dHJ1ZX0sImFuYWx5dGljc19zdGF0dXMiOiJkZXRhaWxlZCIsInZlcnNpb24i - OiIzLjAuMSIsInByb2plY3RfYmFzZV9kaXIiOiIvdmFyL2xpYi9hd3gvcHJv - amVjdHMiLCJ0aW1lX3pvbmUiOiJBbWVyaWNhL05ld19Zb3JrIiwiYW5zaWJs - ZV92ZXJzaW9uIjoiMi4xLjAuMCIsInByb2plY3RfbG9jYWxfcGF0aHMiOltd - fQ== - http_version: - recorded_at: Thu, 09 Feb 2017 09:37:54 GMT + encoding: UTF-8 + string: "[]" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:26 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/428/playbooks/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:27 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, HEAD, OPTIONS + X-Api-Time: + - 0.032s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: '["mk_sample_playbook.yaml","pkg_info.yaml","pkg_info_et_al.yaml","pkg_info_no_sleep.yaml","test1.yaml"]' + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:26 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/432/playbooks/ body: encoding: US-ASCII string: '' @@ -3133,27 +12581,31 @@ http_interactions: - "*/*" response: status: - code: 301 - message: MOVED PERMANENTLY + code: 200 + message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:53 GMT + - Mon, 14 Aug 2017 20:36:27 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 - Location: - - https://dev-ansible-tower3.example.com/api/v1/job_templates/ - Content-Length: - - '0' + Vary: + - Accept,Cookie + Allow: + - GET, HEAD, OPTIONS + X-Api-Time: + - 0.033s + Transfer-Encoding: + - chunked Content-Type: - - text/html; charset=utf-8 + - application/json body: encoding: UTF-8 - string: '' + string: "[]" http_version: - recorded_at: Thu, 09 Feb 2017 09:37:55 GMT + recorded_at: Mon, 14 Aug 2017 20:36:26 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/ + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/433/playbooks/ body: encoding: US-ASCII string: '' @@ -3170,102 +12622,27 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:54 GMT + - Mon, 14 Aug 2017 20:36:27 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: - Accept,Cookie Allow: - - GET, POST, HEAD, OPTIONS + - GET, HEAD, OPTIONS X-Api-Time: - - 0.192s + - 0.031s Content-Length: - - '31548' + - '2' Content-Type: - application/json body: encoding: UTF-8 - string: '{"count":11,"next":null,"previous":null,"results":[{"id":76,"type":"job_template","url":"/api/v1/job_templates/76/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/76/labels/","inventory":"/api/v1/inventories/6/","project":"/api/v1/projects/40/","credential":"/api/v1/credentials/6/","notification_templates_error":"/api/v1/job_templates/76/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/76/notification_templates_success/","jobs":"/api/v1/job_templates/76/jobs/","object_roles":"/api/v1/job_templates/76/object_roles/","notification_templates_any":"/api/v1/job_templates/76/notification_templates_any/","access_list":"/api/v1/job_templates/76/access_list/","launch":"/api/v1/job_templates/76/launch/","schedules":"/api/v1/job_templates/76/schedules/","activity_stream":"/api/v1/job_templates/76/activity_stream/","survey_spec":"/api/v1/job_templates/76/survey_spec/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":2,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"credential":{"id":6,"name":"db_test","description":"","kind":"ssh","cloud":false},"project":{"id":40,"name":"RH-labs","description":"Red - Hat innovation Labs","status":"successful"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can - manage all aspects of the job template","id":224,"name":"Admin"},"execute_role":{"description":"May - run the job template","id":226,"name":"Execute"},"read_role":{"description":"May - view settings for the job template","id":225,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[]},"created":"2017-02-08T21:13:37.133Z","modified":"2017-02-08T21:13:37.133Z","name":"432_db_console_provision","description":"test - ansible","job_type":"run","inventory":6,"project":40,"playbook":"playbooks/undeploy-service.yaml","credential":6,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never - updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":78,"type":"job_template","url":"/api/v1/job_templates/78/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/78/labels/","inventory":"/api/v1/inventories/6/","project":"/api/v1/projects/40/","credential":"/api/v1/credentials/6/","notification_templates_error":"/api/v1/job_templates/78/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/78/notification_templates_success/","jobs":"/api/v1/job_templates/78/jobs/","object_roles":"/api/v1/job_templates/78/object_roles/","notification_templates_any":"/api/v1/job_templates/78/notification_templates_any/","access_list":"/api/v1/job_templates/78/access_list/","launch":"/api/v1/job_templates/78/launch/","schedules":"/api/v1/job_templates/78/schedules/","activity_stream":"/api/v1/job_templates/78/activity_stream/","survey_spec":"/api/v1/job_templates/78/survey_spec/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":2,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"credential":{"id":6,"name":"db_test","description":"","kind":"ssh","cloud":false},"project":{"id":40,"name":"RH-labs","description":"Red - Hat innovation Labs","status":"successful"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can - manage all aspects of the job template","id":232,"name":"Admin"},"execute_role":{"description":"May - run the job template","id":234,"name":"Execute"},"read_role":{"description":"May - view settings for the job template","id":233,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[]},"created":"2017-02-08T22:05:57.325Z","modified":"2017-02-08T22:05:57.325Z","name":"434_db_console_provision","description":"test - ansible","job_type":"run","inventory":6,"project":40,"playbook":"playbooks/undeploy-service.yaml","credential":6,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never - updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":79,"type":"job_template","url":"/api/v1/job_templates/79/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/79/labels/","inventory":"/api/v1/inventories/6/","project":"/api/v1/projects/40/","credential":"/api/v1/credentials/6/","notification_templates_error":"/api/v1/job_templates/79/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/79/notification_templates_success/","jobs":"/api/v1/job_templates/79/jobs/","object_roles":"/api/v1/job_templates/79/object_roles/","notification_templates_any":"/api/v1/job_templates/79/notification_templates_any/","access_list":"/api/v1/job_templates/79/access_list/","launch":"/api/v1/job_templates/79/launch/","schedules":"/api/v1/job_templates/79/schedules/","activity_stream":"/api/v1/job_templates/79/activity_stream/","survey_spec":"/api/v1/job_templates/79/survey_spec/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":2,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"credential":{"id":6,"name":"db_test","description":"","kind":"ssh","cloud":false},"project":{"id":40,"name":"RH-labs","description":"Red - Hat innovation Labs","status":"successful"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can - manage all aspects of the job template","id":238,"name":"Admin"},"execute_role":{"description":"May - run the job template","id":240,"name":"Execute"},"read_role":{"description":"May - view settings for the job template","id":239,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[]},"created":"2017-02-08T22:41:42.178Z","modified":"2017-02-08T22:41:42.178Z","name":"435_db_console_provision","description":"test - ansible","job_type":"run","inventory":6,"project":40,"playbook":"playbooks/undeploy-service.yaml","credential":6,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never - updated","host_config_key":"","ask_variables_on_launch":true,"ask_limit_on_launch":true,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":80,"type":"job_template","url":"/api/v1/job_templates/80/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/80/labels/","inventory":"/api/v1/inventories/2/","project":"/api/v1/projects/37/","credential":"/api/v1/credentials/1/","cloud_credential":"/api/v1/credentials/2/","network_credential":"/api/v1/credentials/5/","notification_templates_error":"/api/v1/job_templates/80/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/80/notification_templates_success/","jobs":"/api/v1/job_templates/80/jobs/","object_roles":"/api/v1/job_templates/80/object_roles/","notification_templates_any":"/api/v1/job_templates/80/notification_templates_any/","access_list":"/api/v1/job_templates/80/access_list/","launch":"/api/v1/job_templates/80/launch/","schedules":"/api/v1/job_templates/80/schedules/","activity_stream":"/api/v1/job_templates/80/activity_stream/","survey_spec":"/api/v1/job_templates/80/survey_spec/"},"summary_fields":{"network_credential":{"id":5,"name":"Demo - Creds 2","description":"test","kind":"net"},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"cloud_credential":{"id":2,"name":"dev-vc60","description":"","kind":"vmware","cloud":true},"credential":{"id":1,"name":"Demo - Credential","description":"","kind":"ssh","cloud":false},"project":{"id":37,"name":"Test - Project","description":"","status":"successful"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can - manage all aspects of the job template","id":241,"name":"Admin"},"execute_role":{"description":"May - run the job template","id":243,"name":"Execute"},"read_role":{"description":"May - view settings for the job template","id":242,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[]},"created":"2017-02-09T09:10:30.744Z","modified":"2017-02-09T10:35:33.484Z","name":"Ansible-JobTemplate","description":"Ansible-JobTemplate-Description","job_type":"run","inventory":2,"project":37,"playbook":"hello_world.yml","credential":1,"cloud_credential":2,"network_credential":5,"forks":0,"limit":"","verbosity":0,"extra_vars":"abc: - 123","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never - updated","host_config_key":"","ask_variables_on_launch":false,"ask_limit_on_launch":false,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":false,"ask_credential_on_launch":false,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":81,"type":"job_template","url":"/api/v1/job_templates/81/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/81/labels/","inventory":"/api/v1/inventories/2/","project":"/api/v1/projects/37/","credential":"/api/v1/credentials/1/","notification_templates_error":"/api/v1/job_templates/81/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/81/notification_templates_success/","jobs":"/api/v1/job_templates/81/jobs/","object_roles":"/api/v1/job_templates/81/object_roles/","notification_templates_any":"/api/v1/job_templates/81/notification_templates_any/","access_list":"/api/v1/job_templates/81/access_list/","launch":"/api/v1/job_templates/81/launch/","schedules":"/api/v1/job_templates/81/schedules/","activity_stream":"/api/v1/job_templates/81/activity_stream/","survey_spec":"/api/v1/job_templates/81/survey_spec/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":true,"total_hosts":81,"hosts_with_active_failures":36,"total_groups":22,"groups_with_active_failures":17,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"credential":{"id":1,"name":"Demo - Credential","description":"","kind":"ssh","cloud":false},"project":{"id":37,"name":"Test - Project","description":"","status":"successful"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can - manage all aspects of the job template","id":244,"name":"Admin"},"execute_role":{"description":"May - run the job template","id":246,"name":"Execute"},"read_role":{"description":"May - view settings for the job template","id":245,"name":"Read"}},"labels":{"count":0,"results":[]},"survey":{"description":"","title":""},"can_copy":true,"can_edit":true,"recent_jobs":[]},"created":"2017-02-09T09:11:01.450Z","modified":"2017-02-09T09:42:28.443Z","name":"Ansible-JobTemplate-Survey","description":"Ansible-JobTemplate-Description","job_type":"run","inventory":2,"project":37,"playbook":"hello_world.yml","credential":1,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"abc: - 123","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never - updated","host_config_key":"","ask_variables_on_launch":false,"ask_limit_on_launch":false,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":false,"ask_credential_on_launch":false,"survey_enabled":true,"become_enabled":false,"allow_simultaneous":false},{"id":30,"type":"job_template","url":"/api/v1/job_templates/30/","related":{"created_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/30/labels/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/4/","credential":"/api/v1/credentials/1/","last_job":"/api/v1/jobs/103/","notification_templates_error":"/api/v1/job_templates/30/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/30/notification_templates_success/","jobs":"/api/v1/job_templates/30/jobs/","object_roles":"/api/v1/job_templates/30/object_roles/","notification_templates_any":"/api/v1/job_templates/30/notification_templates_any/","access_list":"/api/v1/job_templates/30/access_list/","launch":"/api/v1/job_templates/30/launch/","schedules":"/api/v1/job_templates/30/schedules/","activity_stream":"/api/v1/job_templates/30/activity_stream/","survey_spec":"/api/v1/job_templates/30/survey_spec/"},"summary_fields":{"last_job":{"id":103,"name":"bd-test","description":"","finished":"2017-02-06T15:07:19.588Z","status":"successful","failed":false},"last_update":{"id":103,"name":"bd-test","description":"","status":"successful","failed":false},"inventory":{"id":1,"name":"Demo - Inventory","description":"","has_active_failures":false,"total_hosts":2,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"credential":{"id":1,"name":"Demo - Credential","description":"","kind":"ssh","cloud":false},"project":{"id":4,"name":"Demo - Project","description":"A great demo","status":"successful"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can - manage all aspects of the job template","id":38,"name":"Admin"},"execute_role":{"description":"May - run the job template","id":40,"name":"Execute"},"read_role":{"description":"May - view settings for the job template","id":39,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[{"status":"successful","finished":"2017-02-06T15:07:19.588Z","id":103},{"status":"successful","finished":"2016-11-30T16:28:21.612Z","id":69},{"status":"successful","finished":"2016-11-29T22:14:40.790Z","id":67},{"status":"failed","finished":"2016-11-29T22:11:26.748Z","id":65},{"status":"successful","finished":"2016-11-29T22:10:39.315Z","id":63},{"status":"successful","finished":"2016-11-29T21:56:23.738Z","id":61},{"status":"failed","finished":"2016-11-29T21:43:19.276Z","id":59}]},"created":"2016-11-29T21:42:42.543Z","modified":"2017-02-06T15:06:53.448Z","name":"bd-test","description":"","job_type":"run","inventory":1,"project":4,"playbook":"hello_world.yml","credential":1,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":"2017-02-06T15:07:19.588779Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","host_config_key":"","ask_variables_on_launch":false,"ask_limit_on_launch":false,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":false,"ask_credential_on_launch":false,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":54,"type":"job_template","url":"/api/v1/job_templates/54/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/54/labels/","inventory":"/api/v1/inventories/7/","project":"/api/v1/projects/35/","credential":"/api/v1/credentials/6/","notification_templates_error":"/api/v1/job_templates/54/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/54/notification_templates_success/","jobs":"/api/v1/job_templates/54/jobs/","object_roles":"/api/v1/job_templates/54/object_roles/","notification_templates_any":"/api/v1/job_templates/54/notification_templates_any/","access_list":"/api/v1/job_templates/54/access_list/","launch":"/api/v1/job_templates/54/launch/","schedules":"/api/v1/job_templates/54/schedules/","activity_stream":"/api/v1/job_templates/54/activity_stream/","survey_spec":"/api/v1/job_templates/54/survey_spec/"},"summary_fields":{"inventory":{"id":7,"name":"bill","description":"bill - test","has_active_failures":false,"total_hosts":0,"hosts_with_active_failures":0,"total_groups":1,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"credential":{"id":6,"name":"db_test","description":"","kind":"ssh","cloud":false},"project":{"id":35,"name":"DB_Github","description":"DB - Playbooks","status":"successful"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can - manage all aspects of the job template","id":158,"name":"Admin"},"execute_role":{"description":"May - run the job template","id":160,"name":"Execute"},"read_role":{"description":"May - view settings for the job template","id":159,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[]},"created":"2017-02-03T21:24:16.731Z","modified":"2017-02-08T21:56:29.007Z","name":"bill_playbook_test_provision","description":"playbook - service","job_type":"run","inventory":7,"project":35,"playbook":"yum.yml","credential":6,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never - updated","host_config_key":"","ask_variables_on_launch":false,"ask_limit_on_launch":false,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":false,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":38,"type":"job_template","url":"/api/v1/job_templates/38/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/38/labels/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/36/","credential":"/api/v1/credentials/4/","cloud_credential":"/api/v1/credentials/2/","notification_templates_error":"/api/v1/job_templates/38/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/38/notification_templates_success/","jobs":"/api/v1/job_templates/38/jobs/","object_roles":"/api/v1/job_templates/38/object_roles/","notification_templates_any":"/api/v1/job_templates/38/notification_templates_any/","access_list":"/api/v1/job_templates/38/access_list/","launch":"/api/v1/job_templates/38/launch/","schedules":"/api/v1/job_templates/38/schedules/","activity_stream":"/api/v1/job_templates/38/activity_stream/","survey_spec":"/api/v1/job_templates/38/survey_spec/"},"summary_fields":{"inventory":{"id":1,"name":"Demo - Inventory","description":"","has_active_failures":false,"total_hosts":2,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"cloud_credential":{"id":2,"name":"dev-vc60","description":"","kind":"vmware","cloud":true},"credential":{"id":4,"name":"Demo - Creds 2","description":"test","kind":"ssh","cloud":false},"project":{"id":36,"name":"jwong-org2","description":"","status":"successful"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can - manage all aspects of the job template","id":89,"name":"Admin"},"execute_role":{"description":"May - run the job template","id":91,"name":"Execute"},"read_role":{"description":"May - view settings for the job template","id":90,"name":"Read"}},"labels":{"count":1,"results":[{"id":1,"name":"demo"}]},"can_copy":true,"can_edit":true,"recent_jobs":[]},"created":"2017-01-16T15:53:03.254Z","modified":"2017-01-16T15:53:03.254Z","name":"Demo - job template","description":"test","job_type":"run","inventory":1,"project":36,"playbook":"product/charts/miq_reports/vim_perf_daily.yaml","credential":4,"cloud_credential":2,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never - updated","host_config_key":"","ask_variables_on_launch":false,"ask_limit_on_launch":false,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":false,"ask_credential_on_launch":false,"survey_enabled":false,"become_enabled":true,"allow_simultaneous":false},{"id":5,"type":"job_template","url":"/api/v1/job_templates/5/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/5/labels/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/4/","credential":"/api/v1/credentials/1/","last_job":"/api/v1/jobs/56/","notification_templates_error":"/api/v1/job_templates/5/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/5/notification_templates_success/","jobs":"/api/v1/job_templates/5/jobs/","object_roles":"/api/v1/job_templates/5/object_roles/","notification_templates_any":"/api/v1/job_templates/5/notification_templates_any/","access_list":"/api/v1/job_templates/5/access_list/","launch":"/api/v1/job_templates/5/launch/","schedules":"/api/v1/job_templates/5/schedules/","activity_stream":"/api/v1/job_templates/5/activity_stream/","survey_spec":"/api/v1/job_templates/5/survey_spec/"},"summary_fields":{"last_job":{"id":56,"name":"Demo - Job Template","description":"","finished":"2016-11-29T21:34:43.185Z","status":"successful","failed":false},"last_update":{"id":56,"name":"Demo - Job Template","description":"","status":"successful","failed":false},"inventory":{"id":1,"name":"Demo - Inventory","description":"","has_active_failures":false,"total_hosts":2,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"credential":{"id":1,"name":"Demo - Credential","description":"","kind":"ssh","cloud":false},"project":{"id":4,"name":"Demo - Project","description":"A great demo","status":"successful"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can - manage all aspects of the job template","id":20,"name":"Admin"},"execute_role":{"description":"May - run the job template","id":22,"name":"Execute"},"read_role":{"description":"May - view settings for the job template","id":21,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[{"status":"successful","finished":"2016-11-29T21:34:43.185Z","id":56},{"status":"successful","finished":"2016-10-12T22:11:33.689Z","id":39},{"status":"failed","finished":"2016-10-12T18:19:15.491Z","id":36}]},"created":"2016-08-02T17:57:03.252Z","modified":"2017-01-11T17:48:11.019Z","name":"Demo - Job Template","description":"","job_type":"run","inventory":1,"project":4,"playbook":"hello_world.yml","credential":1,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":"2016-11-29T21:34:43.185065Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","host_config_key":"","ask_variables_on_launch":false,"ask_limit_on_launch":false,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":false,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":28,"type":"job_template","url":"/api/v1/job_templates/28/","related":{"created_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/28/labels/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/29/","credential":"/api/v1/credentials/1/","last_job":"/api/v1/jobs/58/","notification_templates_error":"/api/v1/job_templates/28/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/28/notification_templates_success/","jobs":"/api/v1/job_templates/28/jobs/","object_roles":"/api/v1/job_templates/28/object_roles/","notification_templates_any":"/api/v1/job_templates/28/notification_templates_any/","access_list":"/api/v1/job_templates/28/access_list/","launch":"/api/v1/job_templates/28/launch/","schedules":"/api/v1/job_templates/28/schedules/","activity_stream":"/api/v1/job_templates/28/activity_stream/","survey_spec":"/api/v1/job_templates/28/survey_spec/"},"summary_fields":{"last_job":{"id":58,"name":"LG - Demo Job Template","description":"","finished":"2016-11-29T21:40:58.392Z","status":"failed","failed":true},"last_update":{"id":58,"name":"LG - Demo Job Template","description":"","status":"failed","failed":true},"inventory":{"id":1,"name":"Demo - Inventory","description":"","has_active_failures":false,"total_hosts":2,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"credential":{"id":1,"name":"Demo - Credential","description":"","kind":"ssh","cloud":false},"project":{"id":29,"name":"lg-project","description":"lg_project","status":"successful"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can - manage all aspects of the job template","id":31,"name":"Admin"},"execute_role":{"description":"May - run the job template","id":33,"name":"Execute"},"read_role":{"description":"May - view settings for the job template","id":32,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[{"status":"failed","finished":"2016-11-29T21:40:58.392Z","id":58},{"status":"failed","finished":"2016-10-12T22:03:48.004Z","id":38}]},"created":"2016-09-13T20:42:21.670Z","modified":"2016-11-29T21:40:22.876Z","name":"LG - Demo Job Template","description":"","job_type":"check","inventory":1,"project":29,"playbook":"jboss-standalone/site.yml","credential":1,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":"2016-11-29T21:40:58.392051Z","last_job_failed":true,"has_schedules":false,"next_job_run":null,"status":"failed","host_config_key":"","ask_variables_on_launch":false,"ask_limit_on_launch":false,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":true,"ask_credential_on_launch":false,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false},{"id":41,"type":"job_template","url":"/api/v1/job_templates/41/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/41/labels/","inventory":"/api/v1/inventories/6/","project":"/api/v1/projects/40/","notification_templates_error":"/api/v1/job_templates/41/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/41/notification_templates_success/","jobs":"/api/v1/job_templates/41/jobs/","object_roles":"/api/v1/job_templates/41/object_roles/","notification_templates_any":"/api/v1/job_templates/41/notification_templates_any/","access_list":"/api/v1/job_templates/41/access_list/","launch":"/api/v1/job_templates/41/launch/","schedules":"/api/v1/job_templates/41/schedules/","activity_stream":"/api/v1/job_templates/41/activity_stream/","survey_spec":"/api/v1/job_templates/41/survey_spec/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":false,"total_hosts":1,"hosts_with_active_failures":0,"total_groups":2,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"project":{"id":40,"name":"RH-labs","description":"Red - Hat innovation Labs","status":"successful"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can - manage all aspects of the job template","id":119,"name":"Admin"},"execute_role":{"description":"May - run the job template","id":121,"name":"Execute"},"read_role":{"description":"May - view settings for the job template","id":120,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[]},"created":"2017-01-30T11:16:59.175Z","modified":"2017-01-30T11:22:01.953Z","name":"rh-labs-test","description":"","job_type":"run","inventory":6,"project":40,"playbook":"playbooks/check-service.yaml","credential":null,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"","job_tags":"","force_handlers":false,"skip_tags":"","start_at_task":"","last_job_run":null,"last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"never - updated","host_config_key":"","ask_variables_on_launch":false,"ask_limit_on_launch":false,"ask_tags_on_launch":false,"ask_job_type_on_launch":false,"ask_inventory_on_launch":false,"ask_credential_on_launch":true,"survey_enabled":false,"become_enabled":false,"allow_simultaneous":false}]}' + string: "[]" http_version: - recorded_at: Thu, 09 Feb 2017 09:37:56 GMT + recorded_at: Mon, 14 Aug 2017 20:36:26 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/76/survey_spec/ + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/440/playbooks/ body: encoding: US-ASCII string: '' @@ -3282,27 +12659,27 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:55 GMT + - Mon, 14 Aug 2017 20:36:27 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: - Accept,Cookie Allow: - - GET, POST, DELETE, HEAD, OPTIONS + - GET, HEAD, OPTIONS X-Api-Time: - - 0.033s - Content-Length: - - '2' + - 0.031s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 - string: "{}" + string: "[]" http_version: - recorded_at: Thu, 09 Feb 2017 09:37:56 GMT + recorded_at: Mon, 14 Aug 2017 20:36:27 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/76/survey_spec/ + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/448/playbooks/ body: encoding: US-ASCII string: '' @@ -3319,27 +12696,27 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:55 GMT + - Mon, 14 Aug 2017 20:36:28 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: - Accept,Cookie Allow: - - GET, POST, DELETE, HEAD, OPTIONS + - GET, HEAD, OPTIONS X-Api-Time: - - 0.034s + - 0.031s Content-Length: - '2' Content-Type: - application/json body: encoding: UTF-8 - string: "{}" + string: "[]" http_version: - recorded_at: Thu, 09 Feb 2017 09:37:57 GMT + recorded_at: Mon, 14 Aug 2017 20:36:27 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/78/survey_spec/ + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/453/playbooks/ body: encoding: US-ASCII string: '' @@ -3356,27 +12733,170 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:56 GMT + - Mon, 14 Aug 2017 20:36:28 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: - Accept,Cookie Allow: - - GET, POST, DELETE, HEAD, OPTIONS + - GET, HEAD, OPTIONS X-Api-Time: - - 0.036s - Content-Length: - - '2' + - 0.460s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 - string: "{}" + string: '["db/schema.yml","locale/en.yml","product/alerts/rss/dev_vms.yml","product/alerts/rss/lifecycle_events.yml","product/alerts/rss/microsoft_vms.yml","product/alerts/rss/newest_vms.yml","product/alerts/rss/prod_vms.yml","product/alerts/rss/test_vms.yml","product/alerts/rss/vmware_vms.yml","product/chargeback/chargeback_vm_monthly.yaml","product/charts/miq_reports/ontap_logical_disk.yaml","product/charts/miq_reports/vim_perf_daily.yaml","product/charts/miq_reports/vim_perf_daily_cloud.yaml","product/charts/miq_reports/vim_perf_daily_middleware_datasource.yaml","product/charts/miq_reports/vim_perf_daily_middleware_messaging_jms_queue.yaml","product/charts/miq_reports/vim_perf_daily_middleware_messaging_jms_topic.yaml","product/charts/miq_reports/vim_perf_daily_middleware_server.yaml","product/charts/miq_reports/vim_perf_hourly.yaml","product/charts/miq_reports/vim_perf_hourly_cloud.yaml","product/charts/miq_reports/vim_perf_hourly_middleware_datasource.yaml","product/charts/miq_reports/vim_perf_hourly_middleware_messaging_jms_queue.yaml","product/charts/miq_reports/vim_perf_hourly_middleware_messaging_jms_topic.yaml","product/charts/miq_reports/vim_perf_hourly_middleware_server.yaml","product/charts/miq_reports/vim_perf_planning.yaml","product/charts/miq_reports/vim_perf_realtime.yaml","product/charts/miq_reports/vim_perf_realtime_middleware_datasource.yaml","product/charts/miq_reports/vim_perf_realtime_middleware_messaging_jms_queue.yaml","product/charts/miq_reports/vim_perf_realtime_middleware_messaging_jms_topic.yaml","product/charts/miq_reports/vim_perf_realtime_middleware_server.yaml","product/charts/miq_reports/vim_perf_summ_daily.yaml","product/charts/miq_reports/vim_perf_tag_daily.yaml","product/charts/miq_reports/vim_perf_tag_hourly.yaml","product/charts/miq_reports/vim_perf_topday.yaml","product/charts/miq_reports/vim_perf_tophour.yaml","product/charts/miq_reports/vim_perf_util_4_ts.yaml","product/charts/miq_reports/vim_perf_util_daily.yaml","product/charts/miq_reports/vmdb_database.yaml","product/charts/miq_reports/vmdb_table.yaml","product/compare/ems_clusters.yaml","product/compare/hosts.yaml","product/compare/vms.yaml","product/reports/100_Configuration + Management - Virtual Machines/005_VMs with Free Space _ 50% by Department.yaml","product/reports/100_Configuration + Management - Virtual Machines/006_VMs w_Free Space _ 75% by Function.yaml","product/reports/100_Configuration + Management - Virtual Machines/007_VMs w_Free Space _ 75% by LOB.yaml","product/reports/100_Configuration + Management - Virtual Machines/009_VM Disk Usage.yaml","product/reports/100_Configuration + Management - Virtual Machines/010_VMs_ Hardware.yaml","product/reports/100_Configuration + Management - Virtual Machines/020_Vendor and Type.yaml","product/reports/100_Configuration + Management - Virtual Machines/022_Vendor and Guest OS.yaml","product/reports/100_Configuration + Management - Virtual Machines/025_Location and Size.yaml","product/reports/100_Configuration + Management - Virtual Machines/026_VMs_ UUIDs.yaml","product/reports/100_Configuration + Management - Virtual Machines/027_VMs_ with no UUID.yaml","product/reports/100_Configuration + Management - Virtual Machines/028_VMs with Volume Free Space -= 20%.yaml","product/reports/100_Configuration + Management - Virtual Machines/029_VMs with Volume Free Space -= 80%.yaml","product/reports/100_Configuration + Management - Virtual Machines/030_by MAC Address.yaml","product/reports/100_Configuration + Management - Virtual Machines/031_Unregistered VMs.yaml","product/reports/100_Configuration + Management - Virtual Machines/032_Orphaned VMs.yaml","product/reports/100_Configuration + Management - Virtual Machines/036_Snapshot Summary.yaml","product/reports/100_Configuration + Management - Virtual Machines/050_User Accounts Windows .yaml","product/reports/100_Configuration + Management - Virtual Machines/051_User Accounts Linux.yaml","product/reports/100_Configuration + Management - Virtual Machines/052_Account Groups Windows .yaml","product/reports/100_Configuration + Management - Virtual Machines/053_Account Groups Linux.yaml","product/reports/100_Configuration + Management - Virtual Machines/059_Guest OS Information (any OS).yaml","product/reports/100_Configuration + Management - Virtual Machines/060_Guest OS Information - Windows.yaml","product/reports/100_Configuration + Management - Virtual Machines/062_Guest OS Information - Linux.yaml","product/reports/100_Configuration + Management - Virtual Machines/063_Guest OS Password Information.yaml","product/reports/100_Configuration + Management - Virtual Machines/064_Guest OS HKLM Registry Information.yaml","product/reports/110_Configuration + Management - Hosts/010_Summary.yaml","product/reports/110_Configuration Management + - Hosts/011_Host Summary with VM info.yaml","product/reports/110_Configuration + Management - Hosts/012_Virtual Infrastructure Platforms.yaml","product/reports/110_Configuration + Management - Hosts/015_Host - ESX Services.yaml","product/reports/110_Configuration + Management - Hosts/016_Host - ESX Service Console Packages.yaml","product/reports/110_Configuration + Management - Hosts/020_Date Brought under Management.yaml","product/reports/110_Configuration + Management - Hosts/030_Hardware.yaml","product/reports/110_Configuration Management + - Hosts/040_Summary for VMs.yaml","product/reports/110_Configuration Management + - Hosts/050_Patches.yaml","product/reports/110_Configuration Management - + Hosts/060_VM Relationships.yaml","product/reports/110_Configuration Management + - Hosts/070_Storage Adapters.yaml","product/reports/110_Configuration Management + - Hosts/080_Network information.yaml","product/reports/110_Configuration Management + - Hosts/090_vLANs and vSwitches.yaml","product/reports/120_Configuration Management + - Providers/010_Summary.yaml","product/reports/120_Configuration Management + - Providers/020_Host Relationships.yaml","product/reports/120_Configuration + Management - Providers/030_VM Relationships.yaml","product/reports/120_Configuration + Management - Providers/040_Monthly Host Count per Provider.yaml","product/reports/120_Configuration + Management - Providers/050_Monthly Vm Count per Provider.yaml","product/reports/130_Configuration + Management - Clusters/010_Summary.yaml","product/reports/130_Configuration + Management - Clusters/020_Hosts Affinity.yaml","product/reports/130_Configuration + Management - Clusters/030_VM Affinity with Power State.yaml","product/reports/130_Configuration + Management - Clusters/040_Cluster Resources.yaml","product/reports/140_Configuration + Management - Resource Pools/010_Summary.yaml","product/reports/150_Configuration + Management - Storage/010_Summary.yaml","product/reports/150_Configuration + Management - Storage/020_Summary for VMs.yaml","product/reports/150_Configuration + Management - Storage/030_Summary for Hosts.yaml","product/reports/150_Configuration + Management - Storage/040_LUN Information.yaml","product/reports/160_Configuration + Management - VM Folders/010_Folders_ VM Relationships.yaml","product/reports/170_Configuration + Management - Containers/010_Nodes by Capacity.yaml","product/reports/170_Configuration + Management - Containers/020_Nodes by CPU Usage.yaml","product/reports/170_Configuration + Management - Containers/030_Nodes by Memory Usage.yaml","product/reports/170_Configuration + Management - Containers/040_Recently Discovered Container Groups.yaml","product/reports/170_Configuration + Management - Containers/050_Number of Nodes per CPU Cores.yaml","product/reports/170_Configuration + Management - Containers/060_Container Groups per Ready Status.yaml","product/reports/170_Configuration + Management - Containers/070_Projects by Pod Number.yaml","product/reports/170_Configuration + Management - Containers/080_Projects by CPU Usage.yaml","product/reports/170_Configuration + Management - Containers/090_Projects by Memory Usage.yaml","product/reports/170_Configuration + Management - Containers/100_Pod counts For Container Images by Project.yaml","product/reports/170_Configuration + Management - Containers/110_Number of Images per Node.yaml","product/reports/170_Configuration + Management - Containers/120_Projects by Number of Containers.yaml","product/reports/170_Configuration + Management - Containers/130_Pods per Ready Status.yaml","product/reports/300_Migration + Readiness - Virtual Machines/010_Summary - VMs migration ready.yaml","product/reports/300_Migration + Readiness - Virtual Machines/011_Summary - VMs NOT migration ready.yaml","product/reports/300_Migration + Readiness - Virtual Machines/020_Detailed - VMs migration ready.yaml","product/reports/300_Migration + Readiness - Virtual Machines/021_Detailed - VMs NOT migration ready.yaml","product/reports/400_Operations- + Virtual Machines/010_Registered VMs by Free Space.yaml","product/reports/400_Operations- + Virtual Machines/015_Registered Free Space _35%.yaml","product/reports/400_Operations- + Virtual Machines/016_Unregistered Free Space _35%.yaml","product/reports/400_Operations- + Virtual Machines/020_Online VMs.yaml","product/reports/400_Operations- Virtual + Machines/022_VMs not Powered On.yaml","product/reports/400_Operations- Virtual + Machines/040_VMs_ Offline VMs not yet Scanned.yaml","product/reports/400_Operations- + Virtual Machines/045_VMs_ Offline VMs with Snapshot.yaml","product/reports/400_Operations- + Virtual Machines/050_VMs without VMware tools.yaml","product/reports/400_Operations- + Virtual Machines/055_VMs with old VMware tools.yaml","product/reports/400_Operations- + Virtual Machines/060_VMware Tools Versions.yaml","product/reports/410_Operations + - EVM/025_EVM Snapshots.yaml","product/reports/410_Operations - EVM/026_Consolidate + Helper Snapshots.yaml","product/reports/410_Operations - EVM/030_EVM Server_ + UserID Usage Report.yaml","product/reports/410_Operations - EVM/032_EVM Server_ + UserIDs Never Used.yaml","product/reports/420_Operations - Clusters/010_Cluster + - DRS migrations.yaml","product/reports/421_Operations - Events/VC Snapshot + Events by User.yaml","product/reports/425_VM Sprawl - Candidates/052_VMs with + Volume Free Space -= 75%.yaml","product/reports/425_VM Sprawl - Candidates/053_VMs + with disk free space _ 5GB.yaml","product/reports/425_VM Sprawl - Candidates/054_VM + Uptime - longest running.yaml","product/reports/425_VM Sprawl - Candidates/055_VMs + Powered Off registered to a Host.yaml","product/reports/425_VM Sprawl - Candidates/056_VMs + pending Retirement.yaml","product/reports/425_VM Sprawl - Candidates/057_VMs + that are Retired.yaml","product/reports/425_VM Sprawl - Candidates/058_VMs + with invalid allocation of RAM.yaml","product/reports/425_VM Sprawl - Candidates/059_Summary + of VM Create and Deletes.yaml","product/reports/450_Relationships - Virtual + Machines, Folders, Clusters/010_VMs Relationships.yaml","product/reports/450_Relationships + - Virtual Machines, Folders, Clusters/020_VM Folders relationships.yaml","product/reports/450_Relationships + - Virtual Machines, Folders, Clusters/030_Clusters Relationships.yaml","product/reports/500_Events + - Operations/110_vm_operational_vm_power.yaml","product/reports/500_Events + - Operations/120_Events_for_VM_prod_webserver.yaml","product/reports/500_Events + - Operations/130_Reconfigure_Events_by_Department.yaml","product/reports/500_Events + - Operations/140_VC_Events_initiated_by_username_EVM.yaml","product/reports/520_Events + - Policy/110_Policy Events.yaml","product/reports/520_Events - Policy/120_Policy + Events2.yaml","product/reports/650_Performance by Asset Type - Virtual Machines/050_Host + CPU Usage per VM.yaml","product/reports/650_Performance by Asset Type - Virtual + Machines/065_VM Performance - daily over last week.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/100_VMs_with_Max_Daily_Mem_ 50%_past_mo.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/110_VMs_with_Avg_Daily_Mem_ 50%_past_mo.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/120_VMs_with_Avg_Daily_CPU_ 85%_past_mo.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/130_VMs_with_Max_Daily_CPU_ 85%_past_mo .yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/140_VMs with Avg Daily Mem _ 95%_past_mo + .yaml","product/reports/650_Performance by Asset Type - Virtual Machines/150_All + Departments with Performance.yaml","product/reports/650_Performance by Asset + Type - Virtual Machines/160_Top CPU Consumers weekly.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/170_Top Memory Consumers weekly.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/180_Top Storage Consumers.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/190_VM Resource Utilization.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/200_Weekly Utilization Overview.yaml","product/reports/660_Performance + by Asset Type - Clusters/110_Cluster_Memory_and_CPU_Usage_7_days.yaml","product/reports/670_Performance + by Asset Type - Middleware Servers/110_JVM Heap Usage - daily over last week.yaml","product/reports/670_Performance + by Asset Type - Middleware Servers/120_JVM Non Heap Usage - daily over last + week.yaml","product/reports/670_Performance by Asset Type - Middleware Servers/130_JVM + Garbage Collection - daily over last week.yaml","product/reports/670_Performance + by Asset Type - Middleware Servers/140_Transactions - every minute over last + hour.yaml","product/reports/670_Performance by Asset Type - Middleware Servers/150_Transactions + - hourly over last day.yaml","product/reports/680_Performance by Asset Type + - Middleware Datasources/110_Datasource Pool - every minute for the last hour.yaml","product/reports/680_Performance + by Asset Type - Middleware Datasources/120_Datasource Pool - hourly for the + last day.yaml","product/reports/700_Running Processes - Virtual Machines/110_Processes_for_prod_ + VMs_sort_by_CPU_Time.yaml","product/reports/750_Trending - Clusters/050_Cluster + memory trend 6 months.yaml","product/reports/750_Trending - Clusters/060_Cluster + CPU Trends last week.yaml","product/reports/750_Trending - Clusters/070_Cluster + IO Trends last week.yaml","product/reports/750_Trending - Clusters/080_Cluster + Memory Trends last week.yaml","product/reports/760_Trending - Storage/110_Datastore_Capacity_Trend_over_6 + mos.yaml","product/reports/770_Trending - Hosts/110_Host_Peak_CPU_Used_Trend_over_6_mos.yaml","product/reports/770_Trending + - Hosts/110_Host_Peak_Memory_Used_Trends_for_6_Mos.yaml","product/reports/770_Trending + - Hosts/120_Host CPU Trends last week.yaml","product/reports/770_Trending + - Hosts/130_Host IO Trends last week.yaml","product/reports/770_Trending - + Hosts/140_Host Memory Trends last week.yaml","product/reports/780_Tenants + - Tenant Quotas/001_Tenant Quotas.yaml","product/reports/900_Provisioning + - Activity Reports/110_Provisioning Activity - by Approver.yaml","product/reports/900_Provisioning + - Activity Reports/120_Provisioning Activity - by Datastore.yaml","product/reports/900_Provisioning + - Activity Reports/130_Provisioning Activity - by Requester.yaml","product/reports/900_Provisioning + - Activity Reports/140_Provisioning Activity - by VM.yaml","product/timelines/miq_reports/tl_bottleneck_events.yaml","product/timelines/miq_reports/tl_events_daily.yaml","product/timelines/miq_reports/tl_events_hourly.yaml","product/timelines/miq_reports/tl_policy_events_daily.yaml","product/timelines/miq_reports/tl_policy_events_hourly.yaml","product/views/Account-groups.yaml","product/views/Account-users.yaml","product/views/AdvancedSetting.yaml","product/views/AutomationRequest.yaml","product/views/AvailabilityZone.yaml","product/views/ChargebackRate.yaml","product/views/CimBaseStorageExtent.yaml","product/views/CimStorageExtent.yaml","product/views/CloudNetwork.yaml","product/views/CloudObjectStoreContainer-cloud_object_store_containers.yaml","product/views/CloudObjectStoreContainer.yaml","product/views/CloudObjectStoreObject-cloud_object_store_objects.yaml","product/views/CloudObjectStoreObject.yaml","product/views/CloudService.yaml","product/views/CloudSubnet.yaml","product/views/CloudTenant.yaml","product/views/CloudVolume-based_volumes.yaml","product/views/CloudVolume.yaml","product/views/CloudVolumeBackup-cloud_volume_backups.yaml","product/views/CloudVolumeBackup.yaml","product/views/CloudVolumeSnapshot-cloud_volume_snapshots.yaml","product/views/CloudVolumeSnapshot.yaml","product/views/Condition.yaml","product/views/ConditionSet.yaml","product/views/ConfiguredSystem.yaml","product/views/Container.yaml","product/views/ContainerBuild.yaml","product/views/ContainerGroup.yaml","product/views/ContainerImage.yaml","product/views/ContainerImageRegistry.yaml","product/views/ContainerNode.yaml","product/views/ContainerProject.yaml","product/views/ContainerReplicator.yaml","product/views/ContainerRoute.yaml","product/views/ContainerService.yaml","product/views/ContainerTemplate.yaml","product/views/CustomizationTemplate.yaml","product/views/Dialog.yaml","product/views/ems_block_storage.yaml","product/views/ems_object_storage.yaml","product/views/EmsCluster.yaml","product/views/EventLog-event_logs.yaml","product/views/Filesystem.yaml","product/views/FirewallRule.yaml","product/views/Flavor.yaml","product/views/FloatingIp.yaml","product/views/GuestApplication.yaml","product/views/Host.yaml","product/views/HostAggregate.yaml","product/views/InstanceOrImage.yaml","product/views/IsoDatastore.yaml","product/views/Job.yaml","product/views/LdapRegion.yaml","product/views/LoadBalancer.yaml","product/views/ManageIQ_Providers_AnsibleTower_AutomationManager.yaml","product/views/ManageIQ_Providers_AnsibleTower_AutomationManager_ConfigurationScript.yaml","product/views/ManageIQ_Providers_AnsibleTower_AutomationManager_ConfiguredSystem.yaml","product/views/ManageIQ_Providers_AnsibleTower_AutomationManager_Job.yaml","product/views/ManageIQ_Providers_CloudManager.yaml","product/views/ManageIQ_Providers_CloudManager_AuthKeyPair.yaml","product/views/ManageIQ_Providers_CloudManager_OrchestrationStack.yaml","product/views/ManageIQ_Providers_CloudManager_Template-all_vms_and_templates.yaml","product/views/ManageIQ_Providers_CloudManager_Template.yaml","product/views/ManageIQ_Providers_CloudManager_Vm-all_vms_and_templates.yaml","product/views/ManageIQ_Providers_CloudManager_Vm-vms.yaml","product/views/ManageIQ_Providers_CloudManager_Vm.yaml","product/views/ManageIQ_Providers_ConfigurationManager.yaml","product/views/ManageIQ_Providers_ContainerManager.yaml","product/views/ManageIQ_Providers_DatawarehouseManager.yaml","product/views/ManageIQ_Providers_EmbeddedAnsible_AutomationManager_Playbook.yaml","product/views/ManageIQ_Providers_EmbeddedAutomationManager_Authentication.yaml","product/views/ManageIQ_Providers_Foreman_ConfigurationManager.yaml","product/views/ManageIQ_Providers_Foreman_ConfigurationManager_ConfiguredSystem.yaml","product/views/ManageIQ_Providers_InfraManager.yaml","product/views/ManageIQ_Providers_InfraManager_Template.yaml","product/views/ManageIQ_Providers_InfraManager_Vm.yaml","product/views/ManageIQ_Providers_MiddlewareManager.yaml","product/views/ManageIQ_Providers_NetworkManager.yaml","product/views/ManageIQ_Providers_PhysicalInfraManager.yaml","product/views/ManageIQ_Providers_StorageManager.yaml","product/views/ManageIQ_Providers_Vmware_CloudManager_OrchestrationTemplate.yaml","product/views/MiddlewareDatasource.yaml","product/views/MiddlewareDeployment.yaml","product/views/MiddlewareDomain.yaml","product/views/MiddlewareMessaging.yaml","product/views/MiddlewareServer.yaml","product/views/MiddlewareServerGroup.yaml","product/views/MiqAction.yaml","product/views/MiqActionSet.yaml","product/views/MiqAeClass.yaml","product/views/MiqAeInstance.yaml","product/views/MiqAlert.yaml","product/views/MiqDialog.yaml","product/views/MiqEvent-actions.yaml","product/views/MiqEvent.yaml","product/views/MiqGroup.yaml","product/views/MiqPolicy.yaml","product/views/MiqPolicySet.yaml","product/views/MiqProvision.yaml","product/views/MiqReportResult-all.yaml","product/views/MiqReportResult.yaml","product/views/MiqRequest.yaml","product/views/MiqSchedule.yaml","product/views/MiqServer.yaml","product/views/MiqTask.yaml","product/views/MiqTemplate-all_miq_templates.yaml","product/views/MiqTemplate.yaml","product/views/MiqUserRole.yaml","product/views/MiqWidget-all.yaml","product/views/MiqWidget.yaml","product/views/MiqWorker.yaml","product/views/NetworkPort.yaml","product/views/NetworkRouter.yaml","product/views/OntapFileShare.yaml","product/views/OntapLogicalDisk.yaml","product/views/OntapStorageSystem.yaml","product/views/OntapStorageVolume.yaml","product/views/OpenscapRuleResult.yaml","product/views/OrchestrationStack.yaml","product/views/OrchestrationStackOutput.yaml","product/views/OrchestrationStackParameter.yaml","product/views/OrchestrationStackResource.yaml","product/views/OrchestrationTemplate.yaml","product/views/OrchestrationTemplateAzure.yaml","product/views/OrchestrationTemplateCfn.yaml","product/views/OrchestrationTemplateHot.yaml","product/views/OrchestrationTemplateVnfd.yaml","product/views/OsProcess-processes.yaml","product/views/Patch.yaml","product/views/PersistentVolume.yaml","product/views/PhysicalServer.yaml","product/views/PxeImageType.yaml","product/views/PxeServer.yaml","product/views/RegistryItem.yaml","product/views/ResourcePool.yaml","product/views/ScanHistory.yaml","product/views/ScanItemSet.yaml","product/views/SecurityGroup.yaml","product/views/Service.yaml","product/views/ServiceCatalog.yaml","product/views/ServiceTemplate.yaml","product/views/ServiceTemplateCatalog.yaml","product/views/SniaLocalFileSystem.yaml","product/views/Storage.yaml","product/views/StorageCluster.yaml","product/views/StorageFile-debris_files.yaml","product/views/StorageFile-disk_files.yaml","product/views/StorageFile-files.yaml","product/views/StorageFile-snapshot_files.yaml","product/views/StorageFile-vm_misc_files.yaml","product/views/StorageFile-vm_ram_files.yaml","product/views/StorageManager.yaml","product/views/SystemService-filesystem_drivers.yaml","product/views/SystemService-kernel_drivers.yaml","product/views/SystemService-linux_initprocesses.yaml","product/views/SystemService-win32_services.yaml","product/views/SystemService.yaml","product/views/Tenant.yaml","product/views/User.yaml","product/views/Vm-all_vms.yaml","product/views/Vm-VmReconfigureRequest.yaml","product/views/Vm.yaml","product/views/Vm__restricted.yaml","product/views/VmdbDatabaseConnection.yaml","product/views/VmdbDatabaseSetting.yaml","product/views/VmdbIndex.yaml","product/views/VmdbTableEvm.yaml","product/views/VmOrTemplate-all_archived.yaml","product/views/VmOrTemplate-all_orphaned.yaml","product/views/VmOrTemplate-all_vms_and_templates.yaml","product/views/VmOrTemplate.yaml","spec/migrations/data/20150625220141_fix_serialized_reports_for_rails_four_spec/binary_blob_hash.yaml","spec/migrations/data/20150625220141_fix_serialized_reports_for_rails_four_spec/binary_blob_obj.yaml","spec/migrations/data/20150625220141_fix_serialized_reports_for_rails_four_spec/miq_report_hash.yaml","spec/migrations/data/20150625220141_fix_serialized_reports_for_rails_four_spec/miq_report_obj.yaml","spec/models/rss_feed/data/newest_vms.yml"]' http_version: - recorded_at: Thu, 09 Feb 2017 09:37:57 GMT + recorded_at: Mon, 14 Aug 2017 20:36:28 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/78/survey_spec/ + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/454/playbooks/ body: encoding: US-ASCII string: '' @@ -3393,27 +12913,170 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:56 GMT + - Mon, 14 Aug 2017 20:36:29 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: - Accept,Cookie Allow: - - GET, POST, DELETE, HEAD, OPTIONS + - GET, HEAD, OPTIONS X-Api-Time: - - 0.033s + - 1.176s Content-Length: - - '2' + - '23404' Content-Type: - application/json body: encoding: UTF-8 - string: "{}" + string: '["db/schema.yml","locale/en.yml","product/alerts/rss/dev_vms.yml","product/alerts/rss/lifecycle_events.yml","product/alerts/rss/microsoft_vms.yml","product/alerts/rss/newest_vms.yml","product/alerts/rss/prod_vms.yml","product/alerts/rss/test_vms.yml","product/alerts/rss/vmware_vms.yml","product/chargeback/chargeback_vm_monthly.yaml","product/charts/miq_reports/ontap_logical_disk.yaml","product/charts/miq_reports/vim_perf_daily.yaml","product/charts/miq_reports/vim_perf_daily_cloud.yaml","product/charts/miq_reports/vim_perf_daily_middleware_datasource.yaml","product/charts/miq_reports/vim_perf_daily_middleware_messaging_jms_queue.yaml","product/charts/miq_reports/vim_perf_daily_middleware_messaging_jms_topic.yaml","product/charts/miq_reports/vim_perf_daily_middleware_server.yaml","product/charts/miq_reports/vim_perf_hourly.yaml","product/charts/miq_reports/vim_perf_hourly_cloud.yaml","product/charts/miq_reports/vim_perf_hourly_middleware_datasource.yaml","product/charts/miq_reports/vim_perf_hourly_middleware_messaging_jms_queue.yaml","product/charts/miq_reports/vim_perf_hourly_middleware_messaging_jms_topic.yaml","product/charts/miq_reports/vim_perf_hourly_middleware_server.yaml","product/charts/miq_reports/vim_perf_planning.yaml","product/charts/miq_reports/vim_perf_realtime.yaml","product/charts/miq_reports/vim_perf_realtime_middleware_datasource.yaml","product/charts/miq_reports/vim_perf_realtime_middleware_messaging_jms_queue.yaml","product/charts/miq_reports/vim_perf_realtime_middleware_messaging_jms_topic.yaml","product/charts/miq_reports/vim_perf_realtime_middleware_server.yaml","product/charts/miq_reports/vim_perf_summ_daily.yaml","product/charts/miq_reports/vim_perf_tag_daily.yaml","product/charts/miq_reports/vim_perf_tag_hourly.yaml","product/charts/miq_reports/vim_perf_topday.yaml","product/charts/miq_reports/vim_perf_tophour.yaml","product/charts/miq_reports/vim_perf_util_4_ts.yaml","product/charts/miq_reports/vim_perf_util_daily.yaml","product/charts/miq_reports/vmdb_database.yaml","product/charts/miq_reports/vmdb_table.yaml","product/compare/ems_clusters.yaml","product/compare/hosts.yaml","product/compare/vms.yaml","product/reports/100_Configuration + Management - Virtual Machines/005_VMs with Free Space _ 50% by Department.yaml","product/reports/100_Configuration + Management - Virtual Machines/006_VMs w_Free Space _ 75% by Function.yaml","product/reports/100_Configuration + Management - Virtual Machines/007_VMs w_Free Space _ 75% by LOB.yaml","product/reports/100_Configuration + Management - Virtual Machines/009_VM Disk Usage.yaml","product/reports/100_Configuration + Management - Virtual Machines/010_VMs_ Hardware.yaml","product/reports/100_Configuration + Management - Virtual Machines/020_Vendor and Type.yaml","product/reports/100_Configuration + Management - Virtual Machines/022_Vendor and Guest OS.yaml","product/reports/100_Configuration + Management - Virtual Machines/025_Location and Size.yaml","product/reports/100_Configuration + Management - Virtual Machines/026_VMs_ UUIDs.yaml","product/reports/100_Configuration + Management - Virtual Machines/027_VMs_ with no UUID.yaml","product/reports/100_Configuration + Management - Virtual Machines/028_VMs with Volume Free Space -= 20%.yaml","product/reports/100_Configuration + Management - Virtual Machines/029_VMs with Volume Free Space -= 80%.yaml","product/reports/100_Configuration + Management - Virtual Machines/030_by MAC Address.yaml","product/reports/100_Configuration + Management - Virtual Machines/031_Unregistered VMs.yaml","product/reports/100_Configuration + Management - Virtual Machines/032_Orphaned VMs.yaml","product/reports/100_Configuration + Management - Virtual Machines/036_Snapshot Summary.yaml","product/reports/100_Configuration + Management - Virtual Machines/050_User Accounts Windows .yaml","product/reports/100_Configuration + Management - Virtual Machines/051_User Accounts Linux.yaml","product/reports/100_Configuration + Management - Virtual Machines/052_Account Groups Windows .yaml","product/reports/100_Configuration + Management - Virtual Machines/053_Account Groups Linux.yaml","product/reports/100_Configuration + Management - Virtual Machines/059_Guest OS Information (any OS).yaml","product/reports/100_Configuration + Management - Virtual Machines/060_Guest OS Information - Windows.yaml","product/reports/100_Configuration + Management - Virtual Machines/062_Guest OS Information - Linux.yaml","product/reports/100_Configuration + Management - Virtual Machines/063_Guest OS Password Information.yaml","product/reports/100_Configuration + Management - Virtual Machines/064_Guest OS HKLM Registry Information.yaml","product/reports/110_Configuration + Management - Hosts/010_Summary.yaml","product/reports/110_Configuration Management + - Hosts/011_Host Summary with VM info.yaml","product/reports/110_Configuration + Management - Hosts/012_Virtual Infrastructure Platforms.yaml","product/reports/110_Configuration + Management - Hosts/015_Host - ESX Services.yaml","product/reports/110_Configuration + Management - Hosts/016_Host - ESX Service Console Packages.yaml","product/reports/110_Configuration + Management - Hosts/020_Date Brought under Management.yaml","product/reports/110_Configuration + Management - Hosts/030_Hardware.yaml","product/reports/110_Configuration Management + - Hosts/040_Summary for VMs.yaml","product/reports/110_Configuration Management + - Hosts/050_Patches.yaml","product/reports/110_Configuration Management - + Hosts/060_VM Relationships.yaml","product/reports/110_Configuration Management + - Hosts/070_Storage Adapters.yaml","product/reports/110_Configuration Management + - Hosts/080_Network information.yaml","product/reports/110_Configuration Management + - Hosts/090_vLANs and vSwitches.yaml","product/reports/120_Configuration Management + - Providers/010_Summary.yaml","product/reports/120_Configuration Management + - Providers/020_Host Relationships.yaml","product/reports/120_Configuration + Management - Providers/030_VM Relationships.yaml","product/reports/120_Configuration + Management - Providers/040_Monthly Host Count per Provider.yaml","product/reports/120_Configuration + Management - Providers/050_Monthly Vm Count per Provider.yaml","product/reports/130_Configuration + Management - Clusters/010_Summary.yaml","product/reports/130_Configuration + Management - Clusters/020_Hosts Affinity.yaml","product/reports/130_Configuration + Management - Clusters/030_VM Affinity with Power State.yaml","product/reports/130_Configuration + Management - Clusters/040_Cluster Resources.yaml","product/reports/140_Configuration + Management - Resource Pools/010_Summary.yaml","product/reports/150_Configuration + Management - Storage/010_Summary.yaml","product/reports/150_Configuration + Management - Storage/020_Summary for VMs.yaml","product/reports/150_Configuration + Management - Storage/030_Summary for Hosts.yaml","product/reports/150_Configuration + Management - Storage/040_LUN Information.yaml","product/reports/160_Configuration + Management - VM Folders/010_Folders_ VM Relationships.yaml","product/reports/170_Configuration + Management - Containers/010_Nodes by Capacity.yaml","product/reports/170_Configuration + Management - Containers/020_Nodes by CPU Usage.yaml","product/reports/170_Configuration + Management - Containers/030_Nodes by Memory Usage.yaml","product/reports/170_Configuration + Management - Containers/040_Recently Discovered Container Groups.yaml","product/reports/170_Configuration + Management - Containers/050_Number of Nodes per CPU Cores.yaml","product/reports/170_Configuration + Management - Containers/060_Container Groups per Ready Status.yaml","product/reports/170_Configuration + Management - Containers/070_Projects by Pod Number.yaml","product/reports/170_Configuration + Management - Containers/080_Projects by CPU Usage.yaml","product/reports/170_Configuration + Management - Containers/090_Projects by Memory Usage.yaml","product/reports/170_Configuration + Management - Containers/100_Pod counts For Container Images by Project.yaml","product/reports/170_Configuration + Management - Containers/110_Number of Images per Node.yaml","product/reports/170_Configuration + Management - Containers/120_Projects by Number of Containers.yaml","product/reports/170_Configuration + Management - Containers/130_Pods per Ready Status.yaml","product/reports/300_Migration + Readiness - Virtual Machines/010_Summary - VMs migration ready.yaml","product/reports/300_Migration + Readiness - Virtual Machines/011_Summary - VMs NOT migration ready.yaml","product/reports/300_Migration + Readiness - Virtual Machines/020_Detailed - VMs migration ready.yaml","product/reports/300_Migration + Readiness - Virtual Machines/021_Detailed - VMs NOT migration ready.yaml","product/reports/400_Operations- + Virtual Machines/010_Registered VMs by Free Space.yaml","product/reports/400_Operations- + Virtual Machines/015_Registered Free Space _35%.yaml","product/reports/400_Operations- + Virtual Machines/016_Unregistered Free Space _35%.yaml","product/reports/400_Operations- + Virtual Machines/020_Online VMs.yaml","product/reports/400_Operations- Virtual + Machines/022_VMs not Powered On.yaml","product/reports/400_Operations- Virtual + Machines/040_VMs_ Offline VMs not yet Scanned.yaml","product/reports/400_Operations- + Virtual Machines/045_VMs_ Offline VMs with Snapshot.yaml","product/reports/400_Operations- + Virtual Machines/050_VMs without VMware tools.yaml","product/reports/400_Operations- + Virtual Machines/055_VMs with old VMware tools.yaml","product/reports/400_Operations- + Virtual Machines/060_VMware Tools Versions.yaml","product/reports/410_Operations + - EVM/025_EVM Snapshots.yaml","product/reports/410_Operations - EVM/026_Consolidate + Helper Snapshots.yaml","product/reports/410_Operations - EVM/030_EVM Server_ + UserID Usage Report.yaml","product/reports/410_Operations - EVM/032_EVM Server_ + UserIDs Never Used.yaml","product/reports/420_Operations - Clusters/010_Cluster + - DRS migrations.yaml","product/reports/421_Operations - Events/VC Snapshot + Events by User.yaml","product/reports/425_VM Sprawl - Candidates/052_VMs with + Volume Free Space -= 75%.yaml","product/reports/425_VM Sprawl - Candidates/053_VMs + with disk free space _ 5GB.yaml","product/reports/425_VM Sprawl - Candidates/054_VM + Uptime - longest running.yaml","product/reports/425_VM Sprawl - Candidates/055_VMs + Powered Off registered to a Host.yaml","product/reports/425_VM Sprawl - Candidates/056_VMs + pending Retirement.yaml","product/reports/425_VM Sprawl - Candidates/057_VMs + that are Retired.yaml","product/reports/425_VM Sprawl - Candidates/058_VMs + with invalid allocation of RAM.yaml","product/reports/425_VM Sprawl - Candidates/059_Summary + of VM Create and Deletes.yaml","product/reports/450_Relationships - Virtual + Machines, Folders, Clusters/010_VMs Relationships.yaml","product/reports/450_Relationships + - Virtual Machines, Folders, Clusters/020_VM Folders relationships.yaml","product/reports/450_Relationships + - Virtual Machines, Folders, Clusters/030_Clusters Relationships.yaml","product/reports/500_Events + - Operations/110_vm_operational_vm_power.yaml","product/reports/500_Events + - Operations/120_Events_for_VM_prod_webserver.yaml","product/reports/500_Events + - Operations/130_Reconfigure_Events_by_Department.yaml","product/reports/500_Events + - Operations/140_VC_Events_initiated_by_username_EVM.yaml","product/reports/520_Events + - Policy/110_Policy Events.yaml","product/reports/520_Events - Policy/120_Policy + Events2.yaml","product/reports/650_Performance by Asset Type - Virtual Machines/050_Host + CPU Usage per VM.yaml","product/reports/650_Performance by Asset Type - Virtual + Machines/065_VM Performance - daily over last week.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/100_VMs_with_Max_Daily_Mem_ 50%_past_mo.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/110_VMs_with_Avg_Daily_Mem_ 50%_past_mo.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/120_VMs_with_Avg_Daily_CPU_ 85%_past_mo.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/130_VMs_with_Max_Daily_CPU_ 85%_past_mo .yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/140_VMs with Avg Daily Mem _ 95%_past_mo + .yaml","product/reports/650_Performance by Asset Type - Virtual Machines/150_All + Departments with Performance.yaml","product/reports/650_Performance by Asset + Type - Virtual Machines/160_Top CPU Consumers weekly.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/170_Top Memory Consumers weekly.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/180_Top Storage Consumers.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/190_VM Resource Utilization.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/200_Weekly Utilization Overview.yaml","product/reports/660_Performance + by Asset Type - Clusters/110_Cluster_Memory_and_CPU_Usage_7_days.yaml","product/reports/670_Performance + by Asset Type - Middleware Servers/110_JVM Heap Usage - daily over last week.yaml","product/reports/670_Performance + by Asset Type - Middleware Servers/120_JVM Non Heap Usage - daily over last + week.yaml","product/reports/670_Performance by Asset Type - Middleware Servers/130_JVM + Garbage Collection - daily over last week.yaml","product/reports/670_Performance + by Asset Type - Middleware Servers/140_Transactions - every minute over last + hour.yaml","product/reports/670_Performance by Asset Type - Middleware Servers/150_Transactions + - hourly over last day.yaml","product/reports/680_Performance by Asset Type + - Middleware Datasources/110_Datasource Pool - every minute for the last hour.yaml","product/reports/680_Performance + by Asset Type - Middleware Datasources/120_Datasource Pool - hourly for the + last day.yaml","product/reports/700_Running Processes - Virtual Machines/110_Processes_for_prod_ + VMs_sort_by_CPU_Time.yaml","product/reports/750_Trending - Clusters/050_Cluster + memory trend 6 months.yaml","product/reports/750_Trending - Clusters/060_Cluster + CPU Trends last week.yaml","product/reports/750_Trending - Clusters/070_Cluster + IO Trends last week.yaml","product/reports/750_Trending - Clusters/080_Cluster + Memory Trends last week.yaml","product/reports/760_Trending - Storage/110_Datastore_Capacity_Trend_over_6 + mos.yaml","product/reports/770_Trending - Hosts/110_Host_Peak_CPU_Used_Trend_over_6_mos.yaml","product/reports/770_Trending + - Hosts/110_Host_Peak_Memory_Used_Trends_for_6_Mos.yaml","product/reports/770_Trending + - Hosts/120_Host CPU Trends last week.yaml","product/reports/770_Trending + - Hosts/130_Host IO Trends last week.yaml","product/reports/770_Trending - + Hosts/140_Host Memory Trends last week.yaml","product/reports/780_Tenants + - Tenant Quotas/001_Tenant Quotas.yaml","product/reports/900_Provisioning + - Activity Reports/110_Provisioning Activity - by Approver.yaml","product/reports/900_Provisioning + - Activity Reports/120_Provisioning Activity - by Datastore.yaml","product/reports/900_Provisioning + - Activity Reports/130_Provisioning Activity - by Requester.yaml","product/reports/900_Provisioning + - Activity Reports/140_Provisioning Activity - by VM.yaml","product/timelines/miq_reports/tl_bottleneck_events.yaml","product/timelines/miq_reports/tl_events_daily.yaml","product/timelines/miq_reports/tl_events_hourly.yaml","product/timelines/miq_reports/tl_policy_events_daily.yaml","product/timelines/miq_reports/tl_policy_events_hourly.yaml","product/views/Account-groups.yaml","product/views/Account-users.yaml","product/views/AdvancedSetting.yaml","product/views/AutomationRequest.yaml","product/views/AvailabilityZone.yaml","product/views/ChargebackRate.yaml","product/views/CimBaseStorageExtent.yaml","product/views/CimStorageExtent.yaml","product/views/CloudNetwork.yaml","product/views/CloudObjectStoreContainer-cloud_object_store_containers.yaml","product/views/CloudObjectStoreContainer.yaml","product/views/CloudObjectStoreObject-cloud_object_store_objects.yaml","product/views/CloudObjectStoreObject.yaml","product/views/CloudService.yaml","product/views/CloudSubnet.yaml","product/views/CloudTenant.yaml","product/views/CloudVolume-based_volumes.yaml","product/views/CloudVolume.yaml","product/views/CloudVolumeBackup-cloud_volume_backups.yaml","product/views/CloudVolumeBackup.yaml","product/views/CloudVolumeSnapshot-cloud_volume_snapshots.yaml","product/views/CloudVolumeSnapshot.yaml","product/views/Condition.yaml","product/views/ConditionSet.yaml","product/views/ConfiguredSystem.yaml","product/views/Container.yaml","product/views/ContainerBuild.yaml","product/views/ContainerGroup.yaml","product/views/ContainerImage.yaml","product/views/ContainerImageRegistry.yaml","product/views/ContainerNode.yaml","product/views/ContainerProject.yaml","product/views/ContainerReplicator.yaml","product/views/ContainerRoute.yaml","product/views/ContainerService.yaml","product/views/ContainerTemplate.yaml","product/views/CustomizationTemplate.yaml","product/views/Dialog.yaml","product/views/ems_block_storage.yaml","product/views/ems_object_storage.yaml","product/views/EmsCluster.yaml","product/views/EventLog-event_logs.yaml","product/views/Filesystem.yaml","product/views/FirewallRule.yaml","product/views/Flavor.yaml","product/views/FloatingIp.yaml","product/views/GuestApplication.yaml","product/views/Host.yaml","product/views/HostAggregate.yaml","product/views/InstanceOrImage.yaml","product/views/IsoDatastore.yaml","product/views/Job.yaml","product/views/LdapRegion.yaml","product/views/LoadBalancer.yaml","product/views/ManageIQ_Providers_AnsibleTower_AutomationManager.yaml","product/views/ManageIQ_Providers_AnsibleTower_AutomationManager_ConfigurationScript.yaml","product/views/ManageIQ_Providers_AnsibleTower_AutomationManager_ConfiguredSystem.yaml","product/views/ManageIQ_Providers_AnsibleTower_AutomationManager_Job.yaml","product/views/ManageIQ_Providers_CloudManager.yaml","product/views/ManageIQ_Providers_CloudManager_AuthKeyPair.yaml","product/views/ManageIQ_Providers_CloudManager_OrchestrationStack.yaml","product/views/ManageIQ_Providers_CloudManager_Template-all_vms_and_templates.yaml","product/views/ManageIQ_Providers_CloudManager_Template.yaml","product/views/ManageIQ_Providers_CloudManager_Vm-all_vms_and_templates.yaml","product/views/ManageIQ_Providers_CloudManager_Vm-vms.yaml","product/views/ManageIQ_Providers_CloudManager_Vm.yaml","product/views/ManageIQ_Providers_ConfigurationManager.yaml","product/views/ManageIQ_Providers_ContainerManager.yaml","product/views/ManageIQ_Providers_DatawarehouseManager.yaml","product/views/ManageIQ_Providers_EmbeddedAnsible_AutomationManager_Playbook.yaml","product/views/ManageIQ_Providers_EmbeddedAutomationManager_Authentication.yaml","product/views/ManageIQ_Providers_Foreman_ConfigurationManager.yaml","product/views/ManageIQ_Providers_Foreman_ConfigurationManager_ConfiguredSystem.yaml","product/views/ManageIQ_Providers_InfraManager.yaml","product/views/ManageIQ_Providers_InfraManager_Template.yaml","product/views/ManageIQ_Providers_InfraManager_Vm.yaml","product/views/ManageIQ_Providers_MiddlewareManager.yaml","product/views/ManageIQ_Providers_NetworkManager.yaml","product/views/ManageIQ_Providers_PhysicalInfraManager.yaml","product/views/ManageIQ_Providers_StorageManager.yaml","product/views/ManageIQ_Providers_Vmware_CloudManager_OrchestrationTemplate.yaml","product/views/MiddlewareDatasource.yaml","product/views/MiddlewareDeployment.yaml","product/views/MiddlewareDomain.yaml","product/views/MiddlewareMessaging.yaml","product/views/MiddlewareServer.yaml","product/views/MiddlewareServerGroup.yaml","product/views/MiqAction.yaml","product/views/MiqActionSet.yaml","product/views/MiqAeClass.yaml","product/views/MiqAeInstance.yaml","product/views/MiqAlert.yaml","product/views/MiqDialog.yaml","product/views/MiqEvent-actions.yaml","product/views/MiqEvent.yaml","product/views/MiqGroup.yaml","product/views/MiqPolicy.yaml","product/views/MiqPolicySet.yaml","product/views/MiqProvision.yaml","product/views/MiqReportResult-all.yaml","product/views/MiqReportResult.yaml","product/views/MiqRequest.yaml","product/views/MiqSchedule.yaml","product/views/MiqServer.yaml","product/views/MiqTask.yaml","product/views/MiqTemplate-all_miq_templates.yaml","product/views/MiqTemplate.yaml","product/views/MiqUserRole.yaml","product/views/MiqWidget-all.yaml","product/views/MiqWidget.yaml","product/views/MiqWorker.yaml","product/views/NetworkPort.yaml","product/views/NetworkRouter.yaml","product/views/OntapFileShare.yaml","product/views/OntapLogicalDisk.yaml","product/views/OntapStorageSystem.yaml","product/views/OntapStorageVolume.yaml","product/views/OpenscapRuleResult.yaml","product/views/OrchestrationStack.yaml","product/views/OrchestrationStackOutput.yaml","product/views/OrchestrationStackParameter.yaml","product/views/OrchestrationStackResource.yaml","product/views/OrchestrationTemplate.yaml","product/views/OrchestrationTemplateAzure.yaml","product/views/OrchestrationTemplateCfn.yaml","product/views/OrchestrationTemplateHot.yaml","product/views/OrchestrationTemplateVnfd.yaml","product/views/OsProcess-processes.yaml","product/views/Patch.yaml","product/views/PersistentVolume.yaml","product/views/PhysicalServer.yaml","product/views/PxeImageType.yaml","product/views/PxeServer.yaml","product/views/RegistryItem.yaml","product/views/ResourcePool.yaml","product/views/ScanHistory.yaml","product/views/ScanItemSet.yaml","product/views/SecurityGroup.yaml","product/views/Service.yaml","product/views/ServiceCatalog.yaml","product/views/ServiceTemplate.yaml","product/views/ServiceTemplateCatalog.yaml","product/views/SniaLocalFileSystem.yaml","product/views/Storage.yaml","product/views/StorageCluster.yaml","product/views/StorageFile-debris_files.yaml","product/views/StorageFile-disk_files.yaml","product/views/StorageFile-files.yaml","product/views/StorageFile-snapshot_files.yaml","product/views/StorageFile-vm_misc_files.yaml","product/views/StorageFile-vm_ram_files.yaml","product/views/StorageManager.yaml","product/views/SystemService-filesystem_drivers.yaml","product/views/SystemService-kernel_drivers.yaml","product/views/SystemService-linux_initprocesses.yaml","product/views/SystemService-win32_services.yaml","product/views/SystemService.yaml","product/views/Tenant.yaml","product/views/User.yaml","product/views/Vm-all_vms.yaml","product/views/Vm-VmReconfigureRequest.yaml","product/views/Vm.yaml","product/views/Vm__restricted.yaml","product/views/VmdbDatabaseConnection.yaml","product/views/VmdbDatabaseSetting.yaml","product/views/VmdbIndex.yaml","product/views/VmdbTableEvm.yaml","product/views/VmOrTemplate-all_archived.yaml","product/views/VmOrTemplate-all_orphaned.yaml","product/views/VmOrTemplate-all_vms_and_templates.yaml","product/views/VmOrTemplate.yaml","spec/migrations/data/20150625220141_fix_serialized_reports_for_rails_four_spec/binary_blob_hash.yaml","spec/migrations/data/20150625220141_fix_serialized_reports_for_rails_four_spec/binary_blob_obj.yaml","spec/migrations/data/20150625220141_fix_serialized_reports_for_rails_four_spec/miq_report_hash.yaml","spec/migrations/data/20150625220141_fix_serialized_reports_for_rails_four_spec/miq_report_obj.yaml","spec/models/manageiq/providers/redhat/infra_manager/refresh/refresher/response_yamls/vms.yml","spec/models/manageiq/providers/redhat/infra_manager/refresh/refresher/target_response_yamls/vms.yml","spec/models/rss_feed/data/newest_vms.yml"]' http_version: - recorded_at: Thu, 09 Feb 2017 09:37:58 GMT + recorded_at: Mon, 14 Aug 2017 20:36:30 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/79/survey_spec/ + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/455/playbooks/ body: encoding: US-ASCII string: '' @@ -3430,27 +13093,170 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:57 GMT + - Mon, 14 Aug 2017 20:36:31 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: - Accept,Cookie Allow: - - GET, POST, DELETE, HEAD, OPTIONS + - GET, HEAD, OPTIONS X-Api-Time: - - 0.034s + - 1.208s Content-Length: - - '2' + - '23404' Content-Type: - application/json body: encoding: UTF-8 - string: "{}" + string: '["db/schema.yml","locale/en.yml","product/alerts/rss/dev_vms.yml","product/alerts/rss/lifecycle_events.yml","product/alerts/rss/microsoft_vms.yml","product/alerts/rss/newest_vms.yml","product/alerts/rss/prod_vms.yml","product/alerts/rss/test_vms.yml","product/alerts/rss/vmware_vms.yml","product/chargeback/chargeback_vm_monthly.yaml","product/charts/miq_reports/ontap_logical_disk.yaml","product/charts/miq_reports/vim_perf_daily.yaml","product/charts/miq_reports/vim_perf_daily_cloud.yaml","product/charts/miq_reports/vim_perf_daily_middleware_datasource.yaml","product/charts/miq_reports/vim_perf_daily_middleware_messaging_jms_queue.yaml","product/charts/miq_reports/vim_perf_daily_middleware_messaging_jms_topic.yaml","product/charts/miq_reports/vim_perf_daily_middleware_server.yaml","product/charts/miq_reports/vim_perf_hourly.yaml","product/charts/miq_reports/vim_perf_hourly_cloud.yaml","product/charts/miq_reports/vim_perf_hourly_middleware_datasource.yaml","product/charts/miq_reports/vim_perf_hourly_middleware_messaging_jms_queue.yaml","product/charts/miq_reports/vim_perf_hourly_middleware_messaging_jms_topic.yaml","product/charts/miq_reports/vim_perf_hourly_middleware_server.yaml","product/charts/miq_reports/vim_perf_planning.yaml","product/charts/miq_reports/vim_perf_realtime.yaml","product/charts/miq_reports/vim_perf_realtime_middleware_datasource.yaml","product/charts/miq_reports/vim_perf_realtime_middleware_messaging_jms_queue.yaml","product/charts/miq_reports/vim_perf_realtime_middleware_messaging_jms_topic.yaml","product/charts/miq_reports/vim_perf_realtime_middleware_server.yaml","product/charts/miq_reports/vim_perf_summ_daily.yaml","product/charts/miq_reports/vim_perf_tag_daily.yaml","product/charts/miq_reports/vim_perf_tag_hourly.yaml","product/charts/miq_reports/vim_perf_topday.yaml","product/charts/miq_reports/vim_perf_tophour.yaml","product/charts/miq_reports/vim_perf_util_4_ts.yaml","product/charts/miq_reports/vim_perf_util_daily.yaml","product/charts/miq_reports/vmdb_database.yaml","product/charts/miq_reports/vmdb_table.yaml","product/compare/ems_clusters.yaml","product/compare/hosts.yaml","product/compare/vms.yaml","product/reports/100_Configuration + Management - Virtual Machines/005_VMs with Free Space _ 50% by Department.yaml","product/reports/100_Configuration + Management - Virtual Machines/006_VMs w_Free Space _ 75% by Function.yaml","product/reports/100_Configuration + Management - Virtual Machines/007_VMs w_Free Space _ 75% by LOB.yaml","product/reports/100_Configuration + Management - Virtual Machines/009_VM Disk Usage.yaml","product/reports/100_Configuration + Management - Virtual Machines/010_VMs_ Hardware.yaml","product/reports/100_Configuration + Management - Virtual Machines/020_Vendor and Type.yaml","product/reports/100_Configuration + Management - Virtual Machines/022_Vendor and Guest OS.yaml","product/reports/100_Configuration + Management - Virtual Machines/025_Location and Size.yaml","product/reports/100_Configuration + Management - Virtual Machines/026_VMs_ UUIDs.yaml","product/reports/100_Configuration + Management - Virtual Machines/027_VMs_ with no UUID.yaml","product/reports/100_Configuration + Management - Virtual Machines/028_VMs with Volume Free Space -= 20%.yaml","product/reports/100_Configuration + Management - Virtual Machines/029_VMs with Volume Free Space -= 80%.yaml","product/reports/100_Configuration + Management - Virtual Machines/030_by MAC Address.yaml","product/reports/100_Configuration + Management - Virtual Machines/031_Unregistered VMs.yaml","product/reports/100_Configuration + Management - Virtual Machines/032_Orphaned VMs.yaml","product/reports/100_Configuration + Management - Virtual Machines/036_Snapshot Summary.yaml","product/reports/100_Configuration + Management - Virtual Machines/050_User Accounts Windows .yaml","product/reports/100_Configuration + Management - Virtual Machines/051_User Accounts Linux.yaml","product/reports/100_Configuration + Management - Virtual Machines/052_Account Groups Windows .yaml","product/reports/100_Configuration + Management - Virtual Machines/053_Account Groups Linux.yaml","product/reports/100_Configuration + Management - Virtual Machines/059_Guest OS Information (any OS).yaml","product/reports/100_Configuration + Management - Virtual Machines/060_Guest OS Information - Windows.yaml","product/reports/100_Configuration + Management - Virtual Machines/062_Guest OS Information - Linux.yaml","product/reports/100_Configuration + Management - Virtual Machines/063_Guest OS Password Information.yaml","product/reports/100_Configuration + Management - Virtual Machines/064_Guest OS HKLM Registry Information.yaml","product/reports/110_Configuration + Management - Hosts/010_Summary.yaml","product/reports/110_Configuration Management + - Hosts/011_Host Summary with VM info.yaml","product/reports/110_Configuration + Management - Hosts/012_Virtual Infrastructure Platforms.yaml","product/reports/110_Configuration + Management - Hosts/015_Host - ESX Services.yaml","product/reports/110_Configuration + Management - Hosts/016_Host - ESX Service Console Packages.yaml","product/reports/110_Configuration + Management - Hosts/020_Date Brought under Management.yaml","product/reports/110_Configuration + Management - Hosts/030_Hardware.yaml","product/reports/110_Configuration Management + - Hosts/040_Summary for VMs.yaml","product/reports/110_Configuration Management + - Hosts/050_Patches.yaml","product/reports/110_Configuration Management - + Hosts/060_VM Relationships.yaml","product/reports/110_Configuration Management + - Hosts/070_Storage Adapters.yaml","product/reports/110_Configuration Management + - Hosts/080_Network information.yaml","product/reports/110_Configuration Management + - Hosts/090_vLANs and vSwitches.yaml","product/reports/120_Configuration Management + - Providers/010_Summary.yaml","product/reports/120_Configuration Management + - Providers/020_Host Relationships.yaml","product/reports/120_Configuration + Management - Providers/030_VM Relationships.yaml","product/reports/120_Configuration + Management - Providers/040_Monthly Host Count per Provider.yaml","product/reports/120_Configuration + Management - Providers/050_Monthly Vm Count per Provider.yaml","product/reports/130_Configuration + Management - Clusters/010_Summary.yaml","product/reports/130_Configuration + Management - Clusters/020_Hosts Affinity.yaml","product/reports/130_Configuration + Management - Clusters/030_VM Affinity with Power State.yaml","product/reports/130_Configuration + Management - Clusters/040_Cluster Resources.yaml","product/reports/140_Configuration + Management - Resource Pools/010_Summary.yaml","product/reports/150_Configuration + Management - Storage/010_Summary.yaml","product/reports/150_Configuration + Management - Storage/020_Summary for VMs.yaml","product/reports/150_Configuration + Management - Storage/030_Summary for Hosts.yaml","product/reports/150_Configuration + Management - Storage/040_LUN Information.yaml","product/reports/160_Configuration + Management - VM Folders/010_Folders_ VM Relationships.yaml","product/reports/170_Configuration + Management - Containers/010_Nodes by Capacity.yaml","product/reports/170_Configuration + Management - Containers/020_Nodes by CPU Usage.yaml","product/reports/170_Configuration + Management - Containers/030_Nodes by Memory Usage.yaml","product/reports/170_Configuration + Management - Containers/040_Recently Discovered Container Groups.yaml","product/reports/170_Configuration + Management - Containers/050_Number of Nodes per CPU Cores.yaml","product/reports/170_Configuration + Management - Containers/060_Container Groups per Ready Status.yaml","product/reports/170_Configuration + Management - Containers/070_Projects by Pod Number.yaml","product/reports/170_Configuration + Management - Containers/080_Projects by CPU Usage.yaml","product/reports/170_Configuration + Management - Containers/090_Projects by Memory Usage.yaml","product/reports/170_Configuration + Management - Containers/100_Pod counts For Container Images by Project.yaml","product/reports/170_Configuration + Management - Containers/110_Number of Images per Node.yaml","product/reports/170_Configuration + Management - Containers/120_Projects by Number of Containers.yaml","product/reports/170_Configuration + Management - Containers/130_Pods per Ready Status.yaml","product/reports/300_Migration + Readiness - Virtual Machines/010_Summary - VMs migration ready.yaml","product/reports/300_Migration + Readiness - Virtual Machines/011_Summary - VMs NOT migration ready.yaml","product/reports/300_Migration + Readiness - Virtual Machines/020_Detailed - VMs migration ready.yaml","product/reports/300_Migration + Readiness - Virtual Machines/021_Detailed - VMs NOT migration ready.yaml","product/reports/400_Operations- + Virtual Machines/010_Registered VMs by Free Space.yaml","product/reports/400_Operations- + Virtual Machines/015_Registered Free Space _35%.yaml","product/reports/400_Operations- + Virtual Machines/016_Unregistered Free Space _35%.yaml","product/reports/400_Operations- + Virtual Machines/020_Online VMs.yaml","product/reports/400_Operations- Virtual + Machines/022_VMs not Powered On.yaml","product/reports/400_Operations- Virtual + Machines/040_VMs_ Offline VMs not yet Scanned.yaml","product/reports/400_Operations- + Virtual Machines/045_VMs_ Offline VMs with Snapshot.yaml","product/reports/400_Operations- + Virtual Machines/050_VMs without VMware tools.yaml","product/reports/400_Operations- + Virtual Machines/055_VMs with old VMware tools.yaml","product/reports/400_Operations- + Virtual Machines/060_VMware Tools Versions.yaml","product/reports/410_Operations + - EVM/025_EVM Snapshots.yaml","product/reports/410_Operations - EVM/026_Consolidate + Helper Snapshots.yaml","product/reports/410_Operations - EVM/030_EVM Server_ + UserID Usage Report.yaml","product/reports/410_Operations - EVM/032_EVM Server_ + UserIDs Never Used.yaml","product/reports/420_Operations - Clusters/010_Cluster + - DRS migrations.yaml","product/reports/421_Operations - Events/VC Snapshot + Events by User.yaml","product/reports/425_VM Sprawl - Candidates/052_VMs with + Volume Free Space -= 75%.yaml","product/reports/425_VM Sprawl - Candidates/053_VMs + with disk free space _ 5GB.yaml","product/reports/425_VM Sprawl - Candidates/054_VM + Uptime - longest running.yaml","product/reports/425_VM Sprawl - Candidates/055_VMs + Powered Off registered to a Host.yaml","product/reports/425_VM Sprawl - Candidates/056_VMs + pending Retirement.yaml","product/reports/425_VM Sprawl - Candidates/057_VMs + that are Retired.yaml","product/reports/425_VM Sprawl - Candidates/058_VMs + with invalid allocation of RAM.yaml","product/reports/425_VM Sprawl - Candidates/059_Summary + of VM Create and Deletes.yaml","product/reports/450_Relationships - Virtual + Machines, Folders, Clusters/010_VMs Relationships.yaml","product/reports/450_Relationships + - Virtual Machines, Folders, Clusters/020_VM Folders relationships.yaml","product/reports/450_Relationships + - Virtual Machines, Folders, Clusters/030_Clusters Relationships.yaml","product/reports/500_Events + - Operations/110_vm_operational_vm_power.yaml","product/reports/500_Events + - Operations/120_Events_for_VM_prod_webserver.yaml","product/reports/500_Events + - Operations/130_Reconfigure_Events_by_Department.yaml","product/reports/500_Events + - Operations/140_VC_Events_initiated_by_username_EVM.yaml","product/reports/520_Events + - Policy/110_Policy Events.yaml","product/reports/520_Events - Policy/120_Policy + Events2.yaml","product/reports/650_Performance by Asset Type - Virtual Machines/050_Host + CPU Usage per VM.yaml","product/reports/650_Performance by Asset Type - Virtual + Machines/065_VM Performance - daily over last week.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/100_VMs_with_Max_Daily_Mem_ 50%_past_mo.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/110_VMs_with_Avg_Daily_Mem_ 50%_past_mo.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/120_VMs_with_Avg_Daily_CPU_ 85%_past_mo.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/130_VMs_with_Max_Daily_CPU_ 85%_past_mo .yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/140_VMs with Avg Daily Mem _ 95%_past_mo + .yaml","product/reports/650_Performance by Asset Type - Virtual Machines/150_All + Departments with Performance.yaml","product/reports/650_Performance by Asset + Type - Virtual Machines/160_Top CPU Consumers weekly.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/170_Top Memory Consumers weekly.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/180_Top Storage Consumers.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/190_VM Resource Utilization.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/200_Weekly Utilization Overview.yaml","product/reports/660_Performance + by Asset Type - Clusters/110_Cluster_Memory_and_CPU_Usage_7_days.yaml","product/reports/670_Performance + by Asset Type - Middleware Servers/110_JVM Heap Usage - daily over last week.yaml","product/reports/670_Performance + by Asset Type - Middleware Servers/120_JVM Non Heap Usage - daily over last + week.yaml","product/reports/670_Performance by Asset Type - Middleware Servers/130_JVM + Garbage Collection - daily over last week.yaml","product/reports/670_Performance + by Asset Type - Middleware Servers/140_Transactions - every minute over last + hour.yaml","product/reports/670_Performance by Asset Type - Middleware Servers/150_Transactions + - hourly over last day.yaml","product/reports/680_Performance by Asset Type + - Middleware Datasources/110_Datasource Pool - every minute for the last hour.yaml","product/reports/680_Performance + by Asset Type - Middleware Datasources/120_Datasource Pool - hourly for the + last day.yaml","product/reports/700_Running Processes - Virtual Machines/110_Processes_for_prod_ + VMs_sort_by_CPU_Time.yaml","product/reports/750_Trending - Clusters/050_Cluster + memory trend 6 months.yaml","product/reports/750_Trending - Clusters/060_Cluster + CPU Trends last week.yaml","product/reports/750_Trending - Clusters/070_Cluster + IO Trends last week.yaml","product/reports/750_Trending - Clusters/080_Cluster + Memory Trends last week.yaml","product/reports/760_Trending - Storage/110_Datastore_Capacity_Trend_over_6 + mos.yaml","product/reports/770_Trending - Hosts/110_Host_Peak_CPU_Used_Trend_over_6_mos.yaml","product/reports/770_Trending + - Hosts/110_Host_Peak_Memory_Used_Trends_for_6_Mos.yaml","product/reports/770_Trending + - Hosts/120_Host CPU Trends last week.yaml","product/reports/770_Trending + - Hosts/130_Host IO Trends last week.yaml","product/reports/770_Trending - + Hosts/140_Host Memory Trends last week.yaml","product/reports/780_Tenants + - Tenant Quotas/001_Tenant Quotas.yaml","product/reports/900_Provisioning + - Activity Reports/110_Provisioning Activity - by Approver.yaml","product/reports/900_Provisioning + - Activity Reports/120_Provisioning Activity - by Datastore.yaml","product/reports/900_Provisioning + - Activity Reports/130_Provisioning Activity - by Requester.yaml","product/reports/900_Provisioning + - Activity Reports/140_Provisioning Activity - by VM.yaml","product/timelines/miq_reports/tl_bottleneck_events.yaml","product/timelines/miq_reports/tl_events_daily.yaml","product/timelines/miq_reports/tl_events_hourly.yaml","product/timelines/miq_reports/tl_policy_events_daily.yaml","product/timelines/miq_reports/tl_policy_events_hourly.yaml","product/views/Account-groups.yaml","product/views/Account-users.yaml","product/views/AdvancedSetting.yaml","product/views/AutomationRequest.yaml","product/views/AvailabilityZone.yaml","product/views/ChargebackRate.yaml","product/views/CimBaseStorageExtent.yaml","product/views/CimStorageExtent.yaml","product/views/CloudNetwork.yaml","product/views/CloudObjectStoreContainer-cloud_object_store_containers.yaml","product/views/CloudObjectStoreContainer.yaml","product/views/CloudObjectStoreObject-cloud_object_store_objects.yaml","product/views/CloudObjectStoreObject.yaml","product/views/CloudService.yaml","product/views/CloudSubnet.yaml","product/views/CloudTenant.yaml","product/views/CloudVolume-based_volumes.yaml","product/views/CloudVolume.yaml","product/views/CloudVolumeBackup-cloud_volume_backups.yaml","product/views/CloudVolumeBackup.yaml","product/views/CloudVolumeSnapshot-cloud_volume_snapshots.yaml","product/views/CloudVolumeSnapshot.yaml","product/views/Condition.yaml","product/views/ConditionSet.yaml","product/views/ConfiguredSystem.yaml","product/views/Container.yaml","product/views/ContainerBuild.yaml","product/views/ContainerGroup.yaml","product/views/ContainerImage.yaml","product/views/ContainerImageRegistry.yaml","product/views/ContainerNode.yaml","product/views/ContainerProject.yaml","product/views/ContainerReplicator.yaml","product/views/ContainerRoute.yaml","product/views/ContainerService.yaml","product/views/ContainerTemplate.yaml","product/views/CustomizationTemplate.yaml","product/views/Dialog.yaml","product/views/ems_block_storage.yaml","product/views/ems_object_storage.yaml","product/views/EmsCluster.yaml","product/views/EventLog-event_logs.yaml","product/views/Filesystem.yaml","product/views/FirewallRule.yaml","product/views/Flavor.yaml","product/views/FloatingIp.yaml","product/views/GuestApplication.yaml","product/views/Host.yaml","product/views/HostAggregate.yaml","product/views/InstanceOrImage.yaml","product/views/IsoDatastore.yaml","product/views/Job.yaml","product/views/LdapRegion.yaml","product/views/LoadBalancer.yaml","product/views/ManageIQ_Providers_AnsibleTower_AutomationManager.yaml","product/views/ManageIQ_Providers_AnsibleTower_AutomationManager_ConfigurationScript.yaml","product/views/ManageIQ_Providers_AnsibleTower_AutomationManager_ConfiguredSystem.yaml","product/views/ManageIQ_Providers_AnsibleTower_AutomationManager_Job.yaml","product/views/ManageIQ_Providers_CloudManager.yaml","product/views/ManageIQ_Providers_CloudManager_AuthKeyPair.yaml","product/views/ManageIQ_Providers_CloudManager_OrchestrationStack.yaml","product/views/ManageIQ_Providers_CloudManager_Template-all_vms_and_templates.yaml","product/views/ManageIQ_Providers_CloudManager_Template.yaml","product/views/ManageIQ_Providers_CloudManager_Vm-all_vms_and_templates.yaml","product/views/ManageIQ_Providers_CloudManager_Vm-vms.yaml","product/views/ManageIQ_Providers_CloudManager_Vm.yaml","product/views/ManageIQ_Providers_ConfigurationManager.yaml","product/views/ManageIQ_Providers_ContainerManager.yaml","product/views/ManageIQ_Providers_DatawarehouseManager.yaml","product/views/ManageIQ_Providers_EmbeddedAnsible_AutomationManager_Playbook.yaml","product/views/ManageIQ_Providers_EmbeddedAutomationManager_Authentication.yaml","product/views/ManageIQ_Providers_Foreman_ConfigurationManager.yaml","product/views/ManageIQ_Providers_Foreman_ConfigurationManager_ConfiguredSystem.yaml","product/views/ManageIQ_Providers_InfraManager.yaml","product/views/ManageIQ_Providers_InfraManager_Template.yaml","product/views/ManageIQ_Providers_InfraManager_Vm.yaml","product/views/ManageIQ_Providers_MiddlewareManager.yaml","product/views/ManageIQ_Providers_NetworkManager.yaml","product/views/ManageIQ_Providers_PhysicalInfraManager.yaml","product/views/ManageIQ_Providers_StorageManager.yaml","product/views/ManageIQ_Providers_Vmware_CloudManager_OrchestrationTemplate.yaml","product/views/MiddlewareDatasource.yaml","product/views/MiddlewareDeployment.yaml","product/views/MiddlewareDomain.yaml","product/views/MiddlewareMessaging.yaml","product/views/MiddlewareServer.yaml","product/views/MiddlewareServerGroup.yaml","product/views/MiqAction.yaml","product/views/MiqActionSet.yaml","product/views/MiqAeClass.yaml","product/views/MiqAeInstance.yaml","product/views/MiqAlert.yaml","product/views/MiqDialog.yaml","product/views/MiqEvent-actions.yaml","product/views/MiqEvent.yaml","product/views/MiqGroup.yaml","product/views/MiqPolicy.yaml","product/views/MiqPolicySet.yaml","product/views/MiqProvision.yaml","product/views/MiqReportResult-all.yaml","product/views/MiqReportResult.yaml","product/views/MiqRequest.yaml","product/views/MiqSchedule.yaml","product/views/MiqServer.yaml","product/views/MiqTask.yaml","product/views/MiqTemplate-all_miq_templates.yaml","product/views/MiqTemplate.yaml","product/views/MiqUserRole.yaml","product/views/MiqWidget-all.yaml","product/views/MiqWidget.yaml","product/views/MiqWorker.yaml","product/views/NetworkPort.yaml","product/views/NetworkRouter.yaml","product/views/OntapFileShare.yaml","product/views/OntapLogicalDisk.yaml","product/views/OntapStorageSystem.yaml","product/views/OntapStorageVolume.yaml","product/views/OpenscapRuleResult.yaml","product/views/OrchestrationStack.yaml","product/views/OrchestrationStackOutput.yaml","product/views/OrchestrationStackParameter.yaml","product/views/OrchestrationStackResource.yaml","product/views/OrchestrationTemplate.yaml","product/views/OrchestrationTemplateAzure.yaml","product/views/OrchestrationTemplateCfn.yaml","product/views/OrchestrationTemplateHot.yaml","product/views/OrchestrationTemplateVnfd.yaml","product/views/OsProcess-processes.yaml","product/views/Patch.yaml","product/views/PersistentVolume.yaml","product/views/PhysicalServer.yaml","product/views/PxeImageType.yaml","product/views/PxeServer.yaml","product/views/RegistryItem.yaml","product/views/ResourcePool.yaml","product/views/ScanHistory.yaml","product/views/ScanItemSet.yaml","product/views/SecurityGroup.yaml","product/views/Service.yaml","product/views/ServiceCatalog.yaml","product/views/ServiceTemplate.yaml","product/views/ServiceTemplateCatalog.yaml","product/views/SniaLocalFileSystem.yaml","product/views/Storage.yaml","product/views/StorageCluster.yaml","product/views/StorageFile-debris_files.yaml","product/views/StorageFile-disk_files.yaml","product/views/StorageFile-files.yaml","product/views/StorageFile-snapshot_files.yaml","product/views/StorageFile-vm_misc_files.yaml","product/views/StorageFile-vm_ram_files.yaml","product/views/StorageManager.yaml","product/views/SystemService-filesystem_drivers.yaml","product/views/SystemService-kernel_drivers.yaml","product/views/SystemService-linux_initprocesses.yaml","product/views/SystemService-win32_services.yaml","product/views/SystemService.yaml","product/views/Tenant.yaml","product/views/User.yaml","product/views/Vm-all_vms.yaml","product/views/Vm-VmReconfigureRequest.yaml","product/views/Vm.yaml","product/views/Vm__restricted.yaml","product/views/VmdbDatabaseConnection.yaml","product/views/VmdbDatabaseSetting.yaml","product/views/VmdbIndex.yaml","product/views/VmdbTableEvm.yaml","product/views/VmOrTemplate-all_archived.yaml","product/views/VmOrTemplate-all_orphaned.yaml","product/views/VmOrTemplate-all_vms_and_templates.yaml","product/views/VmOrTemplate.yaml","spec/migrations/data/20150625220141_fix_serialized_reports_for_rails_four_spec/binary_blob_hash.yaml","spec/migrations/data/20150625220141_fix_serialized_reports_for_rails_four_spec/binary_blob_obj.yaml","spec/migrations/data/20150625220141_fix_serialized_reports_for_rails_four_spec/miq_report_hash.yaml","spec/migrations/data/20150625220141_fix_serialized_reports_for_rails_four_spec/miq_report_obj.yaml","spec/models/manageiq/providers/redhat/infra_manager/refresh/refresher/response_yamls/vms.yml","spec/models/manageiq/providers/redhat/infra_manager/refresh/refresher/target_response_yamls/vms.yml","spec/models/rss_feed/data/newest_vms.yml"]' http_version: - recorded_at: Thu, 09 Feb 2017 09:37:58 GMT + recorded_at: Mon, 14 Aug 2017 20:36:32 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/79/survey_spec/ + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/457/playbooks/ body: encoding: US-ASCII string: '' @@ -3467,27 +13273,27 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:58 GMT + - Mon, 14 Aug 2017 20:36:32 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: - Accept,Cookie Allow: - - GET, POST, DELETE, HEAD, OPTIONS + - GET, HEAD, OPTIONS X-Api-Time: - 0.034s Content-Length: - - '2' + - '36' Content-Type: - application/json body: encoding: UTF-8 - string: "{}" + string: '["copy_file_example.yml","main.yml"]' http_version: - recorded_at: Thu, 09 Feb 2017 09:37:59 GMT + recorded_at: Mon, 14 Aug 2017 20:36:32 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/80/survey_spec/ + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/469/playbooks/ body: encoding: US-ASCII string: '' @@ -3504,27 +13310,170 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:58 GMT + - Mon, 14 Aug 2017 20:36:33 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: - Accept,Cookie Allow: - - GET, POST, DELETE, HEAD, OPTIONS + - GET, HEAD, OPTIONS X-Api-Time: - - 0.035s - Content-Length: - - '2' + - 0.470s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 - string: "{}" + string: '["db/schema.yml","locale/en.yml","product/alerts/rss/dev_vms.yml","product/alerts/rss/lifecycle_events.yml","product/alerts/rss/microsoft_vms.yml","product/alerts/rss/newest_vms.yml","product/alerts/rss/prod_vms.yml","product/alerts/rss/test_vms.yml","product/alerts/rss/vmware_vms.yml","product/chargeback/chargeback_vm_monthly.yaml","product/charts/miq_reports/ontap_logical_disk.yaml","product/charts/miq_reports/vim_perf_daily.yaml","product/charts/miq_reports/vim_perf_daily_cloud.yaml","product/charts/miq_reports/vim_perf_daily_middleware_datasource.yaml","product/charts/miq_reports/vim_perf_daily_middleware_messaging_jms_queue.yaml","product/charts/miq_reports/vim_perf_daily_middleware_messaging_jms_topic.yaml","product/charts/miq_reports/vim_perf_daily_middleware_server.yaml","product/charts/miq_reports/vim_perf_hourly.yaml","product/charts/miq_reports/vim_perf_hourly_cloud.yaml","product/charts/miq_reports/vim_perf_hourly_middleware_datasource.yaml","product/charts/miq_reports/vim_perf_hourly_middleware_messaging_jms_queue.yaml","product/charts/miq_reports/vim_perf_hourly_middleware_messaging_jms_topic.yaml","product/charts/miq_reports/vim_perf_hourly_middleware_server.yaml","product/charts/miq_reports/vim_perf_planning.yaml","product/charts/miq_reports/vim_perf_realtime.yaml","product/charts/miq_reports/vim_perf_realtime_middleware_datasource.yaml","product/charts/miq_reports/vim_perf_realtime_middleware_messaging_jms_queue.yaml","product/charts/miq_reports/vim_perf_realtime_middleware_messaging_jms_topic.yaml","product/charts/miq_reports/vim_perf_realtime_middleware_server.yaml","product/charts/miq_reports/vim_perf_summ_daily.yaml","product/charts/miq_reports/vim_perf_tag_daily.yaml","product/charts/miq_reports/vim_perf_tag_hourly.yaml","product/charts/miq_reports/vim_perf_topday.yaml","product/charts/miq_reports/vim_perf_tophour.yaml","product/charts/miq_reports/vim_perf_util_4_ts.yaml","product/charts/miq_reports/vim_perf_util_daily.yaml","product/charts/miq_reports/vmdb_database.yaml","product/charts/miq_reports/vmdb_table.yaml","product/compare/ems_clusters.yaml","product/compare/hosts.yaml","product/compare/vms.yaml","product/reports/100_Configuration + Management - Virtual Machines/005_VMs with Free Space _ 50% by Department.yaml","product/reports/100_Configuration + Management - Virtual Machines/006_VMs w_Free Space _ 75% by Function.yaml","product/reports/100_Configuration + Management - Virtual Machines/007_VMs w_Free Space _ 75% by LOB.yaml","product/reports/100_Configuration + Management - Virtual Machines/009_VM Disk Usage.yaml","product/reports/100_Configuration + Management - Virtual Machines/010_VMs_ Hardware.yaml","product/reports/100_Configuration + Management - Virtual Machines/020_Vendor and Type.yaml","product/reports/100_Configuration + Management - Virtual Machines/022_Vendor and Guest OS.yaml","product/reports/100_Configuration + Management - Virtual Machines/025_Location and Size.yaml","product/reports/100_Configuration + Management - Virtual Machines/026_VMs_ UUIDs.yaml","product/reports/100_Configuration + Management - Virtual Machines/027_VMs_ with no UUID.yaml","product/reports/100_Configuration + Management - Virtual Machines/028_VMs with Volume Free Space -= 20%.yaml","product/reports/100_Configuration + Management - Virtual Machines/029_VMs with Volume Free Space -= 80%.yaml","product/reports/100_Configuration + Management - Virtual Machines/030_by MAC Address.yaml","product/reports/100_Configuration + Management - Virtual Machines/031_Unregistered VMs.yaml","product/reports/100_Configuration + Management - Virtual Machines/032_Orphaned VMs.yaml","product/reports/100_Configuration + Management - Virtual Machines/036_Snapshot Summary.yaml","product/reports/100_Configuration + Management - Virtual Machines/050_User Accounts Windows .yaml","product/reports/100_Configuration + Management - Virtual Machines/051_User Accounts Linux.yaml","product/reports/100_Configuration + Management - Virtual Machines/052_Account Groups Windows .yaml","product/reports/100_Configuration + Management - Virtual Machines/053_Account Groups Linux.yaml","product/reports/100_Configuration + Management - Virtual Machines/059_Guest OS Information (any OS).yaml","product/reports/100_Configuration + Management - Virtual Machines/060_Guest OS Information - Windows.yaml","product/reports/100_Configuration + Management - Virtual Machines/062_Guest OS Information - Linux.yaml","product/reports/100_Configuration + Management - Virtual Machines/063_Guest OS Password Information.yaml","product/reports/100_Configuration + Management - Virtual Machines/064_Guest OS HKLM Registry Information.yaml","product/reports/110_Configuration + Management - Hosts/010_Summary.yaml","product/reports/110_Configuration Management + - Hosts/011_Host Summary with VM info.yaml","product/reports/110_Configuration + Management - Hosts/012_Virtual Infrastructure Platforms.yaml","product/reports/110_Configuration + Management - Hosts/015_Host - ESX Services.yaml","product/reports/110_Configuration + Management - Hosts/016_Host - ESX Service Console Packages.yaml","product/reports/110_Configuration + Management - Hosts/020_Date Brought under Management.yaml","product/reports/110_Configuration + Management - Hosts/030_Hardware.yaml","product/reports/110_Configuration Management + - Hosts/040_Summary for VMs.yaml","product/reports/110_Configuration Management + - Hosts/050_Patches.yaml","product/reports/110_Configuration Management - + Hosts/060_VM Relationships.yaml","product/reports/110_Configuration Management + - Hosts/070_Storage Adapters.yaml","product/reports/110_Configuration Management + - Hosts/080_Network information.yaml","product/reports/110_Configuration Management + - Hosts/090_vLANs and vSwitches.yaml","product/reports/120_Configuration Management + - Providers/010_Summary.yaml","product/reports/120_Configuration Management + - Providers/020_Host Relationships.yaml","product/reports/120_Configuration + Management - Providers/030_VM Relationships.yaml","product/reports/120_Configuration + Management - Providers/040_Monthly Host Count per Provider.yaml","product/reports/120_Configuration + Management - Providers/050_Monthly Vm Count per Provider.yaml","product/reports/130_Configuration + Management - Clusters/010_Summary.yaml","product/reports/130_Configuration + Management - Clusters/020_Hosts Affinity.yaml","product/reports/130_Configuration + Management - Clusters/030_VM Affinity with Power State.yaml","product/reports/130_Configuration + Management - Clusters/040_Cluster Resources.yaml","product/reports/140_Configuration + Management - Resource Pools/010_Summary.yaml","product/reports/150_Configuration + Management - Storage/010_Summary.yaml","product/reports/150_Configuration + Management - Storage/020_Summary for VMs.yaml","product/reports/150_Configuration + Management - Storage/030_Summary for Hosts.yaml","product/reports/150_Configuration + Management - Storage/040_LUN Information.yaml","product/reports/160_Configuration + Management - VM Folders/010_Folders_ VM Relationships.yaml","product/reports/170_Configuration + Management - Containers/010_Nodes by Capacity.yaml","product/reports/170_Configuration + Management - Containers/020_Nodes by CPU Usage.yaml","product/reports/170_Configuration + Management - Containers/030_Nodes by Memory Usage.yaml","product/reports/170_Configuration + Management - Containers/040_Recently Discovered Container Groups.yaml","product/reports/170_Configuration + Management - Containers/050_Number of Nodes per CPU Cores.yaml","product/reports/170_Configuration + Management - Containers/060_Container Groups per Ready Status.yaml","product/reports/170_Configuration + Management - Containers/070_Projects by Pod Number.yaml","product/reports/170_Configuration + Management - Containers/080_Projects by CPU Usage.yaml","product/reports/170_Configuration + Management - Containers/090_Projects by Memory Usage.yaml","product/reports/170_Configuration + Management - Containers/100_Pod counts For Container Images by Project.yaml","product/reports/170_Configuration + Management - Containers/110_Number of Images per Node.yaml","product/reports/170_Configuration + Management - Containers/120_Projects by Number of Containers.yaml","product/reports/170_Configuration + Management - Containers/130_Pods per Ready Status.yaml","product/reports/300_Migration + Readiness - Virtual Machines/010_Summary - VMs migration ready.yaml","product/reports/300_Migration + Readiness - Virtual Machines/011_Summary - VMs NOT migration ready.yaml","product/reports/300_Migration + Readiness - Virtual Machines/020_Detailed - VMs migration ready.yaml","product/reports/300_Migration + Readiness - Virtual Machines/021_Detailed - VMs NOT migration ready.yaml","product/reports/400_Operations- + Virtual Machines/010_Registered VMs by Free Space.yaml","product/reports/400_Operations- + Virtual Machines/015_Registered Free Space _35%.yaml","product/reports/400_Operations- + Virtual Machines/016_Unregistered Free Space _35%.yaml","product/reports/400_Operations- + Virtual Machines/020_Online VMs.yaml","product/reports/400_Operations- Virtual + Machines/022_VMs not Powered On.yaml","product/reports/400_Operations- Virtual + Machines/040_VMs_ Offline VMs not yet Scanned.yaml","product/reports/400_Operations- + Virtual Machines/045_VMs_ Offline VMs with Snapshot.yaml","product/reports/400_Operations- + Virtual Machines/050_VMs without VMware tools.yaml","product/reports/400_Operations- + Virtual Machines/055_VMs with old VMware tools.yaml","product/reports/400_Operations- + Virtual Machines/060_VMware Tools Versions.yaml","product/reports/410_Operations + - EVM/025_EVM Snapshots.yaml","product/reports/410_Operations - EVM/026_Consolidate + Helper Snapshots.yaml","product/reports/410_Operations - EVM/030_EVM Server_ + UserID Usage Report.yaml","product/reports/410_Operations - EVM/032_EVM Server_ + UserIDs Never Used.yaml","product/reports/420_Operations - Clusters/010_Cluster + - DRS migrations.yaml","product/reports/421_Operations - Events/VC Snapshot + Events by User.yaml","product/reports/425_VM Sprawl - Candidates/052_VMs with + Volume Free Space -= 75%.yaml","product/reports/425_VM Sprawl - Candidates/053_VMs + with disk free space _ 5GB.yaml","product/reports/425_VM Sprawl - Candidates/054_VM + Uptime - longest running.yaml","product/reports/425_VM Sprawl - Candidates/055_VMs + Powered Off registered to a Host.yaml","product/reports/425_VM Sprawl - Candidates/056_VMs + pending Retirement.yaml","product/reports/425_VM Sprawl - Candidates/057_VMs + that are Retired.yaml","product/reports/425_VM Sprawl - Candidates/058_VMs + with invalid allocation of RAM.yaml","product/reports/425_VM Sprawl - Candidates/059_Summary + of VM Create and Deletes.yaml","product/reports/450_Relationships - Virtual + Machines, Folders, Clusters/010_VMs Relationships.yaml","product/reports/450_Relationships + - Virtual Machines, Folders, Clusters/020_VM Folders relationships.yaml","product/reports/450_Relationships + - Virtual Machines, Folders, Clusters/030_Clusters Relationships.yaml","product/reports/500_Events + - Operations/110_vm_operational_vm_power.yaml","product/reports/500_Events + - Operations/120_Events_for_VM_prod_webserver.yaml","product/reports/500_Events + - Operations/130_Reconfigure_Events_by_Department.yaml","product/reports/500_Events + - Operations/140_VC_Events_initiated_by_username_EVM.yaml","product/reports/520_Events + - Policy/110_Policy Events.yaml","product/reports/520_Events - Policy/120_Policy + Events2.yaml","product/reports/650_Performance by Asset Type - Virtual Machines/050_Host + CPU Usage per VM.yaml","product/reports/650_Performance by Asset Type - Virtual + Machines/065_VM Performance - daily over last week.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/100_VMs_with_Max_Daily_Mem_ 50%_past_mo.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/110_VMs_with_Avg_Daily_Mem_ 50%_past_mo.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/120_VMs_with_Avg_Daily_CPU_ 85%_past_mo.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/130_VMs_with_Max_Daily_CPU_ 85%_past_mo .yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/140_VMs with Avg Daily Mem _ 95%_past_mo + .yaml","product/reports/650_Performance by Asset Type - Virtual Machines/150_All + Departments with Performance.yaml","product/reports/650_Performance by Asset + Type - Virtual Machines/160_Top CPU Consumers weekly.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/170_Top Memory Consumers weekly.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/180_Top Storage Consumers.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/190_VM Resource Utilization.yaml","product/reports/650_Performance + by Asset Type - Virtual Machines/200_Weekly Utilization Overview.yaml","product/reports/660_Performance + by Asset Type - Clusters/110_Cluster_Memory_and_CPU_Usage_7_days.yaml","product/reports/670_Performance + by Asset Type - Middleware Servers/110_JVM Heap Usage - daily over last week.yaml","product/reports/670_Performance + by Asset Type - Middleware Servers/120_JVM Non Heap Usage - daily over last + week.yaml","product/reports/670_Performance by Asset Type - Middleware Servers/130_JVM + Garbage Collection - daily over last week.yaml","product/reports/670_Performance + by Asset Type - Middleware Servers/140_Transactions - every minute over last + hour.yaml","product/reports/670_Performance by Asset Type - Middleware Servers/150_Transactions + - hourly over last day.yaml","product/reports/680_Performance by Asset Type + - Middleware Datasources/110_Datasource Pool - every minute for the last hour.yaml","product/reports/680_Performance + by Asset Type - Middleware Datasources/120_Datasource Pool - hourly for the + last day.yaml","product/reports/700_Running Processes - Virtual Machines/110_Processes_for_prod_ + VMs_sort_by_CPU_Time.yaml","product/reports/750_Trending - Clusters/050_Cluster + memory trend 6 months.yaml","product/reports/750_Trending - Clusters/060_Cluster + CPU Trends last week.yaml","product/reports/750_Trending - Clusters/070_Cluster + IO Trends last week.yaml","product/reports/750_Trending - Clusters/080_Cluster + Memory Trends last week.yaml","product/reports/760_Trending - Storage/110_Datastore_Capacity_Trend_over_6 + mos.yaml","product/reports/770_Trending - Hosts/110_Host_Peak_CPU_Used_Trend_over_6_mos.yaml","product/reports/770_Trending + - Hosts/110_Host_Peak_Memory_Used_Trends_for_6_Mos.yaml","product/reports/770_Trending + - Hosts/120_Host CPU Trends last week.yaml","product/reports/770_Trending + - Hosts/130_Host IO Trends last week.yaml","product/reports/770_Trending - + Hosts/140_Host Memory Trends last week.yaml","product/reports/780_Tenants + - Tenant Quotas/001_Tenant Quotas.yaml","product/reports/900_Provisioning + - Activity Reports/110_Provisioning Activity - by Approver.yaml","product/reports/900_Provisioning + - Activity Reports/120_Provisioning Activity - by Datastore.yaml","product/reports/900_Provisioning + - Activity Reports/130_Provisioning Activity - by Requester.yaml","product/reports/900_Provisioning + - Activity Reports/140_Provisioning Activity - by VM.yaml","product/timelines/miq_reports/tl_bottleneck_events.yaml","product/timelines/miq_reports/tl_events_daily.yaml","product/timelines/miq_reports/tl_events_hourly.yaml","product/timelines/miq_reports/tl_policy_events_daily.yaml","product/timelines/miq_reports/tl_policy_events_hourly.yaml","product/views/Account-groups.yaml","product/views/Account-users.yaml","product/views/AdvancedSetting.yaml","product/views/AutomationRequest.yaml","product/views/AvailabilityZone.yaml","product/views/ChargebackRate.yaml","product/views/CimBaseStorageExtent.yaml","product/views/CimStorageExtent.yaml","product/views/CloudNetwork.yaml","product/views/CloudObjectStoreContainer-cloud_object_store_containers.yaml","product/views/CloudObjectStoreContainer.yaml","product/views/CloudObjectStoreObject-cloud_object_store_objects.yaml","product/views/CloudObjectStoreObject.yaml","product/views/CloudService.yaml","product/views/CloudSubnet.yaml","product/views/CloudTenant.yaml","product/views/CloudVolume-based_volumes.yaml","product/views/CloudVolume.yaml","product/views/CloudVolumeBackup-cloud_volume_backups.yaml","product/views/CloudVolumeBackup.yaml","product/views/CloudVolumeSnapshot-cloud_volume_snapshots.yaml","product/views/CloudVolumeSnapshot.yaml","product/views/Condition.yaml","product/views/ConditionSet.yaml","product/views/ConfiguredSystem.yaml","product/views/Container.yaml","product/views/ContainerBuild.yaml","product/views/ContainerGroup.yaml","product/views/ContainerImage.yaml","product/views/ContainerImageRegistry.yaml","product/views/ContainerNode.yaml","product/views/ContainerProject.yaml","product/views/ContainerReplicator.yaml","product/views/ContainerRoute.yaml","product/views/ContainerService.yaml","product/views/ContainerTemplate.yaml","product/views/CustomizationTemplate.yaml","product/views/Dialog.yaml","product/views/ems_block_storage.yaml","product/views/ems_object_storage.yaml","product/views/EmsCluster.yaml","product/views/EventLog-event_logs.yaml","product/views/Filesystem.yaml","product/views/FirewallRule.yaml","product/views/Flavor.yaml","product/views/FloatingIp.yaml","product/views/GuestApplication.yaml","product/views/Host.yaml","product/views/HostAggregate.yaml","product/views/InstanceOrImage.yaml","product/views/IsoDatastore.yaml","product/views/Job.yaml","product/views/LdapRegion.yaml","product/views/LoadBalancer.yaml","product/views/ManageIQ_Providers_AnsibleTower_AutomationManager.yaml","product/views/ManageIQ_Providers_AnsibleTower_AutomationManager_ConfigurationScript.yaml","product/views/ManageIQ_Providers_AnsibleTower_AutomationManager_ConfiguredSystem.yaml","product/views/ManageIQ_Providers_AnsibleTower_AutomationManager_Job.yaml","product/views/ManageIQ_Providers_CloudManager.yaml","product/views/ManageIQ_Providers_CloudManager_AuthKeyPair.yaml","product/views/ManageIQ_Providers_CloudManager_OrchestrationStack.yaml","product/views/ManageIQ_Providers_CloudManager_Template-all_vms_and_templates.yaml","product/views/ManageIQ_Providers_CloudManager_Template.yaml","product/views/ManageIQ_Providers_CloudManager_Vm-all_vms_and_templates.yaml","product/views/ManageIQ_Providers_CloudManager_Vm-vms.yaml","product/views/ManageIQ_Providers_CloudManager_Vm.yaml","product/views/ManageIQ_Providers_ConfigurationManager.yaml","product/views/ManageIQ_Providers_ContainerManager.yaml","product/views/ManageIQ_Providers_DatawarehouseManager.yaml","product/views/ManageIQ_Providers_EmbeddedAnsible_AutomationManager_Playbook.yaml","product/views/ManageIQ_Providers_EmbeddedAutomationManager_Authentication.yaml","product/views/ManageIQ_Providers_Foreman_ConfigurationManager.yaml","product/views/ManageIQ_Providers_Foreman_ConfigurationManager_ConfiguredSystem.yaml","product/views/ManageIQ_Providers_InfraManager.yaml","product/views/ManageIQ_Providers_InfraManager_Template.yaml","product/views/ManageIQ_Providers_InfraManager_Vm.yaml","product/views/ManageIQ_Providers_MiddlewareManager.yaml","product/views/ManageIQ_Providers_NetworkManager.yaml","product/views/ManageIQ_Providers_PhysicalInfraManager.yaml","product/views/ManageIQ_Providers_StorageManager.yaml","product/views/ManageIQ_Providers_Vmware_CloudManager_OrchestrationTemplate.yaml","product/views/MiddlewareDatasource.yaml","product/views/MiddlewareDeployment.yaml","product/views/MiddlewareDomain.yaml","product/views/MiddlewareMessaging.yaml","product/views/MiddlewareServer.yaml","product/views/MiddlewareServerGroup.yaml","product/views/MiqAction.yaml","product/views/MiqActionSet.yaml","product/views/MiqAeClass.yaml","product/views/MiqAeInstance.yaml","product/views/MiqAlert.yaml","product/views/MiqDialog.yaml","product/views/MiqEvent-actions.yaml","product/views/MiqEvent.yaml","product/views/MiqGroup.yaml","product/views/MiqPolicy.yaml","product/views/MiqPolicySet.yaml","product/views/MiqProvision.yaml","product/views/MiqReportResult-all.yaml","product/views/MiqReportResult.yaml","product/views/MiqRequest.yaml","product/views/MiqSchedule.yaml","product/views/MiqServer.yaml","product/views/MiqTask.yaml","product/views/MiqTemplate-all_miq_templates.yaml","product/views/MiqTemplate.yaml","product/views/MiqUserRole.yaml","product/views/MiqWidget-all.yaml","product/views/MiqWidget.yaml","product/views/MiqWorker.yaml","product/views/NetworkPort.yaml","product/views/NetworkRouter.yaml","product/views/OntapFileShare.yaml","product/views/OntapLogicalDisk.yaml","product/views/OntapStorageSystem.yaml","product/views/OntapStorageVolume.yaml","product/views/OpenscapRuleResult.yaml","product/views/OrchestrationStack.yaml","product/views/OrchestrationStackOutput.yaml","product/views/OrchestrationStackParameter.yaml","product/views/OrchestrationStackResource.yaml","product/views/OrchestrationTemplate.yaml","product/views/OrchestrationTemplateAzure.yaml","product/views/OrchestrationTemplateCfn.yaml","product/views/OrchestrationTemplateHot.yaml","product/views/OrchestrationTemplateVnfd.yaml","product/views/OsProcess-processes.yaml","product/views/Patch.yaml","product/views/PersistentVolume.yaml","product/views/PhysicalServer.yaml","product/views/PxeImageType.yaml","product/views/PxeServer.yaml","product/views/RegistryItem.yaml","product/views/ResourcePool.yaml","product/views/ScanHistory.yaml","product/views/ScanItemSet.yaml","product/views/SecurityGroup.yaml","product/views/Service.yaml","product/views/ServiceCatalog.yaml","product/views/ServiceTemplate.yaml","product/views/ServiceTemplateCatalog.yaml","product/views/SniaLocalFileSystem.yaml","product/views/Storage.yaml","product/views/StorageCluster.yaml","product/views/StorageFile-debris_files.yaml","product/views/StorageFile-disk_files.yaml","product/views/StorageFile-files.yaml","product/views/StorageFile-snapshot_files.yaml","product/views/StorageFile-vm_misc_files.yaml","product/views/StorageFile-vm_ram_files.yaml","product/views/StorageManager.yaml","product/views/SystemService-filesystem_drivers.yaml","product/views/SystemService-kernel_drivers.yaml","product/views/SystemService-linux_initprocesses.yaml","product/views/SystemService-win32_services.yaml","product/views/SystemService.yaml","product/views/Tenant.yaml","product/views/User.yaml","product/views/Vm-all_vms.yaml","product/views/Vm-VmReconfigureRequest.yaml","product/views/Vm.yaml","product/views/Vm__restricted.yaml","product/views/VmdbDatabaseConnection.yaml","product/views/VmdbDatabaseSetting.yaml","product/views/VmdbIndex.yaml","product/views/VmdbTableEvm.yaml","product/views/VmOrTemplate-all_archived.yaml","product/views/VmOrTemplate-all_orphaned.yaml","product/views/VmOrTemplate-all_vms_and_templates.yaml","product/views/VmOrTemplate.yaml","spec/migrations/data/20150625220141_fix_serialized_reports_for_rails_four_spec/binary_blob_hash.yaml","spec/migrations/data/20150625220141_fix_serialized_reports_for_rails_four_spec/binary_blob_obj.yaml","spec/migrations/data/20150625220141_fix_serialized_reports_for_rails_four_spec/miq_report_hash.yaml","spec/migrations/data/20150625220141_fix_serialized_reports_for_rails_four_spec/miq_report_obj.yaml","spec/models/rss_feed/data/newest_vms.yml"]' http_version: - recorded_at: Thu, 09 Feb 2017 09:38:00 GMT + recorded_at: Mon, 14 Aug 2017 20:36:33 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/80/survey_spec/ + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/473/playbooks/ body: encoding: US-ASCII string: '' @@ -3541,27 +13490,27 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:59 GMT + - Mon, 14 Aug 2017 20:36:34 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: - Accept,Cookie Allow: - - GET, POST, DELETE, HEAD, OPTIONS + - GET, HEAD, OPTIONS X-Api-Time: - - 0.033s - Content-Length: - - '2' + - 0.031s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 - string: "{}" + string: "[]" http_version: - recorded_at: Thu, 09 Feb 2017 09:38:00 GMT + recorded_at: Mon, 14 Aug 2017 20:36:33 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/81/survey_spec/ + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/484/playbooks/ body: encoding: US-ASCII string: '' @@ -3578,27 +13527,27 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:59 GMT + - Mon, 14 Aug 2017 20:36:34 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: - Accept,Cookie Allow: - - GET, POST, DELETE, HEAD, OPTIONS + - GET, HEAD, OPTIONS X-Api-Time: - - 0.033s - Content-Length: - - '375' + - 0.045s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 - string: '{"description":"","spec":[{"index":1,"required":true,"min":null,"default":"","max":null,"question_description":"Survey","choices":"","variable":"test","question_name":"Survey","type":"text"},{"index":0,"question_description":"","min":0,"default":"","max":1024,"required":true,"choices":"","new_question":true,"variable":"why","question_name":"Why?","type":"text"}],"name":""}' + string: '["jboss-standalone/demo-aws-launch.yml","jboss-standalone/deploy-application.yml","jboss-standalone/site.yml","lamp_haproxy/aws/demo-aws-launch.yml","lamp_haproxy/aws/rolling_update.yml","lamp_haproxy/aws/site.yml","lamp_haproxy/provision.yml","lamp_haproxy/rolling_update.yml","lamp_haproxy/site.yml","lamp_simple/site.yml","lamp_simple_rhel7/site.yml","language_features/ansible_pull.yml","language_features/batch_size_control.yml","language_features/cloudformation.yaml","language_features/complex_args.yml","language_features/conditionals_part1.yml","language_features/conditionals_part2.yml","language_features/custom_filters.yml","language_features/delegation.yml","language_features/environment.yml","language_features/eucalyptus-ec2.yml","language_features/file_secontext.yml","language_features/get_url.yml","language_features/group_by.yml","language_features/group_commands.yml","language_features/intermediate_example.yml","language_features/intro_example.yml","language_features/loop_nested.yml","language_features/loop_plugins.yml","language_features/loop_with_items.yml","language_features/mysql.yml","language_features/nested_playbooks.yml","language_features/netscaler.yml","language_features/postgresql.yml","language_features/prompts.yml","language_features/rabbitmq.yml","language_features/register_logic.yml","language_features/roletest.yml","language_features/roletest2.yml","language_features/selective_file_sources.yml","language_features/tags.yml","language_features/upgraded_vars.yml","language_features/user_commands.yml","language_features/zfs.yml","mongodb/playbooks/testsharding.yml","mongodb/site.yml","tomcat-memcached-failover/site.yml","tomcat-standalone/site.yml","windows/create-user.yml","windows/deploy-site.yml","windows/enable-iis.yml","windows/install-msi.yml","windows/ping.yml","windows/run-powershell.yml","windows/test.yml","windows/wamp_haproxy/demo-aws-wamp-launch.yml","windows/wamp_haproxy/rolling_update.yml","windows/wamp_haproxy/site.yml","wordpress-nginx/site.yml","wordpress-nginx_rhel7/site.yml"]' http_version: - recorded_at: Thu, 09 Feb 2017 09:38:01 GMT + recorded_at: Mon, 14 Aug 2017 20:36:33 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/81/survey_spec/ + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/489/playbooks/ body: encoding: US-ASCII string: '' @@ -3615,27 +13564,27 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:38:00 GMT + - Mon, 14 Aug 2017 20:36:34 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: - Accept,Cookie Allow: - - GET, POST, DELETE, HEAD, OPTIONS + - GET, HEAD, OPTIONS X-Api-Time: - - 0.035s - Content-Length: - - '375' + - 0.031s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 - string: '{"description":"","spec":[{"index":1,"required":true,"min":null,"default":"","max":null,"question_description":"Survey","choices":"","variable":"test","question_name":"Survey","type":"text"},{"index":0,"question_description":"","min":0,"default":"","max":1024,"required":true,"choices":"","new_question":true,"variable":"why","question_name":"Why?","type":"text"}],"name":""}' + string: "[]" http_version: - recorded_at: Thu, 09 Feb 2017 09:38:01 GMT + recorded_at: Mon, 14 Aug 2017 20:36:34 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/30/survey_spec/ + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/490/playbooks/ body: encoding: US-ASCII string: '' @@ -3652,27 +13601,27 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:38:00 GMT + - Mon, 14 Aug 2017 20:36:34 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: - Accept,Cookie Allow: - - GET, POST, DELETE, HEAD, OPTIONS + - GET, HEAD, OPTIONS X-Api-Time: - - 0.035s - Content-Length: - - '2' + - 0.047s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 - string: "{}" + string: '["jboss-standalone/demo-aws-launch.yml","jboss-standalone/deploy-application.yml","jboss-standalone/site.yml","lamp_haproxy/aws/demo-aws-launch.yml","lamp_haproxy/aws/rolling_update.yml","lamp_haproxy/aws/site.yml","lamp_haproxy/provision.yml","lamp_haproxy/rolling_update.yml","lamp_haproxy/site.yml","lamp_simple/site.yml","lamp_simple_rhel7/site.yml","language_features/ansible_pull.yml","language_features/batch_size_control.yml","language_features/cloudformation.yaml","language_features/complex_args.yml","language_features/conditionals_part1.yml","language_features/conditionals_part2.yml","language_features/custom_filters.yml","language_features/delegation.yml","language_features/environment.yml","language_features/eucalyptus-ec2.yml","language_features/file_secontext.yml","language_features/get_url.yml","language_features/group_by.yml","language_features/group_commands.yml","language_features/intermediate_example.yml","language_features/intro_example.yml","language_features/loop_nested.yml","language_features/loop_plugins.yml","language_features/loop_with_items.yml","language_features/mysql.yml","language_features/nested_playbooks.yml","language_features/netscaler.yml","language_features/postgresql.yml","language_features/prompts.yml","language_features/rabbitmq.yml","language_features/register_logic.yml","language_features/roletest.yml","language_features/roletest2.yml","language_features/selective_file_sources.yml","language_features/tags.yml","language_features/upgraded_vars.yml","language_features/user_commands.yml","language_features/zfs.yml","mongodb/playbooks/testsharding.yml","mongodb/site.yml","tomcat-memcached-failover/site.yml","tomcat-standalone/site.yml","windows/create-user.yml","windows/deploy-site.yml","windows/enable-iis.yml","windows/install-msi.yml","windows/ping.yml","windows/run-powershell.yml","windows/test.yml","windows/wamp_haproxy/demo-aws-wamp-launch.yml","windows/wamp_haproxy/rolling_update.yml","windows/wamp_haproxy/site.yml","wordpress-nginx/site.yml","wordpress-nginx_rhel7/site.yml"]' http_version: - recorded_at: Thu, 09 Feb 2017 09:38:02 GMT + recorded_at: Mon, 14 Aug 2017 20:36:34 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/30/survey_spec/ + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/491/playbooks/ body: encoding: US-ASCII string: '' @@ -3689,27 +13638,27 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:38:01 GMT + - Mon, 14 Aug 2017 20:36:35 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: - Accept,Cookie Allow: - - GET, POST, DELETE, HEAD, OPTIONS + - GET, HEAD, OPTIONS X-Api-Time: - - 0.034s + - 0.045s Content-Length: - - '2' + - '2050' Content-Type: - application/json body: encoding: UTF-8 - string: "{}" + string: '["jboss-standalone/demo-aws-launch.yml","jboss-standalone/deploy-application.yml","jboss-standalone/site.yml","lamp_haproxy/aws/demo-aws-launch.yml","lamp_haproxy/aws/rolling_update.yml","lamp_haproxy/aws/site.yml","lamp_haproxy/provision.yml","lamp_haproxy/rolling_update.yml","lamp_haproxy/site.yml","lamp_simple/site.yml","lamp_simple_rhel7/site.yml","language_features/ansible_pull.yml","language_features/batch_size_control.yml","language_features/cloudformation.yaml","language_features/complex_args.yml","language_features/conditionals_part1.yml","language_features/conditionals_part2.yml","language_features/custom_filters.yml","language_features/delegation.yml","language_features/environment.yml","language_features/eucalyptus-ec2.yml","language_features/file_secontext.yml","language_features/get_url.yml","language_features/group_by.yml","language_features/group_commands.yml","language_features/intermediate_example.yml","language_features/intro_example.yml","language_features/loop_nested.yml","language_features/loop_plugins.yml","language_features/loop_with_items.yml","language_features/mysql.yml","language_features/nested_playbooks.yml","language_features/netscaler.yml","language_features/postgresql.yml","language_features/prompts.yml","language_features/rabbitmq.yml","language_features/register_logic.yml","language_features/roletest.yml","language_features/roletest2.yml","language_features/selective_file_sources.yml","language_features/tags.yml","language_features/upgraded_vars.yml","language_features/user_commands.yml","language_features/zfs.yml","mongodb/playbooks/testsharding.yml","mongodb/site.yml","tomcat-memcached-failover/site.yml","tomcat-standalone/site.yml","windows/create-user.yml","windows/deploy-site.yml","windows/enable-iis.yml","windows/install-msi.yml","windows/ping.yml","windows/run-powershell.yml","windows/test.yml","windows/wamp_haproxy/demo-aws-wamp-launch.yml","windows/wamp_haproxy/rolling_update.yml","windows/wamp_haproxy/site.yml","wordpress-nginx/site.yml","wordpress-nginx_rhel7/site.yml"]' http_version: - recorded_at: Thu, 09 Feb 2017 09:38:02 GMT + recorded_at: Mon, 14 Aug 2017 20:36:34 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/54/survey_spec/ + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/506/playbooks/ body: encoding: US-ASCII string: '' @@ -3726,27 +13675,27 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:38:02 GMT + - Mon, 14 Aug 2017 20:36:35 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: - Accept,Cookie Allow: - - GET, POST, DELETE, HEAD, OPTIONS + - GET, HEAD, OPTIONS X-Api-Time: - - 0.033s + - 0.032s Content-Length: - '2' Content-Type: - application/json body: encoding: UTF-8 - string: "{}" + string: "[]" http_version: - recorded_at: Thu, 09 Feb 2017 09:38:03 GMT + recorded_at: Mon, 14 Aug 2017 20:36:34 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/54/survey_spec/ + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/507/playbooks/ body: encoding: US-ASCII string: '' @@ -3763,27 +13712,27 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:38:02 GMT + - Mon, 14 Aug 2017 20:36:35 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: - Accept,Cookie Allow: - - GET, POST, DELETE, HEAD, OPTIONS + - GET, HEAD, OPTIONS X-Api-Time: - - 0.034s + - 0.032s Content-Length: - '2' Content-Type: - application/json body: encoding: UTF-8 - string: "{}" + string: "[]" http_version: - recorded_at: Thu, 09 Feb 2017 09:38:04 GMT + recorded_at: Mon, 14 Aug 2017 20:36:34 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/38/survey_spec/ + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/508/playbooks/ body: encoding: US-ASCII string: '' @@ -3800,27 +13749,27 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:38:03 GMT + - Mon, 14 Aug 2017 20:36:35 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: - Accept,Cookie Allow: - - GET, POST, DELETE, HEAD, OPTIONS + - GET, HEAD, OPTIONS X-Api-Time: - - 0.034s + - 0.031s Content-Length: - '2' Content-Type: - application/json body: encoding: UTF-8 - string: "{}" + string: "[]" http_version: - recorded_at: Thu, 09 Feb 2017 09:38:04 GMT + recorded_at: Mon, 14 Aug 2017 20:36:35 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/38/survey_spec/ + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/600/playbooks/ body: encoding: US-ASCII string: '' @@ -3837,27 +13786,27 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:38:03 GMT + - Mon, 14 Aug 2017 20:36:36 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: - Accept,Cookie Allow: - - GET, POST, DELETE, HEAD, OPTIONS + - GET, HEAD, OPTIONS X-Api-Time: - - 0.033s - Content-Length: - - '2' + - 0.031s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 - string: "{}" + string: '["jwong_3.yml"]' http_version: - recorded_at: Thu, 09 Feb 2017 09:38:05 GMT + recorded_at: Mon, 14 Aug 2017 20:36:35 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/5/survey_spec/ + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/601/playbooks/ body: encoding: US-ASCII string: '' @@ -3874,27 +13823,27 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:38:04 GMT + - Mon, 14 Aug 2017 20:36:36 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: - Accept,Cookie Allow: - - GET, POST, DELETE, HEAD, OPTIONS + - GET, HEAD, OPTIONS X-Api-Time: - - 0.033s + - 0.031s Content-Length: - '2' Content-Type: - application/json body: encoding: UTF-8 - string: "{}" + string: "[]" http_version: - recorded_at: Thu, 09 Feb 2017 09:38:05 GMT + recorded_at: Mon, 14 Aug 2017 20:36:36 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/5/survey_spec/ + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/603/playbooks/ body: encoding: US-ASCII string: '' @@ -3911,27 +13860,27 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:38:05 GMT + - Mon, 14 Aug 2017 20:36:36 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: - Accept,Cookie Allow: - - GET, POST, DELETE, HEAD, OPTIONS + - GET, HEAD, OPTIONS X-Api-Time: - - 0.034s - Content-Length: - - '2' + - 0.045s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 - string: "{}" + string: '["hello_world.yml","jboss-standalone/demo-aws-launch.yml","jboss-standalone/deploy-application.yml","jboss-standalone/site.yml","lamp_haproxy/aws/demo-aws-launch.yml","lamp_haproxy/aws/rolling_update.yml","lamp_haproxy/aws/site.yml","lamp_haproxy/provision.yml","lamp_haproxy/rolling_update.yml","lamp_haproxy/site.yml","lamp_simple/site.yml","lamp_simple_rhel7/site.yml","language_features/ansible_pull.yml","language_features/batch_size_control.yml","language_features/cloudformation.yaml","language_features/complex_args.yml","language_features/conditionals_part1.yml","language_features/conditionals_part2.yml","language_features/custom_filters.yml","language_features/delegation.yml","language_features/environment.yml","language_features/eucalyptus-ec2.yml","language_features/file_secontext.yml","language_features/get_url.yml","language_features/group_by.yml","language_features/group_commands.yml","language_features/intermediate_example.yml","language_features/intro_example.yml","language_features/loop_nested.yml","language_features/loop_plugins.yml","language_features/loop_with_items.yml","language_features/mysql.yml","language_features/nested_playbooks.yml","language_features/netscaler.yml","language_features/postgresql.yml","language_features/prompts.yml","language_features/rabbitmq.yml","language_features/register_logic.yml","language_features/roletest.yml","language_features/roletest2.yml","language_features/selective_file_sources.yml","language_features/tags.yml","language_features/upgraded_vars.yml","language_features/user_commands.yml","language_features/zfs.yml","mongodb/playbooks/testsharding.yml","mongodb/site.yml","tomcat-memcached-failover/site.yml","tomcat-standalone/site.yml","windows/create-user.yml","windows/deploy-site.yml","windows/enable-iis.yml","windows/install-msi.yml","windows/ping.yml","windows/run-powershell.yml","windows/test.yml","windows/wamp_haproxy/demo-aws-wamp-launch.yml","windows/wamp_haproxy/rolling_update.yml","windows/wamp_haproxy/site.yml","wordpress-nginx/site.yml","wordpress-nginx_rhel7/site.yml"]' http_version: - recorded_at: Thu, 09 Feb 2017 09:38:06 GMT + recorded_at: Mon, 14 Aug 2017 20:36:36 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/28/survey_spec/ + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/?page=2 body: encoding: US-ASCII string: '' @@ -3948,27 +13897,49 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:38:05 GMT + - Mon, 14 Aug 2017 20:36:37 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: - Accept,Cookie Allow: - - GET, POST, DELETE, HEAD, OPTIONS + - GET, POST, HEAD, OPTIONS X-Api-Time: - - 0.034s - Content-Length: - - '2' + - 0.104s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 - string: "{}" + string: '{"count":29,"next":null,"previous":"/api/v1/projects/?page=1","results":[{"id":609,"type":"project","url":"/api/v1/projects/609/","related":{"created_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/969/","notification_templates_error":"/api/v1/projects/609/notification_templates_error/","notification_templates_success":"/api/v1/projects/609/notification_templates_success/","object_roles":"/api/v1/projects/609/object_roles/","notification_templates_any":"/api/v1/projects/609/notification_templates_any/","project_updates":"/api/v1/projects/609/project_updates/","update":"/api/v1/projects/609/update/","access_list":"/api/v1/projects/609/access_list/","playbooks":"/api/v1/projects/609/playbooks/","schedules":"/api/v1/projects/609/schedules/","teams":"/api/v1/projects/609/teams/","activity_stream":"/api/v1/projects/609/activity_stream/","last_update":"/api/v1/project_updates/969/"},"summary_fields":{"last_job":{"id":969,"name":"test_billy","description":"Madhu + playbook","finished":"2017-08-01T18:49:31.133Z","status":"successful","failed":false},"last_update":{"id":969,"name":"test_billy","description":"Madhu + playbook","status":"successful","failed":false},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":3083,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":3085,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":3086,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":3084,"name":"Read"}}},"created":"2017-08-01T18:49:06.736Z","modified":"2017-08-01T18:49:28.832Z","name":"test_billy","description":"Madhu + playbook","local_path":"_609__test_billy","scm_type":"git","scm_url":"https://github.com/mkanoor/playbook","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-08-01T18:49:31.133648Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","organization":null,"scm_delete_on_next_update":false,"scm_update_on_launch":false,"scm_update_cache_timeout":0,"last_update_failed":false,"last_updated":"2017-08-01T18:49:31.133648Z"},{"id":612,"type":"project","url":"/api/v1/projects/612/","related":{"created_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/1021/","notification_templates_error":"/api/v1/projects/612/notification_templates_error/","notification_templates_success":"/api/v1/projects/612/notification_templates_success/","object_roles":"/api/v1/projects/612/object_roles/","notification_templates_any":"/api/v1/projects/612/notification_templates_any/","project_updates":"/api/v1/projects/612/project_updates/","update":"/api/v1/projects/612/update/","access_list":"/api/v1/projects/612/access_list/","playbooks":"/api/v1/projects/612/playbooks/","schedules":"/api/v1/projects/612/schedules/","teams":"/api/v1/projects/612/teams/","activity_stream":"/api/v1/projects/612/activity_stream/","last_update":"/api/v1/project_updates/1021/"},"summary_fields":{"last_job":{"id":1021,"name":"RHV-M","description":"","finished":"2017-08-07T15:27:14.858Z","status":"failed","failed":true},"last_update":{"id":1021,"name":"RHV-M","description":"","status":"failed","failed":true},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":3093,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":3095,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":3096,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":3094,"name":"Read"}}},"created":"2017-08-07T15:27:05.430Z","modified":"2017-08-07T15:27:13.552Z","name":"RHV-M","description":"","local_path":"_612__rhv_m","scm_type":"git","scm_url":"karel@karel:karelbfhbvkhdjblvhkbj","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-08-07T15:27:14.858741Z","last_job_failed":true,"has_schedules":false,"next_job_run":null,"status":"failed","organization":null,"scm_delete_on_next_update":false,"scm_update_on_launch":false,"scm_update_cache_timeout":0,"last_update_failed":true,"last_updated":"2017-08-07T15:27:14.858741Z"},{"id":613,"type":"project","url":"/api/v1/projects/613/","related":{"created_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/1023/","notification_templates_error":"/api/v1/projects/613/notification_templates_error/","notification_templates_success":"/api/v1/projects/613/notification_templates_success/","object_roles":"/api/v1/projects/613/object_roles/","notification_templates_any":"/api/v1/projects/613/notification_templates_any/","project_updates":"/api/v1/projects/613/project_updates/","update":"/api/v1/projects/613/update/","access_list":"/api/v1/projects/613/access_list/","playbooks":"/api/v1/projects/613/playbooks/","schedules":"/api/v1/projects/613/schedules/","teams":"/api/v1/projects/613/teams/","activity_stream":"/api/v1/projects/613/activity_stream/","last_update":"/api/v1/project_updates/1023/"},"summary_fields":{"last_job":{"id":1023,"name":"karel","description":"","finished":"2017-08-08T07:59:37.842Z","status":"failed","failed":true},"last_update":{"id":1023,"name":"karel","description":"","status":"failed","failed":true},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":3097,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":3099,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":3100,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":3098,"name":"Read"}}},"created":"2017-08-08T07:59:28.588Z","modified":"2017-08-08T07:59:36.565Z","name":"karel","description":"","local_path":"_613__karel","scm_type":"git","scm_url":"k@k:2","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-08-08T07:59:37.842254Z","last_job_failed":true,"has_schedules":false,"next_job_run":null,"status":"failed","organization":null,"scm_delete_on_next_update":false,"scm_update_on_launch":false,"scm_update_cache_timeout":0,"last_update_failed":true,"last_updated":"2017-08-08T07:59:37.842254Z"},{"id":614,"type":"project","url":"/api/v1/projects/614/","related":{"created_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/1026/","notification_templates_error":"/api/v1/projects/614/notification_templates_error/","notification_templates_success":"/api/v1/projects/614/notification_templates_success/","object_roles":"/api/v1/projects/614/object_roles/","notification_templates_any":"/api/v1/projects/614/notification_templates_any/","project_updates":"/api/v1/projects/614/project_updates/","update":"/api/v1/projects/614/update/","access_list":"/api/v1/projects/614/access_list/","playbooks":"/api/v1/projects/614/playbooks/","schedules":"/api/v1/projects/614/schedules/","teams":"/api/v1/projects/614/teams/","activity_stream":"/api/v1/projects/614/activity_stream/","last_update":"/api/v1/project_updates/1026/"},"summary_fields":{"last_job":{"id":1026,"name":"fhsdjnck;sl + cmknvjbhjfgryiehuejdsx","description":"","finished":"2017-08-10T09:55:50.535Z","status":"failed","failed":true},"last_update":{"id":1026,"name":"fhsdjnck;sl + cmknvjbhjfgryiehuejdsx","description":"","status":"failed","failed":true},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":3101,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":3103,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":3104,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":3102,"name":"Read"}}},"created":"2017-08-10T09:55:37.000Z","modified":"2017-08-10T09:55:49.381Z","name":"fhsdjnck;sl + cmknvjbhjfgryiehuejdsx","description":"","local_path":"_614__fhsdjncksl_cmknvjbhjfgryiehuejdsx","scm_type":"git","scm_url":"k@k:j","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-08-10T09:55:50.535409Z","last_job_failed":true,"has_schedules":false,"next_job_run":null,"status":"failed","organization":null,"scm_delete_on_next_update":false,"scm_update_on_launch":false,"scm_update_cache_timeout":0,"last_update_failed":true,"last_updated":"2017-08-10T09:55:50.535409Z"}]}' http_version: - recorded_at: Thu, 09 Feb 2017 09:38:06 GMT + recorded_at: Mon, 14 Aug 2017 20:36:36 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/28/survey_spec/ + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/609/playbooks/ body: encoding: US-ASCII string: '' @@ -3985,27 +13956,27 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:38:06 GMT + - Mon, 14 Aug 2017 20:36:37 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: - Accept,Cookie Allow: - - GET, POST, DELETE, HEAD, OPTIONS + - GET, HEAD, OPTIONS X-Api-Time: - 0.035s - Content-Length: - - '2' + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 - string: "{}" + string: '["add_single_vm_to_service.yml","mk_sample_playbook.yaml","pkg_info.yaml","pkg_info_et_al.yaml","pkg_info_no_sleep.yaml","provider_refresh.yml","tag_vm.yml","test1.yaml"]' http_version: - recorded_at: Thu, 09 Feb 2017 09:38:07 GMT + recorded_at: Mon, 14 Aug 2017 20:36:36 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/41/survey_spec/ + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/612/playbooks/ body: encoding: US-ASCII string: '' @@ -4022,27 +13993,275 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:38:06 GMT + - Mon, 14 Aug 2017 20:36:37 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: - Accept,Cookie Allow: - - GET, POST, DELETE, HEAD, OPTIONS + - GET, HEAD, OPTIONS X-Api-Time: - - 0.034s + - 0.031s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "[]" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:36 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/613/playbooks/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:37 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, HEAD, OPTIONS + X-Api-Time: + - 0.031s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "[]" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:37 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/614/playbooks/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:38 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, HEAD, OPTIONS + X-Api-Time: + - 0.031s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "[]" + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:37 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/credentials + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 301 + message: MOVED PERMANENTLY + headers: + Date: + - Mon, 14 Aug 2017 20:36:38 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Location: + - https://dev-ansible-tower3.example.com/api/v1/credentials/ Content-Length: - - '2' + - '0' + Content-Type: + - text/html; charset=utf-8 + body: + encoding: UTF-8 + string: '' + http_version: + recorded_at: Mon, 14 Aug 2017 20:36:37 GMT +- request: + method: get + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/credentials/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v0.9.2 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 14 Aug 2017 20:36:38 GMT + Server: + - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 + Vary: + - Accept,Cookie + Allow: + - GET, POST, HEAD, OPTIONS + X-Api-Time: + - 0.343s + Content-Length: + - '37324' Content-Type: - application/json body: encoding: UTF-8 - string: "{}" + string: '{"count":35,"next":"/api/v1/credentials/?page=2","previous":null,"results":[{"id":48,"type":"credential","url":"/api/v1/credentials/48/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","owner_teams":"/api/v1/credentials/48/owner_teams/","owner_users":"/api/v1/credentials/48/owner_users/","activity_stream":"/api/v1/credentials/48/activity_stream/","access_list":"/api/v1/credentials/48/access_list/","object_roles":"/api/v1/credentials/48/object_roles/","user":"/api/v1/users/1/"},"summary_fields":{"host":{},"project":{},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":1689,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":1691,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":1690,"name":"Read"}},"owners":[{"url":"/api/v1/users/1/","description":" + ","type":"user","id":1,"name":"admin"}]},"created":"2017-03-27T21:52:29.559Z","modified":"2017-03-27T21:52:37.133Z","name":"ec2 + cred","description":"","kind":"aws","cloud":true,"host":"","username":"065ZMGNV5WNKPMX4FF82","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":179,"type":"credential","url":"/api/v1/credentials/179/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/44/","owner_teams":"/api/v1/credentials/179/owner_teams/","owner_users":"/api/v1/credentials/179/owner_users/","activity_stream":"/api/v1/credentials/179/activity_stream/","access_list":"/api/v1/credentials/179/access_list/","object_roles":"/api/v1/credentials/179/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":44,"name":"spec_test_org","description":"for + miq spec tests"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":3021,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":3023,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":3022,"name":"Read"}},"owners":[]},"created":"2017-07-14T18:46:08.857Z","modified":"2017-07-14T18:46:08.952Z","name":"hello_aws_cred","description":"","kind":"aws","cloud":true,"host":"","username":"ABC","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":10,"type":"credential","url":"/api/v1/credentials/10/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/2/","owner_teams":"/api/v1/credentials/10/owner_teams/","owner_users":"/api/v1/credentials/10/owner_users/","activity_stream":"/api/v1/credentials/10/activity_stream/","access_list":"/api/v1/credentials/10/access_list/","object_roles":"/api/v1/credentials/10/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":2,"name":"Test + Org","description":"For tests"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":298,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":300,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":299,"name":"Read"}},"owners":[]},"created":"2017-02-10T23:12:52.021Z","modified":"2017-06-15T19:53:50.803Z","name":"JwongMCred","description":"test + aws cred","kind":"aws","cloud":true,"host":"","username":"asdfa","password":"$encrypted$","security_token":"$encrypted$","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":66,"type":"credential","url":"/api/v1/credentials/66/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","owner_teams":"/api/v1/credentials/66/owner_teams/","owner_users":"/api/v1/credentials/66/owner_users/","activity_stream":"/api/v1/credentials/66/activity_stream/","access_list":"/api/v1/credentials/66/access_list/","object_roles":"/api/v1/credentials/66/object_roles/","user":"/api/v1/users/1/"},"summary_fields":{"host":{},"project":{},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":1916,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":1918,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":1917,"name":"Read"}},"owners":[{"url":"/api/v1/users/1/","description":" + ","type":"user","id":1,"name":"admin"}]},"created":"2017-04-28T10:00:09.564Z","modified":"2017-05-02T10:14:24.455Z","name":"test_aws","description":"honk","kind":"aws","cloud":true,"host":"","username":"12343212351546","password":"$encrypted$","security_token":"$encrypted$","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":173,"type":"credential","url":"/api/v1/credentials/173/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/6/","owner_teams":"/api/v1/credentials/173/owner_teams/","owner_users":"/api/v1/credentials/173/owner_users/","activity_stream":"/api/v1/credentials/173/activity_stream/","access_list":"/api/v1/credentials/173/access_list/","object_roles":"/api/v1/credentials/173/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":6,"name":"test_inventory","description":"inventory + for miq spec tests"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":2999,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":3001,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":3000,"name":"Read"}},"owners":[]},"created":"2017-07-14T18:14:03.342Z","modified":"2017-07-14T18:14:03.445Z","name":"azure_classic","description":"","kind":"azure","cloud":true,"host":"","username":"sub_id_jwong","password":"","security_token":"","project":"","domain":"","ssh_key_data":"$encrypted$","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"sub_id_jwong","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":184,"type":"credential","url":"/api/v1/credentials/184/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/44/","owner_teams":"/api/v1/credentials/184/owner_teams/","owner_users":"/api/v1/credentials/184/owner_users/","activity_stream":"/api/v1/credentials/184/activity_stream/","access_list":"/api/v1/credentials/184/access_list/","object_roles":"/api/v1/credentials/184/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":44,"name":"spec_test_org","description":"for + miq spec tests"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":3036,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":3038,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":3037,"name":"Read"}},"owners":[]},"created":"2017-07-14T18:46:17.533Z","modified":"2017-07-14T18:46:17.624Z","name":"hello_azure_classic_cred","description":"","kind":"azure","cloud":true,"host":"","username":"admin","password":"","security_token":"","project":"","domain":"","ssh_key_data":"$encrypted$","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":140,"type":"credential","url":"/api/v1/credentials/140/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","owner_teams":"/api/v1/credentials/140/owner_teams/","owner_users":"/api/v1/credentials/140/owner_users/","activity_stream":"/api/v1/credentials/140/activity_stream/","access_list":"/api/v1/credentials/140/access_list/","object_roles":"/api/v1/credentials/140/object_roles/","user":"/api/v1/users/1/"},"summary_fields":{"host":{},"project":{},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":2840,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":2842,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":2841,"name":"Read"}},"owners":[{"url":"/api/v1/users/1/","description":" + ","type":"user","id":1,"name":"admin"}]},"created":"2017-06-23T20:07:18.792Z","modified":"2017-06-23T20:17:50.258Z","name":"azure_cred","description":"","kind":"azure_rm","cloud":true,"host":"","username":"jwong","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"sub_id_jw","tenant":"ten_id_jw","secret":"","client":"cli_id_jw","authorize":false,"authorize_password":""},{"id":183,"type":"credential","url":"/api/v1/credentials/183/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/44/","owner_teams":"/api/v1/credentials/183/owner_teams/","owner_users":"/api/v1/credentials/183/owner_users/","activity_stream":"/api/v1/credentials/183/activity_stream/","access_list":"/api/v1/credentials/183/access_list/","object_roles":"/api/v1/credentials/183/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":44,"name":"spec_test_org","description":"for + miq spec tests"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":3033,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":3035,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":3034,"name":"Read"}},"owners":[]},"created":"2017-07-14T18:46:15.642Z","modified":"2017-07-14T18:46:15.735Z","name":"hello_azure_cred","description":"","kind":"azure_rm","cloud":true,"host":"","username":"admin","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"sub_id","tenant":"ten_id","secret":"$encrypted$","client":"cli_id","authorize":false,"authorize_password":""},{"id":181,"type":"credential","url":"/api/v1/credentials/181/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/44/","owner_teams":"/api/v1/credentials/181/owner_teams/","owner_users":"/api/v1/credentials/181/owner_users/","activity_stream":"/api/v1/credentials/181/activity_stream/","access_list":"/api/v1/credentials/181/access_list/","object_roles":"/api/v1/credentials/181/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":44,"name":"spec_test_org","description":"for + miq spec tests"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":3027,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":3029,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":3028,"name":"Read"}},"owners":[]},"created":"2017-07-14T18:46:12.075Z","modified":"2017-07-14T18:46:12.193Z","name":"hello_gce_cred","description":"","kind":"gce","cloud":true,"host":"","username":"hello_gce@gce.com","password":"","security_token":"","project":"squeamish-ossifrage-123","domain":"","ssh_key_data":"$encrypted$","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":178,"type":"credential","url":"/api/v1/credentials/178/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/44/","owner_teams":"/api/v1/credentials/178/owner_teams/","owner_users":"/api/v1/credentials/178/owner_users/","activity_stream":"/api/v1/credentials/178/activity_stream/","access_list":"/api/v1/credentials/178/access_list/","object_roles":"/api/v1/credentials/178/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":44,"name":"spec_test_org","description":"for + miq spec tests"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":3018,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":3020,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":3019,"name":"Read"}},"owners":[]},"created":"2017-07-14T18:46:07.257Z","modified":"2017-07-14T18:46:07.348Z","name":"hello_network_cred","description":"","kind":"net","cloud":false,"host":"","username":"admin","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":71,"type":"credential","url":"/api/v1/credentials/71/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","owner_teams":"/api/v1/credentials/71/owner_teams/","owner_users":"/api/v1/credentials/71/owner_users/","activity_stream":"/api/v1/credentials/71/activity_stream/","access_list":"/api/v1/credentials/71/access_list/","object_roles":"/api/v1/credentials/71/object_roles/","user":"/api/v1/users/1/"},"summary_fields":{"host":{},"project":{},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":2078,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":2080,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":2079,"name":"Read"}},"owners":[{"url":"/api/v1/users/1/","description":" + ","type":"user","id":1,"name":"admin"}]},"created":"2017-06-12T14:24:10.987Z","modified":"2017-06-12T14:27:36.159Z","name":"test-net","description":"","kind":"net","cloud":false,"host":"","username":"abc","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":69,"type":"credential","url":"/api/v1/credentials/69/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/2/","owner_teams":"/api/v1/credentials/69/owner_teams/","owner_users":"/api/v1/credentials/69/owner_users/","activity_stream":"/api/v1/credentials/69/activity_stream/","access_list":"/api/v1/credentials/69/access_list/","object_roles":"/api/v1/credentials/69/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":2,"name":"Test + Org","description":"For tests"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":2072,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":2074,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":2073,"name":"Read"}},"owners":[]},"created":"2017-06-12T13:48:50.647Z","modified":"2017-06-12T13:48:50.731Z","name":"test-network-wo-auth","description":"","kind":"net","cloud":false,"host":"","username":"test-network-admin","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":180,"type":"credential","url":"/api/v1/credentials/180/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/44/","owner_teams":"/api/v1/credentials/180/owner_teams/","owner_users":"/api/v1/credentials/180/owner_users/","activity_stream":"/api/v1/credentials/180/activity_stream/","access_list":"/api/v1/credentials/180/access_list/","object_roles":"/api/v1/credentials/180/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":44,"name":"spec_test_org","description":"for + miq spec tests"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":3024,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":3026,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":3025,"name":"Read"}},"owners":[]},"created":"2017-07-14T18:46:10.448Z","modified":"2017-07-14T18:46:10.564Z","name":"hello_openstack_cred","description":"","kind":"openstack","cloud":true,"host":"openstack.com","username":"hello_rack","password":"$encrypted$","security_token":"","project":"hello_rack","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":182,"type":"credential","url":"/api/v1/credentials/182/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/44/","owner_teams":"/api/v1/credentials/182/owner_teams/","owner_users":"/api/v1/credentials/182/owner_users/","activity_stream":"/api/v1/credentials/182/activity_stream/","access_list":"/api/v1/credentials/182/access_list/","object_roles":"/api/v1/credentials/182/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":44,"name":"spec_test_org","description":"for + miq spec tests"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":3030,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":3032,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":3031,"name":"Read"}},"owners":[]},"created":"2017-07-14T18:46:13.748Z","modified":"2017-07-14T18:46:13.841Z","name":"hello_rax_cred","description":"","kind":"rax","cloud":true,"host":"","username":"admin","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":17,"type":"credential","url":"/api/v1/credentials/17/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","owner_teams":"/api/v1/credentials/17/owner_teams/","owner_users":"/api/v1/credentials/17/owner_users/","activity_stream":"/api/v1/credentials/17/activity_stream/","access_list":"/api/v1/credentials/17/access_list/","object_roles":"/api/v1/credentials/17/object_roles/","user":"/api/v1/users/1/"},"summary_fields":{"host":{},"project":{},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":1170,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":1172,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":1171,"name":"Read"}},"owners":[{"url":"/api/v1/users/1/","description":" + ","type":"user","id":1,"name":"admin"}]},"created":"2017-03-17T14:29:00.374Z","modified":"2017-03-17T14:29:00.450Z","name":"Rakespace + Fake","description":"","kind":"rax","cloud":true,"host":"","username":"no_valid","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":185,"type":"credential","url":"/api/v1/credentials/185/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/44/","owner_teams":"/api/v1/credentials/185/owner_teams/","owner_users":"/api/v1/credentials/185/owner_users/","activity_stream":"/api/v1/credentials/185/activity_stream/","access_list":"/api/v1/credentials/185/access_list/","object_roles":"/api/v1/credentials/185/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":44,"name":"spec_test_org","description":"for + miq spec tests"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":3039,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":3041,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":3040,"name":"Read"}},"owners":[]},"created":"2017-07-14T18:46:20.592Z","modified":"2017-07-14T18:46:20.685Z","name":"hello_sat_cred","description":"","kind":"satellite6","cloud":true,"host":"s1.sat.com","username":"admin","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":141,"type":"credential","url":"/api/v1/credentials/141/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","owner_teams":"/api/v1/credentials/141/owner_teams/","owner_users":"/api/v1/credentials/141/owner_users/","activity_stream":"/api/v1/credentials/141/activity_stream/","access_list":"/api/v1/credentials/141/access_list/","object_roles":"/api/v1/credentials/141/object_roles/","user":"/api/v1/users/1/"},"summary_fields":{"host":{},"project":{},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":2843,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":2845,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":2844,"name":"Read"}},"owners":[{"url":"/api/v1/users/1/","description":" + ","type":"user","id":1,"name":"admin"}]},"created":"2017-06-23T20:44:51.979Z","modified":"2017-06-23T20:44:52.080Z","name":"sat6_cred","description":"","kind":"satellite6","cloud":true,"host":"sat.example.com","username":"jwong","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":176,"type":"credential","url":"/api/v1/credentials/176/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/44/","owner_teams":"/api/v1/credentials/176/owner_teams/","owner_users":"/api/v1/credentials/176/owner_users/","activity_stream":"/api/v1/credentials/176/activity_stream/","access_list":"/api/v1/credentials/176/access_list/","object_roles":"/api/v1/credentials/176/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":44,"name":"spec_test_org","description":"for + miq spec tests"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":3012,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":3014,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":3013,"name":"Read"}},"owners":[]},"created":"2017-07-14T18:46:04.160Z","modified":"2017-07-14T18:46:04.253Z","name":"hello_scm_cred","description":"","kind":"scm","cloud":false,"host":"","username":"admin","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":12,"type":"credential","url":"/api/v1/credentials/12/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","owner_teams":"/api/v1/credentials/12/owner_teams/","owner_users":"/api/v1/credentials/12/owner_users/","activity_stream":"/api/v1/credentials/12/activity_stream/","access_list":"/api/v1/credentials/12/access_list/","object_roles":"/api/v1/credentials/12/object_roles/"},"summary_fields":{"host":{},"project":{},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":331,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":333,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":332,"name":"Read"}},"owners":[]},"created":"2017-02-13T18:42:11.981Z","modified":"2017-03-27T14:24:25.605Z","name":"jwong-scm","description":"github + cred","kind":"scm","cloud":false,"host":"","username":"james","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"$encrypted$","ssh_key_unlock":"$encrypted$","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":8,"type":"credential","url":"/api/v1/credentials/8/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","owner_teams":"/api/v1/credentials/8/owner_teams/","owner_users":"/api/v1/credentials/8/owner_users/","activity_stream":"/api/v1/credentials/8/activity_stream/","access_list":"/api/v1/credentials/8/access_list/","object_roles":"/api/v1/credentials/8/object_roles/","user":"/api/v1/users/1/"},"summary_fields":{"host":{},"project":{},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":152,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":154,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":153,"name":"Read"}},"owners":[{"url":"/api/v1/users/1/","description":" + ","type":"user","id":1,"name":"admin"}]},"created":"2017-02-01T19:34:37.462Z","modified":"2017-04-19T11:05:23.658Z","name":"bd-test-changed","description":"","kind":"ssh","cloud":false,"host":"","username":"abc","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"sudo","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":187,"type":"credential","url":"/api/v1/credentials/187/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/45/","owner_teams":"/api/v1/credentials/187/owner_teams/","owner_users":"/api/v1/credentials/187/owner_users/","activity_stream":"/api/v1/credentials/187/activity_stream/","access_list":"/api/v1/credentials/187/access_list/","object_roles":"/api/v1/credentials/187/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":45,"name":"billy","description":"billy + Organization"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":3075,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":3077,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":3076,"name":"Read"}},"owners":[]},"created":"2017-08-01T15:29:05.596Z","modified":"2017-08-01T15:29:05.678Z","name":"billy","description":"","kind":"ssh","cloud":false,"host":"","username":"","password":"","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":177,"type":"credential","url":"/api/v1/credentials/177/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/44/","owner_teams":"/api/v1/credentials/177/owner_teams/","owner_users":"/api/v1/credentials/177/owner_users/","activity_stream":"/api/v1/credentials/177/activity_stream/","access_list":"/api/v1/credentials/177/access_list/","object_roles":"/api/v1/credentials/177/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":44,"name":"spec_test_org","description":"for + miq spec tests"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":3015,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":3017,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":3016,"name":"Read"}},"owners":[]},"created":"2017-07-14T18:46:05.685Z","modified":"2017-07-14T18:46:05.778Z","name":"hello_machine_cred","description":"","kind":"ssh","cloud":false,"host":"","username":"admin","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":63,"type":"credential","url":"/api/v1/credentials/63/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","owner_teams":"/api/v1/credentials/63/owner_teams/","owner_users":"/api/v1/credentials/63/owner_users/","activity_stream":"/api/v1/credentials/63/activity_stream/","access_list":"/api/v1/credentials/63/access_list/","object_roles":"/api/v1/credentials/63/object_roles/","user":"/api/v1/users/1/"},"summary_fields":{"host":{},"project":{},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":1883,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":1885,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":1884,"name":"Read"}},"owners":[{"url":"/api/v1/users/1/","description":" + ","type":"user","id":1,"name":"admin"}]},"created":"2017-04-10T08:12:31.806Z","modified":"2017-04-10T08:20:39.771Z","name":"Jose","description":"","kind":"ssh","cloud":false,"host":"","username":"","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"$encrypted$","ssh_key_unlock":"$encrypted$","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":67,"type":"credential","url":"/api/v1/credentials/67/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","owner_teams":"/api/v1/credentials/67/owner_teams/","owner_users":"/api/v1/credentials/67/owner_users/","activity_stream":"/api/v1/credentials/67/activity_stream/","access_list":"/api/v1/credentials/67/access_list/","object_roles":"/api/v1/credentials/67/object_roles/","user":"/api/v1/users/1/"},"summary_fields":{"host":{},"project":{},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":2031,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":2033,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":2032,"name":"Read"}},"owners":[{"url":"/api/v1/users/1/","description":" + ","type":"user","id":1,"name":"admin"}]},"created":"2017-05-08T15:05:23.592Z","modified":"2017-05-08T15:05:23.661Z","name":"lfu + cred","description":"","kind":"ssh","cloud":false,"host":"","username":"lfu","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"sudo","become_username":"lfu","become_password":"$encrypted$","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":52,"type":"credential","url":"/api/v1/credentials/52/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","owner_teams":"/api/v1/credentials/52/owner_teams/","owner_users":"/api/v1/credentials/52/owner_users/","activity_stream":"/api/v1/credentials/52/activity_stream/","access_list":"/api/v1/credentials/52/access_list/","object_roles":"/api/v1/credentials/52/object_roles/","user":"/api/v1/users/1/"},"summary_fields":{"host":{},"project":{},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":1701,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":1703,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":1702,"name":"Read"}},"owners":[{"url":"/api/v1/users/1/","description":" + ","type":"user","id":1,"name":"admin"}]},"created":"2017-03-28T15:33:08.356Z","modified":"2017-05-04T20:45:36.176Z","name":"lucy_machine","description":"","kind":"ssh","cloud":false,"host":"","username":"root","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"sudo","become_username":"root","become_password":"$encrypted$","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""}]}' http_version: - recorded_at: Thu, 09 Feb 2017 09:38:08 GMT + recorded_at: Mon, 14 Aug 2017 20:36:38 GMT - request: method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/job_templates/41/survey_spec/ + uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/credentials/?page=2 body: encoding: US-ASCII string: '' @@ -4059,22 +14278,65 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Feb 2017 10:38:07 GMT + - Mon, 14 Aug 2017 20:36:39 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: - Accept,Cookie Allow: - - GET, POST, DELETE, HEAD, OPTIONS + - GET, POST, HEAD, OPTIONS X-Api-Time: - - 0.034s + - 0.160s Content-Length: - - '2' + - '14861' Content-Type: - application/json body: encoding: UTF-8 - string: "{}" + string: '{"count":35,"next":null,"previous":"/api/v1/credentials/?page=1","results":[{"id":45,"type":"credential","url":"/api/v1/credentials/45/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","owner_teams":"/api/v1/credentials/45/owner_teams/","owner_users":"/api/v1/credentials/45/owner_users/","activity_stream":"/api/v1/credentials/45/activity_stream/","access_list":"/api/v1/credentials/45/access_list/","object_roles":"/api/v1/credentials/45/object_roles/"},"summary_fields":{"host":{},"project":{},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":1617,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":1619,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":1618,"name":"Read"}},"owners":[]},"created":"2017-03-24T14:04:47.916Z","modified":"2017-03-27T15:29:50.504Z","name":"machine-credential-01","description":"","kind":"ssh","cloud":false,"host":"","username":"user01","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"sudo","become_username":"root","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":27,"type":"credential","url":"/api/v1/credentials/27/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/4/","owner_teams":"/api/v1/credentials/27/owner_teams/","owner_users":"/api/v1/credentials/27/owner_users/","activity_stream":"/api/v1/credentials/27/activity_stream/","access_list":"/api/v1/credentials/27/access_list/","object_roles":"/api/v1/credentials/27/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":4,"name":"ManageIQ","description":"ManageIQ + Default Organization"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":1433,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":1435,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":1434,"name":"Read"}},"owners":[]},"created":"2017-03-22T21:57:45.946Z","modified":"2017-03-22T21:57:46.033Z","name":"ManageIQ + Default Credential","description":"","kind":"ssh","cloud":false,"host":"","username":"","password":"","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":64,"type":"credential","url":"/api/v1/credentials/64/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","owner_teams":"/api/v1/credentials/64/owner_teams/","owner_users":"/api/v1/credentials/64/owner_users/","activity_stream":"/api/v1/credentials/64/activity_stream/","access_list":"/api/v1/credentials/64/access_list/","object_roles":"/api/v1/credentials/64/object_roles/","user":"/api/v1/users/1/"},"summary_fields":{"host":{},"project":{},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":1886,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":1888,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":1887,"name":"Read"}},"owners":[{"url":"/api/v1/users/1/","description":" + ","type":"user","id":1,"name":"admin"}]},"created":"2017-04-10T08:21:35.727Z","modified":"2017-04-10T08:21:35.800Z","name":"No + no no","description":"","kind":"ssh","cloud":false,"host":"","username":"","password":"","security_token":"","project":"","domain":"","ssh_key_data":"$encrypted$","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":62,"type":"credential","url":"/api/v1/credentials/62/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","owner_teams":"/api/v1/credentials/62/owner_teams/","owner_users":"/api/v1/credentials/62/owner_users/","activity_stream":"/api/v1/credentials/62/activity_stream/","access_list":"/api/v1/credentials/62/access_list/","object_roles":"/api/v1/credentials/62/object_roles/","user":"/api/v1/users/1/"},"summary_fields":{"host":{},"project":{},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":1876,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":1878,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":1877,"name":"Read"}},"owners":[{"url":"/api/v1/users/1/","description":" + ","type":"user","id":1,"name":"admin"}]},"created":"2017-04-05T07:18:01.678Z","modified":"2017-04-05T07:18:01.767Z","name":"test_stream","description":"","kind":"ssh","cloud":false,"host":"","username":"","password":"","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":61,"type":"credential","url":"/api/v1/credentials/61/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","owner_teams":"/api/v1/credentials/61/owner_teams/","owner_users":"/api/v1/credentials/61/owner_users/","activity_stream":"/api/v1/credentials/61/activity_stream/","access_list":"/api/v1/credentials/61/access_list/","object_roles":"/api/v1/credentials/61/object_roles/","user":"/api/v1/users/1/"},"summary_fields":{"host":{},"project":{},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":1829,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":1831,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":1830,"name":"Read"}},"owners":[{"url":"/api/v1/users/1/","description":" + ","type":"user","id":1,"name":"admin"}]},"created":"2017-04-04T16:06:08.867Z","modified":"2017-04-04T16:06:08.940Z","name":"test_stream","description":"","kind":"ssh","cloud":false,"host":"","username":"","password":"","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":60,"type":"credential","url":"/api/v1/credentials/60/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","owner_teams":"/api/v1/credentials/60/owner_teams/","owner_users":"/api/v1/credentials/60/owner_users/","activity_stream":"/api/v1/credentials/60/activity_stream/","access_list":"/api/v1/credentials/60/access_list/","object_roles":"/api/v1/credentials/60/object_roles/","user":"/api/v1/users/1/"},"summary_fields":{"host":{},"project":{},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":1826,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":1828,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":1827,"name":"Read"}},"owners":[{"url":"/api/v1/users/1/","description":" + ","type":"user","id":1,"name":"admin"}]},"created":"2017-04-04T15:51:42.125Z","modified":"2017-04-04T15:51:42.218Z","name":"test_stream","description":"","kind":"ssh","cloud":false,"host":"","username":"","password":"","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":2,"type":"credential","url":"/api/v1/credentials/2/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","owner_teams":"/api/v1/credentials/2/owner_teams/","owner_users":"/api/v1/credentials/2/owner_users/","activity_stream":"/api/v1/credentials/2/activity_stream/","access_list":"/api/v1/credentials/2/access_list/","object_roles":"/api/v1/credentials/2/object_roles/","user":"/api/v1/users/1/"},"summary_fields":{"host":{},"project":{},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":28,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":30,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":29,"name":"Read"}},"owners":[{"url":"/api/v1/users/1/","description":" + ","type":"user","id":1,"name":"admin"}]},"created":"2016-08-30T22:41:59.056Z","modified":"2016-08-31T16:59:02.652Z","name":"dev-vc60","description":"","kind":"vmware","cloud":true,"host":"dev-vc60.example.com","username":"MiqAnsibleUser@vsphere.local","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":72,"type":"credential","url":"/api/v1/credentials/72/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/2/","owner_teams":"/api/v1/credentials/72/owner_teams/","owner_users":"/api/v1/credentials/72/owner_users/","activity_stream":"/api/v1/credentials/72/activity_stream/","access_list":"/api/v1/credentials/72/access_list/","object_roles":"/api/v1/credentials/72/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":2,"name":"Test + Org","description":"For tests"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":2096,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":2098,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":2097,"name":"Read"}},"owners":[]},"created":"2017-06-19T19:41:29.074Z","modified":"2017-06-19T19:41:29.178Z","name":"jwong-vc","description":"","kind":"vmware","cloud":true,"host":"jwong-vc60.example.com","username":"administrator@vsphere.local","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":16,"type":"credential","url":"/api/v1/credentials/16/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","owner_teams":"/api/v1/credentials/16/owner_teams/","owner_users":"/api/v1/credentials/16/owner_users/","activity_stream":"/api/v1/credentials/16/activity_stream/","access_list":"/api/v1/credentials/16/access_list/","object_roles":"/api/v1/credentials/16/object_roles/","user":"/api/v1/users/1/"},"summary_fields":{"host":{},"project":{},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":894,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":896,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":895,"name":"Read"}},"owners":[{"url":"/api/v1/users/1/","description":" + ","type":"user","id":1,"name":"admin"}]},"created":"2017-03-03T20:13:07.200Z","modified":"2017-03-27T17:49:08.114Z","name":"lucy + dev00","description":"","kind":"vmware","cloud":true,"host":"10.8.96.135","username":"MiqAnsibleUser@vsphere.local","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":7,"type":"credential","url":"/api/v1/credentials/7/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/3/","owner_teams":"/api/v1/credentials/7/owner_teams/","owner_users":"/api/v1/credentials/7/owner_users/","activity_stream":"/api/v1/credentials/7/activity_stream/","access_list":"/api/v1/credentials/7/access_list/","object_roles":"/api/v1/credentials/7/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":3,"name":"ACME + Corp","description":"Which belongs to goern"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":112,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":114,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":113,"name":"Read"}},"owners":[]},"created":"2017-01-30T11:07:37.190Z","modified":"2017-01-30T11:07:37.269Z","name":"syseng-e2e-vcenter6","description":"This + is a vCenter","kind":"vmware","cloud":true,"host":"vcsa6.vcenter.e2e.bos.redhat.com","username":"administrator@vsphere.local","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""}]}' http_version: - recorded_at: Thu, 09 Feb 2017 09:38:08 GMT + recorded_at: Mon, 14 Aug 2017 20:36:39 GMT recorded_with: VCR 3.0.3 diff --git a/spec/vcr_cassettes/manageiq/providers/ansible_tower/automation_manager/refresher_configuration_script_sources.yml b/spec/vcr_cassettes/manageiq/providers/ansible_tower/automation_manager/refresher_configuration_script_sources.yml deleted file mode 100644 index d23ec54eb63..00000000000 --- a/spec/vcr_cassettes/manageiq/providers/ansible_tower/automation_manager/refresher_configuration_script_sources.yml +++ /dev/null @@ -1,473 +0,0 @@ ---- -http_interactions: -- request: - method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Faraday v0.9.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 301 - message: MOVED PERMANENTLY - headers: - Date: - - Tue, 07 Feb 2017 11:41:14 GMT - Server: - - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 - Location: - - https://dev-ansible-tower3.example.com/api/v1/projects/ - Content-Length: - - '0' - Content-Type: - - text/html; charset=utf-8 - body: - encoding: UTF-8 - string: '' - http_version: - recorded_at: Tue, 07 Feb 2017 10:41:16 GMT -- request: - method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/ - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Faraday v0.9.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Tue, 07 Feb 2017 11:41:15 GMT - Server: - - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 - Vary: - - Accept,Cookie - Allow: - - GET, POST, HEAD, OPTIONS - X-Api-Time: - - 0.114s - Content-Length: - - '14223' - Content-Type: - - application/json - body: - encoding: UTF-8 - string: '{"count":6,"next":null,"previous":null,"results":[{"id":4,"type":"project","url":"/api/v1/projects/4/","related":{"created_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/104/","notification_templates_error":"/api/v1/projects/4/notification_templates_error/","notification_templates_success":"/api/v1/projects/4/notification_templates_success/","object_roles":"/api/v1/projects/4/object_roles/","notification_templates_any":"/api/v1/projects/4/notification_templates_any/","project_updates":"/api/v1/projects/4/project_updates/","update":"/api/v1/projects/4/update/","access_list":"/api/v1/projects/4/access_list/","playbooks":"/api/v1/projects/4/playbooks/","schedules":"/api/v1/projects/4/schedules/","teams":"/api/v1/projects/4/teams/","activity_stream":"/api/v1/projects/4/activity_stream/","organization":"/api/v1/organizations/1/","last_update":"/api/v1/project_updates/104/"},"summary_fields":{"last_job":{"id":104,"name":"Demo - Project","description":"A great demo","finished":"2017-02-06T15:07:07.184Z","status":"successful","failed":false},"last_update":{"id":104,"name":"Demo - Project","description":"A great demo","status":"successful","failed":false},"organization":{"id":1,"name":"Default","description":""},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can - manage all aspects of the project","id":8,"name":"Admin"},"use_role":{"description":"Can - use the project in a job template","id":10,"name":"Use"},"update_role":{"description":"May - update project or inventory or group using the configured source update system","id":11,"name":"Update"},"read_role":{"description":"May - view settings for the project","id":9,"name":"Read"}}},"created":"2016-08-02T17:57:02.914Z","modified":"2017-02-06T10:54:17.047Z","name":"Demo - Project","description":"A great demo","local_path":"_4__demo_project","scm_type":"git","scm_url":"https://github.com/ansible/ansible-tower-samples","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-02-06T15:07:07.184032Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","organization":1,"scm_delete_on_next_update":false,"scm_update_on_launch":true,"scm_update_cache_timeout":0,"last_update_failed":false,"last_updated":"2017-02-06T15:07:07.184032Z"},{"id":29,"type":"project","url":"/api/v1/projects/29/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/25/","notification_templates_error":"/api/v1/projects/29/notification_templates_error/","notification_templates_success":"/api/v1/projects/29/notification_templates_success/","object_roles":"/api/v1/projects/29/object_roles/","notification_templates_any":"/api/v1/projects/29/notification_templates_any/","project_updates":"/api/v1/projects/29/project_updates/","update":"/api/v1/projects/29/update/","access_list":"/api/v1/projects/29/access_list/","playbooks":"/api/v1/projects/29/playbooks/","schedules":"/api/v1/projects/29/schedules/","teams":"/api/v1/projects/29/teams/","activity_stream":"/api/v1/projects/29/activity_stream/","organization":"/api/v1/organizations/1/","last_update":"/api/v1/project_updates/25/"},"summary_fields":{"last_job":{"id":25,"name":"lg-project","description":"lg_project","finished":"2016-09-13T21:19:27.503Z","status":"successful","failed":false},"last_update":{"id":25,"name":"lg-project","description":"lg_project","status":"successful","failed":false},"organization":{"id":1,"name":"Default","description":""},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can - manage all aspects of the project","id":34,"name":"Admin"},"use_role":{"description":"Can - use the project in a job template","id":36,"name":"Use"},"update_role":{"description":"May - update project or inventory or group using the configured source update system","id":37,"name":"Update"},"read_role":{"description":"May - view settings for the project","id":35,"name":"Read"}}},"created":"2016-09-13T21:19:22.328Z","modified":"2016-09-13T21:22:39.402Z","name":"lg-project","description":"lg_project","local_path":"_29__lg_project","scm_type":"git","scm_url":"https://github.com/ansible/ansible-examples.git","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2016-09-13T21:19:27.503464Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","organization":1,"scm_delete_on_next_update":false,"scm_update_on_launch":false,"scm_update_cache_timeout":0,"last_update_failed":false,"last_updated":"2016-09-13T21:19:27.503464Z"},{"id":35,"type":"project","url":"/api/v1/projects/35/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","credential":"/api/v1/credentials/3/","last_job":"/api/v1/project_updates/85/","notification_templates_error":"/api/v1/projects/35/notification_templates_error/","notification_templates_success":"/api/v1/projects/35/notification_templates_success/","object_roles":"/api/v1/projects/35/object_roles/","notification_templates_any":"/api/v1/projects/35/notification_templates_any/","project_updates":"/api/v1/projects/35/project_updates/","update":"/api/v1/projects/35/update/","access_list":"/api/v1/projects/35/access_list/","playbooks":"/api/v1/projects/35/playbooks/","schedules":"/api/v1/projects/35/schedules/","teams":"/api/v1/projects/35/teams/","activity_stream":"/api/v1/projects/35/activity_stream/","organization":"/api/v1/organizations/1/","last_update":"/api/v1/project_updates/85/"},"summary_fields":{"last_job":{"id":85,"name":"DB-Github","description":"DB-Playbooks","finished":"2017-01-09T16:12:56.801Z","status":"successful","failed":false},"last_update":{"id":85,"name":"DB-Github","description":"DB-Playbooks","status":"successful","failed":false},"credential":{"id":3,"name":"db-github","description":"db-github","kind":"scm","cloud":false},"organization":{"id":1,"name":"Default","description":""},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can - manage all aspects of the project","id":67,"name":"Admin"},"use_role":{"description":"Can - use the project in a job template","id":69,"name":"Use"},"update_role":{"description":"May - update project or inventory or group using the configured source update system","id":70,"name":"Update"},"read_role":{"description":"May - view settings for the project","id":68,"name":"Read"}}},"created":"2017-01-09T16:11:19.711Z","modified":"2017-01-18T22:36:12.573Z","name":"DB_Github","description":"DB - Playbooks","local_path":"_35__db_github","scm_type":"git","scm_url":"https://github.com/syncrou/playbooks","scm_branch":"master","scm_clean":false,"scm_delete_on_update":false,"credential":3,"last_job_run":"2017-01-09T16:12:56.801413Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","organization":1,"scm_delete_on_next_update":false,"scm_update_on_launch":true,"scm_update_cache_timeout":60,"last_update_failed":false,"last_updated":"2017-01-09T16:12:56.801413Z"},{"id":36,"type":"project","url":"/api/v1/projects/36/","related":{"created_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/88/","notification_templates_error":"/api/v1/projects/36/notification_templates_error/","notification_templates_success":"/api/v1/projects/36/notification_templates_success/","object_roles":"/api/v1/projects/36/object_roles/","notification_templates_any":"/api/v1/projects/36/notification_templates_any/","project_updates":"/api/v1/projects/36/project_updates/","update":"/api/v1/projects/36/update/","access_list":"/api/v1/projects/36/access_list/","playbooks":"/api/v1/projects/36/playbooks/","schedules":"/api/v1/projects/36/schedules/","teams":"/api/v1/projects/36/teams/","activity_stream":"/api/v1/projects/36/activity_stream/","organization":"/api/v1/organizations/2/","last_update":"/api/v1/project_updates/88/"},"summary_fields":{"last_job":{"id":88,"name":"jwong-org2","description":"","finished":"2017-01-09T22:30:24.403Z","status":"successful","failed":false},"last_update":{"id":88,"name":"jwong-org2","description":"","status":"successful","failed":false},"organization":{"id":2,"name":"Test - Org","description":"For tests"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can - manage all aspects of the project","id":78,"name":"Admin"},"use_role":{"description":"Can - use the project in a job template","id":80,"name":"Use"},"update_role":{"description":"May - update project or inventory or group using the configured source update system","id":81,"name":"Update"},"read_role":{"description":"May - view settings for the project","id":79,"name":"Read"}}},"created":"2017-01-09T20:52:37.728Z","modified":"2017-01-09T20:52:43.453Z","name":"jwong-org2","description":"","local_path":"_36__jwong_org2","scm_type":"git","scm_url":"https://github.com/ManageIQ/manageiq","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-01-09T22:30:24.403065Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","organization":2,"scm_delete_on_next_update":false,"scm_update_on_launch":false,"scm_update_cache_timeout":0,"last_update_failed":false,"last_updated":"2017-01-09T22:30:24.403065Z"},{"id":37,"type":"project","url":"/api/v1/projects/37/","related":{"created_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/87/","notification_templates_error":"/api/v1/projects/37/notification_templates_error/","notification_templates_success":"/api/v1/projects/37/notification_templates_success/","object_roles":"/api/v1/projects/37/object_roles/","notification_templates_any":"/api/v1/projects/37/notification_templates_any/","project_updates":"/api/v1/projects/37/project_updates/","update":"/api/v1/projects/37/update/","access_list":"/api/v1/projects/37/access_list/","playbooks":"/api/v1/projects/37/playbooks/","schedules":"/api/v1/projects/37/schedules/","teams":"/api/v1/projects/37/teams/","activity_stream":"/api/v1/projects/37/activity_stream/","organization":"/api/v1/organizations/2/","last_update":"/api/v1/project_updates/87/"},"summary_fields":{"last_job":{"id":87,"name":"Test - Project","description":"","finished":"2017-01-09T20:53:07.520Z","status":"successful","failed":false},"last_update":{"id":87,"name":"Test - Project","description":"","status":"successful","failed":false},"organization":{"id":2,"name":"Test - Org","description":"For tests"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can - manage all aspects of the project","id":82,"name":"Admin"},"use_role":{"description":"Can - use the project in a job template","id":84,"name":"Use"},"update_role":{"description":"May - update project or inventory or group using the configured source update system","id":85,"name":"Update"},"read_role":{"description":"May - view settings for the project","id":83,"name":"Read"}}},"created":"2017-01-09T20:52:53.974Z","modified":"2017-01-09T20:52:54.110Z","name":"Test - Project","description":"","local_path":"_37__test_project","scm_type":"git","scm_url":"https://github.com/ansible/ansible-tower-samples","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-01-09T20:53:07.520250Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","organization":2,"scm_delete_on_next_update":false,"scm_update_on_launch":true,"scm_update_cache_timeout":0,"last_update_failed":false,"last_updated":"2017-01-09T20:53:07.520250Z"},{"id":40,"type":"project","url":"/api/v1/projects/40/","related":{"created_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/99/","notification_templates_error":"/api/v1/projects/40/notification_templates_error/","notification_templates_success":"/api/v1/projects/40/notification_templates_success/","object_roles":"/api/v1/projects/40/object_roles/","notification_templates_any":"/api/v1/projects/40/notification_templates_any/","project_updates":"/api/v1/projects/40/project_updates/","update":"/api/v1/projects/40/update/","access_list":"/api/v1/projects/40/access_list/","playbooks":"/api/v1/projects/40/playbooks/","schedules":"/api/v1/projects/40/schedules/","teams":"/api/v1/projects/40/teams/","activity_stream":"/api/v1/projects/40/activity_stream/","organization":"/api/v1/organizations/3/","last_update":"/api/v1/project_updates/99/"},"summary_fields":{"last_job":{"id":99,"name":"RH-labs","description":"Red - Hat innovation Labs","finished":"2017-01-30T11:29:33.684Z","status":"successful","failed":false},"last_update":{"id":99,"name":"RH-labs","description":"Red - Hat innovation Labs","status":"successful","failed":false},"organization":{"id":3,"name":"ACME - Corp","description":"Which belongs to goern"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can - manage all aspects of the project","id":115,"name":"Admin"},"use_role":{"description":"Can - use the project in a job template","id":117,"name":"Use"},"update_role":{"description":"May - update project or inventory or group using the configured source update system","id":118,"name":"Update"},"read_role":{"description":"May - view settings for the project","id":116,"name":"Read"}}},"created":"2017-01-30T11:14:00.785Z","modified":"2017-01-30T11:14:00.911Z","name":"RH-labs","description":"Red - Hat innovation Labs","local_path":"_40__rh_labs","scm_type":"git","scm_url":"https://github.com/goern/artifactory-on-openshift","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-01-30T11:29:33.684145Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","organization":3,"scm_delete_on_next_update":false,"scm_update_on_launch":false,"scm_update_cache_timeout":0,"last_update_failed":false,"last_updated":"2017-01-30T11:29:33.684145Z"}]}' - http_version: - recorded_at: Tue, 07 Feb 2017 10:41:17 GMT -- request: - method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/4/playbooks/ - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Faraday v0.9.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Tue, 07 Feb 2017 11:41:16 GMT - Server: - - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 - Vary: - - Accept,Cookie - Allow: - - GET, HEAD, OPTIONS - X-Api-Time: - - 0.031s - Content-Length: - - '19' - Content-Type: - - application/json - body: - encoding: UTF-8 - string: '["hello_world.yml"]' - http_version: - recorded_at: Tue, 07 Feb 2017 10:41:18 GMT -- request: - method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/29/playbooks/ - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Faraday v0.9.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Tue, 07 Feb 2017 11:41:16 GMT - Server: - - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 - Vary: - - Accept,Cookie - Allow: - - GET, HEAD, OPTIONS - X-Api-Time: - - 0.045s - Content-Length: - - '2050' - Content-Type: - - application/json - body: - encoding: UTF-8 - string: '["jboss-standalone/demo-aws-launch.yml","jboss-standalone/deploy-application.yml","jboss-standalone/site.yml","lamp_haproxy/aws/demo-aws-launch.yml","lamp_haproxy/aws/rolling_update.yml","lamp_haproxy/aws/site.yml","lamp_haproxy/provision.yml","lamp_haproxy/rolling_update.yml","lamp_haproxy/site.yml","lamp_simple/site.yml","lamp_simple_rhel7/site.yml","language_features/ansible_pull.yml","language_features/batch_size_control.yml","language_features/cloudformation.yaml","language_features/complex_args.yml","language_features/conditionals_part1.yml","language_features/conditionals_part2.yml","language_features/custom_filters.yml","language_features/delegation.yml","language_features/environment.yml","language_features/eucalyptus-ec2.yml","language_features/file_secontext.yml","language_features/get_url.yml","language_features/group_by.yml","language_features/group_commands.yml","language_features/intermediate_example.yml","language_features/intro_example.yml","language_features/loop_nested.yml","language_features/loop_plugins.yml","language_features/loop_with_items.yml","language_features/mysql.yml","language_features/nested_playbooks.yml","language_features/netscaler.yml","language_features/postgresql.yml","language_features/prompts.yml","language_features/rabbitmq.yml","language_features/register_logic.yml","language_features/roletest.yml","language_features/roletest2.yml","language_features/selective_file_sources.yml","language_features/tags.yml","language_features/upgraded_vars.yml","language_features/user_commands.yml","language_features/zfs.yml","mongodb/playbooks/testsharding.yml","mongodb/site.yml","tomcat-memcached-failover/site.yml","tomcat-standalone/site.yml","windows/create-user.yml","windows/deploy-site.yml","windows/enable-iis.yml","windows/install-msi.yml","windows/ping.yml","windows/run-powershell.yml","windows/test.yml","windows/wamp_haproxy/demo-aws-wamp-launch.yml","windows/wamp_haproxy/rolling_update.yml","windows/wamp_haproxy/site.yml","wordpress-nginx/site.yml","wordpress-nginx_rhel7/site.yml"]' - http_version: - recorded_at: Tue, 07 Feb 2017 10:41:18 GMT -- request: - method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/35/playbooks/ - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Faraday v0.9.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Tue, 07 Feb 2017 11:41:17 GMT - Server: - - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 - Vary: - - Accept,Cookie - Allow: - - GET, HEAD, OPTIONS - X-Api-Time: - - 0.032s - Content-Length: - - '131' - Content-Type: - - application/json - body: - encoding: UTF-8 - string: '["create_ec2.yml","dump_db.yml","general_state_ec2.yml","pkginfo.yml","start_ec2.yml","stop_ec2.yml","tag_old_nodes.yml","yum.yml"]' - http_version: - recorded_at: Tue, 07 Feb 2017 10:41:19 GMT -- request: - method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/36/playbooks/ - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Faraday v0.9.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Tue, 07 Feb 2017 11:41:17 GMT - Server: - - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 - Vary: - - Accept,Cookie - Allow: - - GET, HEAD, OPTIONS - X-Api-Time: - - 1.991s - Content-Length: - - '22984' - Content-Type: - - application/json - body: - encoding: UTF-8 - string: '["db/schema.yml","locale/en.yml","product/alerts/rss/dev_vms.yml","product/alerts/rss/lifecycle_events.yml","product/alerts/rss/microsoft_vms.yml","product/alerts/rss/newest_vms.yml","product/alerts/rss/prod_vms.yml","product/alerts/rss/test_vms.yml","product/alerts/rss/vmware_vms.yml","product/chargeback/chargeback_vm_monthly.yaml","product/charts/miq_reports/ontap_logical_disk.yaml","product/charts/miq_reports/vim_perf_daily.yaml","product/charts/miq_reports/vim_perf_daily_cloud.yaml","product/charts/miq_reports/vim_perf_daily_middleware_datasource.yaml","product/charts/miq_reports/vim_perf_daily_middleware_messaging_jms_queue.yaml","product/charts/miq_reports/vim_perf_daily_middleware_messaging_jms_topic.yaml","product/charts/miq_reports/vim_perf_daily_middleware_server.yaml","product/charts/miq_reports/vim_perf_hourly.yaml","product/charts/miq_reports/vim_perf_hourly_cloud.yaml","product/charts/miq_reports/vim_perf_hourly_middleware_datasource.yaml","product/charts/miq_reports/vim_perf_hourly_middleware_messaging_jms_queue.yaml","product/charts/miq_reports/vim_perf_hourly_middleware_messaging_jms_topic.yaml","product/charts/miq_reports/vim_perf_hourly_middleware_server.yaml","product/charts/miq_reports/vim_perf_planning.yaml","product/charts/miq_reports/vim_perf_realtime.yaml","product/charts/miq_reports/vim_perf_realtime_middleware_datasource.yaml","product/charts/miq_reports/vim_perf_realtime_middleware_messaging_jms_queue.yaml","product/charts/miq_reports/vim_perf_realtime_middleware_messaging_jms_topic.yaml","product/charts/miq_reports/vim_perf_realtime_middleware_server.yaml","product/charts/miq_reports/vim_perf_summ_daily.yaml","product/charts/miq_reports/vim_perf_tag_daily.yaml","product/charts/miq_reports/vim_perf_tag_hourly.yaml","product/charts/miq_reports/vim_perf_topday.yaml","product/charts/miq_reports/vim_perf_tophour.yaml","product/charts/miq_reports/vim_perf_util_4_ts.yaml","product/charts/miq_reports/vim_perf_util_daily.yaml","product/charts/miq_reports/vmdb_database.yaml","product/charts/miq_reports/vmdb_table.yaml","product/compare/ems_clusters.yaml","product/compare/hosts.yaml","product/compare/vms.yaml","product/reports/100_Configuration - Management - Virtual Machines/005_VMs with Free Space _ 50% by Department.yaml","product/reports/100_Configuration - Management - Virtual Machines/006_VMs w_Free Space _ 75% by Function.yaml","product/reports/100_Configuration - Management - Virtual Machines/007_VMs w_Free Space _ 75% by LOB.yaml","product/reports/100_Configuration - Management - Virtual Machines/009_VM Disk Usage.yaml","product/reports/100_Configuration - Management - Virtual Machines/010_VMs_ Hardware.yaml","product/reports/100_Configuration - Management - Virtual Machines/020_Vendor and Type.yaml","product/reports/100_Configuration - Management - Virtual Machines/022_Vendor and Guest OS.yaml","product/reports/100_Configuration - Management - Virtual Machines/025_Location and Size.yaml","product/reports/100_Configuration - Management - Virtual Machines/026_VMs_ UUIDs.yaml","product/reports/100_Configuration - Management - Virtual Machines/027_VMs_ with no UUID.yaml","product/reports/100_Configuration - Management - Virtual Machines/028_VMs with Volume Free Space -= 20%.yaml","product/reports/100_Configuration - Management - Virtual Machines/029_VMs with Volume Free Space -= 80%.yaml","product/reports/100_Configuration - Management - Virtual Machines/030_by MAC Address.yaml","product/reports/100_Configuration - Management - Virtual Machines/031_Unregistered VMs.yaml","product/reports/100_Configuration - Management - Virtual Machines/032_Orphaned VMs.yaml","product/reports/100_Configuration - Management - Virtual Machines/036_Snapshot Summary.yaml","product/reports/100_Configuration - Management - Virtual Machines/050_User Accounts Windows .yaml","product/reports/100_Configuration - Management - Virtual Machines/051_User Accounts Linux.yaml","product/reports/100_Configuration - Management - Virtual Machines/052_Account Groups Windows .yaml","product/reports/100_Configuration - Management - Virtual Machines/053_Account Groups Linux.yaml","product/reports/100_Configuration - Management - Virtual Machines/059_Guest OS Information (any OS).yaml","product/reports/100_Configuration - Management - Virtual Machines/060_Guest OS Information - Windows.yaml","product/reports/100_Configuration - Management - Virtual Machines/062_Guest OS Information - Linux.yaml","product/reports/100_Configuration - Management - Virtual Machines/063_Guest OS Password Information.yaml","product/reports/100_Configuration - Management - Virtual Machines/064_Guest OS HKLM Registry Information.yaml","product/reports/110_Configuration - Management - Hosts/010_Summary.yaml","product/reports/110_Configuration Management - - Hosts/011_Host Summary with VM info.yaml","product/reports/110_Configuration - Management - Hosts/012_Virtual Infrastructure Platforms.yaml","product/reports/110_Configuration - Management - Hosts/015_Host - ESX Services.yaml","product/reports/110_Configuration - Management - Hosts/016_Host - ESX Service Console Packages.yaml","product/reports/110_Configuration - Management - Hosts/020_Date Brought under Management.yaml","product/reports/110_Configuration - Management - Hosts/030_Hardware.yaml","product/reports/110_Configuration Management - - Hosts/040_Summary for VMs.yaml","product/reports/110_Configuration Management - - Hosts/050_Patches.yaml","product/reports/110_Configuration Management - - Hosts/060_VM Relationships.yaml","product/reports/110_Configuration Management - - Hosts/070_Storage Adapters.yaml","product/reports/110_Configuration Management - - Hosts/080_Network information.yaml","product/reports/110_Configuration Management - - Hosts/090_vLANs and vSwitches.yaml","product/reports/120_Configuration Management - - Providers/010_Summary.yaml","product/reports/120_Configuration Management - - Providers/020_Host Relationships.yaml","product/reports/120_Configuration - Management - Providers/030_VM Relationships.yaml","product/reports/120_Configuration - Management - Providers/040_Monthly Host Count per Provider.yaml","product/reports/120_Configuration - Management - Providers/050_Monthly Vm Count per Provider.yaml","product/reports/130_Configuration - Management - Clusters/010_Summary.yaml","product/reports/130_Configuration - Management - Clusters/020_Hosts Affinity.yaml","product/reports/130_Configuration - Management - Clusters/030_VM Affinity with Power State.yaml","product/reports/130_Configuration - Management - Clusters/040_Cluster Resources.yaml","product/reports/140_Configuration - Management - Resource Pools/010_Summary.yaml","product/reports/150_Configuration - Management - Storage/010_Summary.yaml","product/reports/150_Configuration - Management - Storage/020_Summary for VMs.yaml","product/reports/150_Configuration - Management - Storage/030_Summary for Hosts.yaml","product/reports/150_Configuration - Management - Storage/040_LUN Information.yaml","product/reports/160_Configuration - Management - VM Folders/010_Folders_ VM Relationships.yaml","product/reports/170_Configuration - Management - Containers/010_Nodes by Capacity.yaml","product/reports/170_Configuration - Management - Containers/020_Nodes by CPU Usage.yaml","product/reports/170_Configuration - Management - Containers/030_Nodes by Memory Usage.yaml","product/reports/170_Configuration - Management - Containers/040_Recently Discovered Container Groups.yaml","product/reports/170_Configuration - Management - Containers/050_Number of Nodes per CPU Cores.yaml","product/reports/170_Configuration - Management - Containers/060_Container Groups per Ready Status.yaml","product/reports/170_Configuration - Management - Containers/070_Projects by Pod Number.yaml","product/reports/170_Configuration - Management - Containers/080_Projects by CPU Usage.yaml","product/reports/170_Configuration - Management - Containers/090_Projects by Memory Usage.yaml","product/reports/170_Configuration - Management - Containers/100_Pod counts For Container Images by Project.yaml","product/reports/170_Configuration - Management - Containers/110_Number of Images per Node.yaml","product/reports/300_Migration - Readiness - Virtual Machines/010_Summary - VMs migration ready.yaml","product/reports/300_Migration - Readiness - Virtual Machines/011_Summary - VMs NOT migration ready.yaml","product/reports/300_Migration - Readiness - Virtual Machines/020_Detailed - VMs migration ready.yaml","product/reports/300_Migration - Readiness - Virtual Machines/021_Detailed - VMs NOT migration ready.yaml","product/reports/400_Operations- - Virtual Machines/010_Registered VMs by Free Space.yaml","product/reports/400_Operations- - Virtual Machines/015_Registered Free Space _35%.yaml","product/reports/400_Operations- - Virtual Machines/016_Unregistered Free Space _35%.yaml","product/reports/400_Operations- - Virtual Machines/020_Online VMs.yaml","product/reports/400_Operations- Virtual - Machines/022_VMs not Powered On.yaml","product/reports/400_Operations- Virtual - Machines/040_VMs_ Offline VMs not yet Scanned.yaml","product/reports/400_Operations- - Virtual Machines/045_VMs_ Offline VMs with Snapshot.yaml","product/reports/400_Operations- - Virtual Machines/050_VMs without VMware tools.yaml","product/reports/400_Operations- - Virtual Machines/055_VMs with old VMware tools.yaml","product/reports/400_Operations- - Virtual Machines/060_VMware Tools Versions.yaml","product/reports/410_Operations - - EVM/025_EVM Snapshots.yaml","product/reports/410_Operations - EVM/026_Consolidate - Helper Snapshots.yaml","product/reports/410_Operations - EVM/030_EVM Server_ - UserID Usage Report.yaml","product/reports/410_Operations - EVM/032_EVM Server_ - UserIDs Never Used.yaml","product/reports/420_Operations - Clusters/010_Cluster - - DRS migrations.yaml","product/reports/421_Operations - Events/VC Snapshot - Events by User.yaml","product/reports/425_VM Sprawl - Candidates/052_VMs with - Volume Free Space -= 75%.yaml","product/reports/425_VM Sprawl - Candidates/053_VMs - with disk free space _ 5GB.yaml","product/reports/425_VM Sprawl - Candidates/054_VM - Uptime - longest running.yaml","product/reports/425_VM Sprawl - Candidates/055_VMs - Powered Off registered to a Host.yaml","product/reports/425_VM Sprawl - Candidates/056_VMs - pending Retirement.yaml","product/reports/425_VM Sprawl - Candidates/057_VMs - that are Retired.yaml","product/reports/425_VM Sprawl - Candidates/058_VMs - with invalid allocation of RAM.yaml","product/reports/425_VM Sprawl - Candidates/059_Summary - of VM Create and Deletes.yaml","product/reports/450_Relationships - Virtual - Machines, Folders, Clusters/010_VMs Relationships.yaml","product/reports/450_Relationships - - Virtual Machines, Folders, Clusters/020_VM Folders relationships.yaml","product/reports/450_Relationships - - Virtual Machines, Folders, Clusters/030_Clusters Relationships.yaml","product/reports/500_Events - - Operations/110_vm_operational_vm_power.yaml","product/reports/500_Events - - Operations/120_Events_for_VM_prod_webserver.yaml","product/reports/500_Events - - Operations/130_Reconfigure_Events_by_Department.yaml","product/reports/500_Events - - Operations/140_VC_Events_initiated_by_username_EVM.yaml","product/reports/520_Events - - Policy/110_Policy Events.yaml","product/reports/520_Events - Policy/120_Policy - Events2.yaml","product/reports/650_Performance by Asset Type - Virtual Machines/050_Host - CPU Usage per VM.yaml","product/reports/650_Performance by Asset Type - Virtual - Machines/065_VM Performance - daily over last week.yaml","product/reports/650_Performance - by Asset Type - Virtual Machines/100_VMs_with_Max_Daily_Mem_ 50%_past_mo.yaml","product/reports/650_Performance - by Asset Type - Virtual Machines/110_VMs_with_Avg_Daily_Mem_ 50%_past_mo.yaml","product/reports/650_Performance - by Asset Type - Virtual Machines/120_VMs_with_Avg_Daily_CPU_ 85%_past_mo.yaml","product/reports/650_Performance - by Asset Type - Virtual Machines/130_VMs_with_Max_Daily_CPU_ 85%_past_mo .yaml","product/reports/650_Performance - by Asset Type - Virtual Machines/140_VMs with Avg Daily Mem _ 95%_past_mo - .yaml","product/reports/650_Performance by Asset Type - Virtual Machines/150_All - Departments with Performance.yaml","product/reports/650_Performance by Asset - Type - Virtual Machines/160_Top CPU Consumers weekly.yaml","product/reports/650_Performance - by Asset Type - Virtual Machines/170_Top Memory Consumers weekly.yaml","product/reports/650_Performance - by Asset Type - Virtual Machines/180_Top Storage Consumers.yaml","product/reports/650_Performance - by Asset Type - Virtual Machines/190_VM Resource Utilization.yaml","product/reports/650_Performance - by Asset Type - Virtual Machines/200_Weekly Utilization Overview.yaml","product/reports/660_Performance - by Asset Type - Clusters/110_Cluster_Memory_and_CPU_Usage_7_days.yaml","product/reports/670_Performance - by Asset Type - Middleware Servers/110_JVM Heap Usage - daily over last week.yaml","product/reports/670_Performance - by Asset Type - Middleware Servers/120_JVM Non Heap Usage - daily over last - week.yaml","product/reports/670_Performance by Asset Type - Middleware Servers/130_JVM - Garbage Collection - daily over last week.yaml","product/reports/670_Performance - by Asset Type - Middleware Servers/140_Transactions - every minute over last - hour.yaml","product/reports/670_Performance by Asset Type - Middleware Servers/150_Transactions - - hourly over last day.yaml","product/reports/680_Performance by Asset Type - - Middleware Datasources/110_Datasource Pool - every minute for the last hour.yaml","product/reports/680_Performance - by Asset Type - Middleware Datasources/120_Datasource Pool - hourly for the - last day.yaml","product/reports/700_Running Processes - Virtual Machines/110_Processes_for_prod_ - VMs_sort_by_CPU_Time.yaml","product/reports/750_Trending - Clusters/050_Cluster - memory trend 6 months.yaml","product/reports/750_Trending - Clusters/060_Cluster - CPU Trends last week.yaml","product/reports/750_Trending - Clusters/070_Cluster - IO Trends last week.yaml","product/reports/750_Trending - Clusters/080_Cluster - Memory Trends last week.yaml","product/reports/760_Trending - Storage/110_Datastore_Capacity_Trend_over_6 - mos.yaml","product/reports/770_Trending - Hosts/110_Host_Peak_CPU_Used_Trend_over_6_mos.yaml","product/reports/770_Trending - - Hosts/110_Host_Peak_Memory_Used_Trends_for_6_Mos.yaml","product/reports/770_Trending - - Hosts/120_Host CPU Trends last week.yaml","product/reports/770_Trending - - Hosts/130_Host IO Trends last week.yaml","product/reports/770_Trending - - Hosts/140_Host Memory Trends last week.yaml","product/reports/780_Tenants - - Tenant Quotas/001_Tenant Quotas.yaml","product/reports/900_Provisioning - - Activity Reports/110_Provisioning Activity - by Approver.yaml","product/reports/900_Provisioning - - Activity Reports/120_Provisioning Activity - by Datastore.yaml","product/reports/900_Provisioning - - Activity Reports/130_Provisioning Activity - by Requester.yaml","product/reports/900_Provisioning - - Activity Reports/140_Provisioning Activity - by VM.yaml","product/timelines/miq_reports/tl_bottleneck_events.yaml","product/timelines/miq_reports/tl_events_daily.yaml","product/timelines/miq_reports/tl_events_hourly.yaml","product/timelines/miq_reports/tl_policy_events_daily.yaml","product/timelines/miq_reports/tl_policy_events_hourly.yaml","product/views/Account-groups.yaml","product/views/Account-users.yaml","product/views/AdvancedSetting.yaml","product/views/ArbitrationProfile.yaml","product/views/AutomationRequest.yaml","product/views/AvailabilityZone.yaml","product/views/ChargebackRate.yaml","product/views/CimBaseStorageExtent.yaml","product/views/CimStorageExtent.yaml","product/views/CloudNetwork.yaml","product/views/CloudObjectStoreContainer-cloud_object_store_containers.yaml","product/views/CloudObjectStoreContainer.yaml","product/views/CloudObjectStoreObject-cloud_object_store_objects.yaml","product/views/CloudObjectStoreObject.yaml","product/views/CloudService.yaml","product/views/CloudSubnet.yaml","product/views/CloudTenant.yaml","product/views/CloudVolume-based_volumes.yaml","product/views/CloudVolume.yaml","product/views/CloudVolumeBackup-cloud_volume_backups.yaml","product/views/CloudVolumeBackup.yaml","product/views/CloudVolumeSnapshot-cloud_volume_snapshots.yaml","product/views/CloudVolumeSnapshot.yaml","product/views/Condition.yaml","product/views/ConditionSet.yaml","product/views/ConfiguredSystem.yaml","product/views/Container.yaml","product/views/ContainerBuild.yaml","product/views/ContainerGroup.yaml","product/views/ContainerImage.yaml","product/views/ContainerImageRegistry.yaml","product/views/ContainerNode.yaml","product/views/ContainerProject.yaml","product/views/ContainerReplicator.yaml","product/views/ContainerRoute.yaml","product/views/ContainerService.yaml","product/views/ContainerTemplate.yaml","product/views/CustomizationTemplate.yaml","product/views/Dialog.yaml","product/views/ems_block_storage.yaml","product/views/ems_object_storage.yaml","product/views/EmsCluster.yaml","product/views/EventLog-event_logs.yaml","product/views/Filesystem.yaml","product/views/FirewallRule.yaml","product/views/Flavor.yaml","product/views/FloatingIp.yaml","product/views/Group.yaml","product/views/GuestApplication.yaml","product/views/Host.yaml","product/views/HostAggregate.yaml","product/views/InstanceOrImage.yaml","product/views/IsoDatastore.yaml","product/views/Job.yaml","product/views/LdapRegion.yaml","product/views/LoadBalancer.yaml","product/views/ManageIQ_Providers_AnsibleTower_ConfigurationManager.yaml","product/views/ManageIQ_Providers_AnsibleTower_ConfigurationManager_ConfigurationScript.yaml","product/views/ManageIQ_Providers_AnsibleTower_ConfigurationManager_ConfiguredSystem.yaml","product/views/ManageIQ_Providers_AnsibleTower_ConfigurationManager_Job.yaml","product/views/ManageIQ_Providers_CloudManager.yaml","product/views/ManageIQ_Providers_CloudManager_AuthKeyPair.yaml","product/views/ManageIQ_Providers_CloudManager_OrchestrationStack.yaml","product/views/ManageIQ_Providers_CloudManager_Template-all_vms_and_templates.yaml","product/views/ManageIQ_Providers_CloudManager_Template.yaml","product/views/ManageIQ_Providers_CloudManager_Vm-all_vms_and_templates.yaml","product/views/ManageIQ_Providers_CloudManager_Vm-vms.yaml","product/views/ManageIQ_Providers_CloudManager_Vm.yaml","product/views/ManageIQ_Providers_ConfigurationManager.yaml","product/views/ManageIQ_Providers_ContainerManager.yaml","product/views/ManageIQ_Providers_DatawarehouseManager.yaml","product/views/ManageIQ_Providers_Foreman_ConfigurationManager.yaml","product/views/ManageIQ_Providers_Foreman_ConfigurationManager_ConfiguredSystem.yaml","product/views/ManageIQ_Providers_InfraManager.yaml","product/views/ManageIQ_Providers_InfraManager_Template.yaml","product/views/ManageIQ_Providers_InfraManager_Vm.yaml","product/views/ManageIQ_Providers_MiddlewareManager.yaml","product/views/ManageIQ_Providers_NetworkManager.yaml","product/views/ManageIQ_Providers_StorageManager.yaml","product/views/ManageIQ_Providers_Vmware_CloudManager_OrchestrationTemplate.yaml","product/views/MiddlewareDatasource.yaml","product/views/MiddlewareDeployment.yaml","product/views/MiddlewareDomain.yaml","product/views/MiddlewareMessaging.yaml","product/views/MiddlewareServer.yaml","product/views/MiddlewareServerGroup.yaml","product/views/MiqAction.yaml","product/views/MiqActionSet.yaml","product/views/MiqAeClass.yaml","product/views/MiqAeInstance.yaml","product/views/MiqAlert.yaml","product/views/MiqDialog.yaml","product/views/MiqEvent-actions.yaml","product/views/MiqEvent.yaml","product/views/MiqGroup.yaml","product/views/MiqPolicy.yaml","product/views/MiqPolicySet.yaml","product/views/MiqProvision.yaml","product/views/MiqReportResult-all.yaml","product/views/MiqReportResult.yaml","product/views/MiqRequest.yaml","product/views/MiqSchedule.yaml","product/views/MiqServer.yaml","product/views/MiqTask.yaml","product/views/MiqTemplate-all_miq_templates.yaml","product/views/MiqTemplate.yaml","product/views/MiqUserRole.yaml","product/views/MiqWidget-all.yaml","product/views/MiqWidget.yaml","product/views/MiqWorker.yaml","product/views/NetworkPort.yaml","product/views/NetworkRouter.yaml","product/views/OntapFileShare.yaml","product/views/OntapLogicalDisk.yaml","product/views/OntapStorageSystem.yaml","product/views/OntapStorageVolume.yaml","product/views/OpenscapRuleResult.yaml","product/views/OrchestrationStack.yaml","product/views/OrchestrationStackOutput.yaml","product/views/OrchestrationStackParameter.yaml","product/views/OrchestrationStackResource.yaml","product/views/OrchestrationTemplate.yaml","product/views/OrchestrationTemplateAzure.yaml","product/views/OrchestrationTemplateCfn.yaml","product/views/OrchestrationTemplateHot.yaml","product/views/OrchestrationTemplateVnfd.yaml","product/views/OsProcess-processes.yaml","product/views/Patch.yaml","product/views/PersistentVolume.yaml","product/views/Policy.yaml","product/views/PolicySet.yaml","product/views/ProductUpdate.yaml","product/views/PxeImageType.yaml","product/views/PxeServer.yaml","product/views/RegistryItem.yaml","product/views/ResourcePool.yaml","product/views/ScanHistory.yaml","product/views/ScanItemSet.yaml","product/views/SecurityGroup.yaml","product/views/ServerBuild.yaml","product/views/Service.yaml","product/views/ServiceCatalog.yaml","product/views/ServiceTemplate.yaml","product/views/ServiceTemplateCatalog.yaml","product/views/SniaLocalFileSystem.yaml","product/views/Storage.yaml","product/views/StorageCluster.yaml","product/views/StorageFile-debris_files.yaml","product/views/StorageFile-disk_files.yaml","product/views/StorageFile-files.yaml","product/views/StorageFile-snapshot_files.yaml","product/views/StorageFile-vm_misc_files.yaml","product/views/StorageFile-vm_ram_files.yaml","product/views/StorageManager.yaml","product/views/SystemService-filesystem_drivers.yaml","product/views/SystemService-kernel_drivers.yaml","product/views/SystemService-linux_initprocesses.yaml","product/views/SystemService-win32_services.yaml","product/views/SystemService.yaml","product/views/Tenant.yaml","product/views/User.yaml","product/views/Vm-all_vms.yaml","product/views/Vm-VmReconfigureRequest.yaml","product/views/Vm.yaml","product/views/Vm__restricted.yaml","product/views/VmdbDatabaseConnection.yaml","product/views/VmdbDatabaseSetting.yaml","product/views/VmdbIndex.yaml","product/views/VmdbTableEvm.yaml","product/views/VmOrTemplate-all_archived.yaml","product/views/VmOrTemplate-all_orphaned.yaml","product/views/VmOrTemplate-all_vms_and_templates.yaml","product/views/VmOrTemplate.yaml","product/views/Vsc.yaml","spec/migrations/data/20150625220141_fix_serialized_reports_for_rails_four_spec/binary_blob_hash.yaml","spec/migrations/data/20150625220141_fix_serialized_reports_for_rails_four_spec/binary_blob_obj.yaml","spec/migrations/data/20150625220141_fix_serialized_reports_for_rails_four_spec/miq_report_hash.yaml","spec/migrations/data/20150625220141_fix_serialized_reports_for_rails_four_spec/miq_report_obj.yaml","spec/models/rss_feed/data/newest_vms.yml"]' - http_version: - recorded_at: Tue, 07 Feb 2017 10:41:22 GMT -- request: - method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/37/playbooks/ - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Faraday v0.9.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Tue, 07 Feb 2017 11:41:20 GMT - Server: - - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 - Vary: - - Accept,Cookie - Allow: - - GET, HEAD, OPTIONS - X-Api-Time: - - 0.033s - Content-Length: - - '19' - Content-Type: - - application/json - body: - encoding: UTF-8 - string: '["hello_world.yml"]' - http_version: - recorded_at: Tue, 07 Feb 2017 10:41:22 GMT -- request: - method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/projects/40/playbooks/ - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Faraday v0.9.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Tue, 07 Feb 2017 11:41:21 GMT - Server: - - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 - Vary: - - Accept,Cookie - Allow: - - GET, HEAD, OPTIONS - X-Api-Time: - - 0.033s - Content-Length: - - '190' - Content-Type: - - application/json - body: - encoding: UTF-8 - string: '["playbooks/check-service.yaml","playbooks/create-default-repositories.yaml","playbooks/delete-persistentvolumeclaims.yaml","playbooks/deploy-service.yaml","playbooks/undeploy-service.yaml"]' - http_version: - recorded_at: Tue, 07 Feb 2017 10:41:23 GMT -recorded_with: VCR 3.0.3 diff --git a/spec/vcr_cassettes/manageiq/providers/ansible_tower/automation_manager/refresher_credentials.yml b/spec/vcr_cassettes/manageiq/providers/ansible_tower/automation_manager/refresher_credentials.yml deleted file mode 100644 index 3ff29708312..00000000000 --- a/spec/vcr_cassettes/manageiq/providers/ansible_tower/automation_manager/refresher_credentials.yml +++ /dev/null @@ -1,105 +0,0 @@ ---- -http_interactions: -- request: - method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/credentials - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Faraday v0.9.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 301 - message: MOVED PERMANENTLY - headers: - Date: - - Wed, 08 Feb 2017 12:24:06 GMT - Server: - - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 - Location: - - https://dev-ansible-tower3.example.com/api/v1/credentials/ - Content-Length: - - '0' - Content-Type: - - text/html; charset=utf-8 - body: - encoding: UTF-8 - string: '' - http_version: - recorded_at: Wed, 08 Feb 2017 11:24:08 GMT -- request: - method: get - uri: https://testuser:secret@dev-ansible-tower3.example.com/api/v1/credentials/ - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Faraday v0.9.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 08 Feb 2017 12:24:07 GMT - Server: - - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 - Vary: - - Accept,Cookie - Allow: - - GET, POST, HEAD, OPTIONS - X-Api-Time: - - 0.138s - Content-Length: - - '11849' - Content-Type: - - application/json - body: - encoding: UTF-8 - string: '{"count":8,"next":null,"previous":null,"results":[{"id":5,"type":"credential","url":"/api/v1/credentials/5/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/1/","owner_teams":"/api/v1/credentials/5/owner_teams/","owner_users":"/api/v1/credentials/5/owner_users/","activity_stream":"/api/v1/credentials/5/activity_stream/","access_list":"/api/v1/credentials/5/access_list/","object_roles":"/api/v1/credentials/5/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":1,"name":"Default","description":""},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can - manage all aspects of the credential","id":92,"name":"Admin"},"use_role":{"description":"Can - use the credential in a job template","id":94,"name":"Use"},"read_role":{"description":"May - view settings for the credential","id":93,"name":"Read"}},"owners":[]},"created":"2017-01-17T22:13:22.752Z","modified":"2017-01-17T22:13:22.805Z","name":"Demo - Creds 2","description":"test","kind":"net","cloud":false,"host":"","username":"awdd","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":3,"type":"credential","url":"/api/v1/credentials/3/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/1/","owner_teams":"/api/v1/credentials/3/owner_teams/","owner_users":"/api/v1/credentials/3/owner_users/","activity_stream":"/api/v1/credentials/3/activity_stream/","access_list":"/api/v1/credentials/3/access_list/","object_roles":"/api/v1/credentials/3/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":1,"name":"Default","description":""},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can - manage all aspects of the credential","id":71,"name":"Admin"},"use_role":{"description":"Can - use the credential in a job template","id":73,"name":"Use"},"read_role":{"description":"May - view settings for the credential","id":72,"name":"Read"}},"owners":[]},"created":"2017-01-09T16:12:22.945Z","modified":"2017-01-09T16:12:22.994Z","name":"db-github","description":"db-github","kind":"scm","cloud":false,"host":"","username":"syncrou","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":8,"type":"credential","url":"/api/v1/credentials/8/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","owner_teams":"/api/v1/credentials/8/owner_teams/","owner_users":"/api/v1/credentials/8/owner_users/","activity_stream":"/api/v1/credentials/8/activity_stream/","access_list":"/api/v1/credentials/8/access_list/","object_roles":"/api/v1/credentials/8/object_roles/","user":"/api/v1/users/1/"},"summary_fields":{"host":{},"project":{},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can - manage all aspects of the credential","id":152,"name":"Admin"},"use_role":{"description":"Can - use the credential in a job template","id":154,"name":"Use"},"read_role":{"description":"May - view settings for the credential","id":153,"name":"Read"}},"owners":[{"url":"/api/v1/users/1/","description":" - ","type":"user","id":1,"name":"admin"}]},"created":"2017-02-01T19:34:37.462Z","modified":"2017-02-01T19:34:45.377Z","name":"bd-test-change","description":"","kind":"ssh","cloud":false,"host":"","username":"admin","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":6,"type":"credential","url":"/api/v1/credentials/6/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/1/","owner_teams":"/api/v1/credentials/6/owner_teams/","owner_users":"/api/v1/credentials/6/owner_users/","activity_stream":"/api/v1/credentials/6/activity_stream/","access_list":"/api/v1/credentials/6/access_list/","object_roles":"/api/v1/credentials/6/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":1,"name":"Default","description":""},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can - manage all aspects of the credential","id":95,"name":"Admin"},"use_role":{"description":"Can - use the credential in a job template","id":97,"name":"Use"},"read_role":{"description":"May - view settings for the credential","id":96,"name":"Read"}},"owners":[]},"created":"2017-01-24T21:24:48.633Z","modified":"2017-01-24T21:24:48.683Z","name":"db_test","description":"","kind":"ssh","cloud":false,"host":"","username":"","password":"","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":1,"type":"credential","url":"/api/v1/credentials/1/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","owner_teams":"/api/v1/credentials/1/owner_teams/","owner_users":"/api/v1/credentials/1/owner_users/","activity_stream":"/api/v1/credentials/1/activity_stream/","access_list":"/api/v1/credentials/1/access_list/","object_roles":"/api/v1/credentials/1/object_roles/","user":"/api/v1/users/1/"},"summary_fields":{"host":{},"project":{},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can - manage all aspects of the credential","id":12,"name":"Admin"},"use_role":{"description":"Can - use the credential in a job template","id":14,"name":"Use"},"read_role":{"description":"May - view settings for the credential","id":13,"name":"Read"}},"owners":[{"url":"/api/v1/users/1/","description":" - ","type":"user","id":1,"name":"admin"}]},"created":"2016-08-02T17:57:03.019Z","modified":"2016-08-02T17:57:03.109Z","name":"Demo - Credential","description":"","kind":"ssh","cloud":false,"host":"","username":"admin","password":"","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"su","become_username":"root","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":4,"type":"credential","url":"/api/v1/credentials/4/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/1/","owner_teams":"/api/v1/credentials/4/owner_teams/","owner_users":"/api/v1/credentials/4/owner_users/","activity_stream":"/api/v1/credentials/4/activity_stream/","access_list":"/api/v1/credentials/4/access_list/","object_roles":"/api/v1/credentials/4/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":1,"name":"Default","description":""},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can - manage all aspects of the credential","id":86,"name":"Admin"},"use_role":{"description":"Can - use the credential in a job template","id":88,"name":"Use"},"read_role":{"description":"May - view settings for the credential","id":87,"name":"Read"}},"owners":[]},"created":"2017-01-16T15:50:23.815Z","modified":"2017-01-16T15:50:23.865Z","name":"Demo - Creds 2","description":"test","kind":"ssh","cloud":false,"host":"","username":"demo-cred","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"sudo","become_username":"root","become_password":"$encrypted$","vault_password":"$encrypted$","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":2,"type":"credential","url":"/api/v1/credentials/2/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","owner_teams":"/api/v1/credentials/2/owner_teams/","owner_users":"/api/v1/credentials/2/owner_users/","activity_stream":"/api/v1/credentials/2/activity_stream/","access_list":"/api/v1/credentials/2/access_list/","object_roles":"/api/v1/credentials/2/object_roles/","user":"/api/v1/users/1/"},"summary_fields":{"host":{},"project":{},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can - manage all aspects of the credential","id":28,"name":"Admin"},"use_role":{"description":"Can - use the credential in a job template","id":30,"name":"Use"},"read_role":{"description":"May - view settings for the credential","id":29,"name":"Read"}},"owners":[{"url":"/api/v1/users/1/","description":" - ","type":"user","id":1,"name":"admin"}]},"created":"2016-08-30T22:41:59.056Z","modified":"2016-08-31T16:59:02.652Z","name":"dev-vc60","description":"","kind":"vmware","cloud":true,"host":"dev-vc60.cloudforms.lab.eng.rdu2.redhat.com","username":"MiqAnsibleUser@vsphere.local","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":7,"type":"credential","url":"/api/v1/credentials/7/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/3/","owner_teams":"/api/v1/credentials/7/owner_teams/","owner_users":"/api/v1/credentials/7/owner_users/","activity_stream":"/api/v1/credentials/7/activity_stream/","access_list":"/api/v1/credentials/7/access_list/","object_roles":"/api/v1/credentials/7/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":3,"name":"ACME - Corp","description":"Which belongs to goern"},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can - manage all aspects of the credential","id":112,"name":"Admin"},"use_role":{"description":"Can - use the credential in a job template","id":114,"name":"Use"},"read_role":{"description":"May - view settings for the credential","id":113,"name":"Read"}},"owners":[]},"created":"2017-01-30T11:07:37.190Z","modified":"2017-01-30T11:07:37.269Z","name":"syseng-e2e-vcenter6","description":"This - is a vCenter","kind":"vmware","cloud":true,"host":"vcsa6.vcenter.e2e.bos.redhat.com","username":"administrator@vsphere.local","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""}]}' - http_version: - recorded_at: Wed, 08 Feb 2017 11:24:09 GMT -recorded_with: VCR 3.0.3