diff --git a/lib/tasks_private/spec_helper.rake b/lib/tasks_private/spec_helper.rake new file mode 100644 index 00000000..e14d2087 --- /dev/null +++ b/lib/tasks_private/spec_helper.rake @@ -0,0 +1,153 @@ +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 + 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 cloud aws cred + data = {"name" => "hello_aws_cred", "kind" => "aws", "username" => "ABC", "password" => "abc", "organization" => organization['id']} + aws_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 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/support/ansible_shared/automation_manager/refresher.rb b/spec/support/ansible_shared/automation_manager/refresher.rb index 698db0b8..27027c14 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,14 +98,14 @@ 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(130) + expect(automation_manager.configuration_scripts.count).to eq(120) + expect(automation_manager.inventory_groups.count).to eq(29) + expect(automation_manager.configuration_script_sources.count).to eq(32) + expect(automation_manager.configuration_script_payloads.count).to eq(2720) + expect(automation_manager.credentials.count).to eq(47) end def assert_credentials @@ -101,67 +114,68 @@ def assert_credentials :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(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 = 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) 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) 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) 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(32) + 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 => "242", :virtual_instance_ref => "4233080d-7467-de61-76c9-c8307b6e4830", ) expect(expected_configured_system.counterpart).to eq(expected_counterpart_vm) @@ -170,34 +184,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 => "571", :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 => "572", + :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 => "103", :type => "ManageIQ::Providers::AutomationManager::InventoryRootGroup", ) end @@ -205,18 +219,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 cfc7cc6c..f5c722ca 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 @@ -7,20 +7,21 @@ http_interactions: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 301 message: MOVED PERMANENTLY headers: Date: - - Thu, 09 Feb 2017 10:37:42 GMT + - Wed, 21 Jun 2017 19:22:51 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Location: @@ -33,7 +34,7 @@ http_interactions: encoding: UTF-8 string: '' http_version: - recorded_at: Thu, 09 Feb 2017 09:37:43 GMT + recorded_at: Wed, 21 Jun 2017 19:22:51 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/config/ @@ -41,20 +42,21 @@ http_interactions: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 200 message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:42 GMT + - Wed, 21 Jun 2017 19:22: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: @@ -62,17 +64,234 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.217s - Content-Length: - - '9766' + - 0.231s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: ASCII-8BIT string: !binary |- - eyJldWxhIjoiQU5TSUJMRSBUT1dFUiBCWSBSRUQgSEFUIEVORCBVU0VSIExJQ0VOU0UgQUdSRUVNRU5UXG5cblRoaXMgZW5kIHVzZXIgbGljZW5zZSBhZ3JlZW1lbnQgKOKAnEVVTEHigJ0pIGdvdmVybnMgdGhlIHVzZSBvZiB0aGUgQW5zaWJsZSBUb3dlciBzb2Z0d2FyZSBhbmQgYW55IHJlbGF0ZWQgdXBkYXRlcywgdXBncmFkZXMsIHZlcnNpb25zLCBhcHBlYXJhbmNlLCBzdHJ1Y3R1cmUgYW5kIG9yZ2FuaXphdGlvbiAodGhlIOKAnEFuc2libGUgVG93ZXIgU29mdHdhcmXigJ0pLCByZWdhcmRsZXNzIG9mIHRoZSBkZWxpdmVyeSBtZWNoYW5pc20uICBcblxuMS4gIExpY2Vuc2UgR3JhbnQuICBTdWJqZWN0IHRvIHRoZSB0ZXJtcyBvZiB0aGlzIEVVTEEsIFJlZCBIYXQsIEluYy4gYW5kIGl0cyBhZmZpbGlhdGVzICjigJxSZWQgSGF04oCdKSBncmFudCB0byB5b3UgKOKAnFlvdeKAnSkgYSBub24tdHJhbnNmZXJhYmxlLCBub24tZXhjbHVzaXZlLCB3b3JsZHdpZGUsIG5vbi1zdWJsaWNlbnNhYmxlLCBsaW1pdGVkLCByZXZvY2FibGUgbGljZW5zZSB0byB1c2UgdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgZm9yIHRoZSB0ZXJtIG9mIHRoZSBhc3NvY2lhdGVkIFJlZCBIYXQgU29mdHdhcmUgU3Vic2NyaXB0aW9uKHMpIGFuZCBpbiBhIHF1YW50aXR5IGVxdWFsIHRvIHRoZSBudW1iZXIgb2YgUmVkIEhhdCBTb2Z0d2FyZSBTdWJzY3JpcHRpb25zIHB1cmNoYXNlZCBmcm9tIFJlZCBIYXQgZm9yIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlICjigJxMaWNlbnNl4oCdKSwgZWFjaCBhcyBzZXQgZm9ydGggb24gdGhlIGFwcGxpY2FibGUgUmVkIEhhdCBvcmRlcmluZyBkb2N1bWVudC4gIFlvdSBhY3F1aXJlIG9ubHkgdGhlIHJpZ2h0IHRvIHVzZSB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZSBhbmQgZG8gbm90IGFjcXVpcmUgYW55IHJpZ2h0cyBvZiBvd25lcnNoaXAuIFJlZCBIYXQgcmVzZXJ2ZXMgYWxsIHJpZ2h0cyB0byB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZSBub3QgZXhwcmVzc2x5IGdyYW50ZWQgdG8gWW91LiAgVGhpcyBMaWNlbnNlIGdyYW50IHBlcnRhaW5zIHNvbGVseSB0byBZb3VyIHVzZSBvZiB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZSBhbmQgaXMgbm90IGludGVuZGVkIHRvIGxpbWl0IFlvdXIgcmlnaHRzIHVuZGVyLCBvciBncmFudCBZb3UgcmlnaHRzIHRoYXQgc3VwZXJzZWRlLCB0aGUgbGljZW5zZSB0ZXJtcyBvZiBhbnkgc29mdHdhcmUgcGFja2FnZXMgd2hpY2ggbWF5IGJlIG1hZGUgYXZhaWxhYmxlIHdpdGggdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgdGhhdCBhcmUgc3ViamVjdCB0byBhbiBvcGVuIHNvdXJjZSBzb2Z0d2FyZSBsaWNlbnNlLiAgXG4gXG4yLiAgSW50ZWxsZWN0dWFsIFByb3BlcnR5IFJpZ2h0cy4gIFRpdGxlIHRvIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlIGFuZCBlYWNoIGNvbXBvbmVudCwgY29weSBhbmQgbW9kaWZpY2F0aW9uLCBpbmNsdWRpbmcgYWxsIGRlcml2YXRpdmUgd29ya3Mgd2hldGhlciBtYWRlIGJ5IFJlZCBIYXQsIFlvdSBvciBvbiBSZWQgSGF0J3MgYmVoYWxmLCBpbmNsdWRpbmcgdGhvc2UgbWFkZSBhdCBZb3VyIHN1Z2dlc3Rpb24gYW5kIGFsbCBhc3NvY2lhdGVkIGludGVsbGVjdHVhbCBwcm9wZXJ0eSByaWdodHMsIGFyZSBhbmQgc2hhbGwgcmVtYWluIHRoZSBzb2xlIGFuZCBleGNsdXNpdmUgcHJvcGVydHkgb2YgUmVkIEhhdCBhbmQvb3IgaXQgbGljZW5zb3JzLiAgVGhlIExpY2Vuc2UgZG9lcyBub3QgYXV0aG9yaXplIFlvdSAobm9yIG1heSBZb3UgYWxsb3cgYW55IHRoaXJkIHBhcnR5LCBzcGVjaWZpY2FsbHkgbm9uLWVtcGxveWVlcyBvZiBZb3VycykgdG86IChhKSBjb3B5LCBkaXN0cmlidXRlLCByZXByb2R1Y2UsIHVzZSBvciBhbGxvdyB0aGlyZCBwYXJ0eSBhY2Nlc3MgdG8gdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgZXhjZXB0IGFzIGV4cHJlc3NseSBhdXRob3JpemVkIGhlcmV1bmRlcjsgKGIpIGRlY29tcGlsZSwgZGlzYXNzZW1ibGUsIHJldmVyc2UgZW5naW5lZXIsIHRyYW5zbGF0ZSwgbW9kaWZ5LCBjb252ZXJ0IG9yIGFwcGx5IGFueSBwcm9jZWR1cmUgb3IgcHJvY2VzcyB0byB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZSBpbiBvcmRlciB0byBhc2NlcnRhaW4sIGRlcml2ZSwgYW5kL29yIGFwcHJvcHJpYXRlIGZvciBhbnkgcmVhc29uIG9yIHB1cnBvc2UsIGluY2x1ZGluZyB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZSBzb3VyY2UgY29kZSBvciBzb3VyY2UgbGlzdGluZ3Mgb3IgYW55IHRyYWRlIHNlY3JldCBpbmZvcm1hdGlvbiBvciBwcm9jZXNzIGNvbnRhaW5lZCBpbiB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZSAoZXhjZXB0IGFzIHBlcm1pdHRlZCB1bmRlciBhcHBsaWNhYmxlIGxhdyk7IChjKSBleGVjdXRlIG9yIGluY29ycG9yYXRlIG90aGVyIHNvZnR3YXJlIChleGNlcHQgZm9yIGFwcHJvdmVkIHNvZnR3YXJlIGFzIGFwcGVhcnMgaW4gdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgZG9jdW1lbnRhdGlvbiBvciBzcGVjaWZpY2FsbHkgYXBwcm92ZWQgYnkgUmVkIEhhdCBpbiB3cml0aW5nKSBpbnRvIEFuc2libGUgVG93ZXIgU29mdHdhcmUsIG9yIGNyZWF0ZSBhIGRlcml2YXRpdmUgd29yayBvZiBhbnkgcGFydCBvZiB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZTsgKGQpIHJlbW92ZSBhbnkgdHJhZGVtYXJrcywgdHJhZGUgbmFtZXMgb3IgdGl0bGVzLCBjb3B5cmlnaHRzIGxlZ2VuZHMgb3IgYW55IG90aGVyIHByb3ByaWV0YXJ5IG1hcmtpbmcgb24gdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmU7IChlKSBkaXNjbG9zZSB0aGUgcmVzdWx0cyBvZiBhbnkgYmVuY2htYXJraW5nIG9mIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlICh3aGV0aGVyIG9yIG5vdCBvYnRhaW5lZCB3aXRoIFJlZCBIYXTigJlzIGFzc2lzdGFuY2UpIHRvIGFueSB0aGlyZCBwYXJ0eTsgKGYpIGF0dGVtcHQgdG8gY2lyY3VtdmVudCBhbnkgdXNlciBsaW1pdHMgb3Igb3RoZXIgbGljZW5zZSwgdGltaW5nIG9yIHVzZSByZXN0cmljdGlvbnMgdGhhdCBhcmUgYnVpbHQgaW50bywgZGVmaW5lZCBvciBhZ3JlZWQgdXBvbiwgcmVnYXJkaW5nIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlLiBZb3UgYXJlIGhlcmVieSBub3RpZmllZCB0aGF0IHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlIG1heSBjb250YWluIHRpbWUtb3V0IGRldmljZXMsIGNvdW50ZXIgZGV2aWNlcywgYW5kL29yIG90aGVyIGRldmljZXMgaW50ZW5kZWQgdG8gZW5zdXJlIHRoZSBsaW1pdHMgb2YgdGhlIExpY2Vuc2Ugd2lsbCBub3QgYmUgZXhjZWVkZWQgKOKAnExpbWl0aW5nIERldmljZXPigJ0pLiAgSWYgdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgY29udGFpbnMgTGltaXRpbmcgRGV2aWNlcywgUmVkIEhhdCB3aWxsIHByb3ZpZGUgWW91IG1hdGVyaWFscyBuZWNlc3NhcnkgdG8gdXNlIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlIHRvIHRoZSBleHRlbnQgcGVybWl0dGVkLiAgWW91IG1heSBub3QgdGFtcGVyIHdpdGggb3Igb3RoZXJ3aXNlIHRha2UgYW55IGFjdGlvbiB0byBkZWZlYXQgb3IgY2lyY3VtdmVudCBhIExpbWl0aW5nIERldmljZSBvciBvdGhlciBjb250cm9sIG1lYXN1cmUsIGluY2x1ZGluZyBidXQgbm90IGxpbWl0ZWQgdG8sIHJlc2V0dGluZyB0aGUgdW5pdCBhbW91bnQgb3IgdXNpbmcgZmFsc2UgaG9zdCBpZGVudGlmaWNhdGlvbiBudW1iZXIgZm9yIHRoZSBwdXJwb3NlIG9mIGV4dGVuZGluZyBhbnkgdGVybSBvZiB0aGUgTGljZW5zZS4gXG5cbjMuICBFdmFsdWF0aW9uIExpY2Vuc2VzLiBVbmxlc3MgWW91IGhhdmUgcHVyY2hhc2VkIEFuc2libGUgVG93ZXIgU29mdHdhcmUgU3Vic2NyaXB0aW9ucyBmcm9tIFJlZCBIYXQgb3IgYW4gYXV0aG9yaXplZCByZXNlbGxlciB1bmRlciB0aGUgdGVybXMgb2YgYSBjb21tZXJjaWFsIGFncmVlbWVudCB3aXRoIFJlZCBIYXQsIGFsbCB1c2Ugb2YgdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgc2hhbGwgYmUgbGltaXRlZCB0byB0ZXN0aW5nIHB1cnBvc2VzIGFuZCBub3QgZm9yIHByb2R1Y3Rpb24gdXNlICjigJxFdmFsdWF0aW9u4oCdKS4gVW5sZXNzIG90aGVyd2lzZSBhZ3JlZWQgYnkgUmVkIEhhdCwgRXZhbHVhdGlvbiBvZiB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZSBzaGFsbCBiZSBsaW1pdGVkIHRvIGFuIGV2YWx1YXRpb24gZW52aXJvbm1lbnQgYW5kIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlIHNoYWxsIG5vdCBiZSB1c2VkIHRvIG1hbmFnZSBhbnkgc3lzdGVtcyBvciB2aXJ0dWFsIG1hY2hpbmVzIG9uIG5ldHdvcmtzIGJlaW5nIHVzZWQgaW4gdGhlIG9wZXJhdGlvbiBvZiBZb3VyIGJ1c2luZXNzIG9yIGFueSBvdGhlciBub24tZXZhbHVhdGlvbiBwdXJwb3NlLiAgVW5sZXNzIG90aGVyd2lzZSBhZ3JlZWQgYnkgUmVkIEhhdCwgWW91IHNoYWxsIGxpbWl0IGFsbCBFdmFsdWF0aW9uIHVzZSB0byBhIHNpbmdsZSAzMCBkYXkgZXZhbHVhdGlvbiBwZXJpb2QgYW5kIHNoYWxsIG5vdCBkb3dubG9hZCBvciBvdGhlcndpc2Ugb2J0YWluIGFkZGl0aW9uYWwgY29waWVzIG9mIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlIG9yIGxpY2Vuc2Uga2V5cyBmb3IgRXZhbHVhdGlvbi5cblxuNC4gIExpbWl0ZWQgV2FycmFudHkuICBFeGNlcHQgYXMgc3BlY2lmaWNhbGx5IHN0YXRlZCBpbiB0aGlzIFNlY3Rpb24gNCwgdG8gdGhlIG1heGltdW0gZXh0ZW50IHBlcm1pdHRlZCB1bmRlciBhcHBsaWNhYmxlIGxhdywgdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgYW5kIHRoZSBjb21wb25lbnRzIGFyZSBwcm92aWRlZCBhbmQgbGljZW5zZWQg4oCcYXMgaXPigJ0gd2l0aG91dCB3YXJyYW50eSBvZiBhbnkga2luZCwgZXhwcmVzc2VkIG9yIGltcGxpZWQsIGluY2x1ZGluZyB0aGUgaW1wbGllZCB3YXJyYW50aWVzIG9mIG1lcmNoYW50YWJpbGl0eSwgbm9uLWluZnJpbmdlbWVudCBvciBmaXRuZXNzIGZvciBhIHBhcnRpY3VsYXIgcHVycG9zZS4gIFJlZCBIYXQgd2FycmFudHMgc29sZWx5IHRvIFlvdSB0aGF0IHRoZSBtZWRpYSBvbiB3aGljaCB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZSBtYXkgYmUgZnVybmlzaGVkIHdpbGwgYmUgZnJlZSBmcm9tIGRlZmVjdHMgaW4gbWF0ZXJpYWxzIGFuZCBtYW51ZmFjdHVyZSB1bmRlciBub3JtYWwgdXNlIGZvciBhIHBlcmlvZCBvZiB0aGlydHkgKDMwKSBkYXlzIGZyb20gdGhlIGRhdGUgb2YgZGVsaXZlcnkgdG8gWW91LiAgUmVkIEhhdCBkb2VzIG5vdCB3YXJyYW50IHRoYXQgdGhlIGZ1bmN0aW9ucyBjb250YWluZWQgaW4gdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgd2lsbCBtZWV0IFlvdXIgcmVxdWlyZW1lbnRzIG9yIHRoYXQgdGhlIG9wZXJhdGlvbiBvZiB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZSB3aWxsIGJlIGVudGlyZWx5IGVycm9yIGZyZWUsIGFwcGVhciBwcmVjaXNlbHkgYXMgZGVzY3JpYmVkIGluIHRoZSBhY2NvbXBhbnlpbmcgZG9jdW1lbnRhdGlvbiwgb3IgY29tcGx5IHdpdGggcmVndWxhdG9yeSByZXF1aXJlbWVudHMuIFxuXG41LiAgTGltaXRhdGlvbiBvZiBSZW1lZGllcyBhbmQgTGlhYmlsaXR5LiBUbyB0aGUgbWF4aW11bSBleHRlbnQgcGVybWl0dGVkIGJ5IGFwcGxpY2FibGUgbGF3LCBZb3VyIGV4Y2x1c2l2ZSByZW1lZHkgdW5kZXIgdGhpcyBFVUxBIGlzIHRvIHJldHVybiBhbnkgZGVmZWN0aXZlIG1lZGlhIHdpdGhpbiB0aGlydHkgKDMwKSBkYXlzIG9mIGRlbGl2ZXJ5IGFsb25nIHdpdGggYSBjb3B5IG9mIFlvdXIgcGF5bWVudCByZWNlaXB0IGFuZCBSZWQgSGF0LCBhdCBpdHMgb3B0aW9uLCB3aWxsIHJlcGxhY2UgaXQgb3IgcmVmdW5kIHRoZSBtb25leSBwYWlkIGJ5IFlvdSBmb3IgdGhlIG1lZGlhLiAgVG8gdGhlIG1heGltdW0gZXh0ZW50IHBlcm1pdHRlZCB1bmRlciBhcHBsaWNhYmxlIGxhdywgbmVpdGhlciBSZWQgSGF0IG5vciBhbnkgUmVkIEhhdCBhdXRob3JpemVkIGRpc3RyaWJ1dG9yIHdpbGwgYmUgbGlhYmxlIHRvIFlvdSBmb3IgYW55IGluY2lkZW50YWwgb3IgY29uc2VxdWVudGlhbCBkYW1hZ2VzLCBpbmNsdWRpbmcgbG9zdCBwcm9maXRzIG9yIGxvc3Qgc2F2aW5ncyBhcmlzaW5nIG91dCBvZiB0aGUgdXNlIG9yIGluYWJpbGl0eSB0byB1c2UgdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgb3IgYW55IGNvbXBvbmVudCwgZXZlbiBpZiBSZWQgSGF0IG9yIHRoZSBhdXRob3JpemVkIGRpc3RyaWJ1dG9yIGhhcyBiZWVuIGFkdmlzZWQgb2YgdGhlIHBvc3NpYmlsaXR5IG9mIHN1Y2ggZGFtYWdlcy4gIEluIG5vIGV2ZW50IHNoYWxsIFJlZCBIYXQncyBsaWFiaWxpdHkgb3IgYW4gYXV0aG9yaXplZCBkaXN0cmlidXRvcuKAmXMgbGlhYmlsaXR5IGV4Y2VlZCB0aGUgYW1vdW50IHRoYXQgWW91IHBhaWQgdG8gUmVkIEhhdCBmb3IgdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgZHVyaW5nIHRoZSB0d2VsdmUgbW9udGhzIHByZWNlZGluZyB0aGUgZmlyc3QgZXZlbnQgZ2l2aW5nIHJpc2UgdG8gbGlhYmlsaXR5LlxuXG42LiAgRXhwb3J0IENvbnRyb2wuICBJbiBhY2NvcmRhbmNlIHdpdGggdGhlIGxhd3Mgb2YgdGhlIFVuaXRlZCBTdGF0ZXMgYW5kIG90aGVyIGNvdW50cmllcywgWW91IHJlcHJlc2VudCBhbmQgd2FycmFudCB0aGF0IFlvdTogKGEpIHVuZGVyc3RhbmQgdGhhdCB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZSBhbmQgaXRzIGNvbXBvbmVudHMgbWF5IGJlIHN1YmplY3QgdG8gZXhwb3J0IGNvbnRyb2xzIHVuZGVyIHRoZSBVLlMuIENvbW1lcmNlIERlcGFydG1lbnTigJlzIEV4cG9ydCBBZG1pbmlzdHJhdGlvbiBSZWd1bGF0aW9ucyAo4oCcRUFS4oCdKTsgKGIpIGFyZSBub3QgbG9jYXRlZCBpbiBhbnkgY291bnRyeSBsaXN0ZWQgaW4gQ291bnRyeSBHcm91cCBFOjEgaW4gU3VwcGxlbWVudCBOby4gMSB0byBwYXJ0IDc0MCBvZiB0aGUgRUFSOyAoYykgd2lsbCBub3QgZXhwb3J0LCByZS1leHBvcnQsIG9yIHRyYW5zZmVyIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlIHRvIGFueSBwcm9oaWJpdGVkIGRlc3RpbmF0aW9uIG9yIHRvIGFueSBlbmQgdXNlciB3aG8gaGFzIGJlZW4gcHJvaGliaXRlZCBmcm9tIHBhcnRpY2lwYXRpbmcgaW4gVVMgZXhwb3J0IHRyYW5zYWN0aW9ucyBieSBhbnkgZmVkZXJhbCBhZ2VuY3kgb2YgdGhlIFVTIGdvdmVybm1lbnQ7ICAoZCkgd2lsbCBub3QgdXNlIG9yIHRyYW5zZmVyIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlIGZvciB1c2UgaW4gY29ubmVjdGlvbiB3aXRoIHRoZSBkZXNpZ24sIGRldmVsb3BtZW50IG9yIHByb2R1Y3Rpb24gb2YgbnVjbGVhciwgY2hlbWljYWwgb3IgYmlvbG9naWNhbCB3ZWFwb25zLCBvciByb2NrZXQgc3lzdGVtcywgc3BhY2UgbGF1bmNoIHZlaGljbGVzLCBvciBzb3VuZGluZyByb2NrZXRzIG9yIHVubWFubmVkIGFpciB2ZWhpY2xlIHN5c3RlbXM7IChlKSB1bmRlcnN0YW5kIGFuZCBhZ3JlZSB0aGF0IGlmIHlvdSBhcmUgaW4gdGhlIFVuaXRlZCBTdGF0ZXMgYW5kIHlvdSBleHBvcnQgb3IgdHJhbnNmZXIgdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgdG8gZWxpZ2libGUgZW5kIHVzZXJzLCB5b3Ugd2lsbCwgdG8gdGhlIGV4dGVudCByZXF1aXJlZCBieSBFQVIgU2VjdGlvbiA3NDAuMTcgb2J0YWluIGEgbGljZW5zZSBmb3Igc3VjaCBleHBvcnQgb3IgdHJhbnNmZXIgYW5kIHdpbGwgc3VibWl0IHNlbWktYW5udWFsIHJlcG9ydHMgdG8gdGhlIENvbW1lcmNlIERlcGFydG1lbnTigJlzIEJ1cmVhdSBvZiBJbmR1c3RyeSBhbmQgU2VjdXJpdHksIHdoaWNoIGluY2x1ZGUgdGhlIG5hbWUgYW5kIGFkZHJlc3MgKGluY2x1ZGluZyBjb3VudHJ5KSBvZiBlYWNoIHRyYW5zZmVyZWU7IGFuZCAoZikgdW5kZXJzdGFuZCB0aGF0IGNvdW50cmllcyBpbmNsdWRpbmcgdGhlIFVuaXRlZCBTdGF0ZXMgbWF5IHJlc3RyaWN0IHRoZSBpbXBvcnQsIHVzZSwgb3IgZXhwb3J0IG9mIGVuY3J5cHRpb24gcHJvZHVjdHMgKHdoaWNoIG1heSBpbmNsdWRlIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlKSBhbmQgYWdyZWUgdGhhdCB5b3Ugc2hhbGwgYmUgc29sZWx5IHJlc3BvbnNpYmxlIGZvciBjb21wbGlhbmNlIHdpdGggYW55IHN1Y2ggaW1wb3J0LCB1c2UsIG9yIGV4cG9ydCByZXN0cmljdGlvbnMuXG5cbjcuICBHZW5lcmFsLiAgSWYgYW55IHByb3Zpc2lvbiBvZiB0aGlzIEVVTEEgaXMgaGVsZCB0byBiZSB1bmVuZm9yY2VhYmxlLCB0aGF0IHNoYWxsIG5vdCBhZmZlY3QgdGhlIGVuZm9yY2VhYmlsaXR5IG9mIHRoZSByZW1haW5pbmcgcHJvdmlzaW9ucy4gIFRoaXMgYWdyZWVtZW50IHNoYWxsIGJlIGdvdmVybmVkIGJ5IHRoZSBsYXdzIG9mIHRoZSBTdGF0ZSBvZiBOZXcgWW9yayBhbmQgb2YgdGhlIFVuaXRlZCBTdGF0ZXMsIHdpdGhvdXQgcmVnYXJkIHRvIGFueSBjb25mbGljdCBvZiBsYXdzIHByb3Zpc2lvbnMuIFRoZSByaWdodHMgYW5kIG9ibGlnYXRpb25zIG9mIHRoZSBwYXJ0aWVzIHRvIHRoaXMgRVVMQSBzaGFsbCBub3QgYmUgZ292ZXJuZWQgYnkgdGhlIFVuaXRlZCBOYXRpb25zIENvbnZlbnRpb24gb24gdGhlIEludGVybmF0aW9uYWwgU2FsZSBvZiBHb29kcy4gXG5cbkNvcHlyaWdodCDCqSAyMDE1IFJlZCBIYXQsIEluYy4gIEFsbCByaWdodHMgcmVzZXJ2ZWQuICBcIlJlZCBIYXRcIiBhbmQg4oCcQW5zaWJsZSBUb3dlcuKAnSBhcmUgcmVnaXN0ZXJlZCB0cmFkZW1hcmtzIG9mIFJlZCBIYXQsIEluYy4gIEFsbCBvdGhlciB0cmFkZW1hcmtzIGFyZSB0aGUgcHJvcGVydHkgb2YgdGhlaXIgcmVzcGVjdGl2ZSBvd25lcnMuXG4iLCJsaWNlbnNlX2luZm8iOnsiZGVwbG95bWVudF9pZCI6ImEzZGJkYzdmNTRlNDlhNjAzN2M0MzFmYTc4YmZmZTc0NjY3ZmRhY2EiLCJzdWJzY3JpcHRpb25fbmFtZSI6IkFuc2libGUgVG93ZXIgYnkgUmVkIEhhdCwgU3RhbmRhcmQgKDEwMCBNYW5hZ2VkIE5vZGVzKSIsImN1cnJlbnRfaW5zdGFuY2VzIjo4MywiZmVhdHVyZXMiOnsic3VydmV5cyI6dHJ1ZSwibXVsdGlwbGVfb3JnYW5pemF0aW9ucyI6dHJ1ZSwic3lzdGVtX3RyYWNraW5nIjp0cnVlLCJlbnRlcnByaXNlX2F1dGgiOnRydWUsInJlYnJhbmRpbmciOnRydWUsImFjdGl2aXR5X3N0cmVhbXMiOnRydWUsImxkYXAiOnRydWUsImhhIjp0cnVlfSwiZGF0ZV9leHBpcmVkIjpmYWxzZSwiYXZhaWxhYmxlX2luc3RhbmNlcyI6MTAwLCJob3N0bmFtZSI6ImZmNmI5ZTFmNTYxNTRhNjFiZWViNWE0ZGJkY2EzMjFhIiwiZnJlZV9pbnN0YW5jZXMiOjE3LCJpbnN0YW5jZV9jb3VudCI6MTAwLCJ0aW1lX3JlbWFpbmluZyI6MzEyMTExNTcsImNvbXBsaWFudCI6dHJ1ZSwiZ3JhY2VfcGVyaW9kX3JlbWFpbmluZyI6MzM4MDMxNTcsImNvbnRhY3RfZW1haWwiOiJqb2VzbWl0QHJlZGhhdC5jb20iLCJjb21wYW55X25hbWUiOiJSZWQgSGF0LCBJbmMuIiwiZGF0ZV93YXJuaW5nIjpmYWxzZSwibGljZW5zZV90eXBlIjoiZW50ZXJwcmlzZSIsImNvbnRhY3RfbmFtZSI6IkpvZSAgU21pdGgiLCJsaWNlbnNlX2RhdGUiOjE1MTc4NDc4MTksImxpY2Vuc2Vfa2V5IjoiZWQ5ZDAwZjFhMjU0ZTJiMGI3NzBiYWViMmIyNjg4YzQzN2U5ZGVlNDE3OTY2N2RmYmZmY2QxOTNlNTA4YTI2MyIsInZhbGlkX2tleSI6dHJ1ZX0sImFuYWx5dGljc19zdGF0dXMiOiJkZXRhaWxlZCIsInZlcnNpb24iOiIzLjAuMSIsInByb2plY3RfYmFzZV9kaXIiOiIvdmFyL2xpYi9hd3gvcHJvamVjdHMiLCJ0aW1lX3pvbmUiOiJBbWVyaWNhL05ld19Zb3JrIiwiYW5zaWJsZV92ZXJzaW9uIjoiMi4xLjAuMCIsInByb2plY3RfbG9jYWxfcGF0aHMiOltdfQ== + 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 + ZWQgTm9kZXMpIiwiY3VycmVudF9pbnN0YW5jZXMiOjk4LCJmZWF0dXJlcyI6 + eyJzdXJ2ZXlzIjp0cnVlLCJtdWx0aXBsZV9vcmdhbml6YXRpb25zIjp0cnVl + LCJzeXN0ZW1fdHJhY2tpbmciOnRydWUsImVudGVycHJpc2VfYXV0aCI6dHJ1 + ZSwicmVicmFuZGluZyI6dHJ1ZSwiYWN0aXZpdHlfc3RyZWFtcyI6dHJ1ZSwi + bGRhcCI6dHJ1ZSwiaGEiOnRydWV9LCJkYXRlX2V4cGlyZWQiOmZhbHNlLCJh + dmFpbGFibGVfaW5zdGFuY2VzIjoxMDAwMCwiaG9zdG5hbWUiOiIxMjk0ZGQ2 + MzAxMjY0NDIxOGI1MmExN2I2YmM0MzBlZCIsImZyZWVfaW5zdGFuY2VzIjo5 + OTAyLCJpbnN0YW5jZV9jb3VudCI6MTAwMDAsInRpbWVfcmVtYWluaW5nIjoy + MDYzNzEzMSwiY29tcGxpYW50Ijp0cnVlLCJncmFjZV9wZXJpb2RfcmVtYWlu + aW5nIjoyMzIyOTEzMSwiY29udGFjdF9lbWFpbCI6ImpvZXNtaXRAcmVkaGF0 + LmNvbSIsImNvbXBhbnlfbmFtZSI6IlJlZCBIYXQsIEluYy4iLCJkYXRlX3dh + cm5pbmciOmZhbHNlLCJsaWNlbnNlX3R5cGUiOiJlbnRlcnByaXNlIiwiY29u + dGFjdF9uYW1lIjoiSm9lICBTbWl0aCIsImxpY2Vuc2VfZGF0ZSI6MTUxODcx + MDEwMiwibGljZW5zZV9rZXkiOiIwM2NiYzNlNzM3OWViM2Y3ZTFmZDEzOWVj + NjkyZDg1YjliNmRhNDNkOWNiY2IwY2JiMmQ0MzYzOTliOWQ2OThjIiwidmFs + aWRfa2V5Ijp0cnVlfSwiYW5hbHl0aWNzX3N0YXR1cyI6ImRldGFpbGVkIiwi + dmVyc2lvbiI6IjMuMC4xIiwicHJvamVjdF9iYXNlX2RpciI6Ii92YXIvbGli + L2F3eC9wcm9qZWN0cyIsInRpbWVfem9uZSI6IkFtZXJpY2EvTmV3X1lvcmsi + LCJhbnNpYmxlX3ZlcnNpb24iOiIyLjEuMC4wIiwicHJvamVjdF9sb2NhbF9w + YXRocyI6W119 http_version: - recorded_at: Thu, 09 Feb 2017 09:37:44 GMT + recorded_at: Wed, 21 Jun 2017 19:22:51 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/inventories @@ -80,20 +299,21 @@ http_interactions: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 301 message: MOVED PERMANENTLY headers: Date: - - Thu, 09 Feb 2017 10:37:43 GMT + - Wed, 21 Jun 2017 19:22:51 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Location: @@ -106,7 +326,7 @@ http_interactions: encoding: UTF-8 string: '' http_version: - recorded_at: Thu, 09 Feb 2017 09:37:44 GMT + recorded_at: Wed, 21 Jun 2017 19:22:51 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/inventories/ @@ -114,20 +334,21 @@ http_interactions: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 200 message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:44 GMT + - Wed, 21 Jun 2017 19:22: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: @@ -135,28 +356,34 @@ http_interactions: Allow: - GET, POST, HEAD, OPTIONS X-Api-Time: - - 0.089s - Content-Length: - - '11790' + - 0.203s + Transfer-Encoding: + - chunked 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":29,"next":"/api/v1/inventories/?page=2","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 + 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":76,"type":"inventory","url":"/api/v1/inventories/76/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/76/job_templates/","scan_job_templates":"/api/v1/inventories/76/scan_job_templates/","variable_data":"/api/v1/inventories/76/variable_data/","root_groups":"/api/v1/inventories/76/root_groups/","object_roles":"/api/v1/inventories/76/object_roles/","ad_hoc_commands":"/api/v1/inventories/76/ad_hoc_commands/","script":"/api/v1/inventories/76/script/","tree":"/api/v1/inventories/76/tree/","access_list":"/api/v1/inventories/76/access_list/","hosts":"/api/v1/inventories/76/hosts/","groups":"/api/v1/inventories/76/groups/","activity_stream":"/api/v1/inventories/76/activity_stream/","inventory_sources":"/api/v1/inventories/76/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":2037,"name":"Use"},"admin_role":{"description":"Can + manage all aspects of the inventory","id":2035,"name":"Admin"},"adhoc_role":{"description":"May + run ad hoc commands on an inventory","id":2034,"name":"Ad Hoc"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":2038,"name":"Update"},"read_role":{"description":"May + view settings for the inventory","id":2036,"name":"Read"}}},"created":"2017-05-08T15:17:04.736Z","modified":"2017-05-08T15:17:14.450Z","name":"ansible + tower","description":"","organization":1,"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":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":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 @@ -166,20 +393,181 @@ http_interactions: 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 + view settings for the inventory","id":17,"name":"Read"}}},"created":"2016-08-02T17:57:03.135Z","modified":"2017-05-17T16:19:40.074Z","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 + view settings for the inventory","id":25,"name":"Read"}}},"created":"2016-08-30T22:38:00.334Z","modified":"2017-06-19T19:44:52.541Z","name":"Dev-VC60","description":"","organization":1,"variables":"---","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},{"id":15,"type":"inventory","url":"/api/v1/inventories/15/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/15/job_templates/","scan_job_templates":"/api/v1/inventories/15/scan_job_templates/","variable_data":"/api/v1/inventories/15/variable_data/","root_groups":"/api/v1/inventories/15/root_groups/","object_roles":"/api/v1/inventories/15/object_roles/","ad_hoc_commands":"/api/v1/inventories/15/ad_hoc_commands/","script":"/api/v1/inventories/15/script/","tree":"/api/v1/inventories/15/tree/","access_list":"/api/v1/inventories/15/access_list/","hosts":"/api/v1/inventories/15/hosts/","groups":"/api/v1/inventories/15/groups/","activity_stream":"/api/v1/inventories/15/activity_stream/","inventory_sources":"/api/v1/inventories/15/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":750,"name":"Use"},"admin_role":{"description":"Can + manage all aspects of the inventory","id":748,"name":"Admin"},"adhoc_role":{"description":"May + run ad hoc commands on an inventory","id":747,"name":"Ad Hoc"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":751,"name":"Update"},"read_role":{"description":"May + view settings for the inventory","id":749,"name":"Read"}}},"created":"2017-03-01T20:04:52.336Z","modified":"2017-03-01T20:04:52.336Z","name":"e_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},{"id":103,"type":"inventory","url":"/api/v1/inventories/103/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/103/job_templates/","scan_job_templates":"/api/v1/inventories/103/scan_job_templates/","variable_data":"/api/v1/inventories/103/variable_data/","root_groups":"/api/v1/inventories/103/root_groups/","object_roles":"/api/v1/inventories/103/object_roles/","ad_hoc_commands":"/api/v1/inventories/103/ad_hoc_commands/","script":"/api/v1/inventories/103/script/","tree":"/api/v1/inventories/103/tree/","access_list":"/api/v1/inventories/103/access_list/","hosts":"/api/v1/inventories/103/hosts/","groups":"/api/v1/inventories/103/groups/","activity_stream":"/api/v1/inventories/103/activity_stream/","inventory_sources":"/api/v1/inventories/103/inventory_sources/","organization":"/api/v1/organizations/33/"},"summary_fields":{"organization":{"id":33,"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":2611,"name":"Use"},"admin_role":{"description":"Can + manage all aspects of the inventory","id":2609,"name":"Admin"},"adhoc_role":{"description":"May + run ad hoc commands on an inventory","id":2608,"name":"Ad Hoc"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":2612,"name":"Update"},"read_role":{"description":"May + view settings for the inventory","id":2610,"name":"Read"}}},"created":"2017-06-21T19:20:53.873Z","modified":"2017-06-21T19:20:58.301Z","name":"hello_inventory","description":"inventory + for miq spec tests","organization":33,"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":9,"type":"inventory","url":"/api/v1/inventories/9/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/9/job_templates/","scan_job_templates":"/api/v1/inventories/9/scan_job_templates/","variable_data":"/api/v1/inventories/9/variable_data/","root_groups":"/api/v1/inventories/9/root_groups/","object_roles":"/api/v1/inventories/9/object_roles/","ad_hoc_commands":"/api/v1/inventories/9/ad_hoc_commands/","script":"/api/v1/inventories/9/script/","tree":"/api/v1/inventories/9/tree/","access_list":"/api/v1/inventories/9/access_list/","hosts":"/api/v1/inventories/9/hosts/","groups":"/api/v1/inventories/9/groups/","activity_stream":"/api/v1/inventories/9/activity_stream/","inventory_sources":"/api/v1/inventories/9/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":552,"name":"Use"},"admin_role":{"description":"Can + manage all aspects of the inventory","id":550,"name":"Admin"},"adhoc_role":{"description":"May + run ad hoc commands on an inventory","id":549,"name":"Ad Hoc"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":553,"name":"Update"},"read_role":{"description":"May + view settings for the inventory","id":551,"name":"Read"}}},"created":"2017-02-20T21:34:10.967Z","modified":"2017-06-08T15:24:55.710Z","name":"lucys_tests","description":"","organization":1,"variables":"---","has_active_failures":false,"total_hosts":2,"hosts_with_active_failures":0,"total_groups":2,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"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":32,"type":"inventory","url":"/api/v1/inventories/32/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/32/job_templates/","scan_job_templates":"/api/v1/inventories/32/scan_job_templates/","variable_data":"/api/v1/inventories/32/variable_data/","root_groups":"/api/v1/inventories/32/root_groups/","object_roles":"/api/v1/inventories/32/object_roles/","ad_hoc_commands":"/api/v1/inventories/32/ad_hoc_commands/","script":"/api/v1/inventories/32/script/","tree":"/api/v1/inventories/32/tree/","access_list":"/api/v1/inventories/32/access_list/","hosts":"/api/v1/inventories/32/hosts/","groups":"/api/v1/inventories/32/groups/","activity_stream":"/api/v1/inventories/32/activity_stream/","inventory_sources":"/api/v1/inventories/32/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":1366,"name":"Use"},"admin_role":{"description":"Can + manage all aspects of the inventory","id":1364,"name":"Admin"},"adhoc_role":{"description":"May + run ad hoc commands on an inventory","id":1363,"name":"Ad Hoc"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1367,"name":"Update"},"read_role":{"description":"May + view settings for the inventory","id":1365,"name":"Read"}}},"created":"2017-03-22T19:07:05.390Z","modified":"2017-03-22T19:07:06.777Z","name":"miq_aaa_playbook_post_resource_retirement_322","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":35,"type":"inventory","url":"/api/v1/inventories/35/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/35/job_templates/","scan_job_templates":"/api/v1/inventories/35/scan_job_templates/","variable_data":"/api/v1/inventories/35/variable_data/","root_groups":"/api/v1/inventories/35/root_groups/","object_roles":"/api/v1/inventories/35/object_roles/","ad_hoc_commands":"/api/v1/inventories/35/ad_hoc_commands/","script":"/api/v1/inventories/35/script/","tree":"/api/v1/inventories/35/tree/","access_list":"/api/v1/inventories/35/access_list/","hosts":"/api/v1/inventories/35/hosts/","groups":"/api/v1/inventories/35/groups/","activity_stream":"/api/v1/inventories/35/activity_stream/","inventory_sources":"/api/v1/inventories/35/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":1402,"name":"Use"},"admin_role":{"description":"Can + manage all aspects of the inventory","id":1400,"name":"Admin"},"adhoc_role":{"description":"May + run ad hoc commands on an inventory","id":1399,"name":"Ad Hoc"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1403,"name":"Update"},"read_role":{"description":"May + view settings for the inventory","id":1401,"name":"Read"}}},"created":"2017-03-22T19:43:07.057Z","modified":"2017-03-22T19:43:11.621Z","name":"miq_aaa_playbook_pre_resource_provision_324","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":16,"type":"inventory","url":"/api/v1/inventories/16/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/16/job_templates/","scan_job_templates":"/api/v1/inventories/16/scan_job_templates/","variable_data":"/api/v1/inventories/16/variable_data/","root_groups":"/api/v1/inventories/16/root_groups/","object_roles":"/api/v1/inventories/16/object_roles/","ad_hoc_commands":"/api/v1/inventories/16/ad_hoc_commands/","script":"/api/v1/inventories/16/script/","tree":"/api/v1/inventories/16/tree/","access_list":"/api/v1/inventories/16/access_list/","hosts":"/api/v1/inventories/16/hosts/","groups":"/api/v1/inventories/16/groups/","activity_stream":"/api/v1/inventories/16/activity_stream/","inventory_sources":"/api/v1/inventories/16/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":1056,"name":"Use"},"admin_role":{"description":"Can + manage all aspects of the inventory","id":1054,"name":"Admin"},"adhoc_role":{"description":"May + run ad hoc commands on an inventory","id":1053,"name":"Ad Hoc"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1057,"name":"Update"},"read_role":{"description":"May + view settings for the inventory","id":1055,"name":"Read"}}},"created":"2017-03-15T22:59:53.851Z","modified":"2017-03-15T23:00:39.203Z","name":"miq_ap_tina_test1_provision_307","description":"","organization":1,"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},{"id":17,"type":"inventory","url":"/api/v1/inventories/17/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/17/job_templates/","scan_job_templates":"/api/v1/inventories/17/scan_job_templates/","variable_data":"/api/v1/inventories/17/variable_data/","root_groups":"/api/v1/inventories/17/root_groups/","object_roles":"/api/v1/inventories/17/object_roles/","ad_hoc_commands":"/api/v1/inventories/17/ad_hoc_commands/","script":"/api/v1/inventories/17/script/","tree":"/api/v1/inventories/17/tree/","access_list":"/api/v1/inventories/17/access_list/","hosts":"/api/v1/inventories/17/hosts/","groups":"/api/v1/inventories/17/groups/","activity_stream":"/api/v1/inventories/17/activity_stream/","inventory_sources":"/api/v1/inventories/17/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":1085,"name":"Use"},"admin_role":{"description":"Can + manage all aspects of the inventory","id":1083,"name":"Admin"},"adhoc_role":{"description":"May + run ad hoc commands on an inventory","id":1082,"name":"Ad Hoc"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1086,"name":"Update"},"read_role":{"description":"May + view settings for the inventory","id":1084,"name":"Read"}}},"created":"2017-03-16T17:19:10.693Z","modified":"2017-03-16T17:19:58.738Z","name":"miq_ap_tina_test1_provision_309","description":"","organization":1,"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},{"id":24,"type":"inventory","url":"/api/v1/inventories/24/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/24/job_templates/","scan_job_templates":"/api/v1/inventories/24/scan_job_templates/","variable_data":"/api/v1/inventories/24/variable_data/","root_groups":"/api/v1/inventories/24/root_groups/","object_roles":"/api/v1/inventories/24/object_roles/","ad_hoc_commands":"/api/v1/inventories/24/ad_hoc_commands/","script":"/api/v1/inventories/24/script/","tree":"/api/v1/inventories/24/tree/","access_list":"/api/v1/inventories/24/access_list/","hosts":"/api/v1/inventories/24/hosts/","groups":"/api/v1/inventories/24/groups/","activity_stream":"/api/v1/inventories/24/activity_stream/","inventory_sources":"/api/v1/inventories/24/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":1210,"name":"Use"},"admin_role":{"description":"Can + manage all aspects of the inventory","id":1208,"name":"Admin"},"adhoc_role":{"description":"May + run ad hoc commands on an inventory","id":1207,"name":"Ad Hoc"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1211,"name":"Update"},"read_role":{"description":"May + view settings for the inventory","id":1209,"name":"Read"}}},"created":"2017-03-17T22:15:24.696Z","modified":"2017-03-17T22:15:47.666Z","name":"miq_ap_tina_test_pb_nres_provision_316","description":"","organization":1,"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},{"id":25,"type":"inventory","url":"/api/v1/inventories/25/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/25/job_templates/","scan_job_templates":"/api/v1/inventories/25/scan_job_templates/","variable_data":"/api/v1/inventories/25/variable_data/","root_groups":"/api/v1/inventories/25/root_groups/","object_roles":"/api/v1/inventories/25/object_roles/","ad_hoc_commands":"/api/v1/inventories/25/ad_hoc_commands/","script":"/api/v1/inventories/25/script/","tree":"/api/v1/inventories/25/tree/","access_list":"/api/v1/inventories/25/access_list/","hosts":"/api/v1/inventories/25/hosts/","groups":"/api/v1/inventories/25/groups/","activity_stream":"/api/v1/inventories/25/activity_stream/","inventory_sources":"/api/v1/inventories/25/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":1215,"name":"Use"},"admin_role":{"description":"Can + manage all aspects of the inventory","id":1213,"name":"Admin"},"adhoc_role":{"description":"May + run ad hoc commands on an inventory","id":1212,"name":"Ad Hoc"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1216,"name":"Update"},"read_role":{"description":"May + view settings for the inventory","id":1214,"name":"Read"}}},"created":"2017-03-17T22:19:02.042Z","modified":"2017-03-17T22:19:23.994Z","name":"miq_ap_tina_test_pb_nres_provision_317","description":"","organization":1,"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},{"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":45,"type":"inventory","url":"/api/v1/inventories/45/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/45/job_templates/","scan_job_templates":"/api/v1/inventories/45/scan_job_templates/","variable_data":"/api/v1/inventories/45/variable_data/","root_groups":"/api/v1/inventories/45/root_groups/","object_roles":"/api/v1/inventories/45/object_roles/","ad_hoc_commands":"/api/v1/inventories/45/ad_hoc_commands/","script":"/api/v1/inventories/45/script/","tree":"/api/v1/inventories/45/tree/","access_list":"/api/v1/inventories/45/access_list/","hosts":"/api/v1/inventories/45/hosts/","groups":"/api/v1/inventories/45/groups/","activity_stream":"/api/v1/inventories/45/activity_stream/","inventory_sources":"/api/v1/inventories/45/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":1557,"name":"Use"},"admin_role":{"description":"Can + manage all aspects of the inventory","id":1555,"name":"Admin"},"adhoc_role":{"description":"May + run ad hoc commands on an inventory","id":1554,"name":"Ad Hoc"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1558,"name":"Update"},"read_role":{"description":"May + view settings for the inventory","id":1556,"name":"Read"}}},"created":"2017-03-23T19:12:19.377Z","modified":"2017-03-23T19:12:41.233Z","name":"miq_Madhu_Test_provision_10","description":"","organization":1,"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":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":39,"type":"inventory","url":"/api/v1/inventories/39/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/39/job_templates/","scan_job_templates":"/api/v1/inventories/39/scan_job_templates/","variable_data":"/api/v1/inventories/39/variable_data/","root_groups":"/api/v1/inventories/39/root_groups/","object_roles":"/api/v1/inventories/39/object_roles/","ad_hoc_commands":"/api/v1/inventories/39/ad_hoc_commands/","script":"/api/v1/inventories/39/script/","tree":"/api/v1/inventories/39/tree/","access_list":"/api/v1/inventories/39/access_list/","hosts":"/api/v1/inventories/39/hosts/","groups":"/api/v1/inventories/39/groups/","activity_stream":"/api/v1/inventories/39/activity_stream/","inventory_sources":"/api/v1/inventories/39/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":1478,"name":"Use"},"admin_role":{"description":"Can + manage all aspects of the inventory","id":1476,"name":"Admin"},"adhoc_role":{"description":"May + run ad hoc commands on an inventory","id":1475,"name":"Ad Hoc"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1479,"name":"Update"},"read_role":{"description":"May + view settings for the inventory","id":1477,"name":"Read"}}},"created":"2017-03-23T16:14:44.206Z","modified":"2017-03-23T16:15:04.738Z","name":"miq_Madhu_Test_provision_7","description":"","organization":1,"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":41,"type":"inventory","url":"/api/v1/inventories/41/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/41/job_templates/","scan_job_templates":"/api/v1/inventories/41/scan_job_templates/","variable_data":"/api/v1/inventories/41/variable_data/","root_groups":"/api/v1/inventories/41/root_groups/","object_roles":"/api/v1/inventories/41/object_roles/","ad_hoc_commands":"/api/v1/inventories/41/ad_hoc_commands/","script":"/api/v1/inventories/41/script/","tree":"/api/v1/inventories/41/tree/","access_list":"/api/v1/inventories/41/access_list/","hosts":"/api/v1/inventories/41/hosts/","groups":"/api/v1/inventories/41/groups/","activity_stream":"/api/v1/inventories/41/activity_stream/","inventory_sources":"/api/v1/inventories/41/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":1534,"name":"Use"},"admin_role":{"description":"Can + manage all aspects of the inventory","id":1532,"name":"Admin"},"adhoc_role":{"description":"May + run ad hoc commands on an inventory","id":1531,"name":"Ad Hoc"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1535,"name":"Update"},"read_role":{"description":"May + view settings for the inventory","id":1533,"name":"Read"}}},"created":"2017-03-23T19:49:08.573Z","modified":"2017-03-23T19:49:29.451Z","name":"miq_Madhu_Test_provision_8","description":"","organization":1,"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":43,"type":"inventory","url":"/api/v1/inventories/43/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/43/job_templates/","scan_job_templates":"/api/v1/inventories/43/scan_job_templates/","variable_data":"/api/v1/inventories/43/variable_data/","root_groups":"/api/v1/inventories/43/root_groups/","object_roles":"/api/v1/inventories/43/object_roles/","ad_hoc_commands":"/api/v1/inventories/43/ad_hoc_commands/","script":"/api/v1/inventories/43/script/","tree":"/api/v1/inventories/43/tree/","access_list":"/api/v1/inventories/43/access_list/","hosts":"/api/v1/inventories/43/hosts/","groups":"/api/v1/inventories/43/groups/","activity_stream":"/api/v1/inventories/43/activity_stream/","inventory_sources":"/api/v1/inventories/43/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":1544,"name":"Use"},"admin_role":{"description":"Can + manage all aspects of the inventory","id":1542,"name":"Admin"},"adhoc_role":{"description":"May + run ad hoc commands on an inventory","id":1541,"name":"Ad Hoc"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1545,"name":"Update"},"read_role":{"description":"May + view settings for the inventory","id":1543,"name":"Read"}}},"created":"2017-03-23T19:02:47.768Z","modified":"2017-03-23T19:03:02.975Z","name":"miq_Madhu_Test_provision_9","description":"","organization":1,"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}]}' + http_version: + recorded_at: Wed, 21 Jun 2017 19:22:52 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/inventories/?page=2 + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:22: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, HEAD, OPTIONS + X-Api-Time: + - 0.075s + Content-Length: + - '7756' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: '{"count":29,"next":null,"previous":"/api/v1/inventories/?page=1","results":[{"id":20,"type":"inventory","url":"/api/v1/inventories/20/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/20/job_templates/","scan_job_templates":"/api/v1/inventories/20/scan_job_templates/","variable_data":"/api/v1/inventories/20/variable_data/","root_groups":"/api/v1/inventories/20/root_groups/","object_roles":"/api/v1/inventories/20/object_roles/","ad_hoc_commands":"/api/v1/inventories/20/ad_hoc_commands/","script":"/api/v1/inventories/20/script/","tree":"/api/v1/inventories/20/tree/","access_list":"/api/v1/inventories/20/access_list/","hosts":"/api/v1/inventories/20/hosts/","groups":"/api/v1/inventories/20/groups/","activity_stream":"/api/v1/inventories/20/activity_stream/","inventory_sources":"/api/v1/inventories/20/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":1139,"name":"Use"},"admin_role":{"description":"Can + manage all aspects of the inventory","id":1137,"name":"Admin"},"adhoc_role":{"description":"May + run ad hoc commands on an inventory","id":1136,"name":"Ad Hoc"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1140,"name":"Update"},"read_role":{"description":"May + view settings for the inventory","id":1138,"name":"Read"}}},"created":"2017-03-16T21:31:06.760Z","modified":"2017-03-16T21:31:43.711Z","name":"miq_tina_ap_test2_provision_312","description":"","organization":1,"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},{"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 + recorded_at: Wed, 21 Jun 2017 19:22:52 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/hosts @@ -187,20 +575,21 @@ http_interactions: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 301 message: MOVED PERMANENTLY headers: Date: - - Thu, 09 Feb 2017 10:37:44 GMT + - Wed, 21 Jun 2017 19:22:52 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Location: @@ -213,7 +602,7 @@ http_interactions: encoding: UTF-8 string: '' http_version: - recorded_at: Thu, 09 Feb 2017 09:37:46 GMT + recorded_at: Wed, 21 Jun 2017 19:22:52 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/hosts/ @@ -221,20 +610,76 @@ http_interactions: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:22: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, HEAD, OPTIONS + X-Api-Time: + - 0.271s + Content-Length: + - '45198' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: '{"count":133,"next":"/api/v1/hosts/?page=2","previous":null,"results":[{"id":144,"type":"host","url":"/api/v1/hosts/144/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/144/job_host_summaries/","variable_data":"/api/v1/hosts/144/variable_data/","job_events":"/api/v1/hosts/144/job_events/","ad_hoc_commands":"/api/v1/hosts/144/ad_hoc_commands/","fact_versions":"/api/v1/hosts/144/fact_versions/","inventory_sources":"/api/v1/hosts/144/inventory_sources/","groups":"/api/v1/hosts/144/groups/","activity_stream":"/api/v1/hosts/144/activity_stream/","all_groups":"/api/v1/hosts/144/all_groups/","ad_hoc_command_events":"/api/v1/hosts/144/ad_hoc_command_events/","inventory":"/api/v1/inventories/39/","last_job":"/api/v1/jobs/530/","last_job_host_summary":"/api/v1/job_host_summaries/286/"},"summary_fields":{"last_job":{"id":530,"name":"miq_Madhu_Test_provision","description":"Madhu + Test","finished":"2017-03-23T16:15:04.808Z","status":"failed","failed":true,"job_template_id":412,"job_template_name":"miq_Madhu_Test_provision"},"last_job_host_summary":{"id":286,"failed":true},"inventory":{"id":39,"name":"miq_Madhu_Test_provision_7","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":[{"status":"failed","finished":"2017-03-23T16:15:04.808Z","id":530,"name":"miq_Madhu_Test_provision"}]},"created":"2017-03-23T16:14:44.524Z","modified":"2017-03-23T16:15:04.717Z","name":"10.0.1.78","description":"","inventory":39,"enabled":true,"instance_id":"","variables":"","has_active_failures":true,"has_inventory_sources":false,"last_job":530,"last_job_host_summary":286},{"id":147,"type":"host","url":"/api/v1/hosts/147/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/147/job_host_summaries/","variable_data":"/api/v1/hosts/147/variable_data/","job_events":"/api/v1/hosts/147/job_events/","ad_hoc_commands":"/api/v1/hosts/147/ad_hoc_commands/","fact_versions":"/api/v1/hosts/147/fact_versions/","inventory_sources":"/api/v1/hosts/147/inventory_sources/","groups":"/api/v1/hosts/147/groups/","activity_stream":"/api/v1/hosts/147/activity_stream/","all_groups":"/api/v1/hosts/147/all_groups/","ad_hoc_command_events":"/api/v1/hosts/147/ad_hoc_command_events/","inventory":"/api/v1/inventories/41/","last_job":"/api/v1/jobs/537/","last_job_host_summary":"/api/v1/job_host_summaries/289/"},"summary_fields":{"last_job":{"id":537,"name":"miq_Madhu_Test_provision","description":"Madhu + Test","finished":"2017-03-23T19:49:29.522Z","status":"failed","failed":true,"job_template_id":412,"job_template_name":"miq_Madhu_Test_provision"},"last_job_host_summary":{"id":289,"failed":true},"inventory":{"id":41,"name":"miq_Madhu_Test_provision_8","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":[{"status":"failed","finished":"2017-03-23T19:49:29.522Z","id":537,"name":"miq_Madhu_Test_provision"}]},"created":"2017-03-23T19:49:08.827Z","modified":"2017-03-23T19:49:29.430Z","name":"10.0.1.78","description":"","inventory":41,"enabled":true,"instance_id":"","variables":"","has_active_failures":true,"has_inventory_sources":false,"last_job":537,"last_job_host_summary":289},{"id":150,"type":"host","url":"/api/v1/hosts/150/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/150/job_host_summaries/","variable_data":"/api/v1/hosts/150/variable_data/","job_events":"/api/v1/hosts/150/job_events/","ad_hoc_commands":"/api/v1/hosts/150/ad_hoc_commands/","fact_versions":"/api/v1/hosts/150/fact_versions/","inventory_sources":"/api/v1/hosts/150/inventory_sources/","groups":"/api/v1/hosts/150/groups/","activity_stream":"/api/v1/hosts/150/activity_stream/","all_groups":"/api/v1/hosts/150/all_groups/","ad_hoc_command_events":"/api/v1/hosts/150/ad_hoc_command_events/","inventory":"/api/v1/inventories/43/","last_job":"/api/v1/jobs/539/","last_job_host_summary":"/api/v1/job_host_summaries/292/"},"summary_fields":{"last_job":{"id":539,"name":"miq_Madhu_Test_provision","description":"Madhu + Test","finished":"2017-03-23T19:03:03.049Z","status":"failed","failed":true,"job_template_id":412,"job_template_name":"miq_Madhu_Test_provision"},"last_job_host_summary":{"id":292,"failed":true},"inventory":{"id":43,"name":"miq_Madhu_Test_provision_9","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":[{"status":"failed","finished":"2017-03-23T19:03:03.049Z","id":539,"name":"miq_Madhu_Test_provision"}]},"created":"2017-03-23T19:02:48.022Z","modified":"2017-03-23T19:03:02.955Z","name":"10.0.1.78","description":"","inventory":43,"enabled":true,"instance_id":"","variables":"","has_active_failures":true,"has_inventory_sources":false,"last_job":539,"last_job_host_summary":292},{"id":153,"type":"host","url":"/api/v1/hosts/153/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/153/job_host_summaries/","variable_data":"/api/v1/hosts/153/variable_data/","job_events":"/api/v1/hosts/153/job_events/","ad_hoc_commands":"/api/v1/hosts/153/ad_hoc_commands/","fact_versions":"/api/v1/hosts/153/fact_versions/","inventory_sources":"/api/v1/hosts/153/inventory_sources/","groups":"/api/v1/hosts/153/groups/","activity_stream":"/api/v1/hosts/153/activity_stream/","all_groups":"/api/v1/hosts/153/all_groups/","ad_hoc_command_events":"/api/v1/hosts/153/ad_hoc_command_events/","inventory":"/api/v1/inventories/45/","last_job":"/api/v1/jobs/542/","last_job_host_summary":"/api/v1/job_host_summaries/295/"},"summary_fields":{"last_job":{"id":542,"name":"miq_Madhu_Test_provision","description":"Madhu + Test","finished":"2017-03-23T19:12:41.314Z","status":"failed","failed":true,"job_template_id":412,"job_template_name":"miq_Madhu_Test_provision"},"last_job_host_summary":{"id":295,"failed":true},"inventory":{"id":45,"name":"miq_Madhu_Test_provision_10","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":[{"status":"failed","finished":"2017-03-23T19:12:41.314Z","id":542,"name":"miq_Madhu_Test_provision"}]},"created":"2017-03-23T19:12:19.630Z","modified":"2017-03-23T19:12:41.211Z","name":"10.0.1.78","description":"","inventory":45,"enabled":true,"instance_id":"","variables":"","has_active_failures":true,"has_inventory_sources":false,"last_job":542,"last_job_host_summary":295},{"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/","last_job":"/api/v1/jobs/570/","last_job_host_summary":"/api/v1/job_host_summaries/314/"},"summary_fields":{"last_job":{"id":570,"name":"miq_Madhu_Test_provision","description":"Madhu + Test","finished":"2017-03-27T16:30:46.879Z","status":"failed","failed":true,"job_template_id":412,"job_template_name":"miq_Madhu_Test_provision"},"last_job_host_summary":{"id":314,"failed":true},"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":[{"status":"failed","finished":"2017-03-27T16:30:46.879Z","id":570,"name":"miq_Madhu_Test_provision"}]},"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":570,"last_job_host_summary":314},{"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/","last_job":"/api/v1/jobs/572/","last_job_host_summary":"/api/v1/job_host_summaries/315/"},"summary_fields":{"last_job":{"id":572,"name":"miq_Madhu_Test_provision","description":"Madhu + Test","finished":"2017-03-27T16:35:59.102Z","status":"failed","failed":true,"job_template_id":412,"job_template_name":"miq_Madhu_Test_provision"},"last_job_host_summary":{"id":315,"failed":true},"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":[{"status":"failed","finished":"2017-03-27T16:35:59.102Z","id":572,"name":"miq_Madhu_Test_provision"}]},"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":572,"last_job_host_summary":315},{"id":200,"type":"host","url":"/api/v1/hosts/200/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/200/job_host_summaries/","variable_data":"/api/v1/hosts/200/variable_data/","job_events":"/api/v1/hosts/200/job_events/","ad_hoc_commands":"/api/v1/hosts/200/ad_hoc_commands/","fact_versions":"/api/v1/hosts/200/fact_versions/","inventory_sources":"/api/v1/hosts/200/inventory_sources/","groups":"/api/v1/hosts/200/groups/","activity_stream":"/api/v1/hosts/200/activity_stream/","all_groups":"/api/v1/hosts/200/all_groups/","ad_hoc_command_events":"/api/v1/hosts/200/ad_hoc_command_events/","inventory":"/api/v1/inventories/76/","last_job":"/api/v1/jobs/880/","last_job_host_summary":"/api/v1/job_host_summaries/390/"},"summary_fields":{"last_job":{"id":880,"name":"lucy_print_output","description":"","finished":"2017-05-08T15:19:42.671Z","status":"successful","failed":false,"job_template_id":176,"job_template_name":"lucy_print_output"},"last_job_host_summary":{"id":390,"failed":false},"inventory":{"id":76,"name":"ansible + tower","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-08T15:19:42.671Z","id":880,"name":"lucy_print_output"},{"status":"successful","finished":"2017-05-08T15:19:06.432Z","id":878,"name":"lucy_print_output"}]},"created":"2017-05-08T15:17:14.405Z","modified":"2017-05-08T15:19:42.334Z","name":"10.8.96.152","description":"","inventory":76,"enabled":true,"instance_id":"","variables":"","has_active_failures":false,"has_inventory_sources":false,"last_job":880,"last_job_host_summary":390},{"id":100,"type":"host","url":"/api/v1/hosts/100/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/100/job_host_summaries/","variable_data":"/api/v1/hosts/100/variable_data/","job_events":"/api/v1/hosts/100/job_events/","ad_hoc_commands":"/api/v1/hosts/100/ad_hoc_commands/","fact_versions":"/api/v1/hosts/100/fact_versions/","inventory_sources":"/api/v1/hosts/100/inventory_sources/","groups":"/api/v1/hosts/100/groups/","activity_stream":"/api/v1/hosts/100/activity_stream/","all_groups":"/api/v1/hosts/100/all_groups/","ad_hoc_command_events":"/api/v1/hosts/100/ad_hoc_command_events/","inventory":"/api/v1/inventories/9/","last_job":"/api/v1/jobs/905/","last_job_host_summary":"/api/v1/job_host_summaries/397/"},"summary_fields":{"last_job":{"id":905,"name":"list_inputs","description":"","finished":"2017-06-08T15:24:55.981Z","status":"successful","failed":false,"job_template_id":185,"job_template_name":"list_inputs"},"last_job_host_summary":{"id":397,"failed":false},"inventory":{"id":9,"name":"lucys_tests","description":"","has_active_failures":false,"total_hosts":2,"hosts_with_active_failures":0,"total_groups":2,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"recent_jobs":[{"status":"successful","finished":"2017-06-08T15:24:55.981Z","id":905,"name":"list_inputs"},{"status":"failed","finished":"2017-05-08T15:10:30.169Z","id":872,"name":"lucy_print_output"},{"status":"failed","finished":"2017-05-04T20:44:24.695Z","id":869,"name":"lucy_print_output"},{"status":"successful","finished":"2017-05-04T20:41:48.315Z","id":867,"name":"lucy_print_output"},{"status":"successful","finished":"2017-05-04T20:39:48.022Z","id":865,"name":"lucy_print_output"}]},"created":"2017-02-27T17:35:04.932Z","modified":"2017-06-08T15:24:55.674Z","name":"10.8.99.205","description":"","inventory":9,"enabled":true,"instance_id":"","variables":"","has_active_failures":false,"has_inventory_sources":false,"last_job":905,"last_job_host_summary":397},{"id":70,"type":"host","url":"/api/v1/hosts/70/","related":{"modified_by":"/api/v1/users/1/","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/157/","last_job_host_summary":"/api/v1/job_host_summaries/77/"},"summary_fields":{"last_job":{"id":157,"name":"lucy_test_1","description":"","finished":"2017-02-20T15:31:15.178Z","status":"successful","failed":false,"job_template_id":156,"job_template_name":"lucy_test_1"},"last_job_host_summary":{"id":77,"failed":false},"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"recent_jobs":[{"status":"successful","finished":"2017-02-20T15:31:15.178Z","id":157,"name":"lucy_test_1"}]},"created":"2016-08-31T16:59:40.277Z","modified":"2017-02-20T21:24:01.901Z","name":"10.8.99.207","description":"imported","inventory":2,"enabled":true,"instance_id":"","variables":"","has_active_failures":false,"has_inventory_sources":true,"last_job":157,"last_job_host_summary":77},{"id":99,"type":"host","url":"/api/v1/hosts/99/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/99/job_host_summaries/","variable_data":"/api/v1/hosts/99/variable_data/","job_events":"/api/v1/hosts/99/job_events/","ad_hoc_commands":"/api/v1/hosts/99/ad_hoc_commands/","fact_versions":"/api/v1/hosts/99/fact_versions/","inventory_sources":"/api/v1/hosts/99/inventory_sources/","groups":"/api/v1/hosts/99/groups/","activity_stream":"/api/v1/hosts/99/activity_stream/","all_groups":"/api/v1/hosts/99/all_groups/","ad_hoc_command_events":"/api/v1/hosts/99/ad_hoc_command_events/","inventory":"/api/v1/inventories/9/","last_job":"/api/v1/jobs/905/","last_job_host_summary":"/api/v1/job_host_summaries/398/"},"summary_fields":{"last_job":{"id":905,"name":"list_inputs","description":"","finished":"2017-06-08T15:24:55.981Z","status":"successful","failed":false,"job_template_id":185,"job_template_name":"list_inputs"},"last_job_host_summary":{"id":398,"failed":false},"inventory":{"id":9,"name":"lucys_tests","description":"","has_active_failures":false,"total_hosts":2,"hosts_with_active_failures":0,"total_groups":2,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"recent_jobs":[{"status":"successful","finished":"2017-06-08T15:24:55.981Z","id":905,"name":"list_inputs"},{"status":"failed","finished":"2017-05-08T15:10:30.169Z","id":872,"name":"lucy_print_output"},{"status":"failed","finished":"2017-05-04T20:44:24.695Z","id":869,"name":"lucy_print_output"},{"status":"successful","finished":"2017-05-04T20:41:48.315Z","id":867,"name":"lucy_print_output"},{"status":"successful","finished":"2017-05-04T20:39:48.022Z","id":865,"name":"lucy_print_output"}]},"created":"2017-02-27T17:33:59.109Z","modified":"2017-06-08T15:24:55.678Z","name":"10.8.99.207","description":"","inventory":9,"enabled":true,"instance_id":"","variables":"","has_active_failures":false,"has_inventory_sources":false,"last_job":905,"last_job_host_summary":398},{"id":101,"type":"host","url":"/api/v1/hosts/101/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/101/job_host_summaries/","variable_data":"/api/v1/hosts/101/variable_data/","job_events":"/api/v1/hosts/101/job_events/","ad_hoc_commands":"/api/v1/hosts/101/ad_hoc_commands/","fact_versions":"/api/v1/hosts/101/fact_versions/","inventory_sources":"/api/v1/hosts/101/inventory_sources/","groups":"/api/v1/hosts/101/groups/","activity_stream":"/api/v1/hosts/101/activity_stream/","all_groups":"/api/v1/hosts/101/all_groups/","ad_hoc_command_events":"/api/v1/hosts/101/ad_hoc_command_events/","inventory":"/api/v1/inventories/16/","last_job":"/api/v1/jobs/465/","last_job_host_summary":"/api/v1/job_host_summaries/238/"},"summary_fields":{"last_job":{"id":465,"name":"miq_ap_tina_test1_provision","description":"10.8.99.207 + and 10.8.99.248","finished":"2017-03-15T23:00:39.308Z","status":"failed","failed":true,"job_template_id":333,"job_template_name":"miq_ap_tina_test1_provision"},"last_job_host_summary":{"id":238,"failed":true},"inventory":{"id":16,"name":"miq_ap_tina_test1_provision_307","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":[{"status":"failed","finished":"2017-03-15T23:00:39.308Z","id":465,"name":"miq_ap_tina_test1_provision"}]},"created":"2017-03-15T22:59:54.322Z","modified":"2017-03-15T23:00:39.038Z","name":"10.8.99.207","description":"","inventory":16,"enabled":true,"instance_id":"","variables":"","has_active_failures":true,"has_inventory_sources":false,"last_job":465,"last_job_host_summary":238},{"id":103,"type":"host","url":"/api/v1/hosts/103/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/103/job_host_summaries/","variable_data":"/api/v1/hosts/103/variable_data/","job_events":"/api/v1/hosts/103/job_events/","ad_hoc_commands":"/api/v1/hosts/103/ad_hoc_commands/","fact_versions":"/api/v1/hosts/103/fact_versions/","inventory_sources":"/api/v1/hosts/103/inventory_sources/","groups":"/api/v1/hosts/103/groups/","activity_stream":"/api/v1/hosts/103/activity_stream/","all_groups":"/api/v1/hosts/103/all_groups/","ad_hoc_command_events":"/api/v1/hosts/103/ad_hoc_command_events/","inventory":"/api/v1/inventories/17/","last_job":"/api/v1/jobs/469/","last_job_host_summary":"/api/v1/job_host_summaries/242/"},"summary_fields":{"last_job":{"id":469,"name":"miq_ap_tina_test1_provision","description":"10.8.99.207 + and 10.8.99.248","finished":"2017-03-16T17:19:58.944Z","status":"failed","failed":true,"job_template_id":333,"job_template_name":"miq_ap_tina_test1_provision"},"last_job_host_summary":{"id":242,"failed":true},"inventory":{"id":17,"name":"miq_ap_tina_test1_provision_309","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":[{"status":"failed","finished":"2017-03-16T17:19:58.944Z","id":469,"name":"miq_ap_tina_test1_provision"}]},"created":"2017-03-16T17:19:10.977Z","modified":"2017-03-16T17:19:58.685Z","name":"10.8.99.207","description":"","inventory":17,"enabled":true,"instance_id":"","variables":"","has_active_failures":true,"has_inventory_sources":false,"last_job":469,"last_job_host_summary":242},{"id":115,"type":"host","url":"/api/v1/hosts/115/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/115/job_host_summaries/","variable_data":"/api/v1/hosts/115/variable_data/","job_events":"/api/v1/hosts/115/job_events/","ad_hoc_commands":"/api/v1/hosts/115/ad_hoc_commands/","fact_versions":"/api/v1/hosts/115/fact_versions/","inventory_sources":"/api/v1/hosts/115/inventory_sources/","groups":"/api/v1/hosts/115/groups/","activity_stream":"/api/v1/hosts/115/activity_stream/","all_groups":"/api/v1/hosts/115/all_groups/","ad_hoc_command_events":"/api/v1/hosts/115/ad_hoc_command_events/","inventory":"/api/v1/inventories/24/","last_job":"/api/v1/jobs/483/","last_job_host_summary":"/api/v1/job_host_summaries/254/"},"summary_fields":{"last_job":{"id":483,"name":"miq_ap_tina_test_pb_nres_provision","description":"10.8.99.207 + and 10.8.99.248","finished":"2017-03-17T22:15:47.928Z","status":"failed","failed":true,"job_template_id":369,"job_template_name":"miq_ap_tina_test_pb_nres_provision"},"last_job_host_summary":{"id":254,"failed":true},"inventory":{"id":24,"name":"miq_ap_tina_test_pb_nres_provision_316","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":[{"status":"failed","finished":"2017-03-17T22:15:47.928Z","id":483,"name":"miq_ap_tina_test_pb_nres_provision"}]},"created":"2017-03-17T22:15:25.010Z","modified":"2017-03-17T22:15:47.610Z","name":"10.8.99.207","description":"","inventory":24,"enabled":true,"instance_id":"","variables":"","has_active_failures":true,"has_inventory_sources":false,"last_job":483,"last_job_host_summary":254},{"id":117,"type":"host","url":"/api/v1/hosts/117/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/117/job_host_summaries/","variable_data":"/api/v1/hosts/117/variable_data/","job_events":"/api/v1/hosts/117/job_events/","ad_hoc_commands":"/api/v1/hosts/117/ad_hoc_commands/","fact_versions":"/api/v1/hosts/117/fact_versions/","inventory_sources":"/api/v1/hosts/117/inventory_sources/","groups":"/api/v1/hosts/117/groups/","activity_stream":"/api/v1/hosts/117/activity_stream/","all_groups":"/api/v1/hosts/117/all_groups/","ad_hoc_command_events":"/api/v1/hosts/117/ad_hoc_command_events/","inventory":"/api/v1/inventories/25/","last_job":"/api/v1/jobs/485/","last_job_host_summary":"/api/v1/job_host_summaries/256/"},"summary_fields":{"last_job":{"id":485,"name":"miq_ap_tina_test_pb_nres_provision","description":"10.8.99.207 + and 10.8.99.248","finished":"2017-03-17T22:19:24.196Z","status":"failed","failed":true,"job_template_id":369,"job_template_name":"miq_ap_tina_test_pb_nres_provision"},"last_job_host_summary":{"id":256,"failed":true},"inventory":{"id":25,"name":"miq_ap_tina_test_pb_nres_provision_317","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":[{"status":"failed","finished":"2017-03-17T22:19:24.196Z","id":485,"name":"miq_ap_tina_test_pb_nres_provision"}]},"created":"2017-03-17T22:19:02.324Z","modified":"2017-03-17T22:19:23.922Z","name":"10.8.99.207","description":"","inventory":25,"enabled":true,"instance_id":"","variables":"","has_active_failures":true,"has_inventory_sources":false,"last_job":485,"last_job_host_summary":256},{"id":131,"type":"host","url":"/api/v1/hosts/131/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/131/job_host_summaries/","variable_data":"/api/v1/hosts/131/variable_data/","job_events":"/api/v1/hosts/131/job_events/","ad_hoc_commands":"/api/v1/hosts/131/ad_hoc_commands/","fact_versions":"/api/v1/hosts/131/fact_versions/","inventory_sources":"/api/v1/hosts/131/inventory_sources/","groups":"/api/v1/hosts/131/groups/","activity_stream":"/api/v1/hosts/131/activity_stream/","all_groups":"/api/v1/hosts/131/all_groups/","ad_hoc_command_events":"/api/v1/hosts/131/ad_hoc_command_events/","inventory":"/api/v1/inventories/32/","last_job":"/api/v1/jobs/509/","last_job_host_summary":"/api/v1/job_host_summaries/270/"},"summary_fields":{"last_job":{"id":509,"name":"miq_aaa_playbook_post_resource_retirement","description":"aaa_playbook_post_resource","finished":"2017-03-22T19:07:42.459Z","status":"successful","failed":false},"last_job_host_summary":{"id":270,"failed":false},"inventory":{"id":32,"name":"miq_aaa_playbook_post_resource_retirement_322","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-03-22T19:07:42.459Z","id":509,"name":""}]},"created":"2017-03-22T19:07:06.368Z","modified":"2017-03-22T19:07:42.187Z","name":"10.8.99.207","description":"","inventory":32,"enabled":true,"instance_id":"","variables":"","has_active_failures":false,"has_inventory_sources":false,"last_job":509,"last_job_host_summary":270},{"id":137,"type":"host","url":"/api/v1/hosts/137/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/137/job_host_summaries/","variable_data":"/api/v1/hosts/137/variable_data/","job_events":"/api/v1/hosts/137/job_events/","ad_hoc_commands":"/api/v1/hosts/137/ad_hoc_commands/","fact_versions":"/api/v1/hosts/137/fact_versions/","inventory_sources":"/api/v1/hosts/137/inventory_sources/","groups":"/api/v1/hosts/137/groups/","activity_stream":"/api/v1/hosts/137/activity_stream/","all_groups":"/api/v1/hosts/137/all_groups/","ad_hoc_command_events":"/api/v1/hosts/137/ad_hoc_command_events/","inventory":"/api/v1/inventories/35/","last_job":"/api/v1/jobs/515/","last_job_host_summary":"/api/v1/job_host_summaries/276/"},"summary_fields":{"last_job":{"id":515,"name":"miq_aaa_playbook_pre_resource_provision","description":"aaa_playbook_pre_resource","finished":"2017-03-22T19:43:33.656Z","status":"successful","failed":false},"last_job_host_summary":{"id":276,"failed":false},"inventory":{"id":35,"name":"miq_aaa_playbook_pre_resource_provision_324","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-03-22T19:43:33.656Z","id":515,"name":""}]},"created":"2017-03-22T19:43:07.842Z","modified":"2017-03-22T19:43:33.358Z","name":"10.8.99.207","description":"","inventory":35,"enabled":true,"instance_id":"","variables":"","has_active_failures":false,"has_inventory_sources":false,"last_job":515,"last_job_host_summary":276},{"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/","last_job":"/api/v1/jobs/586/","last_job_host_summary":"/api/v1/job_host_summaries/320/"},"summary_fields":{"last_job":{"id":586,"name":"miq_wei0328-2_retirement","description":"test","finished":"2017-03-29T14:13:52.366Z","status":"failed","failed":true,"job_template_id":447,"job_template_name":"miq_wei0328-2_retirement"},"last_job_host_summary":{"id":320,"failed":true},"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":[{"status":"failed","finished":"2017-03-29T14:13:52.366Z","id":586,"name":"miq_wei0328-2_retirement"}]},"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":586,"last_job_host_summary":320},{"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":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":108,"type":"host","url":"/api/v1/hosts/108/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/108/job_host_summaries/","variable_data":"/api/v1/hosts/108/variable_data/","job_events":"/api/v1/hosts/108/job_events/","ad_hoc_commands":"/api/v1/hosts/108/ad_hoc_commands/","fact_versions":"/api/v1/hosts/108/fact_versions/","inventory_sources":"/api/v1/hosts/108/inventory_sources/","groups":"/api/v1/hosts/108/groups/","activity_stream":"/api/v1/hosts/108/activity_stream/","all_groups":"/api/v1/hosts/108/all_groups/","ad_hoc_command_events":"/api/v1/hosts/108/ad_hoc_command_events/","inventory":"/api/v1/inventories/20/","last_job":"/api/v1/jobs/475/","last_job_host_summary":"/api/v1/job_host_summaries/246/"},"summary_fields":{"last_job":{"id":475,"name":"miq_tina_ap_test2_provision","description":"tina_ap_test2","finished":"2017-03-16T21:31:43.713Z","status":"failed","failed":true,"job_template_id":354,"job_template_name":"miq_tina_ap_test2_provision"},"last_job_host_summary":{"id":246,"failed":true},"inventory":{"id":20,"name":"miq_tina_ap_test2_provision_312","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":[{"status":"failed","finished":"2017-03-16T21:31:43.713Z","id":475,"name":"miq_tina_ap_test2_provision"}]},"created":"2017-03-16T21:31:08.062Z","modified":"2017-03-16T21:31:43.668Z","name":"10.8.99.207 + and 10.8.99.248","description":"","inventory":20,"enabled":true,"instance_id":"","variables":"","has_active_failures":true,"has_inventory_sources":false,"last_job":475,"last_job_host_summary":246},{"id":102,"type":"host","url":"/api/v1/hosts/102/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/102/job_host_summaries/","variable_data":"/api/v1/hosts/102/variable_data/","job_events":"/api/v1/hosts/102/job_events/","ad_hoc_commands":"/api/v1/hosts/102/ad_hoc_commands/","fact_versions":"/api/v1/hosts/102/fact_versions/","inventory_sources":"/api/v1/hosts/102/inventory_sources/","groups":"/api/v1/hosts/102/groups/","activity_stream":"/api/v1/hosts/102/activity_stream/","all_groups":"/api/v1/hosts/102/all_groups/","ad_hoc_command_events":"/api/v1/hosts/102/ad_hoc_command_events/","inventory":"/api/v1/inventories/16/","last_job":"/api/v1/jobs/465/","last_job_host_summary":"/api/v1/job_host_summaries/237/"},"summary_fields":{"last_job":{"id":465,"name":"miq_ap_tina_test1_provision","description":"10.8.99.207 + and 10.8.99.248","finished":"2017-03-15T23:00:39.308Z","status":"failed","failed":true,"job_template_id":333,"job_template_name":"miq_ap_tina_test1_provision"},"last_job_host_summary":{"id":237,"failed":true},"inventory":{"id":16,"name":"miq_ap_tina_test1_provision_307","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":[{"status":"failed","finished":"2017-03-15T23:00:39.308Z","id":465,"name":"miq_ap_tina_test1_provision"}]},"created":"2017-03-15T22:59:56.211Z","modified":"2017-03-15T23:00:39.049Z","name":"10.8.99.248","description":"","inventory":16,"enabled":true,"instance_id":"","variables":"","has_active_failures":true,"has_inventory_sources":false,"last_job":465,"last_job_host_summary":237},{"id":104,"type":"host","url":"/api/v1/hosts/104/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/104/job_host_summaries/","variable_data":"/api/v1/hosts/104/variable_data/","job_events":"/api/v1/hosts/104/job_events/","ad_hoc_commands":"/api/v1/hosts/104/ad_hoc_commands/","fact_versions":"/api/v1/hosts/104/fact_versions/","inventory_sources":"/api/v1/hosts/104/inventory_sources/","groups":"/api/v1/hosts/104/groups/","activity_stream":"/api/v1/hosts/104/activity_stream/","all_groups":"/api/v1/hosts/104/all_groups/","ad_hoc_command_events":"/api/v1/hosts/104/ad_hoc_command_events/","inventory":"/api/v1/inventories/17/","last_job":"/api/v1/jobs/469/","last_job_host_summary":"/api/v1/job_host_summaries/241/"},"summary_fields":{"last_job":{"id":469,"name":"miq_ap_tina_test1_provision","description":"10.8.99.207 + and 10.8.99.248","finished":"2017-03-16T17:19:58.944Z","status":"failed","failed":true,"job_template_id":333,"job_template_name":"miq_ap_tina_test1_provision"},"last_job_host_summary":{"id":241,"failed":true},"inventory":{"id":17,"name":"miq_ap_tina_test1_provision_309","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":[{"status":"failed","finished":"2017-03-16T17:19:58.944Z","id":469,"name":"miq_ap_tina_test1_provision"}]},"created":"2017-03-16T17:19:11.282Z","modified":"2017-03-16T17:19:58.693Z","name":"10.8.99.248","description":"","inventory":17,"enabled":true,"instance_id":"","variables":"","has_active_failures":true,"has_inventory_sources":false,"last_job":469,"last_job_host_summary":241},{"id":116,"type":"host","url":"/api/v1/hosts/116/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/116/job_host_summaries/","variable_data":"/api/v1/hosts/116/variable_data/","job_events":"/api/v1/hosts/116/job_events/","ad_hoc_commands":"/api/v1/hosts/116/ad_hoc_commands/","fact_versions":"/api/v1/hosts/116/fact_versions/","inventory_sources":"/api/v1/hosts/116/inventory_sources/","groups":"/api/v1/hosts/116/groups/","activity_stream":"/api/v1/hosts/116/activity_stream/","all_groups":"/api/v1/hosts/116/all_groups/","ad_hoc_command_events":"/api/v1/hosts/116/ad_hoc_command_events/","inventory":"/api/v1/inventories/24/","last_job":"/api/v1/jobs/483/","last_job_host_summary":"/api/v1/job_host_summaries/253/"},"summary_fields":{"last_job":{"id":483,"name":"miq_ap_tina_test_pb_nres_provision","description":"10.8.99.207 + and 10.8.99.248","finished":"2017-03-17T22:15:47.928Z","status":"failed","failed":true,"job_template_id":369,"job_template_name":"miq_ap_tina_test_pb_nres_provision"},"last_job_host_summary":{"id":253,"failed":true},"inventory":{"id":24,"name":"miq_ap_tina_test_pb_nres_provision_316","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":[{"status":"failed","finished":"2017-03-17T22:15:47.928Z","id":483,"name":"miq_ap_tina_test_pb_nres_provision"}]},"created":"2017-03-17T22:15:25.280Z","modified":"2017-03-17T22:15:47.620Z","name":"10.8.99.248","description":"","inventory":24,"enabled":true,"instance_id":"","variables":"","has_active_failures":true,"has_inventory_sources":false,"last_job":483,"last_job_host_summary":253},{"id":118,"type":"host","url":"/api/v1/hosts/118/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/118/job_host_summaries/","variable_data":"/api/v1/hosts/118/variable_data/","job_events":"/api/v1/hosts/118/job_events/","ad_hoc_commands":"/api/v1/hosts/118/ad_hoc_commands/","fact_versions":"/api/v1/hosts/118/fact_versions/","inventory_sources":"/api/v1/hosts/118/inventory_sources/","groups":"/api/v1/hosts/118/groups/","activity_stream":"/api/v1/hosts/118/activity_stream/","all_groups":"/api/v1/hosts/118/all_groups/","ad_hoc_command_events":"/api/v1/hosts/118/ad_hoc_command_events/","inventory":"/api/v1/inventories/25/","last_job":"/api/v1/jobs/485/","last_job_host_summary":"/api/v1/job_host_summaries/255/"},"summary_fields":{"last_job":{"id":485,"name":"miq_ap_tina_test_pb_nres_provision","description":"10.8.99.207 + and 10.8.99.248","finished":"2017-03-17T22:19:24.196Z","status":"failed","failed":true,"job_template_id":369,"job_template_name":"miq_ap_tina_test_pb_nres_provision"},"last_job_host_summary":{"id":255,"failed":true},"inventory":{"id":25,"name":"miq_ap_tina_test_pb_nres_provision_317","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":[{"status":"failed","finished":"2017-03-17T22:19:24.196Z","id":485,"name":"miq_ap_tina_test_pb_nres_provision"}]},"created":"2017-03-17T22:19:02.605Z","modified":"2017-03-17T22:19:23.932Z","name":"10.8.99.248","description":"","inventory":25,"enabled":true,"instance_id":"","variables":"","has_active_failures":true,"has_inventory_sources":false,"last_job":485,"last_job_host_summary":255},{"id":132,"type":"host","url":"/api/v1/hosts/132/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/132/job_host_summaries/","variable_data":"/api/v1/hosts/132/variable_data/","job_events":"/api/v1/hosts/132/job_events/","ad_hoc_commands":"/api/v1/hosts/132/ad_hoc_commands/","fact_versions":"/api/v1/hosts/132/fact_versions/","inventory_sources":"/api/v1/hosts/132/inventory_sources/","groups":"/api/v1/hosts/132/groups/","activity_stream":"/api/v1/hosts/132/activity_stream/","all_groups":"/api/v1/hosts/132/all_groups/","ad_hoc_command_events":"/api/v1/hosts/132/ad_hoc_command_events/","inventory":"/api/v1/inventories/32/","last_job":"/api/v1/jobs/509/","last_job_host_summary":"/api/v1/job_host_summaries/269/"},"summary_fields":{"last_job":{"id":509,"name":"miq_aaa_playbook_post_resource_retirement","description":"aaa_playbook_post_resource","finished":"2017-03-22T19:07:42.459Z","status":"successful","failed":false},"last_job_host_summary":{"id":269,"failed":false},"inventory":{"id":32,"name":"miq_aaa_playbook_post_resource_retirement_322","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-03-22T19:07:42.459Z","id":509,"name":""}]},"created":"2017-03-22T19:07:06.730Z","modified":"2017-03-22T19:07:42.175Z","name":"10.8.99.248","description":"","inventory":32,"enabled":true,"instance_id":"","variables":"","has_active_failures":false,"has_inventory_sources":false,"last_job":509,"last_job_host_summary":269}]}' + http_version: + recorded_at: Wed, 21 Jun 2017 19:22:53 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/hosts/?page=2 + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 200 message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:45 GMT + - Wed, 21 Jun 2017 19:22: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: @@ -242,29 +687,34 @@ http_interactions: Allow: - GET, POST, HEAD, OPTIONS X-Api-Time: - - 0.219s + - 0.259s Content-Length: - - '91587' + - '76574' 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":133,"next":"/api/v1/hosts/?page=3","previous":"/api/v1/hosts/?page=1","results":[{"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":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":118,"type":"host","url":"/api/v1/hosts/118/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/118/job_host_summaries/","variable_data":"/api/v1/hosts/118/variable_data/","job_events":"/api/v1/hosts/118/job_events/","ad_hoc_commands":"/api/v1/hosts/118/ad_hoc_commands/","fact_versions":"/api/v1/hosts/118/fact_versions/","inventory_sources":"/api/v1/hosts/118/inventory_sources/","groups":"/api/v1/hosts/118/groups/","activity_stream":"/api/v1/hosts/118/activity_stream/","all_groups":"/api/v1/hosts/118/all_groups/","ad_hoc_command_events":"/api/v1/hosts/118/ad_hoc_command_events/","inventory":"/api/v1/inventories/25/","last_job":"/api/v1/jobs/485/","last_job_host_summary":"/api/v1/job_host_summaries/255/"},"summary_fields":{"last_job":{"id":485,"name":"miq_ap_tina_test_pb_nres_provision","description":"10.8.99.207 + and 10.8.99.248","finished":"2017-03-17T22:19:24.196Z","status":"failed","failed":true,"job_template_id":369,"job_template_name":"miq_ap_tina_test_pb_nres_provision"},"last_job_host_summary":{"id":255,"failed":true},"inventory":{"id":25,"name":"miq_ap_tina_test_pb_nres_provision_317","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":[{"status":"failed","finished":"2017-03-17T22:19:24.196Z","id":485,"name":"miq_ap_tina_test_pb_nres_provision"}]},"created":"2017-03-17T22:19:02.605Z","modified":"2017-03-17T22:19:23.932Z","name":"10.8.99.248","description":"","inventory":25,"enabled":true,"instance_id":"","variables":"","has_active_failures":true,"has_inventory_sources":false,"last_job":485,"last_job_host_summary":255},{"id":132,"type":"host","url":"/api/v1/hosts/132/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/132/job_host_summaries/","variable_data":"/api/v1/hosts/132/variable_data/","job_events":"/api/v1/hosts/132/job_events/","ad_hoc_commands":"/api/v1/hosts/132/ad_hoc_commands/","fact_versions":"/api/v1/hosts/132/fact_versions/","inventory_sources":"/api/v1/hosts/132/inventory_sources/","groups":"/api/v1/hosts/132/groups/","activity_stream":"/api/v1/hosts/132/activity_stream/","all_groups":"/api/v1/hosts/132/all_groups/","ad_hoc_command_events":"/api/v1/hosts/132/ad_hoc_command_events/","inventory":"/api/v1/inventories/32/","last_job":"/api/v1/jobs/509/","last_job_host_summary":"/api/v1/job_host_summaries/269/"},"summary_fields":{"last_job":{"id":509,"name":"miq_aaa_playbook_post_resource_retirement","description":"aaa_playbook_post_resource","finished":"2017-03-22T19:07:42.459Z","status":"successful","failed":false},"last_job_host_summary":{"id":269,"failed":false},"inventory":{"id":32,"name":"miq_aaa_playbook_post_resource_retirement_322","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-03-22T19:07:42.459Z","id":509,"name":""}]},"created":"2017-03-22T19:07:06.730Z","modified":"2017-03-22T19:07:42.175Z","name":"10.8.99.248","description":"","inventory":32,"enabled":true,"instance_id":"","variables":"","has_active_failures":false,"has_inventory_sources":false,"last_job":509,"last_job_host_summary":269},{"id":116,"type":"host","url":"/api/v1/hosts/116/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/116/job_host_summaries/","variable_data":"/api/v1/hosts/116/variable_data/","job_events":"/api/v1/hosts/116/job_events/","ad_hoc_commands":"/api/v1/hosts/116/ad_hoc_commands/","fact_versions":"/api/v1/hosts/116/fact_versions/","inventory_sources":"/api/v1/hosts/116/inventory_sources/","groups":"/api/v1/hosts/116/groups/","activity_stream":"/api/v1/hosts/116/activity_stream/","all_groups":"/api/v1/hosts/116/all_groups/","ad_hoc_command_events":"/api/v1/hosts/116/ad_hoc_command_events/","inventory":"/api/v1/inventories/24/","last_job":"/api/v1/jobs/483/","last_job_host_summary":"/api/v1/job_host_summaries/253/"},"summary_fields":{"last_job":{"id":483,"name":"miq_ap_tina_test_pb_nres_provision","description":"10.8.99.207 + and 10.8.99.248","finished":"2017-03-17T22:15:47.928Z","status":"failed","failed":true,"job_template_id":369,"job_template_name":"miq_ap_tina_test_pb_nres_provision"},"last_job_host_summary":{"id":253,"failed":true},"inventory":{"id":24,"name":"miq_ap_tina_test_pb_nres_provision_316","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":[{"status":"failed","finished":"2017-03-17T22:15:47.928Z","id":483,"name":"miq_ap_tina_test_pb_nres_provision"}]},"created":"2017-03-17T22:15:25.280Z","modified":"2017-03-17T22:15:47.620Z","name":"10.8.99.248","description":"","inventory":24,"enabled":true,"instance_id":"","variables":"","has_active_failures":true,"has_inventory_sources":false,"last_job":483,"last_job_host_summary":253},{"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":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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\": 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\": 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\": + \"ibm-x3550m4-03.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_instanceUuid\": + \"500c097c-aa23-eddf-71b6-609859c29bf8\", \"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\": @@ -275,10 +725,7 @@ http_interactions: 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\": + 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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:39.972Z","modified":"2017-02-17T19:36:28.777Z","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 @@ -287,11 +734,11 @@ http_interactions: 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\": + \"vmware_hostSystem\": \"ibm-x3550m4-03.cloudforms.lab.eng.rdu2.redhat.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\": @@ -306,10 +753,7 @@ http_interactions: \"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\": + 93}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:39.977Z","modified":"2017-02-17T19:36:28.800Z","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 @@ -318,7 +762,7 @@ http_interactions: 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\", + 0, \"ansible_ssh_host\": \"192.168.122.1\", \"vmware_hostSystem\": \"ibm-x3550m4-03.cloudforms.lab.eng.rdu2.redhat.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\": @@ -336,10 +780,7 @@ http_interactions: \"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\": + \"vmware_sharedMemory\": 149}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:39.983Z","modified":"2017-02-17T19:36:28.814Z","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 @@ -348,7 +789,7 @@ http_interactions: 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\", + 23, \"ansible_ssh_host\": \"10.8.97.9\", \"vmware_hostSystem\": \"ibm-x3550m4-03.cloudforms.lab.eng.rdu2.redhat.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, @@ -366,10 +807,7 @@ http_interactions: \"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\": + \"inactive\", \"vmware_unshared\": 9841623597, \"vmware_sharedMemory\": 381}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:39.988Z","modified":"2017-02-17T19:36:28.825Z","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 @@ -378,11 +816,11 @@ http_interactions: 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\": + \"vmware_hostSystem\": \"ibm-x3550m4-03.cloudforms.lab.eng.rdu2.redhat.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\", @@ -395,10 +833,7 @@ http_interactions: \"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\": + \"inactive\", \"vmware_unshared\": 10295996967, \"vmware_sharedMemory\": 143}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:39.993Z","modified":"2017-02-17T19:36:28.833Z","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 @@ -407,7 +842,7 @@ http_interactions: 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\", + 4606, \"ansible_ssh_host\": \"10.8.97.8\", \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\": @@ -426,19 +861,16 @@ http_interactions: \"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\": + \"vmware_sharedMemory\": 56}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:39.999Z","modified":"2017-02-17T19:36:28.843Z","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\", + 46, \"vmware_hostName\": \"dhcp-8-99-221.cloudforms.lab.eng.rdu2.redhat.com\", + \"vmware_instanceUuid\": \"50336b48-19a0-91bb-5f74-3da27ef38d57\", \"vmware_distributedCpuEntitlement\": + 767, \"ansible_ssh_host\": \"10.8.99.221\", \"vmware_hostSystem\": \"ibm-x3550m4-01.cloudforms.lab.eng.rdu2.redhat.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, @@ -456,21 +888,21 @@ http_interactions: \"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\": + \"inactive\", \"vmware_unshared\": 17568966072, \"vmware_sharedMemory\": 25}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\": 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-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\": + \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\": @@ -479,18 +911,15 @@ http_interactions: \"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\": + \"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:40.009Z","modified":"2017-02-17T19:36:28.862Z","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\": + \"vmware_hostSystem\": \"ibm-x3550m4-03.cloudforms.lab.eng.rdu2.redhat.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\", \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": @@ -509,67 +938,114 @@ http_interactions: \"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\": + \"vmware_unshared\": 0, \"vmware_sharedMemory\": 155}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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_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\", \"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\": 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\"], \"vmware_cpuReservation\": - 0, \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": -1, - \"vmware_powerState\": \"poweredOff\", \"vmware_guestId\": \"rhel7_64Guest\", + \"dev-esxi6hyper2.cloudforms.lab.eng.rdu2.redhat.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\", + \"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\": + 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\"], + \"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\": + \"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\": 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\": \"notRunning\", \"vmware_staticMemoryEntitlement\": + \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\": + \"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\": + 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":201,"type":"host","url":"/api/v1/hosts/201/","related":{"job_host_summaries":"/api/v1/hosts/201/job_host_summaries/","variable_data":"/api/v1/hosts/201/variable_data/","job_events":"/api/v1/hosts/201/job_events/","ad_hoc_commands":"/api/v1/hosts/201/ad_hoc_commands/","fact_versions":"/api/v1/hosts/201/fact_versions/","inventory_sources":"/api/v1/hosts/201/inventory_sources/","groups":"/api/v1/hosts/201/groups/","activity_stream":"/api/v1/hosts/201/activity_stream/","all_groups":"/api/v1/hosts/201/all_groups/","ad_hoc_command_events":"/api/v1/hosts/201/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2017-06-19T19:42:35.596Z","modified":"2017-06-19T19:44:52.441Z","name":"ag_test_1","description":"imported","inventory":2,"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_numMksConnections\": 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"jwong-esxi3.cloudforms.lab.eng.rdu2.redhat.com\", + \"vmware_instanceUuid\": \"501440fc-8659-7059-b306-d52462d3f460\", \"vmware_distributedCpuEntitlement\": + 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": + 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\": \"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\": + \"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\": \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": 0, \"vmware_ftLogBandwidth\": - -1, \"vmware_datastores\": [\"Prod_ISOs_NFS\", \"NFS Share\"], \"vmware_cpuReservation\": + -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\": - 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\": + \"vmware_numVirtualDisks\": 1, \"vmware_swappedMemory\": 0, \"vmware_annotation\": + \"MIQ GUID=6a017e76-a2a6-11e6-bbdf-402cf4e9d88b\", \"vmware_recordReplayState\": + \"inactive\", \"vmware_unshared\": 8388608, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":false,"last_job":null,"last_job_host_summary":null},{"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_numMksConnections\": 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"jwong-esxi3.cloudforms.lab.eng.rdu2.redhat.com\", + \"vmware_instanceUuid\": \"501440fc-8659-7059-b306-d52462d3f460\", \"vmware_distributedCpuEntitlement\": + 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": + 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\": + \"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\": + \"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":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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:40.025Z","modified":"2017-02-17T19:36:28.873Z","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\": + \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\": @@ -587,28 +1063,25 @@ http_interactions: \"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\": + \"inactive\", \"vmware_unshared\": 6320116600, \"vmware_sharedMemory\": 3590}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:40.031Z","modified":"2017-02-17T19:36:28.882Z","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\": + \"ibm-x3550m4-01.cloudforms.lab.eng.rdu2.redhat.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\": @@ -622,13 +1095,13 @@ http_interactions: \"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_consumedOverheadMemory\": 50, \"vmware_ftLatencyStatus\": \"gray\"}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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_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\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"test-vc60-host2.cloudforms.lab.eng.rdu2.redhat.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\": @@ -646,13 +1119,13 @@ http_interactions: -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\": + \"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\": 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\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"test-vc60-host2.cloudforms.lab.eng.rdu2.redhat.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\", @@ -670,61 +1143,101 @@ http_interactions: \"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\": + \"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\": - 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\": + \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\": - true, \"vmware_toolsRunningStatus\": \"guestToolsNotRunning\", \"vmware_overallCpuDemand\": + 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\", + -1, \"vmware_powerState\": \"poweredOff\", \"vmware_guestId\": \"centos64Guest\", \"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\": + \"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\": + 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.cloudforms.lab.eng.rdu2.redhat.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}]}' + http_version: + recorded_at: Wed, 21 Jun 2017 19:22:53 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/hosts/?page=3 + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:22: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, HEAD, OPTIONS + X-Api-Time: + - 0.243s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: '{"count":133,"next":"/api/v1/hosts/?page=4","previous":"/api/v1/hosts/?page=2","results":[{"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\", @@ -742,15 +1255,16 @@ http_interactions: \"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\": + \"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\": + 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\": @@ -760,7 +1274,7 @@ http_interactions: \"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\", + 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": \"dhcp-8-99-207.cloudforms.lab.eng.rdu2.redhat.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\": @@ -771,12 +1285,12 @@ http_interactions: \"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\": + \"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_instanceUuid\": \"500c4372-559a-e757-7348-9f564eaa5482\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[NFS Share] centos7_temp/centos7_temp.vmtx\", @@ -794,35 +1308,32 @@ http_interactions: \"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\": + \"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:40.068Z","modified":"2017-02-17T19:36:28.890Z","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\": + \"ibm-x3550m4-03.cloudforms.lab.eng.rdu2.redhat.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\": + \"dhcp-8-99-208.cloudforms.lab.eng.rdu2.redhat.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\", @@ -830,92 +1341,92 @@ http_interactions: \"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\": + \"gray\"}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\": \"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\": + \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\": \"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\": + \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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.cloudforms.lab.eng.rdu2.redhat.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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostName\": \"dhcp-8-99-226.cloudforms.lab.eng.rdu2.redhat.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\": + 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\": @@ -927,51 +1438,13 @@ http_interactions: -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}]}' - http_version: - recorded_at: Thu, 09 Feb 2017 09:37:47 GMT -- request: - method: get - uri: https://dev-ansible-tower3.example.com/api/v1/hosts/?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: - - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> - response: - status: - code: 200 - message: OK - headers: - Date: - - Thu, 09 Feb 2017 10:37: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, HEAD, OPTIONS - X-Api-Time: - - 0.219s - Content-Length: - - '88127' - 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\": + \"inactive\", \"vmware_unshared\": 1961248216, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\", @@ -991,37 +1464,38 @@ http_interactions: 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\": + \"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\": + \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\": @@ -1039,39 +1513,92 @@ http_interactions: -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\": + \"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\": [\"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\": + \"jwong-esxi1.cloudforms.lab.eng.rdu2.redhat.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\": + 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":202,"type":"host","url":"/api/v1/hosts/202/","related":{"job_host_summaries":"/api/v1/hosts/202/job_host_summaries/","variable_data":"/api/v1/hosts/202/variable_data/","job_events":"/api/v1/hosts/202/job_events/","ad_hoc_commands":"/api/v1/hosts/202/ad_hoc_commands/","fact_versions":"/api/v1/hosts/202/fact_versions/","inventory_sources":"/api/v1/hosts/202/inventory_sources/","groups":"/api/v1/hosts/202/groups/","activity_stream":"/api/v1/hosts/202/activity_stream/","all_groups":"/api/v1/hosts/202/all_groups/","ad_hoc_command_events":"/api/v1/hosts/202/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2017-06-19T19:42:35.603Z","modified":"2017-06-19T19:44:52.447Z","name":"db-clone-to-template-01","description":"imported","inventory":2,"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\": [\"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\": + \"jwong-esxi1.cloudforms.lab.eng.rdu2.redhat.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\": + 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":false,"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostName\": \"dhcp-8-99-226.cloudforms.lab.eng.rdu2.redhat.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_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\", @@ -1091,13 +1618,13 @@ http_interactions: 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}","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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\", @@ -1117,7 +1644,7 @@ http_interactions: 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}","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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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)\", @@ -1125,12 +1652,12 @@ http_interactions: \"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\": + 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\": @@ -1142,19 +1669,17 @@ http_interactions: -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\": + \"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:40.133Z","modified":"2017-02-17T19:36:28.896Z","name":"djm","description":"imported","inventory":2,"enabled":true,"instance_id":"","variables":"{}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\": + \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\": @@ -1169,60 +1694,61 @@ http_interactions: \"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}","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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\": + \"ibm-x3550m4-01.cloudforms.lab.eng.rdu2.redhat.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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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.cloudforms.lab.eng.rdu2.redhat.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\": [\"datastore1\"], \"vmware_cpuReservation\": 0, + -1, \"vmware_datastores\": [\"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":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\": + 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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\": @@ -1239,15 +1765,17 @@ http_interactions: \"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\": + \"vmware_unshared\": 0, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":242,"type":"host","url":"/api/v1/hosts/242/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/242/job_host_summaries/","variable_data":"/api/v1/hosts/242/variable_data/","job_events":"/api/v1/hosts/242/job_events/","ad_hoc_commands":"/api/v1/hosts/242/ad_hoc_commands/","fact_versions":"/api/v1/hosts/242/fact_versions/","inventory_sources":"/api/v1/hosts/242/inventory_sources/","groups":"/api/v1/hosts/242/groups/","activity_stream":"/api/v1/hosts/242/activity_stream/","all_groups":"/api/v1/hosts/242/all_groups/","ad_hoc_command_events":"/api/v1/hosts/242/ad_hoc_command_events/","inventory":"/api/v1/inventories/103/"},"summary_fields":{"inventory":{"id":103,"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-06-21T19:20:58.236Z","modified":"2017-06-21T19:20:58.236Z","name":"hello_vm","description":"","inventory":103,"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":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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\": + 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\": @@ -1257,7 +1785,7 @@ http_interactions: \"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\", + 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": \"dhcp-8-99-212.cloudforms.lab.eng.rdu2.redhat.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\": @@ -1268,23 +1796,63 @@ http_interactions: \"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\": + \"gray\"}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null}]}' + http_version: + recorded_at: Wed, 21 Jun 2017 19:22:54 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/hosts/?page=4 + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:22: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, HEAD, OPTIONS + X-Api-Time: + - 0.681s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: '{"count":133,"next":"/api/v1/hosts/?page=5","previous":"/api/v1/hosts/?page=3","results":[{"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\": + \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\"], @@ -1292,17 +1860,14 @@ http_interactions: -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\": + \"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:40.159Z","modified":"2017-02-17T19:36:28.902Z","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\": + 41, \"vmware_hostSystem\": \"ibm-x3550m4-03.cloudforms.lab.eng.rdu2.redhat.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\": @@ -1320,7 +1885,7 @@ http_interactions: \"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\": + \"inactive\", \"vmware_unshared\": 2148819452, \"vmware_sharedMemory\": 164}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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)\", @@ -1328,15 +1893,16 @@ http_interactions: \"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_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\": @@ -1345,28 +1911,25 @@ http_interactions: -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\": + \"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:40.170Z","modified":"2017-02-17T19:36:28.907Z","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\": + \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\": @@ -1381,10 +1944,7 @@ http_interactions: \"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\": + \"gray\"}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:40.180Z","modified":"2017-02-17T19:36:28.914Z","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 @@ -1393,7 +1953,7 @@ http_interactions: 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\", + 23, \"ansible_ssh_host\": \"10.8.97.14\", \"vmware_hostSystem\": \"ibm-x3550m4-03.cloudforms.lab.eng.rdu2.redhat.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, @@ -1411,7 +1971,7 @@ http_interactions: \"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\": + \"inactive\", \"vmware_unshared\": 4484540253, \"vmware_sharedMemory\": 230}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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)\", @@ -1419,12 +1979,12 @@ http_interactions: \"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\": + 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\": @@ -1436,19 +1996,16 @@ http_interactions: -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\": + \"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:40.186Z","modified":"2017-02-17T19:36:28.919Z","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_hostName\": \"dhcp-8-99-233.cloudforms.lab.eng.rdu2.redhat.com\", + \"vmware_instanceUuid\": \"500ce4c6-0427-bbd1-ec2d-ffd0820a4512\", \"vmware_distributedCpuEntitlement\": + 23, \"ansible_ssh_host\": \"10.8.99.233\", \"vmware_hostSystem\": \"ibm-x3550m4-03.cloudforms.lab.eng.rdu2.redhat.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\": @@ -1465,14 +2022,11 @@ http_interactions: \"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\": + \"inactive\", \"vmware_unshared\": 6046384657, \"vmware_sharedMemory\": 135}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:39.934Z","modified":"2017-02-17T19:36:28.925Z","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\", + null, \"vmware_balloonedMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-01.cloudforms.lab.eng.rdu2.redhat.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\": @@ -1500,14 +2054,11 @@ http_interactions: \"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\": + \"gray\"}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:40.191Z","modified":"2017-02-17T19:36:28.931Z","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\", + null, \"vmware_balloonedMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\": @@ -1524,7 +2075,7 @@ http_interactions: \"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\", + 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": \"dhcp-8-99-247.cloudforms.lab.eng.rdu2.redhat.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\": @@ -1535,34 +2086,32 @@ http_interactions: \"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\": + \"gray\"}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:40.196Z","modified":"2017-02-17T19:36:28.937Z","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\": + \"ibm-x3550m4-03.cloudforms.lab.eng.rdu2.redhat.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\", @@ -1570,106 +2119,64 @@ http_interactions: \"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\": + \"gray\"}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:40.202Z","modified":"2017-02-17T19:36:28.942Z","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}]}' - http_version: - recorded_at: Thu, 09 Feb 2017 09:37:48 GMT -- request: - method: get - uri: https://dev-ansible-tower3.example.com/api/v1/hosts/?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: - - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> - response: - status: - code: 200 - message: OK - headers: - Date: - - Thu, 09 Feb 2017 10:37: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.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\": + \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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.cloudforms.lab.eng.rdu2.redhat.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":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:40.207Z","modified":"2017-02-17T19:36:28.948Z","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\": + \"ibm-x3550m4-03.cloudforms.lab.eng.rdu2.redhat.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.cloudforms.lab.eng.rdu2.redhat.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\": @@ -1678,15 +2185,16 @@ http_interactions: \"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\": + \"gray\"}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\": + 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\": @@ -1696,7 +2204,7 @@ http_interactions: \"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\", + 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": \"dhcp-8-99-217.cloudforms.lab.eng.rdu2.redhat.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\": @@ -1707,19 +2215,16 @@ http_interactions: \"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\": + \"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:40.218Z","modified":"2017-02-17T19:36:28.954Z","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_hostName\": \"dhcp-8-99-226.cloudforms.lab.eng.rdu2.redhat.com\", + \"vmware_instanceUuid\": \"500c6f11-1d94-18b0-01ca-8072be00d302\", \"vmware_distributedCpuEntitlement\": + 0, \"ansible_ssh_host\": \"10.8.99.246\", \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\": @@ -1736,14 +2241,14 @@ http_interactions: \"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\": + \"inactive\", \"vmware_unshared\": 39933723153, \"vmware_sharedMemory\": 155}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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_distributedCpuEntitlement\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 16384, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[NFS Share] jprause-brewery7/jprause-brewery7.vmx\", \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": @@ -1761,39 +2266,41 @@ http_interactions: \"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\": + \"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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_hostName\": \"dhcp-8-99-249.cloudforms.lab.eng.rdu2.redhat.com\", + \"vmware_instanceUuid\": \"500c7a0d-0538-3baf-ba22-fb070f840b89\", \"vmware_distributedCpuEntitlement\": + 0, \"vmware_hostSystem\": \"ibm-x3550m4-01.cloudforms.lab.eng.rdu2.redhat.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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\", + \"dhcp-8-99-210.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_instanceUuid\": + \"500c871d-ba8d-ef9e-89c0-78095c8f987f\", \"vmware_distributedCpuEntitlement\": + 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[NFS Share] jwong-centos7/jwong-centos7.vmx\", \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": @@ -1810,17 +2317,14 @@ http_interactions: \"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\": + \"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:40.239Z","modified":"2017-02-17T19:36:28.960Z","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\": + 43, \"vmware_hostSystem\": \"ibm-x3550m4-01.cloudforms.lab.eng.rdu2.redhat.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\": @@ -1838,10 +2342,7 @@ http_interactions: \"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\": + \"inactive\", \"vmware_unshared\": 1918894080, \"vmware_sharedMemory\": 165}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:40.245Z","modified":"2017-02-17T19:36:28.966Z","name":"jwong-esxi1.cloudforms.lab.eng.rdu2.redhat.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 @@ -1850,28 +2351,25 @@ http_interactions: 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\": + \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.com\", + \"vmware_uptimeSeconds\": 179513, \"vmware_memorySizeMB\": 12288, \"vmware_compressedMemory\": + 0, \"vmware_vmPathName\": \"[NFS Share] jwong-esxi1.cloudforms.lab.eng.rdu2.redhat.com/jwong-esxi1.cloudforms.lab.eng.rdu2.redhat.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.cloudforms.lab.eng.rdu2.redhat.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":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:40.250Z","modified":"2017-02-17T19:36:28.971Z","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 @@ -1880,11 +2378,11 @@ http_interactions: 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\": + \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\": @@ -1898,10 +2396,7 @@ http_interactions: \"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\": + \"inactive\", \"vmware_unshared\": 5397177909, \"vmware_sharedMemory\": 2793}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:40.255Z","modified":"2017-02-17T19:36:28.977Z","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 @@ -1910,11 +2405,11 @@ http_interactions: 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\": + \"vmware_hostSystem\": \"ibm-x3550m4-01.cloudforms.lab.eng.rdu2.redhat.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\": @@ -1928,33 +2423,30 @@ http_interactions: \"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\": + \"inactive\", \"vmware_unshared\": 5111567925, \"vmware_sharedMemory\": 3003}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:40.261Z","modified":"2017-02-17T19:36:28.993Z","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\", + \"ibm-x3550m4-01.cloudforms.lab.eng.rdu2.redhat.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\": @@ -1963,10 +2455,7 @@ http_interactions: \"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\": + 59, \"vmware_ftLatencyStatus\": \"gray\"}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:40.266Z","modified":"2017-02-17T19:36:29.004Z","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 @@ -1975,11 +2464,11 @@ http_interactions: 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\": + \"vmware_hostSystem\": \"ibm-x3550m4-01.cloudforms.lab.eng.rdu2.redhat.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\": @@ -1993,17 +2482,62 @@ http_interactions: -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\": + \"inactive\", \"vmware_unshared\": 17480169426, \"vmware_sharedMemory\": 206}","has_active_failures":false,"has_inventory_sources":true,"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":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/896/","last_job_host_summary":"/api/v1/job_host_summaries/396/"},"summary_fields":{"last_job":{"id":896,"name":"Demo + Job Template","description":"","finished":"2017-05-25T17:47:50.052Z","status":"successful","failed":false},"last_job_host_summary":{"id":396,"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-05-25T17:47:50.052Z","id":896,"name":""},{"status":"successful","finished":"2017-05-17T16:19:40.150Z","id":893,"name":""},{"status":"failed","finished":"2017-05-08T15:30:44.590Z","id":884,"name":"lucy_print_output"},{"status":"failed","finished":"2017-05-08T15:22:30.337Z","id":882,"name":"lucy_print_output"},{"status":"successful","finished":"2017-05-02T19:31:51.053Z","id":812,"name":"madhu_test"}]},"created":"2016-08-02T17:57:03.207Z","modified":"2017-05-25T17:47:49.933Z","name":"localhost","description":"","inventory":1,"enabled":true,"instance_id":"","variables":"ansible_connection: + local","has_active_failures":false,"has_inventory_sources":false,"last_job":896,"last_job_host_summary":396}]}' + http_version: + recorded_at: Wed, 21 Jun 2017 19:22:55 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/hosts/?page=5 + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:22: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, HEAD, OPTIONS + X-Api-Time: + - 0.237s + Content-Length: + - '82691' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: '{"count":133,"next":"/api/v1/hosts/?page=6","previous":"/api/v1/hosts/?page=4","results":[{"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/","last_job":"/api/v1/jobs/360/","last_job_host_summary":"/api/v1/job_host_summaries/162/"},"summary_fields":{"last_job":{"id":360,"name":"miq_ansible5_provision","description":"ansible5","finished":"2017-02-23T20:25:15.812Z","status":"failed","failed":true},"last_job_host_summary":{"id":162,"failed":true},"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":[{"status":"failed","finished":"2017-02-23T20:25:15.812Z","id":360,"name":""},{"status":"failed","finished":"2017-02-23T20:11:23.619Z","id":359,"name":""},{"status":"failed","finished":"2017-02-23T20:08:22.725Z","id":358,"name":""},{"status":"failed","finished":"2017-02-23T20:01:44.404Z","id":356,"name":""},{"status":"failed","finished":"2017-02-23T18:19:53.270Z","id":353,"name":""}]},"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":360,"last_job_host_summary":162},{"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\", + \"dhcp-8-99-217.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_instanceUuid\": + \"5033aca6-0e5d-31f7-5921-bf61a3eee024\", \"vmware_distributedCpuEntitlement\": + 0, \"vmware_hostSystem\": \"ibm-x3550m4-03.cloudforms.lab.eng.rdu2.redhat.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\": @@ -2020,66 +2554,29 @@ http_interactions: -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\": + \"vmware_unshared\": 8242561551, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:40.282Z","modified":"2017-06-19T19:42:06.383Z","name":"lucy_561","description":"imported","inventory":2,"enabled":true,"instance_id":"","variables":"{\"vmware_vmPathName\": + \"[datastore1] Red Hat CloudForms 4.1 Nightly/Red Hat CloudForms 4.1 Nightly.vmx\", + \"vmware_ipAddress\": \"10.8.99.248\", \"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.cloudforms.lab.eng.rdu2.redhat.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\": - 8290, \"vmware_toolsStatus\": \"toolsOk\", \"vmware_overallStatus\": \"green\", + 8311, \"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\": + \"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\": - 48, \"vmware_privateMemory\": 5982, \"vmware_resourcePool\": \"Resources\", - \"vmware_product_name\": \"Red Hat CloudForms 4.0\", \"vmware_overallCpuUsage\": - 143, \"vmware_suspendInterval\": 0, \"vmware_toolsInstallerMounted\": false, + 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_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\": @@ -2090,10 +2587,7 @@ http_interactions: \"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\": + \"gray\"}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:40.287Z","modified":"2017-02-17T19:36:29.047Z","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 @@ -2102,31 +2596,31 @@ http_interactions: 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\": + \"vmware_hostSystem\": \"ibm-x3550m4-03.cloudforms.lab.eng.rdu2.redhat.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":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\", @@ -2144,15 +2638,16 @@ http_interactions: -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\": + \"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\": + 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\": @@ -2162,7 +2657,7 @@ http_interactions: \"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\", + 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": \"dhcp-8-99-239.cloudforms.lab.eng.rdu2.redhat.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\": @@ -2173,15 +2668,16 @@ http_interactions: \"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\": + \"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\": + 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\": @@ -2191,7 +2687,7 @@ http_interactions: \"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\", + 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": \"dhcp-8-99-223.cloudforms.lab.eng.rdu2.redhat.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\": @@ -2202,15 +2698,16 @@ http_interactions: \"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\": + \"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\": + 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\": @@ -2220,7 +2717,7 @@ http_interactions: \"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\", + 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": \"dhcp-8-99-215.cloudforms.lab.eng.rdu2.redhat.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\": @@ -2231,10 +2728,7 @@ http_interactions: \"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\": + \"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:40.314Z","modified":"2017-02-17T19:36:29.059Z","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 @@ -2243,11 +2737,11 @@ http_interactions: 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\": + \"vmware_hostSystem\": \"ibm-x3550m4-03.cloudforms.lab.eng.rdu2.redhat.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\": @@ -2261,14 +2755,8 @@ http_interactions: -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\": + \"inactive\", \"vmware_unshared\": 78094615064, \"vmware_sharedMemory\": 5997}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:39.940Z","modified":"2017-02-17T19:36:29.069Z","name":"Red + Hat CloudForms 4.1 Nightly (12-Jul-2016 09","description":"imported","inventory":2,"enabled":true,"instance_id":"","variables":"{}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:40.320Z","modified":"2017-02-17T19:36:29.078Z","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 @@ -2277,11 +2765,11 @@ http_interactions: 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\": + \"vmware_hostSystem\": \"ibm-x3550m4-03.cloudforms.lab.eng.rdu2.redhat.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\": @@ -2295,48 +2783,7 @@ http_interactions: -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}]}' - http_version: - recorded_at: Thu, 09 Feb 2017 09:37:49 GMT -- request: - method: get - uri: https://dev-ansible-tower3.example.com/api/v1/hosts/?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: - - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> - response: - status: - code: 200 - message: OK - headers: - Date: - - Thu, 09 Feb 2017 10:37: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, HEAD, OPTIONS - X-Api-Time: - - 0.112s - Content-Length: - - '34249' - 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\": + \"vmware_unshared\": 231126225732, \"vmware_sharedMemory\": 1265}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:40.325Z","modified":"2017-02-17T19:36:29.089Z","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 @@ -2345,31 +2792,225 @@ http_interactions: 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_hostSystem\": \"ibm-x3550m4-03.cloudforms.lab.eng.rdu2.redhat.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":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":204,"type":"host","url":"/api/v1/hosts/204/","related":{"job_host_summaries":"/api/v1/hosts/204/job_host_summaries/","variable_data":"/api/v1/hosts/204/variable_data/","job_events":"/api/v1/hosts/204/job_events/","ad_hoc_commands":"/api/v1/hosts/204/ad_hoc_commands/","fact_versions":"/api/v1/hosts/204/fact_versions/","inventory_sources":"/api/v1/hosts/204/inventory_sources/","groups":"/api/v1/hosts/204/groups/","activity_stream":"/api/v1/hosts/204/activity_stream/","all_groups":"/api/v1/hosts/204/all_groups/","ad_hoc_command_events":"/api/v1/hosts/204/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2017-06-19T19:42:35.614Z","modified":"2017-06-19T19:44:52.453Z","name":"test1","description":"imported","inventory":2,"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\": + \"jwong-esxi1.cloudforms.lab.eng.rdu2.redhat.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\": \"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\": [\"vsanDatastore\"], \"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)\", + -1, \"vmware_powerState\": \"poweredOff\", \"vmware_guestId\": \"rhel7_64Guest\", + \"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":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\": + \"jwong-esxi1.cloudforms.lab.eng.rdu2.redhat.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\": \"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\": [\"vsanDatastore\"], + \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": + -1, \"vmware_powerState\": \"poweredOff\", \"vmware_guestId\": \"rhel7_64Guest\", + \"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.cloudforms.lab.eng.rdu2.redhat.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":205,"type":"host","url":"/api/v1/hosts/205/","related":{"job_host_summaries":"/api/v1/hosts/205/job_host_summaries/","variable_data":"/api/v1/hosts/205/variable_data/","job_events":"/api/v1/hosts/205/job_events/","ad_hoc_commands":"/api/v1/hosts/205/ad_hoc_commands/","fact_versions":"/api/v1/hosts/205/fact_versions/","inventory_sources":"/api/v1/hosts/205/inventory_sources/","groups":"/api/v1/hosts/205/groups/","activity_stream":"/api/v1/hosts/205/activity_stream/","all_groups":"/api/v1/hosts/205/all_groups/","ad_hoc_command_events":"/api/v1/hosts/205/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2017-06-19T19:42:35.619Z","modified":"2017-06-19T19:44:52.459Z","name":"test2","description":"imported","inventory":2,"enabled":false,"instance_id":"4214204b-41d6-e1a8-aad2-a7f4e8209e6a","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\": 2400, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": + 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": + \"jwong-esxi2.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_instanceUuid\": + \"50143c2a-5348-4728-f2c1-4061fc26cfd6\", \"vmware_distributedCpuEntitlement\": + 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 512, \"vmware_compressedMemory\": + 0, \"vmware_vmPathName\": \"[vsanDatastore] aae19057-04e2-f15f-23d5-0050568c8460/test2.vmx\", + \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": + 0, \"vmware_toolsStatus\": \"toolsNotInstalled\", \"vmware_overallStatus\": + \"green\", \"vmware_numCpu\": 1, \"vmware_uuid\": \"4214204b-41d6-e1a8-aad2-a7f4e8209e6a\", + \"vmware_installBootRequired\": false, \"vmware_committed\": 25490917, \"vmware_name\": + \"test2\", \"vmware_toolsVersionStatus\": \"guestToolsNotInstalled\", \"vmware_staticCpuEntitlement\": + 0, \"vmware_uncommitted\": 39358464000, \"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\": [\"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\": + null, \"vmware_maxMemoryUsage\": 512, \"vmware_recordReplayState\": \"inactive\", + \"vmware_unshared\": 25165824, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":false,"last_job":null,"last_job_host_summary":null},{"id":206,"type":"host","url":"/api/v1/hosts/206/","related":{"job_host_summaries":"/api/v1/hosts/206/job_host_summaries/","variable_data":"/api/v1/hosts/206/variable_data/","job_events":"/api/v1/hosts/206/job_events/","ad_hoc_commands":"/api/v1/hosts/206/ad_hoc_commands/","fact_versions":"/api/v1/hosts/206/fact_versions/","inventory_sources":"/api/v1/hosts/206/inventory_sources/","groups":"/api/v1/hosts/206/groups/","activity_stream":"/api/v1/hosts/206/activity_stream/","all_groups":"/api/v1/hosts/206/all_groups/","ad_hoc_command_events":"/api/v1/hosts/206/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2017-06-19T19:42:35.625Z","modified":"2017-06-19T19:44:52.465Z","name":"test2-tag1","description":"imported","inventory":2,"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\": + [\"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.cloudforms.lab.eng.rdu2.redhat.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\": \"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\": [\"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":false,"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\": + [\"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.cloudforms.lab.eng.rdu2.redhat.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\": \"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\": [\"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":207,"type":"host","url":"/api/v1/hosts/207/","related":{"job_host_summaries":"/api/v1/hosts/207/job_host_summaries/","variable_data":"/api/v1/hosts/207/variable_data/","job_events":"/api/v1/hosts/207/job_events/","ad_hoc_commands":"/api/v1/hosts/207/ad_hoc_commands/","fact_versions":"/api/v1/hosts/207/fact_versions/","inventory_sources":"/api/v1/hosts/207/inventory_sources/","groups":"/api/v1/hosts/207/groups/","activity_stream":"/api/v1/hosts/207/activity_stream/","all_groups":"/api/v1/hosts/207/all_groups/","ad_hoc_command_events":"/api/v1/hosts/207/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2017-06-19T19:42:35.630Z","modified":"2017-06-19T19:44:52.471Z","name":"test3","description":"imported","inventory":2,"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\": \"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.cloudforms.lab.eng.rdu2.redhat.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\": [\"vsanDatastore\"], + \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": + -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":false,"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\": \"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.cloudforms.lab.eng.rdu2.redhat.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\": [\"vsanDatastore\"], + \"vmware_cpuReservation\": 0, \"vmware_ftLatencyStatus\": \"gray\", \"vmware_ftSecondaryLatency\": + -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":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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"test-vc60-host1.cloudforms.lab.eng.rdu2.redhat.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\": @@ -2388,14 +3029,15 @@ http_interactions: \"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\": + \"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\", + \"dhcp-8-99-237.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_instanceUuid\": + \"500c8890-1e81-8c04-3b95-d6ff3cc0d26c\", \"vmware_distributedCpuEntitlement\": + 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\": @@ -2412,48 +3054,185 @@ http_interactions: \"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 + \"inactive\", \"vmware_unshared\": 1885753903, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":203,"type":"host","url":"/api/v1/hosts/203/","related":{"job_host_summaries":"/api/v1/hosts/203/job_host_summaries/","variable_data":"/api/v1/hosts/203/variable_data/","job_events":"/api/v1/hosts/203/job_events/","ad_hoc_commands":"/api/v1/hosts/203/ad_hoc_commands/","fact_versions":"/api/v1/hosts/203/fact_versions/","inventory_sources":"/api/v1/hosts/203/inventory_sources/","groups":"/api/v1/hosts/203/groups/","activity_stream":"/api/v1/hosts/203/activity_stream/","all_groups":"/api/v1/hosts/203/all_groups/","ad_hoc_command_events":"/api/v1/hosts/203/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2017-06-19T19:42:35.609Z","modified":"2017-06-19T19:44:52.477Z","name":"test-new-rbvm","description":"imported","inventory":2,"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\": \"jwong-esxi2.cloudforms.lab.eng.rdu2.redhat.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\": \"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\": [\"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":false,"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\": \"jwong-esxi2.cloudforms.lab.eng.rdu2.redhat.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\": \"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\": [\"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}]}' + http_version: + recorded_at: Wed, 21 Jun 2017 19:22:56 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/hosts/?page=6 + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:22: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, HEAD, OPTIONS + X-Api-Time: + - 0.117s + Content-Length: + - '29254' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: '{"count":133,"next":null,"previous":"/api/v1/hosts/?page=5","results":[{"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\": + \"jwong-esxi3.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_instanceUuid\": + \"50140bb2-d202-dca6-539b-b9f1f46faa84\", \"vmware_distributedCpuEntitlement\": + 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": + 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\": \"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\": [\"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},{"id":208,"type":"host","url":"/api/v1/hosts/208/","related":{"job_host_summaries":"/api/v1/hosts/208/job_host_summaries/","variable_data":"/api/v1/hosts/208/variable_data/","job_events":"/api/v1/hosts/208/job_events/","ad_hoc_commands":"/api/v1/hosts/208/ad_hoc_commands/","fact_versions":"/api/v1/hosts/208/fact_versions/","inventory_sources":"/api/v1/hosts/208/inventory_sources/","groups":"/api/v1/hosts/208/groups/","activity_stream":"/api/v1/hosts/208/activity_stream/","all_groups":"/api/v1/hosts/208/all_groups/","ad_hoc_command_events":"/api/v1/hosts/208/ad_hoc_command_events/","inventory":"/api/v1/inventories/2/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2017-06-19T19:42:35.636Z","modified":"2017-06-19T19:44:52.484Z","name":"test_template","description":"imported","inventory":2,"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\": + \"jwong-esxi3.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_instanceUuid\": + \"50140bb2-d202-dca6-539b-b9f1f46faa84\", \"vmware_distributedCpuEntitlement\": + 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": + 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\": \"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\": [\"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":false,"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:39.961Z","modified":"2017-02-17T19:36:29.096Z","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 + \"ibm-x3550m4-03.cloudforms.lab.eng.rdu2.redhat.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.cloudforms.lab.eng.rdu2.redhat.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":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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_balloonedMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-03.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_product_classId\": null, \"vmware_distributedCpuEntitlement\": 0, \"vmware_product_key\": 0, \"vmware_unshared\": 4408238651, \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": @@ -2469,7 +3248,7 @@ http_interactions: \"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\", + 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": \"dhcp-8-99-248.cloudforms.lab.eng.rdu2.redhat.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\": @@ -2480,48 +3259,46 @@ http_interactions: \"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 + \"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/"},"summary_fields":{"inventory":{"id":2,"name":"Dev-VC60","description":"","has_active_failures":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"recent_jobs":[]},"created":"2016-08-31T16:59:39.950Z","modified":"2017-02-17T19:36:29.101Z","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 + \"ibm-x3550m4-03.cloudforms.lab.eng.rdu2.redhat.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.cloudforms.lab.eng.rdu2.redhat.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":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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_balloonedMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-01.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_product_classId\": null, \"vmware_distributedCpuEntitlement\": 0, \"vmware_product_key\": 0, \"vmware_unshared\": 4405457467, \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": @@ -2537,7 +3314,7 @@ http_interactions: \"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\", + 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": \"dhcp-8-99-212.cloudforms.lab.eng.rdu2.redhat.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\": @@ -2548,37 +3325,37 @@ http_interactions: \"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\": + \"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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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\": + \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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":false,"total_hosts":89,"hosts_with_active_failures":0,"total_groups":28,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":2,"inventory_sources_with_failures":2},"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_distributedCpuEntitlement\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.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\": @@ -2597,1061 +3374,14983 @@ http_interactions: 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}]}' http_version: - recorded_at: Thu, 09 Feb 2017 09:37:53 GMT + recorded_at: Wed, 21 Jun 2017 19:22:56 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/config + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + 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, 21 Jun 2017 19:22:56 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: Wed, 21 Jun 2017 19:22:56 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/config/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:22: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.222s + Content-Length: + - '9774' + 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 + X2luZm8iOnsiZGVwbG95bWVudF9pZCI6IjE1YmViMDE2MmNlNmQ3YTNiMzVm + NzVjZjYxMDY0ZjJmMDM2Mjk3MDgiLCJzdWJzY3JpcHRpb25fbmFtZSI6IkFu + c2libGUgVG93ZXIgYnkgUmVkIEhhdCwgU3RhbmRhcmQgKDEwMDAwIE1hbmFn + ZWQgTm9kZXMpIiwiY3VycmVudF9pbnN0YW5jZXMiOjk4LCJmZWF0dXJlcyI6 + eyJzdXJ2ZXlzIjp0cnVlLCJtdWx0aXBsZV9vcmdhbml6YXRpb25zIjp0cnVl + LCJzeXN0ZW1fdHJhY2tpbmciOnRydWUsImVudGVycHJpc2VfYXV0aCI6dHJ1 + ZSwicmVicmFuZGluZyI6dHJ1ZSwiYWN0aXZpdHlfc3RyZWFtcyI6dHJ1ZSwi + bGRhcCI6dHJ1ZSwiaGEiOnRydWV9LCJkYXRlX2V4cGlyZWQiOmZhbHNlLCJh + dmFpbGFibGVfaW5zdGFuY2VzIjoxMDAwMCwiaG9zdG5hbWUiOiIxMjk0ZGQ2 + MzAxMjY0NDIxOGI1MmExN2I2YmM0MzBlZCIsImZyZWVfaW5zdGFuY2VzIjo5 + OTAyLCJpbnN0YW5jZV9jb3VudCI6MTAwMDAsInRpbWVfcmVtYWluaW5nIjoy + MDYzNzEyNiwiY29tcGxpYW50Ijp0cnVlLCJncmFjZV9wZXJpb2RfcmVtYWlu + aW5nIjoyMzIyOTEyNiwiY29udGFjdF9lbWFpbCI6ImpvZXNtaXRAcmVkaGF0 + LmNvbSIsImNvbXBhbnlfbmFtZSI6IlJlZCBIYXQsIEluYy4iLCJkYXRlX3dh + cm5pbmciOmZhbHNlLCJsaWNlbnNlX3R5cGUiOiJlbnRlcnByaXNlIiwiY29u + dGFjdF9uYW1lIjoiSm9lICBTbWl0aCIsImxpY2Vuc2VfZGF0ZSI6MTUxODcx + MDEwMiwibGljZW5zZV9rZXkiOiIwM2NiYzNlNzM3OWViM2Y3ZTFmZDEzOWVj + NjkyZDg1YjliNmRhNDNkOWNiY2IwY2JiMmQ0MzYzOTliOWQ2OThjIiwidmFs + aWRfa2V5Ijp0cnVlfSwiYW5hbHl0aWNzX3N0YXR1cyI6ImRldGFpbGVkIiwi + dmVyc2lvbiI6IjMuMC4xIiwicHJvamVjdF9iYXNlX2RpciI6Ii92YXIvbGli + L2F3eC9wcm9qZWN0cyIsInRpbWVfem9uZSI6IkFtZXJpY2EvTmV3X1lvcmsi + LCJhbnNpYmxlX3ZlcnNpb24iOiIyLjEuMC4wIiwicHJvamVjdF9sb2NhbF9w + YXRocyI6W119 + http_version: + recorded_at: Wed, 21 Jun 2017 19:22:56 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + 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, 21 Jun 2017 19:22:56 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: Wed, 21 Jun 2017 19:22:57 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:22: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, HEAD, OPTIONS + X-Api-Time: + - 0.437s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: ASCII-8BIT + string: !binary |- + eyJjb3VudCI6MTIwLCJuZXh0IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLz9w + YWdlPTIiLCJwcmV2aW91cyI6bnVsbCwicmVzdWx0cyI6W3siaWQiOjgwLCJ0 + eXBlIjoiam9iX3RlbXBsYXRlIiwidXJsIjoiL2FwaS92MS9qb2JfdGVtcGxh + dGVzLzgwLyIsInJlbGF0ZWQiOnsiY3JlYXRlZF9ieSI6Ii9hcGkvdjEvdXNl + cnMvMS8iLCJtb2RpZmllZF9ieSI6Ii9hcGkvdjEvdXNlcnMvMS8iLCJsYWJl + bHMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvODAvbGFiZWxzLyIsImludmVu + dG9yeSI6Ii9hcGkvdjEvaW52ZW50b3JpZXMvMi8iLCJwcm9qZWN0IjoiL2Fw + aS92MS9wcm9qZWN0cy8zNy8iLCJjcmVkZW50aWFsIjoiL2FwaS92MS9jcmVk + ZW50aWFscy8xLyIsImNsb3VkX2NyZWRlbnRpYWwiOiIvYXBpL3YxL2NyZWRl + bnRpYWxzLzIvIiwibmV0d29ya19jcmVkZW50aWFsIjoiL2FwaS92MS9jcmVk + ZW50aWFscy81LyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfZXJyb3IiOiIv + YXBpL3YxL2pvYl90ZW1wbGF0ZXMvODAvbm90aWZpY2F0aW9uX3RlbXBsYXRl + c19lcnJvci8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVzX3N1Y2Nlc3MiOiIv + YXBpL3YxL2pvYl90ZW1wbGF0ZXMvODAvbm90aWZpY2F0aW9uX3RlbXBsYXRl + c19zdWNjZXNzLyIsImpvYnMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvODAv + am9icy8iLCJvYmplY3Rfcm9sZXMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMv + ODAvb2JqZWN0X3JvbGVzLyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfYW55 + IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzgwL25vdGlmaWNhdGlvbl90ZW1w + bGF0ZXNfYW55LyIsImFjY2Vzc19saXN0IjoiL2FwaS92MS9qb2JfdGVtcGxh + dGVzLzgwL2FjY2Vzc19saXN0LyIsImxhdW5jaCI6Ii9hcGkvdjEvam9iX3Rl + bXBsYXRlcy84MC9sYXVuY2gvIiwic2NoZWR1bGVzIjoiL2FwaS92MS9qb2Jf + dGVtcGxhdGVzLzgwL3NjaGVkdWxlcy8iLCJhY3Rpdml0eV9zdHJlYW0iOiIv + YXBpL3YxL2pvYl90ZW1wbGF0ZXMvODAvYWN0aXZpdHlfc3RyZWFtLyIsInN1 + cnZleV9zcGVjIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzgwL3N1cnZleV9z + cGVjLyJ9LCJzdW1tYXJ5X2ZpZWxkcyI6eyJuZXR3b3JrX2NyZWRlbnRpYWwi + OnsiaWQiOjUsIm5hbWUiOiJEZW1vIENyZWRzIDIiLCJkZXNjcmlwdGlvbiI6 + InRlc3QiLCJraW5kIjoibmV0In0sImludmVudG9yeSI6eyJpZCI6MiwibmFt + ZSI6IkRldi1WQzYwIiwiZGVzY3JpcHRpb24iOiIiLCJoYXNfYWN0aXZlX2Zh + aWx1cmVzIjpmYWxzZSwidG90YWxfaG9zdHMiOjg5LCJob3N0c193aXRoX2Fj + dGl2ZV9mYWlsdXJlcyI6MCwidG90YWxfZ3JvdXBzIjoyOCwiZ3JvdXBzX3dp + dGhfYWN0aXZlX2ZhaWx1cmVzIjowLCJoYXNfaW52ZW50b3J5X3NvdXJjZXMi + OnRydWUsInRvdGFsX2ludmVudG9yeV9zb3VyY2VzIjoyLCJpbnZlbnRvcnlf + c291cmNlc193aXRoX2ZhaWx1cmVzIjoyfSwiY2xvdWRfY3JlZGVudGlhbCI6 + eyJpZCI6MiwibmFtZSI6ImRldi12YzYwIiwiZGVzY3JpcHRpb24iOiIiLCJr + aW5kIjoidm13YXJlIiwiY2xvdWQiOnRydWV9LCJjcmVkZW50aWFsIjp7Imlk + IjoxLCJuYW1lIjoiRGVtbyBDcmVkZW50aWFsIiwiZGVzY3JpcHRpb24iOiIi + LCJraW5kIjoic3NoIiwiY2xvdWQiOmZhbHNlfSwicHJvamVjdCI6eyJpZCI6 + MzcsIm5hbWUiOiJUZXN0IFByb2plY3QiLCJkZXNjcmlwdGlvbiI6IiIsInN0 + YXR1cyI6InN1Y2Nlc3NmdWwifSwiY3JlYXRlZF9ieSI6eyJpZCI6MSwidXNl + cm5hbWUiOiJhZG1pbiIsImZpcnN0X25hbWUiOiIiLCJsYXN0X25hbWUiOiIi + fSwibW9kaWZpZWRfYnkiOnsiaWQiOjEsInVzZXJuYW1lIjoiYWRtaW4iLCJm + aXJzdF9uYW1lIjoiIiwibGFzdF9uYW1lIjoiIn0sIm9iamVjdF9yb2xlcyI6 + eyJhZG1pbl9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiQ2FuIG1hbmFnZSBhbGwg + YXNwZWN0cyBvZiB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjI0MSwibmFtZSI6 + IkFkbWluIn0sImV4ZWN1dGVfcm9sZSI6eyJkZXNjcmlwdGlvbiI6Ik1heSBy + dW4gdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjoyNDMsIm5hbWUiOiJFeGVjdXRl + In0sInJlYWRfcm9sZSI6eyJkZXNjcmlwdGlvbiI6Ik1heSB2aWV3IHNldHRp + bmdzIGZvciB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjI0MiwibmFtZSI6IlJl + YWQifX0sImxhYmVscyI6eyJjb3VudCI6MCwicmVzdWx0cyI6W119LCJjYW5f + Y29weSI6dHJ1ZSwiY2FuX2VkaXQiOnRydWUsInJlY2VudF9qb2JzIjpbXX0s + ImNyZWF0ZWQiOiIyMDE3LTAyLTA5VDA5OjEwOjMwLjc0NFoiLCJtb2RpZmll + ZCI6IjIwMTctMDItMDlUMTA6MzU6MzMuNDg0WiIsIm5hbWUiOiJBbnNpYmxl + LUpvYlRlbXBsYXRlIiwiZGVzY3JpcHRpb24iOiJBbnNpYmxlLUpvYlRlbXBs + YXRlLURlc2NyaXB0aW9uIiwiam9iX3R5cGUiOiJydW4iLCJpbnZlbnRvcnki + OjIsInByb2plY3QiOjM3LCJwbGF5Ym9vayI6ImhlbGxvX3dvcmxkLnltbCIs + ImNyZWRlbnRpYWwiOjEsImNsb3VkX2NyZWRlbnRpYWwiOjIsIm5ldHdvcmtf + Y3JlZGVudGlhbCI6NSwiZm9ya3MiOjAsImxpbWl0IjoiIiwidmVyYm9zaXR5 + IjowLCJleHRyYV92YXJzIjoiYWJjOiAxMjMiLCJqb2JfdGFncyI6IiIsImZv + cmNlX2hhbmRsZXJzIjpmYWxzZSwic2tpcF90YWdzIjoiIiwic3RhcnRfYXRf + dGFzayI6IiIsImxhc3Rfam9iX3J1biI6bnVsbCwibGFzdF9qb2JfZmFpbGVk + IjpmYWxzZSwiaGFzX3NjaGVkdWxlcyI6ZmFsc2UsIm5leHRfam9iX3J1biI6 + bnVsbCwic3RhdHVzIjoibmV2ZXIgdXBkYXRlZCIsImhvc3RfY29uZmlnX2tl + eSI6IiIsImFza192YXJpYWJsZXNfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2xp + bWl0X29uX2xhdW5jaCI6ZmFsc2UsImFza190YWdzX29uX2xhdW5jaCI6ZmFs + c2UsImFza19qb2JfdHlwZV9vbl9sYXVuY2giOmZhbHNlLCJhc2tfaW52ZW50 + b3J5X29uX2xhdW5jaCI6ZmFsc2UsImFza19jcmVkZW50aWFsX29uX2xhdW5j + aCI6ZmFsc2UsInN1cnZleV9lbmFibGVkIjpmYWxzZSwiYmVjb21lX2VuYWJs + ZWQiOmZhbHNlLCJhbGxvd19zaW11bHRhbmVvdXMiOmZhbHNlfSx7ImlkIjo4 + MSwidHlwZSI6ImpvYl90ZW1wbGF0ZSIsInVybCI6Ii9hcGkvdjEvam9iX3Rl + bXBsYXRlcy84MS8iLCJyZWxhdGVkIjp7ImNyZWF0ZWRfYnkiOiIvYXBpL3Yx + L3VzZXJzLzEvIiwibW9kaWZpZWRfYnkiOiIvYXBpL3YxL3VzZXJzLzEvIiwi + bGFiZWxzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzgxL2xhYmVscy8iLCJp + bnZlbnRvcnkiOiIvYXBpL3YxL2ludmVudG9yaWVzLzIvIiwicHJvamVjdCI6 + Ii9hcGkvdjEvcHJvamVjdHMvMzcvIiwiY3JlZGVudGlhbCI6Ii9hcGkvdjEv + Y3JlZGVudGlhbHMvMS8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVzX2Vycm9y + IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzgxL25vdGlmaWNhdGlvbl90ZW1w + bGF0ZXNfZXJyb3IvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRlc19zdWNjZXNz + IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzgxL25vdGlmaWNhdGlvbl90ZW1w + bGF0ZXNfc3VjY2Vzcy8iLCJqb2JzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVz + LzgxL2pvYnMvIiwib2JqZWN0X3JvbGVzIjoiL2FwaS92MS9qb2JfdGVtcGxh + dGVzLzgxL29iamVjdF9yb2xlcy8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVz + X2FueSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy84MS9ub3RpZmljYXRpb25f + dGVtcGxhdGVzX2FueS8iLCJhY2Nlc3NfbGlzdCI6Ii9hcGkvdjEvam9iX3Rl + bXBsYXRlcy84MS9hY2Nlc3NfbGlzdC8iLCJsYXVuY2giOiIvYXBpL3YxL2pv + Yl90ZW1wbGF0ZXMvODEvbGF1bmNoLyIsInNjaGVkdWxlcyI6Ii9hcGkvdjEv + am9iX3RlbXBsYXRlcy84MS9zY2hlZHVsZXMvIiwiYWN0aXZpdHlfc3RyZWFt + IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzgxL2FjdGl2aXR5X3N0cmVhbS8i + LCJzdXJ2ZXlfc3BlYyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy84MS9zdXJ2 + ZXlfc3BlYy8ifSwic3VtbWFyeV9maWVsZHMiOnsiaW52ZW50b3J5Ijp7Imlk + IjoyLCJuYW1lIjoiRGV2LVZDNjAiLCJkZXNjcmlwdGlvbiI6IiIsImhhc19h + Y3RpdmVfZmFpbHVyZXMiOmZhbHNlLCJ0b3RhbF9ob3N0cyI6ODksImhvc3Rz + X3dpdGhfYWN0aXZlX2ZhaWx1cmVzIjowLCJ0b3RhbF9ncm91cHMiOjI4LCJn + cm91cHNfd2l0aF9hY3RpdmVfZmFpbHVyZXMiOjAsImhhc19pbnZlbnRvcnlf + c291cmNlcyI6dHJ1ZSwidG90YWxfaW52ZW50b3J5X3NvdXJjZXMiOjIsImlu + dmVudG9yeV9zb3VyY2VzX3dpdGhfZmFpbHVyZXMiOjJ9LCJjcmVkZW50aWFs + Ijp7ImlkIjoxLCJuYW1lIjoiRGVtbyBDcmVkZW50aWFsIiwiZGVzY3JpcHRp + b24iOiIiLCJraW5kIjoic3NoIiwiY2xvdWQiOmZhbHNlfSwicHJvamVjdCI6 + eyJpZCI6MzcsIm5hbWUiOiJUZXN0IFByb2plY3QiLCJkZXNjcmlwdGlvbiI6 + IiIsInN0YXR1cyI6InN1Y2Nlc3NmdWwifSwiY3JlYXRlZF9ieSI6eyJpZCI6 + MSwidXNlcm5hbWUiOiJhZG1pbiIsImZpcnN0X25hbWUiOiIiLCJsYXN0X25h + bWUiOiIifSwibW9kaWZpZWRfYnkiOnsiaWQiOjEsInVzZXJuYW1lIjoiYWRt + aW4iLCJmaXJzdF9uYW1lIjoiIiwibGFzdF9uYW1lIjoiIn0sIm9iamVjdF9y + b2xlcyI6eyJhZG1pbl9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiQ2FuIG1hbmFn + ZSBhbGwgYXNwZWN0cyBvZiB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjI0NCwi + bmFtZSI6IkFkbWluIn0sImV4ZWN1dGVfcm9sZSI6eyJkZXNjcmlwdGlvbiI6 + Ik1heSBydW4gdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjoyNDYsIm5hbWUiOiJF + eGVjdXRlIn0sInJlYWRfcm9sZSI6eyJkZXNjcmlwdGlvbiI6Ik1heSB2aWV3 + IHNldHRpbmdzIGZvciB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjI0NSwibmFt + ZSI6IlJlYWQifX0sImxhYmVscyI6eyJjb3VudCI6MCwicmVzdWx0cyI6W119 + LCJzdXJ2ZXkiOnsiZGVzY3JpcHRpb24iOiIiLCJ0aXRsZSI6IiJ9LCJjYW5f + Y29weSI6dHJ1ZSwiY2FuX2VkaXQiOnRydWUsInJlY2VudF9qb2JzIjpbXX0s + ImNyZWF0ZWQiOiIyMDE3LTAyLTA5VDA5OjExOjAxLjQ1MFoiLCJtb2RpZmll + ZCI6IjIwMTctMDItMDlUMDk6NDI6MjguNDQzWiIsIm5hbWUiOiJBbnNpYmxl + LUpvYlRlbXBsYXRlLVN1cnZleSIsImRlc2NyaXB0aW9uIjoiQW5zaWJsZS1K + b2JUZW1wbGF0ZS1EZXNjcmlwdGlvbiIsImpvYl90eXBlIjoicnVuIiwiaW52 + ZW50b3J5IjoyLCJwcm9qZWN0IjozNywicGxheWJvb2siOiJoZWxsb193b3Js + ZC55bWwiLCJjcmVkZW50aWFsIjoxLCJjbG91ZF9jcmVkZW50aWFsIjpudWxs + LCJuZXR3b3JrX2NyZWRlbnRpYWwiOm51bGwsImZvcmtzIjowLCJsaW1pdCI6 + IiIsInZlcmJvc2l0eSI6MCwiZXh0cmFfdmFycyI6ImFiYzogMTIzIiwiam9i + X3RhZ3MiOiIiLCJmb3JjZV9oYW5kbGVycyI6ZmFsc2UsInNraXBfdGFncyI6 + IiIsInN0YXJ0X2F0X3Rhc2siOiIiLCJsYXN0X2pvYl9ydW4iOm51bGwsImxh + c3Rfam9iX2ZhaWxlZCI6ZmFsc2UsImhhc19zY2hlZHVsZXMiOmZhbHNlLCJu + ZXh0X2pvYl9ydW4iOm51bGwsInN0YXR1cyI6Im5ldmVyIHVwZGF0ZWQiLCJo + b3N0X2NvbmZpZ19rZXkiOiIiLCJhc2tfdmFyaWFibGVzX29uX2xhdW5jaCI6 + ZmFsc2UsImFza19saW1pdF9vbl9sYXVuY2giOmZhbHNlLCJhc2tfdGFnc19v + bl9sYXVuY2giOmZhbHNlLCJhc2tfam9iX3R5cGVfb25fbGF1bmNoIjpmYWxz + ZSwiYXNrX2ludmVudG9yeV9vbl9sYXVuY2giOmZhbHNlLCJhc2tfY3JlZGVu + dGlhbF9vbl9sYXVuY2giOmZhbHNlLCJzdXJ2ZXlfZW5hYmxlZCI6dHJ1ZSwi + YmVjb21lX2VuYWJsZWQiOmZhbHNlLCJhbGxvd19zaW11bHRhbmVvdXMiOmZh + bHNlfSx7ImlkIjozMCwidHlwZSI6ImpvYl90ZW1wbGF0ZSIsInVybCI6Ii9h + cGkvdjEvam9iX3RlbXBsYXRlcy8zMC8iLCJyZWxhdGVkIjp7ImNyZWF0ZWRf + YnkiOiIvYXBpL3YxL3VzZXJzLzEvIiwibGFiZWxzIjoiL2FwaS92MS9qb2Jf + dGVtcGxhdGVzLzMwL2xhYmVscy8iLCJpbnZlbnRvcnkiOiIvYXBpL3YxL2lu + dmVudG9yaWVzLzEvIiwicHJvamVjdCI6Ii9hcGkvdjEvcHJvamVjdHMvNC8i + LCJjcmVkZW50aWFsIjoiL2FwaS92MS9jcmVkZW50aWFscy8xLyIsIm5vdGlm + aWNhdGlvbl90ZW1wbGF0ZXNfZXJyb3IiOiIvYXBpL3YxL2pvYl90ZW1wbGF0 + ZXMvMzAvbm90aWZpY2F0aW9uX3RlbXBsYXRlc19lcnJvci8iLCJub3RpZmlj + YXRpb25fdGVtcGxhdGVzX3N1Y2Nlc3MiOiIvYXBpL3YxL2pvYl90ZW1wbGF0 + ZXMvMzAvbm90aWZpY2F0aW9uX3RlbXBsYXRlc19zdWNjZXNzLyIsImpvYnMi + OiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzAvam9icy8iLCJvYmplY3Rfcm9s + ZXMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzAvb2JqZWN0X3JvbGVzLyIs + Im5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfYW55IjoiL2FwaS92MS9qb2JfdGVt + cGxhdGVzLzMwL25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfYW55LyIsImFjY2Vz + c19saXN0IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzMwL2FjY2Vzc19saXN0 + LyIsImxhdW5jaCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8zMC9sYXVuY2gv + Iiwic2NoZWR1bGVzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzMwL3NjaGVk + dWxlcy8iLCJhY3Rpdml0eV9zdHJlYW0iOiIvYXBpL3YxL2pvYl90ZW1wbGF0 + ZXMvMzAvYWN0aXZpdHlfc3RyZWFtLyIsInN1cnZleV9zcGVjIjoiL2FwaS92 + MS9qb2JfdGVtcGxhdGVzLzMwL3N1cnZleV9zcGVjLyJ9LCJzdW1tYXJ5X2Zp + ZWxkcyI6eyJpbnZlbnRvcnkiOnsiaWQiOjEsIm5hbWUiOiJEZW1vIEludmVu + dG9yeSIsImRlc2NyaXB0aW9uIjoiIiwiaGFzX2FjdGl2ZV9mYWlsdXJlcyI6 + ZmFsc2UsInRvdGFsX2hvc3RzIjoyLCJob3N0c193aXRoX2FjdGl2ZV9mYWls + dXJlcyI6MCwidG90YWxfZ3JvdXBzIjowLCJncm91cHNfd2l0aF9hY3RpdmVf + ZmFpbHVyZXMiOjAsImhhc19pbnZlbnRvcnlfc291cmNlcyI6ZmFsc2UsInRv + dGFsX2ludmVudG9yeV9zb3VyY2VzIjowLCJpbnZlbnRvcnlfc291cmNlc193 + aXRoX2ZhaWx1cmVzIjowfSwiY3JlZGVudGlhbCI6eyJpZCI6MSwibmFtZSI6 + IkRlbW8gQ3JlZGVudGlhbCIsImRlc2NyaXB0aW9uIjoiIiwia2luZCI6InNz + aCIsImNsb3VkIjpmYWxzZX0sInByb2plY3QiOnsiaWQiOjQsIm5hbWUiOiJE + ZW1vIFByb2plY3QiLCJkZXNjcmlwdGlvbiI6IkEgZ3JlYXQgZGVtbyIsInN0 + YXR1cyI6InN1Y2Nlc3NmdWwifSwiY3JlYXRlZF9ieSI6eyJpZCI6MSwidXNl + cm5hbWUiOiJhZG1pbiIsImZpcnN0X25hbWUiOiIiLCJsYXN0X25hbWUiOiIi + fSwib2JqZWN0X3JvbGVzIjp7ImFkbWluX3JvbGUiOnsiZGVzY3JpcHRpb24i + OiJDYW4gbWFuYWdlIGFsbCBhc3BlY3RzIG9mIHRoZSBqb2IgdGVtcGxhdGUi + LCJpZCI6MzgsIm5hbWUiOiJBZG1pbiJ9LCJleGVjdXRlX3JvbGUiOnsiZGVz + Y3JpcHRpb24iOiJNYXkgcnVuIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6NDAs + Im5hbWUiOiJFeGVjdXRlIn0sInJlYWRfcm9sZSI6eyJkZXNjcmlwdGlvbiI6 + Ik1heSB2aWV3IHNldHRpbmdzIGZvciB0aGUgam9iIHRlbXBsYXRlIiwiaWQi + OjM5LCJuYW1lIjoiUmVhZCJ9fSwibGFiZWxzIjp7ImNvdW50IjowLCJyZXN1 + bHRzIjpbXX0sImNhbl9jb3B5Ijp0cnVlLCJjYW5fZWRpdCI6dHJ1ZSwicmVj + ZW50X2pvYnMiOltdfSwiY3JlYXRlZCI6IjIwMTYtMTEtMjlUMjE6NDI6NDIu + NTQzWiIsIm1vZGlmaWVkIjoiMjAxNy0wMi0wNlQxNTowNjo1My40NDhaIiwi + bmFtZSI6ImJkLXRlc3QiLCJkZXNjcmlwdGlvbiI6IiIsImpvYl90eXBlIjoi + cnVuIiwiaW52ZW50b3J5IjoxLCJwcm9qZWN0Ijo0LCJwbGF5Ym9vayI6Imhl + bGxvX3dvcmxkLnltbCIsImNyZWRlbnRpYWwiOjEsImNsb3VkX2NyZWRlbnRp + YWwiOm51bGwsIm5ldHdvcmtfY3JlZGVudGlhbCI6bnVsbCwiZm9ya3MiOjAs + ImxpbWl0IjoiIiwidmVyYm9zaXR5IjowLCJleHRyYV92YXJzIjoiIiwiam9i + X3RhZ3MiOiIiLCJmb3JjZV9oYW5kbGVycyI6ZmFsc2UsInNraXBfdGFncyI6 + IiIsInN0YXJ0X2F0X3Rhc2siOiIiLCJsYXN0X2pvYl9ydW4iOiIyMDE3LTAy + LTA2VDE1OjA3OjE5LjU4ODc3OVoiLCJsYXN0X2pvYl9mYWlsZWQiOmZhbHNl + LCJoYXNfc2NoZWR1bGVzIjpmYWxzZSwibmV4dF9qb2JfcnVuIjpudWxsLCJz + dGF0dXMiOiJzdWNjZXNzZnVsIiwiaG9zdF9jb25maWdfa2V5IjoiIiwiYXNr + X3ZhcmlhYmxlc19vbl9sYXVuY2giOmZhbHNlLCJhc2tfbGltaXRfb25fbGF1 + bmNoIjpmYWxzZSwiYXNrX3RhZ3Nfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2pv + Yl90eXBlX29uX2xhdW5jaCI6ZmFsc2UsImFza19pbnZlbnRvcnlfb25fbGF1 + bmNoIjpmYWxzZSwiYXNrX2NyZWRlbnRpYWxfb25fbGF1bmNoIjpmYWxzZSwi + c3VydmV5X2VuYWJsZWQiOmZhbHNlLCJiZWNvbWVfZW5hYmxlZCI6ZmFsc2Us + ImFsbG93X3NpbXVsdGFuZW91cyI6ZmFsc2V9LHsiaWQiOjE4OSwidHlwZSI6 + ImpvYl90ZW1wbGF0ZSIsInVybCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8x + ODkvIiwicmVsYXRlZCI6eyJjcmVhdGVkX2J5IjoiL2FwaS92MS91c2Vycy8x + LyIsIm1vZGlmaWVkX2J5IjoiL2FwaS92MS91c2Vycy8xLyIsImxhYmVscyI6 + Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xODkvbGFiZWxzLyIsImludmVudG9y + eSI6Ii9hcGkvdjEvaW52ZW50b3JpZXMvMS8iLCJwcm9qZWN0IjoiL2FwaS92 + MS9wcm9qZWN0cy8zNS8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVzX2Vycm9y + IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE4OS9ub3RpZmljYXRpb25fdGVt + cGxhdGVzX2Vycm9yLyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfc3VjY2Vz + cyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xODkvbm90aWZpY2F0aW9uX3Rl + bXBsYXRlc19zdWNjZXNzLyIsImpvYnMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0 + ZXMvMTg5L2pvYnMvIiwib2JqZWN0X3JvbGVzIjoiL2FwaS92MS9qb2JfdGVt + cGxhdGVzLzE4OS9vYmplY3Rfcm9sZXMvIiwibm90aWZpY2F0aW9uX3RlbXBs + YXRlc19hbnkiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTg5L25vdGlmaWNh + dGlvbl90ZW1wbGF0ZXNfYW55LyIsImFjY2Vzc19saXN0IjoiL2FwaS92MS9q + b2JfdGVtcGxhdGVzLzE4OS9hY2Nlc3NfbGlzdC8iLCJsYXVuY2giOiIvYXBp + L3YxL2pvYl90ZW1wbGF0ZXMvMTg5L2xhdW5jaC8iLCJzY2hlZHVsZXMiOiIv + YXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTg5L3NjaGVkdWxlcy8iLCJhY3Rpdml0 + eV9zdHJlYW0iOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTg5L2FjdGl2aXR5 + X3N0cmVhbS8iLCJzdXJ2ZXlfc3BlYyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRl + cy8xODkvc3VydmV5X3NwZWMvIn0sInN1bW1hcnlfZmllbGRzIjp7ImludmVu + dG9yeSI6eyJpZCI6MSwibmFtZSI6IkRlbW8gSW52ZW50b3J5IiwiZGVzY3Jp + cHRpb24iOiIiLCJoYXNfYWN0aXZlX2ZhaWx1cmVzIjpmYWxzZSwidG90YWxf + aG9zdHMiOjIsImhvc3RzX3dpdGhfYWN0aXZlX2ZhaWx1cmVzIjowLCJ0b3Rh + bF9ncm91cHMiOjAsImdyb3Vwc193aXRoX2FjdGl2ZV9mYWlsdXJlcyI6MCwi + aGFzX2ludmVudG9yeV9zb3VyY2VzIjpmYWxzZSwidG90YWxfaW52ZW50b3J5 + X3NvdXJjZXMiOjAsImludmVudG9yeV9zb3VyY2VzX3dpdGhfZmFpbHVyZXMi + OjB9LCJwcm9qZWN0Ijp7ImlkIjozNSwibmFtZSI6IkRCIiwiZGVzY3JpcHRp + b24iOiJEQiBQbGF5Ym9va3MiLCJzdGF0dXMiOiJmYWlsZWQifSwiY3JlYXRl + ZF9ieSI6eyJpZCI6MSwidXNlcm5hbWUiOiJhZG1pbiIsImZpcnN0X25hbWUi + OiIiLCJsYXN0X25hbWUiOiIifSwibW9kaWZpZWRfYnkiOnsiaWQiOjEsInVz + ZXJuYW1lIjoiYWRtaW4iLCJmaXJzdF9uYW1lIjoiIiwibGFzdF9uYW1lIjoi + In0sIm9iamVjdF9yb2xlcyI6eyJhZG1pbl9yb2xlIjp7ImRlc2NyaXB0aW9u + IjoiQ2FuIG1hbmFnZSBhbGwgYXNwZWN0cyBvZiB0aGUgam9iIHRlbXBsYXRl + IiwiaWQiOjYxMiwibmFtZSI6IkFkbWluIn0sImV4ZWN1dGVfcm9sZSI6eyJk + ZXNjcmlwdGlvbiI6Ik1heSBydW4gdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjo2 + MTQsIm5hbWUiOiJFeGVjdXRlIn0sInJlYWRfcm9sZSI6eyJkZXNjcmlwdGlv + biI6Ik1heSB2aWV3IHNldHRpbmdzIGZvciB0aGUgam9iIHRlbXBsYXRlIiwi + aWQiOjYxMywibmFtZSI6IlJlYWQifX0sImxhYmVscyI6eyJjb3VudCI6MCwi + cmVzdWx0cyI6W119LCJjYW5fY29weSI6dHJ1ZSwiY2FuX2VkaXQiOnRydWUs + InJlY2VudF9qb2JzIjpbXX0sImNyZWF0ZWQiOiIyMDE3LTAyLTIyVDE5OjU5 + OjM5LjY1M1oiLCJtb2RpZmllZCI6IjIwMTctMDMtMDFUMTc6NTk6MTkuOTk3 + WiIsIm5hbWUiOiJjaGFuZ2VkX3NlcnZpY2VfdGVtcGxhdGVfMTEiLCJkZXNj + cmlwdGlvbiI6ImNoYW5nZWQgc2VydmljZSB0ZW1wbGF0ZSAxMSIsImpvYl90 + eXBlIjoicnVuIiwiaW52ZW50b3J5IjoxLCJwcm9qZWN0IjozNSwicGxheWJv + b2siOiJwa2dpbmZvLnltbCIsImNyZWRlbnRpYWwiOm51bGwsImNsb3VkX2Ny + ZWRlbnRpYWwiOm51bGwsIm5ldHdvcmtfY3JlZGVudGlhbCI6bnVsbCwiZm9y + a3MiOjAsImxpbWl0IjoiIiwidmVyYm9zaXR5IjowLCJleHRyYV92YXJzIjoi + e1wia2V5MjJcIjpcInZhbHVlMjJcIixcImtleTIzXCI6XCJ2YWx1ZTIzXCJ9 + Iiwiam9iX3RhZ3MiOiIiLCJmb3JjZV9oYW5kbGVycyI6ZmFsc2UsInNraXBf + dGFncyI6IiIsInN0YXJ0X2F0X3Rhc2siOiIiLCJsYXN0X2pvYl9ydW4iOm51 + bGwsImxhc3Rfam9iX2ZhaWxlZCI6ZmFsc2UsImhhc19zY2hlZHVsZXMiOmZh + bHNlLCJuZXh0X2pvYl9ydW4iOm51bGwsInN0YXR1cyI6Im5ldmVyIHVwZGF0 + ZWQiLCJob3N0X2NvbmZpZ19rZXkiOiIiLCJhc2tfdmFyaWFibGVzX29uX2xh + dW5jaCI6dHJ1ZSwiYXNrX2xpbWl0X29uX2xhdW5jaCI6dHJ1ZSwiYXNrX3Rh + Z3Nfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2pvYl90eXBlX29uX2xhdW5jaCI6 + ZmFsc2UsImFza19pbnZlbnRvcnlfb25fbGF1bmNoIjp0cnVlLCJhc2tfY3Jl + ZGVudGlhbF9vbl9sYXVuY2giOnRydWUsInN1cnZleV9lbmFibGVkIjpmYWxz + ZSwiYmVjb21lX2VuYWJsZWQiOmZhbHNlLCJhbGxvd19zaW11bHRhbmVvdXMi + OmZhbHNlfSx7ImlkIjoxOTAsInR5cGUiOiJqb2JfdGVtcGxhdGUiLCJ1cmwi + OiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTkwLyIsInJlbGF0ZWQiOnsiY3Jl + YXRlZF9ieSI6Ii9hcGkvdjEvdXNlcnMvMS8iLCJsYWJlbHMiOiIvYXBpL3Yx + L2pvYl90ZW1wbGF0ZXMvMTkwL2xhYmVscy8iLCJpbnZlbnRvcnkiOiIvYXBp + L3YxL2ludmVudG9yaWVzLzkvIiwicHJvamVjdCI6Ii9hcGkvdjEvcHJvamVj + dHMvMTU1LyIsImxhc3Rfam9iIjoiL2FwaS92MS9qb2JzLzQ2Ny8iLCJub3Rp + ZmljYXRpb25fdGVtcGxhdGVzX2Vycm9yIjoiL2FwaS92MS9qb2JfdGVtcGxh + dGVzLzE5MC9ub3RpZmljYXRpb25fdGVtcGxhdGVzX2Vycm9yLyIsIm5vdGlm + aWNhdGlvbl90ZW1wbGF0ZXNfc3VjY2VzcyI6Ii9hcGkvdjEvam9iX3RlbXBs + YXRlcy8xOTAvbm90aWZpY2F0aW9uX3RlbXBsYXRlc19zdWNjZXNzLyIsImpv + YnMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTkwL2pvYnMvIiwib2JqZWN0 + X3JvbGVzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE5MC9vYmplY3Rfcm9s + ZXMvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRlc19hbnkiOiIvYXBpL3YxL2pv + Yl90ZW1wbGF0ZXMvMTkwL25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfYW55LyIs + ImFjY2Vzc19saXN0IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE5MC9hY2Nl + c3NfbGlzdC8iLCJsYXVuY2giOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTkw + L2xhdW5jaC8iLCJzY2hlZHVsZXMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMv + MTkwL3NjaGVkdWxlcy8iLCJhY3Rpdml0eV9zdHJlYW0iOiIvYXBpL3YxL2pv + Yl90ZW1wbGF0ZXMvMTkwL2FjdGl2aXR5X3N0cmVhbS8iLCJzdXJ2ZXlfc3Bl + YyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xOTAvc3VydmV5X3NwZWMvIn0s + InN1bW1hcnlfZmllbGRzIjp7Imxhc3Rfam9iIjp7ImlkIjo0NjcsIm5hbWUi + OiJjaGVja192ZXJzaW9uIiwiZGVzY3JpcHRpb24iOiIiLCJmaW5pc2hlZCI6 + IjIwMTctMDMtMTZUMTY6MjQ6NDMuODI1WiIsInN0YXR1cyI6InN1Y2Nlc3Nm + dWwiLCJmYWlsZWQiOmZhbHNlfSwibGFzdF91cGRhdGUiOnsiaWQiOjQ2Nywi + bmFtZSI6ImNoZWNrX3ZlcnNpb24iLCJkZXNjcmlwdGlvbiI6IiIsInN0YXR1 + cyI6InN1Y2Nlc3NmdWwiLCJmYWlsZWQiOmZhbHNlfSwiaW52ZW50b3J5Ijp7 + ImlkIjo5LCJuYW1lIjoibHVjeXNfdGVzdHMiLCJkZXNjcmlwdGlvbiI6IiIs + Imhhc19hY3RpdmVfZmFpbHVyZXMiOmZhbHNlLCJ0b3RhbF9ob3N0cyI6Miwi + aG9zdHNfd2l0aF9hY3RpdmVfZmFpbHVyZXMiOjAsInRvdGFsX2dyb3VwcyI6 + MiwiZ3JvdXBzX3dpdGhfYWN0aXZlX2ZhaWx1cmVzIjowLCJoYXNfaW52ZW50 + b3J5X3NvdXJjZXMiOnRydWUsInRvdGFsX2ludmVudG9yeV9zb3VyY2VzIjoy + LCJpbnZlbnRvcnlfc291cmNlc193aXRoX2ZhaWx1cmVzIjowfSwicHJvamVj + dCI6eyJpZCI6MTU1LCJuYW1lIjoibHVjeSIsImRlc2NyaXB0aW9uIjoidGVz + dCBwbGF5Ym9vayIsInN0YXR1cyI6InN1Y2Nlc3NmdWwifSwiY3JlYXRlZF9i + eSI6eyJpZCI6MSwidXNlcm5hbWUiOiJhZG1pbiIsImZpcnN0X25hbWUiOiIi + LCJsYXN0X25hbWUiOiIifSwib2JqZWN0X3JvbGVzIjp7ImFkbWluX3JvbGUi + OnsiZGVzY3JpcHRpb24iOiJDYW4gbWFuYWdlIGFsbCBhc3BlY3RzIG9mIHRo + ZSBqb2IgdGVtcGxhdGUiLCJpZCI6NjE4LCJuYW1lIjoiQWRtaW4ifSwiZXhl + Y3V0ZV9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiTWF5IHJ1biB0aGUgam9iIHRl + bXBsYXRlIiwiaWQiOjYyMCwibmFtZSI6IkV4ZWN1dGUifSwicmVhZF9yb2xl + Ijp7ImRlc2NyaXB0aW9uIjoiTWF5IHZpZXcgc2V0dGluZ3MgZm9yIHRoZSBq + b2IgdGVtcGxhdGUiLCJpZCI6NjE5LCJuYW1lIjoiUmVhZCJ9fSwibGFiZWxz + Ijp7ImNvdW50IjowLCJyZXN1bHRzIjpbXX0sImNhbl9jb3B5IjpmYWxzZSwi + Y2FuX2VkaXQiOnRydWUsInJlY2VudF9qb2JzIjpbeyJzdGF0dXMiOiJzdWNj + ZXNzZnVsIiwiZmluaXNoZWQiOiIyMDE3LTAzLTE2VDE2OjI0OjQzLjgyNVoi + LCJpZCI6NDY3fSx7InN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6 + IjIwMTctMDItMjdUMTQ6NTM6MjUuMDEzWiIsImlkIjozODB9LHsic3RhdHVz + Ijoic3VjY2Vzc2Z1bCIsImZpbmlzaGVkIjoiMjAxNy0wMi0yM1QxNjoxMjoz + MS42MzNaIiwiaWQiOjM0OX0seyJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiZmlu + aXNoZWQiOiIyMDE3LTAyLTIzVDE2OjA5OjU0LjA2MloiLCJpZCI6MzQ3fSx7 + InN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6IjIwMTctMDItMjNU + MTY6MDc6NTMuNzY4WiIsImlkIjozNDV9LHsic3RhdHVzIjoic3VjY2Vzc2Z1 + bCIsImZpbmlzaGVkIjoiMjAxNy0wMi0yM1QxNTo1OTowMi45NTJaIiwiaWQi + OjM0M30seyJzdGF0dXMiOiJmYWlsZWQiLCJmaW5pc2hlZCI6IjIwMTctMDIt + MjNUMTU6NTQ6MjQuMzU4WiIsImlkIjozNDF9LHsic3RhdHVzIjoic3VjY2Vz + c2Z1bCIsImZpbmlzaGVkIjoiMjAxNy0wMi0yM1QxNTo1MjoyNC4zNzZaIiwi + aWQiOjMzOX0seyJzdGF0dXMiOiJmYWlsZWQiLCJmaW5pc2hlZCI6IjIwMTct + MDItMjNUMTU6NDc6NTguMzgzWiIsImlkIjozMzd9LHsic3RhdHVzIjoiZmFp + bGVkIiwiZmluaXNoZWQiOiIyMDE3LTAyLTIzVDE1OjQ2OjU3LjY1N1oiLCJp + ZCI6MzM1fV19LCJjcmVhdGVkIjoiMjAxNy0wMi0yMlQyMjozMTo0My43NDJa + IiwibW9kaWZpZWQiOiIyMDE3LTAzLTE2VDE2OjI0OjE4LjU3MFoiLCJuYW1l + IjoiY2hlY2tfdmVyc2lvbiIsImRlc2NyaXB0aW9uIjoiIiwiam9iX3R5cGUi + OiJydW4iLCJpbnZlbnRvcnkiOjksInByb2plY3QiOjE1NSwicGxheWJvb2si + OiJjaGVja192ZXJzaW9uLnlhbWwiLCJjcmVkZW50aWFsIjpudWxsLCJjbG91 + ZF9jcmVkZW50aWFsIjpudWxsLCJuZXR3b3JrX2NyZWRlbnRpYWwiOm51bGws + ImZvcmtzIjowLCJsaW1pdCI6IiIsInZlcmJvc2l0eSI6MCwiZXh0cmFfdmFy + cyI6Ii0tLVxubnVtYmVyOiDigJww4oCdIiwiam9iX3RhZ3MiOiIiLCJmb3Jj + ZV9oYW5kbGVycyI6ZmFsc2UsInNraXBfdGFncyI6IiIsInN0YXJ0X2F0X3Rh + c2siOiIiLCJsYXN0X2pvYl9ydW4iOiIyMDE3LTAzLTE2VDE2OjI0OjQzLjgy + NTY4OFoiLCJsYXN0X2pvYl9mYWlsZWQiOmZhbHNlLCJoYXNfc2NoZWR1bGVz + IjpmYWxzZSwibmV4dF9qb2JfcnVuIjpudWxsLCJzdGF0dXMiOiJzdWNjZXNz + ZnVsIiwiaG9zdF9jb25maWdfa2V5IjoiIiwiYXNrX3ZhcmlhYmxlc19vbl9s + YXVuY2giOmZhbHNlLCJhc2tfbGltaXRfb25fbGF1bmNoIjpmYWxzZSwiYXNr + X3RhZ3Nfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2pvYl90eXBlX29uX2xhdW5j + aCI6ZmFsc2UsImFza19pbnZlbnRvcnlfb25fbGF1bmNoIjpmYWxzZSwiYXNr + X2NyZWRlbnRpYWxfb25fbGF1bmNoIjpmYWxzZSwic3VydmV5X2VuYWJsZWQi + OmZhbHNlLCJiZWNvbWVfZW5hYmxlZCI6ZmFsc2UsImFsbG93X3NpbXVsdGFu + ZW91cyI6ZmFsc2V9LHsiaWQiOjM4LCJ0eXBlIjoiam9iX3RlbXBsYXRlIiwi + dXJsIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzM4LyIsInJlbGF0ZWQiOnsi + Y3JlYXRlZF9ieSI6Ii9hcGkvdjEvdXNlcnMvMS8iLCJtb2RpZmllZF9ieSI6 + Ii9hcGkvdjEvdXNlcnMvMS8iLCJsYWJlbHMiOiIvYXBpL3YxL2pvYl90ZW1w + bGF0ZXMvMzgvbGFiZWxzLyIsImludmVudG9yeSI6Ii9hcGkvdjEvaW52ZW50 + b3JpZXMvMS8iLCJwcm9qZWN0IjoiL2FwaS92MS9wcm9qZWN0cy8zNi8iLCJj + cmVkZW50aWFsIjoiL2FwaS92MS9jcmVkZW50aWFscy80LyIsImNsb3VkX2Ny + ZWRlbnRpYWwiOiIvYXBpL3YxL2NyZWRlbnRpYWxzLzIvIiwibm90aWZpY2F0 + aW9uX3RlbXBsYXRlc19lcnJvciI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8z + OC9ub3RpZmljYXRpb25fdGVtcGxhdGVzX2Vycm9yLyIsIm5vdGlmaWNhdGlv + bl90ZW1wbGF0ZXNfc3VjY2VzcyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8z + OC9ub3RpZmljYXRpb25fdGVtcGxhdGVzX3N1Y2Nlc3MvIiwiam9icyI6Ii9h + cGkvdjEvam9iX3RlbXBsYXRlcy8zOC9qb2JzLyIsIm9iamVjdF9yb2xlcyI6 + Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8zOC9vYmplY3Rfcm9sZXMvIiwibm90 + aWZpY2F0aW9uX3RlbXBsYXRlc19hbnkiOiIvYXBpL3YxL2pvYl90ZW1wbGF0 + ZXMvMzgvbm90aWZpY2F0aW9uX3RlbXBsYXRlc19hbnkvIiwiYWNjZXNzX2xp + c3QiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzgvYWNjZXNzX2xpc3QvIiwi + bGF1bmNoIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzM4L2xhdW5jaC8iLCJz + Y2hlZHVsZXMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzgvc2NoZWR1bGVz + LyIsImFjdGl2aXR5X3N0cmVhbSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8z + OC9hY3Rpdml0eV9zdHJlYW0vIiwic3VydmV5X3NwZWMiOiIvYXBpL3YxL2pv + Yl90ZW1wbGF0ZXMvMzgvc3VydmV5X3NwZWMvIn0sInN1bW1hcnlfZmllbGRz + Ijp7ImludmVudG9yeSI6eyJpZCI6MSwibmFtZSI6IkRlbW8gSW52ZW50b3J5 + IiwiZGVzY3JpcHRpb24iOiIiLCJoYXNfYWN0aXZlX2ZhaWx1cmVzIjpmYWxz + ZSwidG90YWxfaG9zdHMiOjIsImhvc3RzX3dpdGhfYWN0aXZlX2ZhaWx1cmVz + IjowLCJ0b3RhbF9ncm91cHMiOjAsImdyb3Vwc193aXRoX2FjdGl2ZV9mYWls + dXJlcyI6MCwiaGFzX2ludmVudG9yeV9zb3VyY2VzIjpmYWxzZSwidG90YWxf + aW52ZW50b3J5X3NvdXJjZXMiOjAsImludmVudG9yeV9zb3VyY2VzX3dpdGhf + ZmFpbHVyZXMiOjB9LCJjbG91ZF9jcmVkZW50aWFsIjp7ImlkIjoyLCJuYW1l + IjoiZGV2LXZjNjAiLCJkZXNjcmlwdGlvbiI6IiIsImtpbmQiOiJ2bXdhcmUi + LCJjbG91ZCI6dHJ1ZX0sImNyZWRlbnRpYWwiOnsiaWQiOjQsIm5hbWUiOiJE + ZW1vIENyZWRzIDIiLCJkZXNjcmlwdGlvbiI6InRlc3QiLCJraW5kIjoic3No + IiwiY2xvdWQiOmZhbHNlfSwicHJvamVjdCI6eyJpZCI6MzYsIm5hbWUiOiJq + d29uZy1vcmcyIiwiZGVzY3JpcHRpb24iOiJNSVEgVUkgdXBkYXRlIiwic3Rh + dHVzIjoic3VjY2Vzc2Z1bCJ9LCJjcmVhdGVkX2J5Ijp7ImlkIjoxLCJ1c2Vy + bmFtZSI6ImFkbWluIiwiZmlyc3RfbmFtZSI6IiIsImxhc3RfbmFtZSI6IiJ9 + LCJtb2RpZmllZF9ieSI6eyJpZCI6MSwidXNlcm5hbWUiOiJhZG1pbiIsImZp + cnN0X25hbWUiOiIiLCJsYXN0X25hbWUiOiIifSwib2JqZWN0X3JvbGVzIjp7 + ImFkbWluX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJDYW4gbWFuYWdlIGFsbCBh + c3BlY3RzIG9mIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6ODksIm5hbWUiOiJB + ZG1pbiJ9LCJleGVjdXRlX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJNYXkgcnVu + IHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6OTEsIm5hbWUiOiJFeGVjdXRlIn0s + InJlYWRfcm9sZSI6eyJkZXNjcmlwdGlvbiI6Ik1heSB2aWV3IHNldHRpbmdz + IGZvciB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjkwLCJuYW1lIjoiUmVhZCJ9 + fSwibGFiZWxzIjp7ImNvdW50IjoxLCJyZXN1bHRzIjpbeyJpZCI6MSwibmFt + ZSI6ImRlbW8ifV19LCJjYW5fY29weSI6dHJ1ZSwiY2FuX2VkaXQiOnRydWUs + InJlY2VudF9qb2JzIjpbXX0sImNyZWF0ZWQiOiIyMDE3LTAxLTE2VDE1OjUz + OjAzLjI1NFoiLCJtb2RpZmllZCI6IjIwMTctMDEtMTZUMTU6NTM6MDMuMjU0 + WiIsIm5hbWUiOiJEZW1vIGpvYiB0ZW1wbGF0ZSIsImRlc2NyaXB0aW9uIjoi + dGVzdCIsImpvYl90eXBlIjoicnVuIiwiaW52ZW50b3J5IjoxLCJwcm9qZWN0 + IjozNiwicGxheWJvb2siOiJwcm9kdWN0L2NoYXJ0cy9taXFfcmVwb3J0cy92 + aW1fcGVyZl9kYWlseS55YW1sIiwiY3JlZGVudGlhbCI6NCwiY2xvdWRfY3Jl + ZGVudGlhbCI6MiwibmV0d29ya19jcmVkZW50aWFsIjpudWxsLCJmb3JrcyI6 + MCwibGltaXQiOiIiLCJ2ZXJib3NpdHkiOjAsImV4dHJhX3ZhcnMiOiIiLCJq + b2JfdGFncyI6IiIsImZvcmNlX2hhbmRsZXJzIjpmYWxzZSwic2tpcF90YWdz + IjoiIiwic3RhcnRfYXRfdGFzayI6IiIsImxhc3Rfam9iX3J1biI6bnVsbCwi + bGFzdF9qb2JfZmFpbGVkIjpmYWxzZSwiaGFzX3NjaGVkdWxlcyI6ZmFsc2Us + Im5leHRfam9iX3J1biI6bnVsbCwic3RhdHVzIjoibmV2ZXIgdXBkYXRlZCIs + Imhvc3RfY29uZmlnX2tleSI6IiIsImFza192YXJpYWJsZXNfb25fbGF1bmNo + IjpmYWxzZSwiYXNrX2xpbWl0X29uX2xhdW5jaCI6ZmFsc2UsImFza190YWdz + X29uX2xhdW5jaCI6ZmFsc2UsImFza19qb2JfdHlwZV9vbl9sYXVuY2giOmZh + bHNlLCJhc2tfaW52ZW50b3J5X29uX2xhdW5jaCI6ZmFsc2UsImFza19jcmVk + ZW50aWFsX29uX2xhdW5jaCI6ZmFsc2UsInN1cnZleV9lbmFibGVkIjpmYWxz + ZSwiYmVjb21lX2VuYWJsZWQiOnRydWUsImFsbG93X3NpbXVsdGFuZW91cyI6 + ZmFsc2V9LHsiaWQiOjE4OCwidHlwZSI6ImpvYl90ZW1wbGF0ZSIsInVybCI6 + Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xODgvIiwicmVsYXRlZCI6eyJjcmVh + dGVkX2J5IjoiL2FwaS92MS91c2Vycy8xLyIsImxhYmVscyI6Ii9hcGkvdjEv + am9iX3RlbXBsYXRlcy8xODgvbGFiZWxzLyIsImludmVudG9yeSI6Ii9hcGkv + djEvaW52ZW50b3JpZXMvOS8iLCJwcm9qZWN0IjoiL2FwaS92MS9wcm9qZWN0 + cy8xNTUvIiwibGFzdF9qb2IiOiIvYXBpL3YxL2pvYnMvMzE3LyIsIm5vdGlm + aWNhdGlvbl90ZW1wbGF0ZXNfZXJyb3IiOiIvYXBpL3YxL2pvYl90ZW1wbGF0 + ZXMvMTg4L25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfZXJyb3IvIiwibm90aWZp + Y2F0aW9uX3RlbXBsYXRlc19zdWNjZXNzIjoiL2FwaS92MS9qb2JfdGVtcGxh + dGVzLzE4OC9ub3RpZmljYXRpb25fdGVtcGxhdGVzX3N1Y2Nlc3MvIiwiam9i + cyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xODgvam9icy8iLCJvYmplY3Rf + cm9sZXMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTg4L29iamVjdF9yb2xl + cy8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVzX2FueSI6Ii9hcGkvdjEvam9i + X3RlbXBsYXRlcy8xODgvbm90aWZpY2F0aW9uX3RlbXBsYXRlc19hbnkvIiwi + YWNjZXNzX2xpc3QiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTg4L2FjY2Vz + c19saXN0LyIsImxhdW5jaCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xODgv + bGF1bmNoLyIsInNjaGVkdWxlcyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8x + ODgvc2NoZWR1bGVzLyIsImFjdGl2aXR5X3N0cmVhbSI6Ii9hcGkvdjEvam9i + X3RlbXBsYXRlcy8xODgvYWN0aXZpdHlfc3RyZWFtLyIsInN1cnZleV9zcGVj + IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE4OC9zdXJ2ZXlfc3BlYy8ifSwi + c3VtbWFyeV9maWVsZHMiOnsibGFzdF9qb2IiOnsiaWQiOjMxNywibmFtZSI6 + ImVjaG9faW5wdXRzIiwiZGVzY3JpcHRpb24iOiIiLCJmaW5pc2hlZCI6IjIw + MTctMDItMjJUMjA6MjY6MzkuMDk2WiIsInN0YXR1cyI6InN1Y2Nlc3NmdWwi + LCJmYWlsZWQiOmZhbHNlfSwibGFzdF91cGRhdGUiOnsiaWQiOjMxNywibmFt + ZSI6ImVjaG9faW5wdXRzIiwiZGVzY3JpcHRpb24iOiIiLCJzdGF0dXMiOiJz + dWNjZXNzZnVsIiwiZmFpbGVkIjpmYWxzZX0sImludmVudG9yeSI6eyJpZCI6 + OSwibmFtZSI6Imx1Y3lzX3Rlc3RzIiwiZGVzY3JpcHRpb24iOiIiLCJoYXNf + YWN0aXZlX2ZhaWx1cmVzIjpmYWxzZSwidG90YWxfaG9zdHMiOjIsImhvc3Rz + X3dpdGhfYWN0aXZlX2ZhaWx1cmVzIjowLCJ0b3RhbF9ncm91cHMiOjIsImdy + b3Vwc193aXRoX2FjdGl2ZV9mYWlsdXJlcyI6MCwiaGFzX2ludmVudG9yeV9z + b3VyY2VzIjp0cnVlLCJ0b3RhbF9pbnZlbnRvcnlfc291cmNlcyI6MiwiaW52 + ZW50b3J5X3NvdXJjZXNfd2l0aF9mYWlsdXJlcyI6MH0sInByb2plY3QiOnsi + aWQiOjE1NSwibmFtZSI6Imx1Y3kiLCJkZXNjcmlwdGlvbiI6InRlc3QgcGxh + eWJvb2siLCJzdGF0dXMiOiJzdWNjZXNzZnVsIn0sImNyZWF0ZWRfYnkiOnsi + aWQiOjEsInVzZXJuYW1lIjoiYWRtaW4iLCJmaXJzdF9uYW1lIjoiIiwibGFz + dF9uYW1lIjoiIn0sIm9iamVjdF9yb2xlcyI6eyJhZG1pbl9yb2xlIjp7ImRl + c2NyaXB0aW9uIjoiQ2FuIG1hbmFnZSBhbGwgYXNwZWN0cyBvZiB0aGUgam9i + IHRlbXBsYXRlIiwiaWQiOjYwOSwibmFtZSI6IkFkbWluIn0sImV4ZWN1dGVf + cm9sZSI6eyJkZXNjcmlwdGlvbiI6Ik1heSBydW4gdGhlIGpvYiB0ZW1wbGF0 + ZSIsImlkIjo2MTEsIm5hbWUiOiJFeGVjdXRlIn0sInJlYWRfcm9sZSI6eyJk + ZXNjcmlwdGlvbiI6Ik1heSB2aWV3IHNldHRpbmdzIGZvciB0aGUgam9iIHRl + bXBsYXRlIiwiaWQiOjYxMCwibmFtZSI6IlJlYWQifX0sImxhYmVscyI6eyJj + b3VudCI6MCwicmVzdWx0cyI6W119LCJjYW5fY29weSI6ZmFsc2UsImNhbl9l + ZGl0Ijp0cnVlLCJyZWNlbnRfam9icyI6W3sic3RhdHVzIjoic3VjY2Vzc2Z1 + bCIsImZpbmlzaGVkIjoiMjAxNy0wMi0yMlQyMDoyNjozOS4wOTZaIiwiaWQi + OjMxN30seyJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiZmluaXNoZWQiOiIyMDE3 + LTAyLTIyVDIwOjExOjIxLjg2NFoiLCJpZCI6MzExfSx7InN0YXR1cyI6InN1 + Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6IjIwMTctMDItMjJUMjA6MDQ6MTkuOTE2 + WiIsImlkIjozMDl9LHsic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZpbmlzaGVk + IjoiMjAxNy0wMi0yMlQyMDowMDo1NC42NTFaIiwiaWQiOjMwN30seyJzdGF0 + dXMiOiJzdWNjZXNzZnVsIiwiZmluaXNoZWQiOiIyMDE3LTAyLTIyVDE5OjU3 + OjE3LjMyNFoiLCJpZCI6MzA1fV19LCJjcmVhdGVkIjoiMjAxNy0wMi0yMlQx + OTo1Njo0Ni40MzBaIiwibW9kaWZpZWQiOiIyMDE3LTAyLTIyVDIwOjI2OjEw + LjY2MloiLCJuYW1lIjoiZWNob19pbnB1dHMiLCJkZXNjcmlwdGlvbiI6IiIs + ImpvYl90eXBlIjoicnVuIiwiaW52ZW50b3J5Ijo5LCJwcm9qZWN0IjoxNTUs + InBsYXlib29rIjoiZWNob19pbnB1dHMueWFtbCIsImNyZWRlbnRpYWwiOm51 + bGwsImNsb3VkX2NyZWRlbnRpYWwiOm51bGwsIm5ldHdvcmtfY3JlZGVudGlh + bCI6bnVsbCwiZm9ya3MiOjAsImxpbWl0IjoiIiwidmVyYm9zaXR5IjowLCJl + eHRyYV92YXJzIjoiLS0tXG5teV92YXI6IDM0Iiwiam9iX3RhZ3MiOiIiLCJm + b3JjZV9oYW5kbGVycyI6ZmFsc2UsInNraXBfdGFncyI6IiIsInN0YXJ0X2F0 + X3Rhc2siOiIiLCJsYXN0X2pvYl9ydW4iOiIyMDE3LTAyLTIyVDIwOjI2OjM5 + LjA5NjM4OFoiLCJsYXN0X2pvYl9mYWlsZWQiOmZhbHNlLCJoYXNfc2NoZWR1 + bGVzIjpmYWxzZSwibmV4dF9qb2JfcnVuIjpudWxsLCJzdGF0dXMiOiJzdWNj + ZXNzZnVsIiwiaG9zdF9jb25maWdfa2V5IjoiIiwiYXNrX3ZhcmlhYmxlc19v + bl9sYXVuY2giOmZhbHNlLCJhc2tfbGltaXRfb25fbGF1bmNoIjpmYWxzZSwi + YXNrX3RhZ3Nfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2pvYl90eXBlX29uX2xh + dW5jaCI6ZmFsc2UsImFza19pbnZlbnRvcnlfb25fbGF1bmNoIjpmYWxzZSwi + YXNrX2NyZWRlbnRpYWxfb25fbGF1bmNoIjpmYWxzZSwic3VydmV5X2VuYWJs + ZWQiOmZhbHNlLCJiZWNvbWVfZW5hYmxlZCI6ZmFsc2UsImFsbG93X3NpbXVs + dGFuZW91cyI6ZmFsc2V9LHsiaWQiOjU3MSwidHlwZSI6ImpvYl90ZW1wbGF0 + ZSIsInVybCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy81NzEvIiwicmVsYXRl + ZCI6eyJjcmVhdGVkX2J5IjoiL2FwaS92MS91c2Vycy8xLyIsIm1vZGlmaWVk + X2J5IjoiL2FwaS92MS91c2Vycy8xLyIsImxhYmVscyI6Ii9hcGkvdjEvam9i + X3RlbXBsYXRlcy81NzEvbGFiZWxzLyIsImludmVudG9yeSI6Ii9hcGkvdjEv + aW52ZW50b3JpZXMvMTAzLyIsInByb2plY3QiOiIvYXBpL3YxL3Byb2plY3Rz + LzU3MC8iLCJjcmVkZW50aWFsIjoiL2FwaS92MS9jcmVkZW50aWFscy8xMDkv + IiwiY2xvdWRfY3JlZGVudGlhbCI6Ii9hcGkvdjEvY3JlZGVudGlhbHMvMTEw + LyIsIm5ldHdvcmtfY3JlZGVudGlhbCI6Ii9hcGkvdjEvY3JlZGVudGlhbHMv + MTExLyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfZXJyb3IiOiIvYXBpL3Yx + L2pvYl90ZW1wbGF0ZXMvNTcxL25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfZXJy + b3IvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRlc19zdWNjZXNzIjoiL2FwaS92 + MS9qb2JfdGVtcGxhdGVzLzU3MS9ub3RpZmljYXRpb25fdGVtcGxhdGVzX3N1 + Y2Nlc3MvIiwiam9icyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy81NzEvam9i + cy8iLCJvYmplY3Rfcm9sZXMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvNTcx + L29iamVjdF9yb2xlcy8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVzX2FueSI6 + Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy81NzEvbm90aWZpY2F0aW9uX3RlbXBs + YXRlc19hbnkvIiwiYWNjZXNzX2xpc3QiOiIvYXBpL3YxL2pvYl90ZW1wbGF0 + ZXMvNTcxL2FjY2Vzc19saXN0LyIsImxhdW5jaCI6Ii9hcGkvdjEvam9iX3Rl + bXBsYXRlcy81NzEvbGF1bmNoLyIsInNjaGVkdWxlcyI6Ii9hcGkvdjEvam9i + X3RlbXBsYXRlcy81NzEvc2NoZWR1bGVzLyIsImFjdGl2aXR5X3N0cmVhbSI6 + Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy81NzEvYWN0aXZpdHlfc3RyZWFtLyIs + InN1cnZleV9zcGVjIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzU3MS9zdXJ2 + ZXlfc3BlYy8ifSwic3VtbWFyeV9maWVsZHMiOnsibmV0d29ya19jcmVkZW50 + aWFsIjp7ImlkIjoxMTEsIm5hbWUiOiJoZWxsb19uZXR3b3JrX2NyZWQiLCJk + ZXNjcmlwdGlvbiI6IiIsImtpbmQiOiJuZXQifSwiaW52ZW50b3J5Ijp7Imlk + IjoxMDMsIm5hbWUiOiJoZWxsb19pbnZlbnRvcnkiLCJkZXNjcmlwdGlvbiI6 + ImludmVudG9yeSBmb3IgbWlxIHNwZWMgdGVzdHMiLCJoYXNfYWN0aXZlX2Zh + aWx1cmVzIjpmYWxzZSwidG90YWxfaG9zdHMiOjEsImhvc3RzX3dpdGhfYWN0 + aXZlX2ZhaWx1cmVzIjowLCJ0b3RhbF9ncm91cHMiOjAsImdyb3Vwc193aXRo + X2FjdGl2ZV9mYWlsdXJlcyI6MCwiaGFzX2ludmVudG9yeV9zb3VyY2VzIjpm + YWxzZSwidG90YWxfaW52ZW50b3J5X3NvdXJjZXMiOjAsImludmVudG9yeV9z + b3VyY2VzX3dpdGhfZmFpbHVyZXMiOjB9LCJjbG91ZF9jcmVkZW50aWFsIjp7 + ImlkIjoxMTAsIm5hbWUiOiJoZWxsb19hd3NfY3JlZCIsImRlc2NyaXB0aW9u + IjoiIiwia2luZCI6ImF3cyIsImNsb3VkIjp0cnVlfSwiY3JlZGVudGlhbCI6 + eyJpZCI6MTA5LCJuYW1lIjoiaGVsbG9fbWFjaGluZV9jcmVkIiwiZGVzY3Jp + cHRpb24iOiIiLCJraW5kIjoic3NoIiwiY2xvdWQiOmZhbHNlfSwicHJvamVj + dCI6eyJpZCI6NTcwLCJuYW1lIjoiaGVsbG9fcmVwbyIsImRlc2NyaXB0aW9u + IjoiIiwic3RhdHVzIjoic3VjY2Vzc2Z1bCJ9LCJjcmVhdGVkX2J5Ijp7Imlk + IjoxLCJ1c2VybmFtZSI6ImFkbWluIiwiZmlyc3RfbmFtZSI6IiIsImxhc3Rf + bmFtZSI6IiJ9LCJtb2RpZmllZF9ieSI6eyJpZCI6MSwidXNlcm5hbWUiOiJh + ZG1pbiIsImZpcnN0X25hbWUiOiIiLCJsYXN0X25hbWUiOiIifSwib2JqZWN0 + X3JvbGVzIjp7ImFkbWluX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJDYW4gbWFu + YWdlIGFsbCBhc3BlY3RzIG9mIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6MjYx + NywibmFtZSI6IkFkbWluIn0sImV4ZWN1dGVfcm9sZSI6eyJkZXNjcmlwdGlv + biI6Ik1heSBydW4gdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjoyNjE5LCJuYW1l + IjoiRXhlY3V0ZSJ9LCJyZWFkX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJNYXkg + dmlldyBzZXR0aW5ncyBmb3IgdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjoyNjE4 + LCJuYW1lIjoiUmVhZCJ9fSwibGFiZWxzIjp7ImNvdW50IjowLCJyZXN1bHRz + IjpbXX0sImNhbl9jb3B5Ijp0cnVlLCJjYW5fZWRpdCI6dHJ1ZSwicmVjZW50 + X2pvYnMiOltdfSwiY3JlYXRlZCI6IjIwMTctMDYtMjFUMTk6MjE6MjAuODMx + WiIsIm1vZGlmaWVkIjoiMjAxNy0wNi0yMVQxOToyMToyMC44MzFaIiwibmFt + ZSI6ImhlbGxvX3RlbXBsYXRlIiwiZGVzY3JpcHRpb24iOiJ0ZXN0IGpvYiIs + ImpvYl90eXBlIjoicnVuIiwiaW52ZW50b3J5IjoxMDMsInByb2plY3QiOjU3 + MCwicGxheWJvb2siOiJoZWxsb193b3JsZC55bWwiLCJjcmVkZW50aWFsIjox + MDksImNsb3VkX2NyZWRlbnRpYWwiOjExMCwibmV0d29ya19jcmVkZW50aWFs + IjoxMTEsImZvcmtzIjowLCJsaW1pdCI6IiIsInZlcmJvc2l0eSI6MCwiZXh0 + cmFfdmFycyI6IiIsImpvYl90YWdzIjoiIiwiZm9yY2VfaGFuZGxlcnMiOmZh + bHNlLCJza2lwX3RhZ3MiOiIiLCJzdGFydF9hdF90YXNrIjoiIiwibGFzdF9q + b2JfcnVuIjpudWxsLCJsYXN0X2pvYl9mYWlsZWQiOmZhbHNlLCJoYXNfc2No + ZWR1bGVzIjpmYWxzZSwibmV4dF9qb2JfcnVuIjpudWxsLCJzdGF0dXMiOiJu + ZXZlciB1cGRhdGVkIiwiaG9zdF9jb25maWdfa2V5IjoiIiwiYXNrX3Zhcmlh + Ymxlc19vbl9sYXVuY2giOmZhbHNlLCJhc2tfbGltaXRfb25fbGF1bmNoIjpm + YWxzZSwiYXNrX3RhZ3Nfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2pvYl90eXBl + X29uX2xhdW5jaCI6ZmFsc2UsImFza19pbnZlbnRvcnlfb25fbGF1bmNoIjpm + YWxzZSwiYXNrX2NyZWRlbnRpYWxfb25fbGF1bmNoIjpmYWxzZSwic3VydmV5 + X2VuYWJsZWQiOmZhbHNlLCJiZWNvbWVfZW5hYmxlZCI6ZmFsc2UsImFsbG93 + X3NpbXVsdGFuZW91cyI6ZmFsc2V9LHsiaWQiOjU3MiwidHlwZSI6ImpvYl90 + ZW1wbGF0ZSIsInVybCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy81NzIvIiwi + cmVsYXRlZCI6eyJjcmVhdGVkX2J5IjoiL2FwaS92MS91c2Vycy8xLyIsIm1v + ZGlmaWVkX2J5IjoiL2FwaS92MS91c2Vycy8xLyIsImxhYmVscyI6Ii9hcGkv + djEvam9iX3RlbXBsYXRlcy81NzIvbGFiZWxzLyIsImludmVudG9yeSI6Ii9h + cGkvdjEvaW52ZW50b3JpZXMvMTAzLyIsInByb2plY3QiOiIvYXBpL3YxL3By + b2plY3RzLzU3MC8iLCJjcmVkZW50aWFsIjoiL2FwaS92MS9jcmVkZW50aWFs + cy8xMDkvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRlc19lcnJvciI6Ii9hcGkv + djEvam9iX3RlbXBsYXRlcy81NzIvbm90aWZpY2F0aW9uX3RlbXBsYXRlc19l + cnJvci8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVzX3N1Y2Nlc3MiOiIvYXBp + L3YxL2pvYl90ZW1wbGF0ZXMvNTcyL25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNf + c3VjY2Vzcy8iLCJqb2JzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzU3Mi9q + b2JzLyIsIm9iamVjdF9yb2xlcyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy81 + NzIvb2JqZWN0X3JvbGVzLyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfYW55 + IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzU3Mi9ub3RpZmljYXRpb25fdGVt + cGxhdGVzX2FueS8iLCJhY2Nlc3NfbGlzdCI6Ii9hcGkvdjEvam9iX3RlbXBs + YXRlcy81NzIvYWNjZXNzX2xpc3QvIiwibGF1bmNoIjoiL2FwaS92MS9qb2Jf + dGVtcGxhdGVzLzU3Mi9sYXVuY2gvIiwic2NoZWR1bGVzIjoiL2FwaS92MS9q + b2JfdGVtcGxhdGVzLzU3Mi9zY2hlZHVsZXMvIiwiYWN0aXZpdHlfc3RyZWFt + IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzU3Mi9hY3Rpdml0eV9zdHJlYW0v + Iiwic3VydmV5X3NwZWMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvNTcyL3N1 + cnZleV9zcGVjLyJ9LCJzdW1tYXJ5X2ZpZWxkcyI6eyJpbnZlbnRvcnkiOnsi + aWQiOjEwMywibmFtZSI6ImhlbGxvX2ludmVudG9yeSIsImRlc2NyaXB0aW9u + IjoiaW52ZW50b3J5IGZvciBtaXEgc3BlYyB0ZXN0cyIsImhhc19hY3RpdmVf + ZmFpbHVyZXMiOmZhbHNlLCJ0b3RhbF9ob3N0cyI6MSwiaG9zdHNfd2l0aF9h + Y3RpdmVfZmFpbHVyZXMiOjAsInRvdGFsX2dyb3VwcyI6MCwiZ3JvdXBzX3dp + dGhfYWN0aXZlX2ZhaWx1cmVzIjowLCJoYXNfaW52ZW50b3J5X3NvdXJjZXMi + OmZhbHNlLCJ0b3RhbF9pbnZlbnRvcnlfc291cmNlcyI6MCwiaW52ZW50b3J5 + X3NvdXJjZXNfd2l0aF9mYWlsdXJlcyI6MH0sImNyZWRlbnRpYWwiOnsiaWQi + OjEwOSwibmFtZSI6ImhlbGxvX21hY2hpbmVfY3JlZCIsImRlc2NyaXB0aW9u + IjoiIiwia2luZCI6InNzaCIsImNsb3VkIjpmYWxzZX0sInByb2plY3QiOnsi + aWQiOjU3MCwibmFtZSI6ImhlbGxvX3JlcG8iLCJkZXNjcmlwdGlvbiI6IiIs + InN0YXR1cyI6InN1Y2Nlc3NmdWwifSwiY3JlYXRlZF9ieSI6eyJpZCI6MSwi + dXNlcm5hbWUiOiJhZG1pbiIsImZpcnN0X25hbWUiOiIiLCJsYXN0X25hbWUi + OiIifSwibW9kaWZpZWRfYnkiOnsiaWQiOjEsInVzZXJuYW1lIjoiYWRtaW4i + LCJmaXJzdF9uYW1lIjoiIiwibGFzdF9uYW1lIjoiIn0sIm9iamVjdF9yb2xl + cyI6eyJhZG1pbl9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiQ2FuIG1hbmFnZSBh + bGwgYXNwZWN0cyBvZiB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjI2MjAsIm5h + bWUiOiJBZG1pbiJ9LCJleGVjdXRlX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJN + YXkgcnVuIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6MjYyMiwibmFtZSI6IkV4 + ZWN1dGUifSwicmVhZF9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiTWF5IHZpZXcg + c2V0dGluZ3MgZm9yIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6MjYyMSwibmFt + ZSI6IlJlYWQifX0sImxhYmVscyI6eyJjb3VudCI6MCwicmVzdWx0cyI6W119 + LCJzdXJ2ZXkiOnsiZGVzY3JpcHRpb24iOiJEZXNjcmlwdGlvbiBvZiB0aGUg + c2ltcGxlIHN1cnZleSIsInRpdGxlIjoiU2ltcGxlIFN1cnZleSJ9LCJjYW5f + Y29weSI6dHJ1ZSwiY2FuX2VkaXQiOnRydWUsInJlY2VudF9qb2JzIjpbXX0s + ImNyZWF0ZWQiOiIyMDE3LTA2LTIxVDE5OjIxOjQzLjE0OVoiLCJtb2RpZmll + ZCI6IjIwMTctMDYtMjFUMTk6MjE6NDMuNzg0WiIsIm5hbWUiOiJoZWxsb190 + ZW1wbGF0ZV93aXRoX3N1cnZleSIsImRlc2NyaXB0aW9uIjoidGVzdCBqb2Ig + d2l0aCBzdXJ2ZXkgc3BlYyIsImpvYl90eXBlIjoicnVuIiwiaW52ZW50b3J5 + IjoxMDMsInByb2plY3QiOjU3MCwicGxheWJvb2siOiJoZWxsb193b3JsZC55 + bWwiLCJjcmVkZW50aWFsIjoxMDksImNsb3VkX2NyZWRlbnRpYWwiOm51bGws + Im5ldHdvcmtfY3JlZGVudGlhbCI6bnVsbCwiZm9ya3MiOjAsImxpbWl0Ijoi + IiwidmVyYm9zaXR5IjowLCJleHRyYV92YXJzIjoiIiwiam9iX3RhZ3MiOiIi + LCJmb3JjZV9oYW5kbGVycyI6ZmFsc2UsInNraXBfdGFncyI6IiIsInN0YXJ0 + X2F0X3Rhc2siOiIiLCJsYXN0X2pvYl9ydW4iOm51bGwsImxhc3Rfam9iX2Zh + aWxlZCI6ZmFsc2UsImhhc19zY2hlZHVsZXMiOmZhbHNlLCJuZXh0X2pvYl9y + dW4iOm51bGwsInN0YXR1cyI6Im5ldmVyIHVwZGF0ZWQiLCJob3N0X2NvbmZp + Z19rZXkiOiIiLCJhc2tfdmFyaWFibGVzX29uX2xhdW5jaCI6ZmFsc2UsImFz + a19saW1pdF9vbl9sYXVuY2giOmZhbHNlLCJhc2tfdGFnc19vbl9sYXVuY2gi + OmZhbHNlLCJhc2tfam9iX3R5cGVfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2lu + dmVudG9yeV9vbl9sYXVuY2giOmZhbHNlLCJhc2tfY3JlZGVudGlhbF9vbl9s + YXVuY2giOmZhbHNlLCJzdXJ2ZXlfZW5hYmxlZCI6dHJ1ZSwiYmVjb21lX2Vu + YWJsZWQiOmZhbHNlLCJhbGxvd19zaW11bHRhbmVvdXMiOmZhbHNlfSx7Imlk + IjoyOCwidHlwZSI6ImpvYl90ZW1wbGF0ZSIsInVybCI6Ii9hcGkvdjEvam9i + X3RlbXBsYXRlcy8yOC8iLCJyZWxhdGVkIjp7ImNyZWF0ZWRfYnkiOiIvYXBp + L3YxL3VzZXJzLzEvIiwibGFiZWxzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVz + LzI4L2xhYmVscy8iLCJpbnZlbnRvcnkiOiIvYXBpL3YxL2ludmVudG9yaWVz + LzEvIiwicHJvamVjdCI6Ii9hcGkvdjEvcHJvamVjdHMvMjkvIiwiY3JlZGVu + dGlhbCI6Ii9hcGkvdjEvY3JlZGVudGlhbHMvMS8iLCJub3RpZmljYXRpb25f + dGVtcGxhdGVzX2Vycm9yIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzI4L25v + dGlmaWNhdGlvbl90ZW1wbGF0ZXNfZXJyb3IvIiwibm90aWZpY2F0aW9uX3Rl + bXBsYXRlc19zdWNjZXNzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzI4L25v + dGlmaWNhdGlvbl90ZW1wbGF0ZXNfc3VjY2Vzcy8iLCJqb2JzIjoiL2FwaS92 + MS9qb2JfdGVtcGxhdGVzLzI4L2pvYnMvIiwib2JqZWN0X3JvbGVzIjoiL2Fw + aS92MS9qb2JfdGVtcGxhdGVzLzI4L29iamVjdF9yb2xlcy8iLCJub3RpZmlj + YXRpb25fdGVtcGxhdGVzX2FueSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8y + OC9ub3RpZmljYXRpb25fdGVtcGxhdGVzX2FueS8iLCJhY2Nlc3NfbGlzdCI6 + Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8yOC9hY2Nlc3NfbGlzdC8iLCJsYXVu + Y2giOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMjgvbGF1bmNoLyIsInNjaGVk + dWxlcyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8yOC9zY2hlZHVsZXMvIiwi + YWN0aXZpdHlfc3RyZWFtIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzI4L2Fj + dGl2aXR5X3N0cmVhbS8iLCJzdXJ2ZXlfc3BlYyI6Ii9hcGkvdjEvam9iX3Rl + bXBsYXRlcy8yOC9zdXJ2ZXlfc3BlYy8ifSwic3VtbWFyeV9maWVsZHMiOnsi + aW52ZW50b3J5Ijp7ImlkIjoxLCJuYW1lIjoiRGVtbyBJbnZlbnRvcnkiLCJk + ZXNjcmlwdGlvbiI6IiIsImhhc19hY3RpdmVfZmFpbHVyZXMiOmZhbHNlLCJ0 + b3RhbF9ob3N0cyI6MiwiaG9zdHNfd2l0aF9hY3RpdmVfZmFpbHVyZXMiOjAs + InRvdGFsX2dyb3VwcyI6MCwiZ3JvdXBzX3dpdGhfYWN0aXZlX2ZhaWx1cmVz + IjowLCJoYXNfaW52ZW50b3J5X3NvdXJjZXMiOmZhbHNlLCJ0b3RhbF9pbnZl + bnRvcnlfc291cmNlcyI6MCwiaW52ZW50b3J5X3NvdXJjZXNfd2l0aF9mYWls + dXJlcyI6MH0sImNyZWRlbnRpYWwiOnsiaWQiOjEsIm5hbWUiOiJEZW1vIENy + ZWRlbnRpYWwiLCJkZXNjcmlwdGlvbiI6IiIsImtpbmQiOiJzc2giLCJjbG91 + ZCI6ZmFsc2V9LCJwcm9qZWN0Ijp7ImlkIjoyOSwibmFtZSI6ImxnLXByb2pl + Y3QiLCJkZXNjcmlwdGlvbiI6ImxnX3Byb2plY3QiLCJzdGF0dXMiOiJzdWNj + ZXNzZnVsIn0sImNyZWF0ZWRfYnkiOnsiaWQiOjEsInVzZXJuYW1lIjoiYWRt + aW4iLCJmaXJzdF9uYW1lIjoiIiwibGFzdF9uYW1lIjoiIn0sIm9iamVjdF9y + b2xlcyI6eyJhZG1pbl9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiQ2FuIG1hbmFn + ZSBhbGwgYXNwZWN0cyBvZiB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjMxLCJu + YW1lIjoiQWRtaW4ifSwiZXhlY3V0ZV9yb2xlIjp7ImRlc2NyaXB0aW9uIjoi + TWF5IHJ1biB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjMzLCJuYW1lIjoiRXhl + Y3V0ZSJ9LCJyZWFkX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJNYXkgdmlldyBz + ZXR0aW5ncyBmb3IgdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjozMiwibmFtZSI6 + IlJlYWQifX0sImxhYmVscyI6eyJjb3VudCI6MCwicmVzdWx0cyI6W119LCJj + YW5fY29weSI6dHJ1ZSwiY2FuX2VkaXQiOnRydWUsInJlY2VudF9qb2JzIjpb + XX0sImNyZWF0ZWQiOiIyMDE2LTA5LTEzVDIwOjQyOjIxLjY3MFoiLCJtb2Rp + ZmllZCI6IjIwMTYtMTEtMjlUMjE6NDA6MjIuODc2WiIsIm5hbWUiOiJMRyBE + ZW1vIEpvYiBUZW1wbGF0ZSIsImRlc2NyaXB0aW9uIjoiIiwiam9iX3R5cGUi + OiJjaGVjayIsImludmVudG9yeSI6MSwicHJvamVjdCI6MjksInBsYXlib29r + IjoiamJvc3Mtc3RhbmRhbG9uZS9zaXRlLnltbCIsImNyZWRlbnRpYWwiOjEs + ImNsb3VkX2NyZWRlbnRpYWwiOm51bGwsIm5ldHdvcmtfY3JlZGVudGlhbCI6 + bnVsbCwiZm9ya3MiOjAsImxpbWl0IjoiIiwidmVyYm9zaXR5IjowLCJleHRy + YV92YXJzIjoiIiwiam9iX3RhZ3MiOiIiLCJmb3JjZV9oYW5kbGVycyI6ZmFs + c2UsInNraXBfdGFncyI6IiIsInN0YXJ0X2F0X3Rhc2siOiIiLCJsYXN0X2pv + Yl9ydW4iOiIyMDE2LTExLTI5VDIxOjQwOjU4LjM5MjA1MVoiLCJsYXN0X2pv + Yl9mYWlsZWQiOnRydWUsImhhc19zY2hlZHVsZXMiOmZhbHNlLCJuZXh0X2pv + Yl9ydW4iOm51bGwsInN0YXR1cyI6ImZhaWxlZCIsImhvc3RfY29uZmlnX2tl + eSI6IiIsImFza192YXJpYWJsZXNfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2xp + bWl0X29uX2xhdW5jaCI6ZmFsc2UsImFza190YWdzX29uX2xhdW5jaCI6ZmFs + c2UsImFza19qb2JfdHlwZV9vbl9sYXVuY2giOmZhbHNlLCJhc2tfaW52ZW50 + b3J5X29uX2xhdW5jaCI6dHJ1ZSwiYXNrX2NyZWRlbnRpYWxfb25fbGF1bmNo + IjpmYWxzZSwic3VydmV5X2VuYWJsZWQiOmZhbHNlLCJiZWNvbWVfZW5hYmxl + ZCI6ZmFsc2UsImFsbG93X3NpbXVsdGFuZW91cyI6ZmFsc2V9LHsiaWQiOjE4 + NSwidHlwZSI6ImpvYl90ZW1wbGF0ZSIsInVybCI6Ii9hcGkvdjEvam9iX3Rl + bXBsYXRlcy8xODUvIiwicmVsYXRlZCI6eyJjcmVhdGVkX2J5IjoiL2FwaS92 + MS91c2Vycy8xLyIsImxhYmVscyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8x + ODUvbGFiZWxzLyIsImludmVudG9yeSI6Ii9hcGkvdjEvaW52ZW50b3JpZXMv + OS8iLCJwcm9qZWN0IjoiL2FwaS92MS9wcm9qZWN0cy8xNTUvIiwiY3JlZGVu + dGlhbCI6Ii9hcGkvdjEvY3JlZGVudGlhbHMvNTIvIiwibGFzdF9qb2IiOiIv + YXBpL3YxL2pvYnMvOTA1LyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfZXJy + b3IiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTg1L25vdGlmaWNhdGlvbl90 + ZW1wbGF0ZXNfZXJyb3IvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRlc19zdWNj + ZXNzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE4NS9ub3RpZmljYXRpb25f + dGVtcGxhdGVzX3N1Y2Nlc3MvIiwiam9icyI6Ii9hcGkvdjEvam9iX3RlbXBs + YXRlcy8xODUvam9icy8iLCJvYmplY3Rfcm9sZXMiOiIvYXBpL3YxL2pvYl90 + ZW1wbGF0ZXMvMTg1L29iamVjdF9yb2xlcy8iLCJub3RpZmljYXRpb25fdGVt + cGxhdGVzX2FueSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xODUvbm90aWZp + Y2F0aW9uX3RlbXBsYXRlc19hbnkvIiwiYWNjZXNzX2xpc3QiOiIvYXBpL3Yx + L2pvYl90ZW1wbGF0ZXMvMTg1L2FjY2Vzc19saXN0LyIsImxhdW5jaCI6Ii9h + cGkvdjEvam9iX3RlbXBsYXRlcy8xODUvbGF1bmNoLyIsInNjaGVkdWxlcyI6 + Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xODUvc2NoZWR1bGVzLyIsImFjdGl2 + aXR5X3N0cmVhbSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xODUvYWN0aXZp + dHlfc3RyZWFtLyIsInN1cnZleV9zcGVjIjoiL2FwaS92MS9qb2JfdGVtcGxh + dGVzLzE4NS9zdXJ2ZXlfc3BlYy8ifSwic3VtbWFyeV9maWVsZHMiOnsibGFz + dF9qb2IiOnsiaWQiOjkwNSwibmFtZSI6Imxpc3RfaW5wdXRzIiwiZGVzY3Jp + cHRpb24iOiIiLCJmaW5pc2hlZCI6IjIwMTctMDYtMDhUMTU6MjQ6NTUuOTgx + WiIsInN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmYWlsZWQiOmZhbHNlfSwibGFz + dF91cGRhdGUiOnsiaWQiOjkwNSwibmFtZSI6Imxpc3RfaW5wdXRzIiwiZGVz + Y3JpcHRpb24iOiIiLCJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiZmFpbGVkIjpm + YWxzZX0sImludmVudG9yeSI6eyJpZCI6OSwibmFtZSI6Imx1Y3lzX3Rlc3Rz + IiwiZGVzY3JpcHRpb24iOiIiLCJoYXNfYWN0aXZlX2ZhaWx1cmVzIjpmYWxz + ZSwidG90YWxfaG9zdHMiOjIsImhvc3RzX3dpdGhfYWN0aXZlX2ZhaWx1cmVz + IjowLCJ0b3RhbF9ncm91cHMiOjIsImdyb3Vwc193aXRoX2FjdGl2ZV9mYWls + dXJlcyI6MCwiaGFzX2ludmVudG9yeV9zb3VyY2VzIjp0cnVlLCJ0b3RhbF9p + bnZlbnRvcnlfc291cmNlcyI6MiwiaW52ZW50b3J5X3NvdXJjZXNfd2l0aF9m + YWlsdXJlcyI6MH0sImNyZWRlbnRpYWwiOnsiaWQiOjUyLCJuYW1lIjoibHVj + eV9tYWNoaW5lIiwiZGVzY3JpcHRpb24iOiIiLCJraW5kIjoic3NoIiwiY2xv + dWQiOmZhbHNlfSwicHJvamVjdCI6eyJpZCI6MTU1LCJuYW1lIjoibHVjeSIs + ImRlc2NyaXB0aW9uIjoidGVzdCBwbGF5Ym9vayIsInN0YXR1cyI6InN1Y2Nl + c3NmdWwifSwiY3JlYXRlZF9ieSI6eyJpZCI6MSwidXNlcm5hbWUiOiJhZG1p + biIsImZpcnN0X25hbWUiOiIiLCJsYXN0X25hbWUiOiIifSwib2JqZWN0X3Jv + bGVzIjp7ImFkbWluX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJDYW4gbWFuYWdl + IGFsbCBhc3BlY3RzIG9mIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6NjAwLCJu + YW1lIjoiQWRtaW4ifSwiZXhlY3V0ZV9yb2xlIjp7ImRlc2NyaXB0aW9uIjoi + TWF5IHJ1biB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjYwMiwibmFtZSI6IkV4 + ZWN1dGUifSwicmVhZF9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiTWF5IHZpZXcg + c2V0dGluZ3MgZm9yIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6NjAxLCJuYW1l + IjoiUmVhZCJ9fSwibGFiZWxzIjp7ImNvdW50IjowLCJyZXN1bHRzIjpbXX0s + ImNhbl9jb3B5Ijp0cnVlLCJjYW5fZWRpdCI6dHJ1ZSwicmVjZW50X2pvYnMi + Olt7InN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6IjIwMTctMDYt + MDhUMTU6MjQ6NTUuOTgxWiIsImlkIjo5MDV9LHsic3RhdHVzIjoic3VjY2Vz + c2Z1bCIsImZpbmlzaGVkIjoiMjAxNy0wMi0yMlQxOTo1MTowNC4zMDJaIiwi + aWQiOjMwMn0seyJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiZmluaXNoZWQiOiIy + MDE3LTAyLTIyVDE4OjQzOjE1LjU2N1oiLCJpZCI6MzAwfSx7InN0YXR1cyI6 + InN1Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6IjIwMTctMDItMjJUMTc6NTI6MjIu + MjQyWiIsImlkIjoyOTh9LHsic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZpbmlz + aGVkIjoiMjAxNy0wMi0yMlQxNzo0ODo1Ni45NDBaIiwiaWQiOjI5NX0seyJz + dGF0dXMiOiJzdWNjZXNzZnVsIiwiZmluaXNoZWQiOiIyMDE3LTAyLTIyVDE3 + OjQ3OjQ0LjE3MVoiLCJpZCI6MjkzfSx7InN0YXR1cyI6InN1Y2Nlc3NmdWwi + LCJmaW5pc2hlZCI6IjIwMTctMDItMjJUMTc6NDY6MzEuOTEzWiIsImlkIjoy + OTF9LHsic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZpbmlzaGVkIjoiMjAxNy0w + Mi0yMlQxNzo0NTo1NS4zMDRaIiwiaWQiOjI4OX0seyJzdGF0dXMiOiJzdWNj + ZXNzZnVsIiwiZmluaXNoZWQiOiIyMDE3LTAyLTIyVDE3OjQwOjI5LjU2MVoi + LCJpZCI6Mjg3fSx7InN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6 + IjIwMTctMDItMjJUMTY6MzY6MzQuNTc1WiIsImlkIjoyODV9XX0sImNyZWF0 + ZWQiOiIyMDE3LTAyLTIxVDIyOjQwOjIxLjI2M1oiLCJtb2RpZmllZCI6IjIw + MTctMDYtMDhUMTU6MjQ6MzguNDE1WiIsIm5hbWUiOiJsaXN0X2lucHV0cyIs + ImRlc2NyaXB0aW9uIjoiIiwiam9iX3R5cGUiOiJydW4iLCJpbnZlbnRvcnki + OjksInByb2plY3QiOjE1NSwicGxheWJvb2siOiJsaXN0X2lucHV0cy55YW1s + IiwiY3JlZGVudGlhbCI6NTIsImNsb3VkX2NyZWRlbnRpYWwiOm51bGwsIm5l + dHdvcmtfY3JlZGVudGlhbCI6bnVsbCwiZm9ya3MiOjAsImxpbWl0IjoiIiwi + dmVyYm9zaXR5IjowLCJleHRyYV92YXJzIjoiLS0tXG5teV9oYXNoOlxuICBw + MTogJ29uZSdcbiAgcDI6ICd0d28nXG4gIFxubXlfYXJyYXk6XG4gIC0gJ21h + aHdhaCdcbiAgLSAnbW9udHZpbGxlJ1xuICBcbm15X2Jvb2xlYW46IHRydWVc + blxubXlfaW50OiAxMjM0NVxuXG5teV9waG9uZTogMTIzLTQ1Ni03ODkwXG5t + eV92YXI6IFwiMjQgSGlnaCBQbGFjZSwgTWFod2FoLCBOSiAwNzQ5NVwiIiwi + am9iX3RhZ3MiOiIiLCJmb3JjZV9oYW5kbGVycyI6ZmFsc2UsInNraXBfdGFn + cyI6IiIsInN0YXJ0X2F0X3Rhc2siOiIiLCJsYXN0X2pvYl9ydW4iOiIyMDE3 + LTA2LTA4VDE1OjI0OjU1Ljk4MTk2MFoiLCJsYXN0X2pvYl9mYWlsZWQiOmZh + bHNlLCJoYXNfc2NoZWR1bGVzIjpmYWxzZSwibmV4dF9qb2JfcnVuIjpudWxs + LCJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiaG9zdF9jb25maWdfa2V5IjoiIiwi + YXNrX3ZhcmlhYmxlc19vbl9sYXVuY2giOmZhbHNlLCJhc2tfbGltaXRfb25f + bGF1bmNoIjpmYWxzZSwiYXNrX3RhZ3Nfb25fbGF1bmNoIjpmYWxzZSwiYXNr + X2pvYl90eXBlX29uX2xhdW5jaCI6ZmFsc2UsImFza19pbnZlbnRvcnlfb25f + bGF1bmNoIjpmYWxzZSwiYXNrX2NyZWRlbnRpYWxfb25fbGF1bmNoIjpmYWxz + ZSwic3VydmV5X2VuYWJsZWQiOmZhbHNlLCJiZWNvbWVfZW5hYmxlZCI6ZmFs + c2UsImFsbG93X3NpbXVsdGFuZW91cyI6ZmFsc2V9LHsiaWQiOjE4NCwidHlw + ZSI6ImpvYl90ZW1wbGF0ZSIsInVybCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRl + cy8xODQvIiwicmVsYXRlZCI6eyJjcmVhdGVkX2J5IjoiL2FwaS92MS91c2Vy + cy8xLyIsImxhYmVscyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xODQvbGFi + ZWxzLyIsImludmVudG9yeSI6Ii9hcGkvdjEvaW52ZW50b3JpZXMvOS8iLCJw + cm9qZWN0IjoiL2FwaS92MS9wcm9qZWN0cy8xNTUvIiwibGFzdF9qb2IiOiIv + YXBpL3YxL2pvYnMvMjcyLyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfZXJy + b3IiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTg0L25vdGlmaWNhdGlvbl90 + ZW1wbGF0ZXNfZXJyb3IvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRlc19zdWNj + ZXNzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE4NC9ub3RpZmljYXRpb25f + dGVtcGxhdGVzX3N1Y2Nlc3MvIiwiam9icyI6Ii9hcGkvdjEvam9iX3RlbXBs + YXRlcy8xODQvam9icy8iLCJvYmplY3Rfcm9sZXMiOiIvYXBpL3YxL2pvYl90 + ZW1wbGF0ZXMvMTg0L29iamVjdF9yb2xlcy8iLCJub3RpZmljYXRpb25fdGVt + cGxhdGVzX2FueSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xODQvbm90aWZp + Y2F0aW9uX3RlbXBsYXRlc19hbnkvIiwiYWNjZXNzX2xpc3QiOiIvYXBpL3Yx + L2pvYl90ZW1wbGF0ZXMvMTg0L2FjY2Vzc19saXN0LyIsImxhdW5jaCI6Ii9h + cGkvdjEvam9iX3RlbXBsYXRlcy8xODQvbGF1bmNoLyIsInNjaGVkdWxlcyI6 + Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xODQvc2NoZWR1bGVzLyIsImFjdGl2 + aXR5X3N0cmVhbSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xODQvYWN0aXZp + dHlfc3RyZWFtLyIsInN1cnZleV9zcGVjIjoiL2FwaS92MS9qb2JfdGVtcGxh + dGVzLzE4NC9zdXJ2ZXlfc3BlYy8ifSwic3VtbWFyeV9maWVsZHMiOnsibGFz + dF9qb2IiOnsiaWQiOjI3MiwibmFtZSI6Imxpc3RfcGFyYW1zIiwiZGVzY3Jp + cHRpb24iOiIiLCJmaW5pc2hlZCI6IjIwMTctMDItMjFUMjI6MzI6MjYuMDUz + WiIsInN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmYWlsZWQiOmZhbHNlfSwibGFz + dF91cGRhdGUiOnsiaWQiOjI3MiwibmFtZSI6Imxpc3RfcGFyYW1zIiwiZGVz + Y3JpcHRpb24iOiIiLCJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiZmFpbGVkIjpm + YWxzZX0sImludmVudG9yeSI6eyJpZCI6OSwibmFtZSI6Imx1Y3lzX3Rlc3Rz + IiwiZGVzY3JpcHRpb24iOiIiLCJoYXNfYWN0aXZlX2ZhaWx1cmVzIjpmYWxz + ZSwidG90YWxfaG9zdHMiOjIsImhvc3RzX3dpdGhfYWN0aXZlX2ZhaWx1cmVz + IjowLCJ0b3RhbF9ncm91cHMiOjIsImdyb3Vwc193aXRoX2FjdGl2ZV9mYWls + dXJlcyI6MCwiaGFzX2ludmVudG9yeV9zb3VyY2VzIjp0cnVlLCJ0b3RhbF9p + bnZlbnRvcnlfc291cmNlcyI6MiwiaW52ZW50b3J5X3NvdXJjZXNfd2l0aF9m + YWlsdXJlcyI6MH0sInByb2plY3QiOnsiaWQiOjE1NSwibmFtZSI6Imx1Y3ki + LCJkZXNjcmlwdGlvbiI6InRlc3QgcGxheWJvb2siLCJzdGF0dXMiOiJzdWNj + ZXNzZnVsIn0sImNyZWF0ZWRfYnkiOnsiaWQiOjEsInVzZXJuYW1lIjoiYWRt + aW4iLCJmaXJzdF9uYW1lIjoiIiwibGFzdF9uYW1lIjoiIn0sIm9iamVjdF9y + b2xlcyI6eyJhZG1pbl9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiQ2FuIG1hbmFn + ZSBhbGwgYXNwZWN0cyBvZiB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjU5Nywi + bmFtZSI6IkFkbWluIn0sImV4ZWN1dGVfcm9sZSI6eyJkZXNjcmlwdGlvbiI6 + Ik1heSBydW4gdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjo1OTksIm5hbWUiOiJF + eGVjdXRlIn0sInJlYWRfcm9sZSI6eyJkZXNjcmlwdGlvbiI6Ik1heSB2aWV3 + IHNldHRpbmdzIGZvciB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjU5OCwibmFt + ZSI6IlJlYWQifX0sImxhYmVscyI6eyJjb3VudCI6MCwicmVzdWx0cyI6W119 + LCJjYW5fY29weSI6ZmFsc2UsImNhbl9lZGl0Ijp0cnVlLCJyZWNlbnRfam9i + cyI6W3sic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZpbmlzaGVkIjoiMjAxNy0w + Mi0yMVQyMjozMjoyNi4wNTNaIiwiaWQiOjI3Mn0seyJzdGF0dXMiOiJzdWNj + ZXNzZnVsIiwiZmluaXNoZWQiOiIyMDE3LTAyLTIxVDIyOjExOjMzLjE1N1oi + LCJpZCI6MjcwfSx7InN0YXR1cyI6ImZhaWxlZCIsImZpbmlzaGVkIjoiMjAx + Ny0wMi0yMVQyMjowMjoyOC4wNzlaIiwiaWQiOjI2OH0seyJzdGF0dXMiOiJm + YWlsZWQiLCJmaW5pc2hlZCI6IjIwMTctMDItMjFUMjI6MDE6MTUuNTUyWiIs + ImlkIjoyNjZ9LHsic3RhdHVzIjoiZmFpbGVkIiwiZmluaXNoZWQiOiIyMDE3 + LTAyLTIxVDIxOjU1OjQ0LjczOFoiLCJpZCI6MjY0fSx7InN0YXR1cyI6InN1 + Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6IjIwMTctMDItMjFUMjA6Mjc6NTguODU5 + WiIsImlkIjoyNjJ9LHsic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZpbmlzaGVk + IjoiMjAxNy0wMi0yMVQyMDoyNjoxMC40NTBaIiwiaWQiOjI2MH1dfSwiY3Jl + YXRlZCI6IjIwMTctMDItMjFUMjA6MjU6MzguNzcxWiIsIm1vZGlmaWVkIjoi + MjAxNy0wMi0yMVQyMDoyNjo0MS40OTZaIiwibmFtZSI6Imxpc3RfcGFyYW1z + IiwiZGVzY3JpcHRpb24iOiIiLCJqb2JfdHlwZSI6InJ1biIsImludmVudG9y + eSI6OSwicHJvamVjdCI6MTU1LCJwbGF5Ym9vayI6Imxpc3RfcGFyYW1zLnlh + bWwiLCJjcmVkZW50aWFsIjpudWxsLCJjbG91ZF9jcmVkZW50aWFsIjpudWxs + LCJuZXR3b3JrX2NyZWRlbnRpYWwiOm51bGwsImZvcmtzIjowLCJsaW1pdCI6 + IiIsInZlcmJvc2l0eSI6MCwiZXh0cmFfdmFycyI6Ii0tLVxubXlfaGFzaDpc + biAgcDE6ICdvbmUnXG4gIHAyOiAndHdvJ1xuICBcbm15X2FycmF5OlxuICAt + ICdtYWh3YWgnXG4gIC0gJ21vbnR2aWxsZSdcbiAgXG5teV9ib29sZWFuOiB0 + cnVlXG5cbm15X2ludDogMTIzNDVcblxubXlfcGhvbmU6IDEyMy00NTYtNzg5 + MFxubXlfYWRkcmVzczogJzI0IEhpZ2ggUGxhY2UsIE1haHdhaCwgTkogMDc0 + OTUnIiwiam9iX3RhZ3MiOiIiLCJmb3JjZV9oYW5kbGVycyI6ZmFsc2UsInNr + aXBfdGFncyI6IiIsInN0YXJ0X2F0X3Rhc2siOiIiLCJsYXN0X2pvYl9ydW4i + OiIyMDE3LTAyLTIxVDIyOjMyOjI2LjA1MzY0NloiLCJsYXN0X2pvYl9mYWls + ZWQiOmZhbHNlLCJoYXNfc2NoZWR1bGVzIjpmYWxzZSwibmV4dF9qb2JfcnVu + IjpudWxsLCJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiaG9zdF9jb25maWdfa2V5 + IjoiIiwiYXNrX3ZhcmlhYmxlc19vbl9sYXVuY2giOmZhbHNlLCJhc2tfbGlt + aXRfb25fbGF1bmNoIjpmYWxzZSwiYXNrX3RhZ3Nfb25fbGF1bmNoIjpmYWxz + ZSwiYXNrX2pvYl90eXBlX29uX2xhdW5jaCI6ZmFsc2UsImFza19pbnZlbnRv + cnlfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2NyZWRlbnRpYWxfb25fbGF1bmNo + IjpmYWxzZSwic3VydmV5X2VuYWJsZWQiOmZhbHNlLCJiZWNvbWVfZW5hYmxl + ZCI6ZmFsc2UsImFsbG93X3NpbXVsdGFuZW91cyI6ZmFsc2V9LHsiaWQiOjI4 + MywidHlwZSI6ImpvYl90ZW1wbGF0ZSIsInVybCI6Ii9hcGkvdjEvam9iX3Rl + bXBsYXRlcy8yODMvIiwicmVsYXRlZCI6eyJjcmVhdGVkX2J5IjoiL2FwaS92 + MS91c2Vycy8xLyIsImxhYmVscyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8y + ODMvbGFiZWxzLyIsImludmVudG9yeSI6Ii9hcGkvdjEvaW52ZW50b3JpZXMv + OS8iLCJwcm9qZWN0IjoiL2FwaS92MS9wcm9qZWN0cy8xNTUvIiwibGFzdF9q + b2IiOiIvYXBpL3YxL2pvYnMvNDUxLyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0 + ZXNfZXJyb3IiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMjgzL25vdGlmaWNh + dGlvbl90ZW1wbGF0ZXNfZXJyb3IvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRl + c19zdWNjZXNzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzI4My9ub3RpZmlj + YXRpb25fdGVtcGxhdGVzX3N1Y2Nlc3MvIiwiam9icyI6Ii9hcGkvdjEvam9i + X3RlbXBsYXRlcy8yODMvam9icy8iLCJvYmplY3Rfcm9sZXMiOiIvYXBpL3Yx + L2pvYl90ZW1wbGF0ZXMvMjgzL29iamVjdF9yb2xlcy8iLCJub3RpZmljYXRp + b25fdGVtcGxhdGVzX2FueSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8yODMv + bm90aWZpY2F0aW9uX3RlbXBsYXRlc19hbnkvIiwiYWNjZXNzX2xpc3QiOiIv + YXBpL3YxL2pvYl90ZW1wbGF0ZXMvMjgzL2FjY2Vzc19saXN0LyIsImxhdW5j + aCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8yODMvbGF1bmNoLyIsInNjaGVk + dWxlcyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8yODMvc2NoZWR1bGVzLyIs + ImFjdGl2aXR5X3N0cmVhbSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8yODMv + YWN0aXZpdHlfc3RyZWFtLyIsInN1cnZleV9zcGVjIjoiL2FwaS92MS9qb2Jf + dGVtcGxhdGVzLzI4My9zdXJ2ZXlfc3BlYy8ifSwic3VtbWFyeV9maWVsZHMi + OnsibGFzdF9qb2IiOnsiaWQiOjQ1MSwibmFtZSI6Imx1Y3kgYmlnIG91dHB1 + dCIsImRlc2NyaXB0aW9uIjoiIiwiZmluaXNoZWQiOiIyMDE3LTAzLTA2VDIx + OjAwOjU2LjY2N1oiLCJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiZmFpbGVkIjpm + YWxzZX0sImxhc3RfdXBkYXRlIjp7ImlkIjo0NTEsIm5hbWUiOiJsdWN5IGJp + ZyBvdXRwdXQiLCJkZXNjcmlwdGlvbiI6IiIsInN0YXR1cyI6InN1Y2Nlc3Nm + dWwiLCJmYWlsZWQiOmZhbHNlfSwiaW52ZW50b3J5Ijp7ImlkIjo5LCJuYW1l + IjoibHVjeXNfdGVzdHMiLCJkZXNjcmlwdGlvbiI6IiIsImhhc19hY3RpdmVf + ZmFpbHVyZXMiOmZhbHNlLCJ0b3RhbF9ob3N0cyI6MiwiaG9zdHNfd2l0aF9h + Y3RpdmVfZmFpbHVyZXMiOjAsInRvdGFsX2dyb3VwcyI6MiwiZ3JvdXBzX3dp + dGhfYWN0aXZlX2ZhaWx1cmVzIjowLCJoYXNfaW52ZW50b3J5X3NvdXJjZXMi + OnRydWUsInRvdGFsX2ludmVudG9yeV9zb3VyY2VzIjoyLCJpbnZlbnRvcnlf + c291cmNlc193aXRoX2ZhaWx1cmVzIjowfSwicHJvamVjdCI6eyJpZCI6MTU1 + LCJuYW1lIjoibHVjeSIsImRlc2NyaXB0aW9uIjoidGVzdCBwbGF5Ym9vayIs + InN0YXR1cyI6InN1Y2Nlc3NmdWwifSwiY3JlYXRlZF9ieSI6eyJpZCI6MSwi + dXNlcm5hbWUiOiJhZG1pbiIsImZpcnN0X25hbWUiOiIiLCJsYXN0X25hbWUi + OiIifSwib2JqZWN0X3JvbGVzIjp7ImFkbWluX3JvbGUiOnsiZGVzY3JpcHRp + b24iOiJDYW4gbWFuYWdlIGFsbCBhc3BlY3RzIG9mIHRoZSBqb2IgdGVtcGxh + dGUiLCJpZCI6OTAwLCJuYW1lIjoiQWRtaW4ifSwiZXhlY3V0ZV9yb2xlIjp7 + ImRlc2NyaXB0aW9uIjoiTWF5IHJ1biB0aGUgam9iIHRlbXBsYXRlIiwiaWQi + OjkwMiwibmFtZSI6IkV4ZWN1dGUifSwicmVhZF9yb2xlIjp7ImRlc2NyaXB0 + aW9uIjoiTWF5IHZpZXcgc2V0dGluZ3MgZm9yIHRoZSBqb2IgdGVtcGxhdGUi + LCJpZCI6OTAxLCJuYW1lIjoiUmVhZCJ9fSwibGFiZWxzIjp7ImNvdW50Ijow + LCJyZXN1bHRzIjpbXX0sImNhbl9jb3B5IjpmYWxzZSwiY2FuX2VkaXQiOnRy + dWUsInJlY2VudF9qb2JzIjpbeyJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiZmlu + aXNoZWQiOiIyMDE3LTAzLTA2VDIxOjAwOjU2LjY2N1oiLCJpZCI6NDUxfSx7 + InN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6IjIwMTctMDMtMDZU + MjA6NTQ6NDUuNjg3WiIsImlkIjo0NDl9LHsic3RhdHVzIjoiY2FuY2VsZWQi + LCJmaW5pc2hlZCI6IjIwMTctMDMtMDZUMTg6Mjg6NDUuMjEzWiIsImlkIjo0 + NDZ9LHsic3RhdHVzIjoiZmFpbGVkIiwiZmluaXNoZWQiOiIyMDE3LTAzLTA0 + VDAzOjU2OjA1LjM0NVoiLCJpZCI6NDQzfV19LCJjcmVhdGVkIjoiMjAxNy0w + My0wM1QyMToyMjoyMC44MjNaIiwibW9kaWZpZWQiOiIyMDE3LTAzLTA2VDIw + OjUxOjEyLjEzOVoiLCJuYW1lIjoibHVjeSBiaWcgb3V0cHV0IiwiZGVzY3Jp + cHRpb24iOiIiLCJqb2JfdHlwZSI6InJ1biIsImludmVudG9yeSI6OSwicHJv + amVjdCI6MTU1LCJwbGF5Ym9vayI6ImJpZ19vdXRwdXQueWFtbCIsImNyZWRl + bnRpYWwiOm51bGwsImNsb3VkX2NyZWRlbnRpYWwiOm51bGwsIm5ldHdvcmtf + Y3JlZGVudGlhbCI6bnVsbCwiZm9ya3MiOjAsImxpbWl0IjoiIiwidmVyYm9z + aXR5IjowLCJleHRyYV92YXJzIjoiIiwiam9iX3RhZ3MiOiIiLCJmb3JjZV9o + YW5kbGVycyI6ZmFsc2UsInNraXBfdGFncyI6IiIsInN0YXJ0X2F0X3Rhc2si + OiIiLCJsYXN0X2pvYl9ydW4iOiIyMDE3LTAzLTA2VDIxOjAwOjU2LjY2NzU0 + OVoiLCJsYXN0X2pvYl9mYWlsZWQiOmZhbHNlLCJoYXNfc2NoZWR1bGVzIjpm + YWxzZSwibmV4dF9qb2JfcnVuIjpudWxsLCJzdGF0dXMiOiJzdWNjZXNzZnVs + IiwiaG9zdF9jb25maWdfa2V5IjoiIiwiYXNrX3ZhcmlhYmxlc19vbl9sYXVu + Y2giOmZhbHNlLCJhc2tfbGltaXRfb25fbGF1bmNoIjpmYWxzZSwiYXNrX3Rh + Z3Nfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2pvYl90eXBlX29uX2xhdW5jaCI6 + ZmFsc2UsImFza19pbnZlbnRvcnlfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2Ny + ZWRlbnRpYWxfb25fbGF1bmNoIjpmYWxzZSwic3VydmV5X2VuYWJsZWQiOmZh + bHNlLCJiZWNvbWVfZW5hYmxlZCI6ZmFsc2UsImFsbG93X3NpbXVsdGFuZW91 + cyI6ZmFsc2V9LHsiaWQiOjIxMiwidHlwZSI6ImpvYl90ZW1wbGF0ZSIsInVy + bCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8yMTIvIiwicmVsYXRlZCI6eyJj + cmVhdGVkX2J5IjoiL2FwaS92MS91c2Vycy8xLyIsIm1vZGlmaWVkX2J5Ijoi + L2FwaS92MS91c2Vycy8xLyIsImxhYmVscyI6Ii9hcGkvdjEvam9iX3RlbXBs + YXRlcy8yMTIvbGFiZWxzLyIsImludmVudG9yeSI6Ii9hcGkvdjEvaW52ZW50 + b3JpZXMvOS8iLCJwcm9qZWN0IjoiL2FwaS92MS9wcm9qZWN0cy8xNTUvIiwi + Y3JlZGVudGlhbCI6Ii9hcGkvdjEvY3JlZGVudGlhbHMvNTIvIiwibGFzdF9q + b2IiOiIvYXBpL3YxL2pvYnMvNTkzLyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0 + ZXNfZXJyb3IiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMjEyL25vdGlmaWNh + dGlvbl90ZW1wbGF0ZXNfZXJyb3IvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRl + c19zdWNjZXNzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzIxMi9ub3RpZmlj + YXRpb25fdGVtcGxhdGVzX3N1Y2Nlc3MvIiwiam9icyI6Ii9hcGkvdjEvam9i + X3RlbXBsYXRlcy8yMTIvam9icy8iLCJvYmplY3Rfcm9sZXMiOiIvYXBpL3Yx + L2pvYl90ZW1wbGF0ZXMvMjEyL29iamVjdF9yb2xlcy8iLCJub3RpZmljYXRp + b25fdGVtcGxhdGVzX2FueSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8yMTIv + bm90aWZpY2F0aW9uX3RlbXBsYXRlc19hbnkvIiwiYWNjZXNzX2xpc3QiOiIv + YXBpL3YxL2pvYl90ZW1wbGF0ZXMvMjEyL2FjY2Vzc19saXN0LyIsImxhdW5j + aCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8yMTIvbGF1bmNoLyIsInNjaGVk + dWxlcyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8yMTIvc2NoZWR1bGVzLyIs + ImFjdGl2aXR5X3N0cmVhbSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8yMTIv + YWN0aXZpdHlfc3RyZWFtLyIsInN1cnZleV9zcGVjIjoiL2FwaS92MS9qb2Jf + dGVtcGxhdGVzLzIxMi9zdXJ2ZXlfc3BlYy8ifSwic3VtbWFyeV9maWVsZHMi + OnsibGFzdF9qb2IiOnsiaWQiOjU5MywibmFtZSI6Imx1Y3lfcGxheXMiLCJk + ZXNjcmlwdGlvbiI6IiIsImZpbmlzaGVkIjoiMjAxNy0wMy0zMFQxMzo1ODow + NC42NjFaIiwic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZhaWxlZCI6ZmFsc2V9 + LCJsYXN0X3VwZGF0ZSI6eyJpZCI6NTkzLCJuYW1lIjoibHVjeV9wbGF5cyIs + ImRlc2NyaXB0aW9uIjoiIiwic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZhaWxl + ZCI6ZmFsc2V9LCJpbnZlbnRvcnkiOnsiaWQiOjksIm5hbWUiOiJsdWN5c190 + ZXN0cyIsImRlc2NyaXB0aW9uIjoiIiwiaGFzX2FjdGl2ZV9mYWlsdXJlcyI6 + ZmFsc2UsInRvdGFsX2hvc3RzIjoyLCJob3N0c193aXRoX2FjdGl2ZV9mYWls + dXJlcyI6MCwidG90YWxfZ3JvdXBzIjoyLCJncm91cHNfd2l0aF9hY3RpdmVf + ZmFpbHVyZXMiOjAsImhhc19pbnZlbnRvcnlfc291cmNlcyI6dHJ1ZSwidG90 + YWxfaW52ZW50b3J5X3NvdXJjZXMiOjIsImludmVudG9yeV9zb3VyY2VzX3dp + dGhfZmFpbHVyZXMiOjB9LCJjcmVkZW50aWFsIjp7ImlkIjo1MiwibmFtZSI6 + Imx1Y3lfbWFjaGluZSIsImRlc2NyaXB0aW9uIjoiIiwia2luZCI6InNzaCIs + ImNsb3VkIjpmYWxzZX0sInByb2plY3QiOnsiaWQiOjE1NSwibmFtZSI6Imx1 + Y3kiLCJkZXNjcmlwdGlvbiI6InRlc3QgcGxheWJvb2siLCJzdGF0dXMiOiJz + dWNjZXNzZnVsIn0sImNyZWF0ZWRfYnkiOnsiaWQiOjEsInVzZXJuYW1lIjoi + YWRtaW4iLCJmaXJzdF9uYW1lIjoiIiwibGFzdF9uYW1lIjoiIn0sIm1vZGlm + aWVkX2J5Ijp7ImlkIjoxLCJ1c2VybmFtZSI6ImFkbWluIiwiZmlyc3RfbmFt + ZSI6IiIsImxhc3RfbmFtZSI6IiJ9LCJvYmplY3Rfcm9sZXMiOnsiYWRtaW5f + cm9sZSI6eyJkZXNjcmlwdGlvbiI6IkNhbiBtYW5hZ2UgYWxsIGFzcGVjdHMg + b2YgdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjo2ODEsIm5hbWUiOiJBZG1pbiJ9 + LCJleGVjdXRlX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJNYXkgcnVuIHRoZSBq + b2IgdGVtcGxhdGUiLCJpZCI6NjgzLCJuYW1lIjoiRXhlY3V0ZSJ9LCJyZWFk + X3JvbGUiOnsiZGVzY3JpcHRpb24iOiJNYXkgdmlldyBzZXR0aW5ncyBmb3Ig + dGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjo2ODIsIm5hbWUiOiJSZWFkIn19LCJs + YWJlbHMiOnsiY291bnQiOjAsInJlc3VsdHMiOltdfSwiY2FuX2NvcHkiOnRy + dWUsImNhbl9lZGl0Ijp0cnVlLCJyZWNlbnRfam9icyI6W3sic3RhdHVzIjoi + c3VjY2Vzc2Z1bCIsImZpbmlzaGVkIjoiMjAxNy0wMy0zMFQxMzo1ODowNC42 + NjFaIiwiaWQiOjU5M30seyJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiZmluaXNo + ZWQiOiIyMDE3LTAzLTMwVDEzOjUyOjU0Ljk0OFoiLCJpZCI6NTkxfSx7InN0 + YXR1cyI6InN1Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6IjIwMTctMDMtMjlUMTM6 + MTM6MDUuMzY4WiIsImlkIjo1ODR9LHsic3RhdHVzIjoiZmFpbGVkIiwiZmlu + aXNoZWQiOiIyMDE3LTAzLTI4VDE1OjM0OjEyLjUzN1oiLCJpZCI6NTc1fSx7 + InN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6IjIwMTctMDMtMDdU + MjE6MjE6MDMuNDI5WiIsImlkIjo0NTR9LHsic3RhdHVzIjoic3VjY2Vzc2Z1 + bCIsImZpbmlzaGVkIjoiMjAxNy0wMy0wM1QyMDoyMTozOS44NDNaIiwiaWQi + OjQ0MH0seyJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiZmluaXNoZWQiOiIyMDE3 + LTAzLTAzVDIwOjE3OjM4LjQ1NloiLCJpZCI6NDM4fSx7InN0YXR1cyI6InN1 + Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6IjIwMTctMDMtMDNUMjA6MTQ6MDEuOTc1 + WiIsImlkIjo0MzZ9LHsic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZpbmlzaGVk + IjoiMjAxNy0wMy0wM1QyMDoxMTowMS43NjVaIiwiaWQiOjQzNH0seyJzdGF0 + dXMiOiJzdWNjZXNzZnVsIiwiZmluaXNoZWQiOiIyMDE3LTAzLTAyVDIxOjI5 + OjE1LjU1MFoiLCJpZCI6NDMxfV19LCJjcmVhdGVkIjoiMjAxNy0wMi0yN1Qx + ODoxMToyMy45MjFaIiwibW9kaWZpZWQiOiIyMDE3LTA1LTA0VDE0OjUwOjAy + LjQ1NVoiLCJuYW1lIjoibHVjeV9wbGF5cyIsImRlc2NyaXB0aW9uIjoiIiwi + am9iX3R5cGUiOiJydW4iLCJpbnZlbnRvcnkiOjksInByb2plY3QiOjE1NSwi + cGxheWJvb2siOiJwbGF5cy55YW1sIiwiY3JlZGVudGlhbCI6NTIsImNsb3Vk + X2NyZWRlbnRpYWwiOm51bGwsIm5ldHdvcmtfY3JlZGVudGlhbCI6bnVsbCwi + Zm9ya3MiOjAsImxpbWl0IjoiIiwidmVyYm9zaXR5IjowLCJleHRyYV92YXJz + IjoiIiwiam9iX3RhZ3MiOiIiLCJmb3JjZV9oYW5kbGVycyI6ZmFsc2UsInNr + aXBfdGFncyI6IiIsInN0YXJ0X2F0X3Rhc2siOiIiLCJsYXN0X2pvYl9ydW4i + OiIyMDE3LTAzLTMwVDEzOjU4OjA0LjY2MTU2NVoiLCJsYXN0X2pvYl9mYWls + ZWQiOmZhbHNlLCJoYXNfc2NoZWR1bGVzIjpmYWxzZSwibmV4dF9qb2JfcnVu + IjpudWxsLCJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiaG9zdF9jb25maWdfa2V5 + IjoiIiwiYXNrX3ZhcmlhYmxlc19vbl9sYXVuY2giOmZhbHNlLCJhc2tfbGlt + aXRfb25fbGF1bmNoIjp0cnVlLCJhc2tfdGFnc19vbl9sYXVuY2giOmZhbHNl + LCJhc2tfam9iX3R5cGVfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2ludmVudG9y + eV9vbl9sYXVuY2giOmZhbHNlLCJhc2tfY3JlZGVudGlhbF9vbl9sYXVuY2gi + OmZhbHNlLCJzdXJ2ZXlfZW5hYmxlZCI6ZmFsc2UsImJlY29tZV9lbmFibGVk + IjpmYWxzZSwiYWxsb3dfc2ltdWx0YW5lb3VzIjpmYWxzZX0seyJpZCI6MTc2 + LCJ0eXBlIjoiam9iX3RlbXBsYXRlIiwidXJsIjoiL2FwaS92MS9qb2JfdGVt + cGxhdGVzLzE3Ni8iLCJyZWxhdGVkIjp7ImNyZWF0ZWRfYnkiOiIvYXBpL3Yx + L3VzZXJzLzEvIiwibGFiZWxzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE3 + Ni9sYWJlbHMvIiwiaW52ZW50b3J5IjoiL2FwaS92MS9pbnZlbnRvcmllcy8x + LyIsInByb2plY3QiOiIvYXBpL3YxL3Byb2plY3RzLzE1NS8iLCJjcmVkZW50 + aWFsIjoiL2FwaS92MS9jcmVkZW50aWFscy82Ny8iLCJsYXN0X2pvYiI6Ii9h + cGkvdjEvam9icy84ODQvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRlc19lcnJv + ciI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xNzYvbm90aWZpY2F0aW9uX3Rl + bXBsYXRlc19lcnJvci8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVzX3N1Y2Nl + c3MiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTc2L25vdGlmaWNhdGlvbl90 + ZW1wbGF0ZXNfc3VjY2Vzcy8iLCJqb2JzIjoiL2FwaS92MS9qb2JfdGVtcGxh + dGVzLzE3Ni9qb2JzLyIsIm9iamVjdF9yb2xlcyI6Ii9hcGkvdjEvam9iX3Rl + bXBsYXRlcy8xNzYvb2JqZWN0X3JvbGVzLyIsIm5vdGlmaWNhdGlvbl90ZW1w + bGF0ZXNfYW55IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE3Ni9ub3RpZmlj + YXRpb25fdGVtcGxhdGVzX2FueS8iLCJhY2Nlc3NfbGlzdCI6Ii9hcGkvdjEv + am9iX3RlbXBsYXRlcy8xNzYvYWNjZXNzX2xpc3QvIiwibGF1bmNoIjoiL2Fw + aS92MS9qb2JfdGVtcGxhdGVzLzE3Ni9sYXVuY2gvIiwic2NoZWR1bGVzIjoi + L2FwaS92MS9qb2JfdGVtcGxhdGVzLzE3Ni9zY2hlZHVsZXMvIiwiYWN0aXZp + dHlfc3RyZWFtIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE3Ni9hY3Rpdml0 + eV9zdHJlYW0vIiwic3VydmV5X3NwZWMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0 + ZXMvMTc2L3N1cnZleV9zcGVjLyJ9LCJzdW1tYXJ5X2ZpZWxkcyI6eyJsYXN0 + X2pvYiI6eyJpZCI6ODg0LCJuYW1lIjoibHVjeV9wcmludF9vdXRwdXQiLCJk + ZXNjcmlwdGlvbiI6IiIsImZpbmlzaGVkIjoiMjAxNy0wNS0wOFQxNTozMDo0 + NC41OTBaIiwic3RhdHVzIjoiZmFpbGVkIiwiZmFpbGVkIjp0cnVlfSwibGFz + dF91cGRhdGUiOnsiaWQiOjg4NCwibmFtZSI6Imx1Y3lfcHJpbnRfb3V0cHV0 + IiwiZGVzY3JpcHRpb24iOiIiLCJzdGF0dXMiOiJmYWlsZWQiLCJmYWlsZWQi + OnRydWV9LCJpbnZlbnRvcnkiOnsiaWQiOjEsIm5hbWUiOiJEZW1vIEludmVu + dG9yeSIsImRlc2NyaXB0aW9uIjoiIiwiaGFzX2FjdGl2ZV9mYWlsdXJlcyI6 + ZmFsc2UsInRvdGFsX2hvc3RzIjoyLCJob3N0c193aXRoX2FjdGl2ZV9mYWls + dXJlcyI6MCwidG90YWxfZ3JvdXBzIjowLCJncm91cHNfd2l0aF9hY3RpdmVf + ZmFpbHVyZXMiOjAsImhhc19pbnZlbnRvcnlfc291cmNlcyI6ZmFsc2UsInRv + dGFsX2ludmVudG9yeV9zb3VyY2VzIjowLCJpbnZlbnRvcnlfc291cmNlc193 + aXRoX2ZhaWx1cmVzIjowfSwiY3JlZGVudGlhbCI6eyJpZCI6NjcsIm5hbWUi + OiJsZnUgY3JlZCIsImRlc2NyaXB0aW9uIjoiIiwia2luZCI6InNzaCIsImNs + b3VkIjpmYWxzZX0sInByb2plY3QiOnsiaWQiOjE1NSwibmFtZSI6Imx1Y3ki + LCJkZXNjcmlwdGlvbiI6InRlc3QgcGxheWJvb2siLCJzdGF0dXMiOiJzdWNj + ZXNzZnVsIn0sImNyZWF0ZWRfYnkiOnsiaWQiOjEsInVzZXJuYW1lIjoiYWRt + aW4iLCJmaXJzdF9uYW1lIjoiIiwibGFzdF9uYW1lIjoiIn0sIm9iamVjdF9y + b2xlcyI6eyJhZG1pbl9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiQ2FuIG1hbmFn + ZSBhbGwgYXNwZWN0cyBvZiB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjU0Mywi + bmFtZSI6IkFkbWluIn0sImV4ZWN1dGVfcm9sZSI6eyJkZXNjcmlwdGlvbiI6 + Ik1heSBydW4gdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjo1NDUsIm5hbWUiOiJF + eGVjdXRlIn0sInJlYWRfcm9sZSI6eyJkZXNjcmlwdGlvbiI6Ik1heSB2aWV3 + IHNldHRpbmdzIGZvciB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjU0NCwibmFt + ZSI6IlJlYWQifX0sImxhYmVscyI6eyJjb3VudCI6MCwicmVzdWx0cyI6W119 + LCJjYW5fY29weSI6dHJ1ZSwiY2FuX2VkaXQiOnRydWUsInJlY2VudF9qb2Jz + IjpbeyJzdGF0dXMiOiJmYWlsZWQiLCJmaW5pc2hlZCI6IjIwMTctMDUtMDhU + MTU6MzA6NDQuNTkwWiIsImlkIjo4ODR9LHsic3RhdHVzIjoiZmFpbGVkIiwi + ZmluaXNoZWQiOiIyMDE3LTA1LTA4VDE1OjIyOjMwLjMzN1oiLCJpZCI6ODgy + fSx7InN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6IjIwMTctMDUt + MDhUMTU6MTk6NDIuNjcxWiIsImlkIjo4ODB9LHsic3RhdHVzIjoic3VjY2Vz + c2Z1bCIsImZpbmlzaGVkIjoiMjAxNy0wNS0wOFQxNToxOTowNi40MzJaIiwi + aWQiOjg3OH0seyJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiZmluaXNoZWQiOiIy + MDE3LTA1LTA4VDE1OjE2OjA2Ljc0M1oiLCJpZCI6ODc2fSx7InN0YXR1cyI6 + ImZhaWxlZCIsImZpbmlzaGVkIjoiMjAxNy0wNS0wOFQxNToxNDo1Mi44OTZa + IiwiaWQiOjg3NH0seyJzdGF0dXMiOiJmYWlsZWQiLCJmaW5pc2hlZCI6IjIw + MTctMDUtMDhUMTU6MTA6MzAuMTY5WiIsImlkIjo4NzJ9LHsic3RhdHVzIjoi + ZmFpbGVkIiwiZmluaXNoZWQiOiIyMDE3LTA1LTA0VDIwOjQ0OjI0LjY5NVoi + LCJpZCI6ODY5fSx7InN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6 + IjIwMTctMDUtMDRUMjA6NDE6NDguMzE1WiIsImlkIjo4Njd9LHsic3RhdHVz + Ijoic3VjY2Vzc2Z1bCIsImZpbmlzaGVkIjoiMjAxNy0wNS0wNFQyMDozOTo0 + OC4wMjJaIiwiaWQiOjg2NX1dfSwiY3JlYXRlZCI6IjIwMTctMDItMjBUMjE6 + MTI6MDUuMzkyWiIsIm1vZGlmaWVkIjoiMjAxNy0wNS0wOFQxNToyMjowMi4y + MTBaIiwibmFtZSI6Imx1Y3lfcHJpbnRfb3V0cHV0IiwiZGVzY3JpcHRpb24i + OiIiLCJqb2JfdHlwZSI6InJ1biIsImludmVudG9yeSI6MSwicHJvamVjdCI6 + MTU1LCJwbGF5Ym9vayI6InByaW50X291dHB1dC55YW1sIiwiY3JlZGVudGlh + bCI6NjcsImNsb3VkX2NyZWRlbnRpYWwiOm51bGwsIm5ldHdvcmtfY3JlZGVu + dGlhbCI6bnVsbCwiZm9ya3MiOjQ4LCJsaW1pdCI6IiIsInZlcmJvc2l0eSI6 + MywiZXh0cmFfdmFycyI6IiIsImpvYl90YWdzIjoiIiwiZm9yY2VfaGFuZGxl + cnMiOmZhbHNlLCJza2lwX3RhZ3MiOiIiLCJzdGFydF9hdF90YXNrIjoiIiwi + bGFzdF9qb2JfcnVuIjoiMjAxNy0wNS0wOFQxNTozMDo0NC41OTAxMzlaIiwi + bGFzdF9qb2JfZmFpbGVkIjp0cnVlLCJoYXNfc2NoZWR1bGVzIjpmYWxzZSwi + bmV4dF9qb2JfcnVuIjpudWxsLCJzdGF0dXMiOiJmYWlsZWQiLCJob3N0X2Nv + bmZpZ19rZXkiOiIiLCJhc2tfdmFyaWFibGVzX29uX2xhdW5jaCI6ZmFsc2Us + ImFza19saW1pdF9vbl9sYXVuY2giOmZhbHNlLCJhc2tfdGFnc19vbl9sYXVu + Y2giOmZhbHNlLCJhc2tfam9iX3R5cGVfb25fbGF1bmNoIjpmYWxzZSwiYXNr + X2ludmVudG9yeV9vbl9sYXVuY2giOmZhbHNlLCJhc2tfY3JlZGVudGlhbF9v + bl9sYXVuY2giOmZhbHNlLCJzdXJ2ZXlfZW5hYmxlZCI6ZmFsc2UsImJlY29t + ZV9lbmFibGVkIjp0cnVlLCJhbGxvd19zaW11bHRhbmVvdXMiOmZhbHNlfSx7 + ImlkIjoyOTEsInR5cGUiOiJqb2JfdGVtcGxhdGUiLCJ1cmwiOiIvYXBpL3Yx + L2pvYl90ZW1wbGF0ZXMvMjkxLyIsInJlbGF0ZWQiOnsiY3JlYXRlZF9ieSI6 + Ii9hcGkvdjEvdXNlcnMvMS8iLCJsYWJlbHMiOiIvYXBpL3YxL2pvYl90ZW1w + bGF0ZXMvMjkxL2xhYmVscy8iLCJpbnZlbnRvcnkiOiIvYXBpL3YxL2ludmVu + dG9yaWVzLzkvIiwicHJvamVjdCI6Ii9hcGkvdjEvcHJvamVjdHMvMTU1LyIs + Imxhc3Rfam9iIjoiL2FwaS92MS9qb2JzLzQ1Ni8iLCJub3RpZmljYXRpb25f + dGVtcGxhdGVzX2Vycm9yIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzI5MS9u + b3RpZmljYXRpb25fdGVtcGxhdGVzX2Vycm9yLyIsIm5vdGlmaWNhdGlvbl90 + ZW1wbGF0ZXNfc3VjY2VzcyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8yOTEv + bm90aWZpY2F0aW9uX3RlbXBsYXRlc19zdWNjZXNzLyIsImpvYnMiOiIvYXBp + L3YxL2pvYl90ZW1wbGF0ZXMvMjkxL2pvYnMvIiwib2JqZWN0X3JvbGVzIjoi + L2FwaS92MS9qb2JfdGVtcGxhdGVzLzI5MS9vYmplY3Rfcm9sZXMvIiwibm90 + aWZpY2F0aW9uX3RlbXBsYXRlc19hbnkiOiIvYXBpL3YxL2pvYl90ZW1wbGF0 + ZXMvMjkxL25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfYW55LyIsImFjY2Vzc19s + aXN0IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzI5MS9hY2Nlc3NfbGlzdC8i + LCJsYXVuY2giOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMjkxL2xhdW5jaC8i + LCJzY2hlZHVsZXMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMjkxL3NjaGVk + dWxlcy8iLCJhY3Rpdml0eV9zdHJlYW0iOiIvYXBpL3YxL2pvYl90ZW1wbGF0 + ZXMvMjkxL2FjdGl2aXR5X3N0cmVhbS8iLCJzdXJ2ZXlfc3BlYyI6Ii9hcGkv + djEvam9iX3RlbXBsYXRlcy8yOTEvc3VydmV5X3NwZWMvIn0sInN1bW1hcnlf + ZmllbGRzIjp7Imxhc3Rfam9iIjp7ImlkIjo0NTYsIm5hbWUiOiJsdWN5IHRl + c3QiLCJkZXNjcmlwdGlvbiI6IiIsImZpbmlzaGVkIjoiMjAxNy0wMy0wN1Qy + MToyNTowMC41OTRaIiwic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZhaWxlZCI6 + ZmFsc2V9LCJsYXN0X3VwZGF0ZSI6eyJpZCI6NDU2LCJuYW1lIjoibHVjeSB0 + ZXN0IiwiZGVzY3JpcHRpb24iOiIiLCJzdGF0dXMiOiJzdWNjZXNzZnVsIiwi + ZmFpbGVkIjpmYWxzZX0sImludmVudG9yeSI6eyJpZCI6OSwibmFtZSI6Imx1 + Y3lzX3Rlc3RzIiwiZGVzY3JpcHRpb24iOiIiLCJoYXNfYWN0aXZlX2ZhaWx1 + cmVzIjpmYWxzZSwidG90YWxfaG9zdHMiOjIsImhvc3RzX3dpdGhfYWN0aXZl + X2ZhaWx1cmVzIjowLCJ0b3RhbF9ncm91cHMiOjIsImdyb3Vwc193aXRoX2Fj + dGl2ZV9mYWlsdXJlcyI6MCwiaGFzX2ludmVudG9yeV9zb3VyY2VzIjp0cnVl + LCJ0b3RhbF9pbnZlbnRvcnlfc291cmNlcyI6MiwiaW52ZW50b3J5X3NvdXJj + ZXNfd2l0aF9mYWlsdXJlcyI6MH0sInByb2plY3QiOnsiaWQiOjE1NSwibmFt + ZSI6Imx1Y3kiLCJkZXNjcmlwdGlvbiI6InRlc3QgcGxheWJvb2siLCJzdGF0 + dXMiOiJzdWNjZXNzZnVsIn0sImNyZWF0ZWRfYnkiOnsiaWQiOjEsInVzZXJu + YW1lIjoiYWRtaW4iLCJmaXJzdF9uYW1lIjoiIiwibGFzdF9uYW1lIjoiIn0s + Im9iamVjdF9yb2xlcyI6eyJhZG1pbl9yb2xlIjp7ImRlc2NyaXB0aW9uIjoi + Q2FuIG1hbmFnZSBhbGwgYXNwZWN0cyBvZiB0aGUgam9iIHRlbXBsYXRlIiwi + aWQiOjkyNCwibmFtZSI6IkFkbWluIn0sImV4ZWN1dGVfcm9sZSI6eyJkZXNj + cmlwdGlvbiI6Ik1heSBydW4gdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjo5MjYs + Im5hbWUiOiJFeGVjdXRlIn0sInJlYWRfcm9sZSI6eyJkZXNjcmlwdGlvbiI6 + Ik1heSB2aWV3IHNldHRpbmdzIGZvciB0aGUgam9iIHRlbXBsYXRlIiwiaWQi + OjkyNSwibmFtZSI6IlJlYWQifX0sImxhYmVscyI6eyJjb3VudCI6MCwicmVz + dWx0cyI6W119LCJjYW5fY29weSI6ZmFsc2UsImNhbl9lZGl0Ijp0cnVlLCJy + ZWNlbnRfam9icyI6W3sic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZpbmlzaGVk + IjoiMjAxNy0wMy0wN1QyMToyNTowMC41OTRaIiwiaWQiOjQ1Nn1dfSwiY3Jl + YXRlZCI6IjIwMTctMDMtMDdUMjE6MjQ6MjEuOTM5WiIsIm1vZGlmaWVkIjoi + MjAxNy0wMy0wN1QyMToyNDoyMS45MzlaIiwibmFtZSI6Imx1Y3kgdGVzdCIs + ImRlc2NyaXB0aW9uIjoiIiwiam9iX3R5cGUiOiJydW4iLCJpbnZlbnRvcnki + OjksInByb2plY3QiOjE1NSwicGxheWJvb2siOiJwbGF5cy55YW1sIiwiY3Jl + ZGVudGlhbCI6bnVsbCwiY2xvdWRfY3JlZGVudGlhbCI6bnVsbCwibmV0d29y + a19jcmVkZW50aWFsIjpudWxsLCJmb3JrcyI6MCwibGltaXQiOiIiLCJ2ZXJi + b3NpdHkiOjAsImV4dHJhX3ZhcnMiOiIiLCJqb2JfdGFncyI6IiIsImZvcmNl + X2hhbmRsZXJzIjpmYWxzZSwic2tpcF90YWdzIjoiIiwic3RhcnRfYXRfdGFz + ayI6IiIsImxhc3Rfam9iX3J1biI6IjIwMTctMDMtMDdUMjE6MjU6MDAuNTk0 + NDcyWiIsImxhc3Rfam9iX2ZhaWxlZCI6ZmFsc2UsImhhc19zY2hlZHVsZXMi + OmZhbHNlLCJuZXh0X2pvYl9ydW4iOm51bGwsInN0YXR1cyI6InN1Y2Nlc3Nm + dWwiLCJob3N0X2NvbmZpZ19rZXkiOiIiLCJhc2tfdmFyaWFibGVzX29uX2xh + dW5jaCI6ZmFsc2UsImFza19saW1pdF9vbl9sYXVuY2giOmZhbHNlLCJhc2tf + dGFnc19vbl9sYXVuY2giOmZhbHNlLCJhc2tfam9iX3R5cGVfb25fbGF1bmNo + IjpmYWxzZSwiYXNrX2ludmVudG9yeV9vbl9sYXVuY2giOmZhbHNlLCJhc2tf + Y3JlZGVudGlhbF9vbl9sYXVuY2giOmZhbHNlLCJzdXJ2ZXlfZW5hYmxlZCI6 + ZmFsc2UsImJlY29tZV9lbmFibGVkIjpmYWxzZSwiYWxsb3dfc2ltdWx0YW5l + b3VzIjpmYWxzZX0seyJpZCI6MTU2LCJ0eXBlIjoiam9iX3RlbXBsYXRlIiwi + dXJsIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE1Ni8iLCJyZWxhdGVkIjp7 + ImNyZWF0ZWRfYnkiOiIvYXBpL3YxL3VzZXJzLzEvIiwibGFiZWxzIjoiL2Fw + aS92MS9qb2JfdGVtcGxhdGVzLzE1Ni9sYWJlbHMvIiwiaW52ZW50b3J5Ijoi + L2FwaS92MS9pbnZlbnRvcmllcy85LyIsInByb2plY3QiOiIvYXBpL3YxL3By + b2plY3RzLzE1NS8iLCJjcmVkZW50aWFsIjoiL2FwaS92MS9jcmVkZW50aWFs + cy81Mi8iLCJsYXN0X2pvYiI6Ii9hcGkvdjEvam9icy84NjEvIiwibm90aWZp + Y2F0aW9uX3RlbXBsYXRlc19lcnJvciI6Ii9hcGkvdjEvam9iX3RlbXBsYXRl + cy8xNTYvbm90aWZpY2F0aW9uX3RlbXBsYXRlc19lcnJvci8iLCJub3RpZmlj + YXRpb25fdGVtcGxhdGVzX3N1Y2Nlc3MiOiIvYXBpL3YxL2pvYl90ZW1wbGF0 + ZXMvMTU2L25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfc3VjY2Vzcy8iLCJqb2Jz + IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE1Ni9qb2JzLyIsIm9iamVjdF9y + b2xlcyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xNTYvb2JqZWN0X3JvbGVz + LyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfYW55IjoiL2FwaS92MS9qb2Jf + dGVtcGxhdGVzLzE1Ni9ub3RpZmljYXRpb25fdGVtcGxhdGVzX2FueS8iLCJh + Y2Nlc3NfbGlzdCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xNTYvYWNjZXNz + X2xpc3QvIiwibGF1bmNoIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE1Ni9s + YXVuY2gvIiwic2NoZWR1bGVzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE1 + Ni9zY2hlZHVsZXMvIiwiYWN0aXZpdHlfc3RyZWFtIjoiL2FwaS92MS9qb2Jf + dGVtcGxhdGVzLzE1Ni9hY3Rpdml0eV9zdHJlYW0vIiwic3VydmV5X3NwZWMi + OiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTU2L3N1cnZleV9zcGVjLyJ9LCJz + dW1tYXJ5X2ZpZWxkcyI6eyJsYXN0X2pvYiI6eyJpZCI6ODYxLCJuYW1lIjoi + bHVjeV90ZXN0XzEiLCJkZXNjcmlwdGlvbiI6InRlbXBvcmFyeSB0ZXN0Iiwi + ZmluaXNoZWQiOiIyMDE3LTA1LTA0VDIwOjM1OjQ3LjE0MFoiLCJzdGF0dXMi + OiJzdWNjZXNzZnVsIiwiZmFpbGVkIjpmYWxzZX0sImxhc3RfdXBkYXRlIjp7 + ImlkIjo4NjEsIm5hbWUiOiJsdWN5X3Rlc3RfMSIsImRlc2NyaXB0aW9uIjoi + dGVtcG9yYXJ5IHRlc3QiLCJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiZmFpbGVk + IjpmYWxzZX0sImludmVudG9yeSI6eyJpZCI6OSwibmFtZSI6Imx1Y3lzX3Rl + c3RzIiwiZGVzY3JpcHRpb24iOiIiLCJoYXNfYWN0aXZlX2ZhaWx1cmVzIjpm + YWxzZSwidG90YWxfaG9zdHMiOjIsImhvc3RzX3dpdGhfYWN0aXZlX2ZhaWx1 + cmVzIjowLCJ0b3RhbF9ncm91cHMiOjIsImdyb3Vwc193aXRoX2FjdGl2ZV9m + YWlsdXJlcyI6MCwiaGFzX2ludmVudG9yeV9zb3VyY2VzIjp0cnVlLCJ0b3Rh + bF9pbnZlbnRvcnlfc291cmNlcyI6MiwiaW52ZW50b3J5X3NvdXJjZXNfd2l0 + aF9mYWlsdXJlcyI6MH0sImNyZWRlbnRpYWwiOnsiaWQiOjUyLCJuYW1lIjoi + bHVjeV9tYWNoaW5lIiwiZGVzY3JpcHRpb24iOiIiLCJraW5kIjoic3NoIiwi + Y2xvdWQiOmZhbHNlfSwicHJvamVjdCI6eyJpZCI6MTU1LCJuYW1lIjoibHVj + eSIsImRlc2NyaXB0aW9uIjoidGVzdCBwbGF5Ym9vayIsInN0YXR1cyI6InN1 + Y2Nlc3NmdWwifSwiY3JlYXRlZF9ieSI6eyJpZCI6MSwidXNlcm5hbWUiOiJh + ZG1pbiIsImZpcnN0X25hbWUiOiIiLCJsYXN0X25hbWUiOiIifSwib2JqZWN0 + X3JvbGVzIjp7ImFkbWluX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJDYW4gbWFu + YWdlIGFsbCBhc3BlY3RzIG9mIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6NDg2 + LCJuYW1lIjoiQWRtaW4ifSwiZXhlY3V0ZV9yb2xlIjp7ImRlc2NyaXB0aW9u + IjoiTWF5IHJ1biB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjQ4OCwibmFtZSI6 + IkV4ZWN1dGUifSwicmVhZF9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiTWF5IHZp + ZXcgc2V0dGluZ3MgZm9yIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6NDg3LCJu + YW1lIjoiUmVhZCJ9fSwibGFiZWxzIjp7ImNvdW50IjowLCJyZXN1bHRzIjpb + XX0sImNhbl9jb3B5Ijp0cnVlLCJjYW5fZWRpdCI6dHJ1ZSwicmVjZW50X2pv + YnMiOlt7InN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6IjIwMTct + MDUtMDRUMjA6MzU6NDcuMTQwWiIsImlkIjo4NjF9LHsic3RhdHVzIjoic3Vj + Y2Vzc2Z1bCIsImZpbmlzaGVkIjoiMjAxNy0wNS0wNFQyMDozNDoyNC4yNzla + IiwiaWQiOjg1OX0seyJzdGF0dXMiOiJmYWlsZWQiLCJmaW5pc2hlZCI6IjIw + MTctMDUtMDRUMjA6Mjk6MzUuNTU5WiIsImlkIjo4NTd9LHsic3RhdHVzIjoi + c3VjY2Vzc2Z1bCIsImZpbmlzaGVkIjoiMjAxNy0wMi0yMFQyMzoxNDoxNS40 + OTVaIiwiaWQiOjIyMH0seyJzdGF0dXMiOiJmYWlsZWQiLCJmaW5pc2hlZCI6 + IjIwMTctMDItMjBUMjM6MTI6NTkuNTk4WiIsImlkIjoyMTh9LHsic3RhdHVz + IjoiZmFpbGVkIiwiZmluaXNoZWQiOiIyMDE3LTAyLTIwVDIzOjA3OjQyLjM4 + MVoiLCJpZCI6MjEzfSx7InN0YXR1cyI6ImZhaWxlZCIsImZpbmlzaGVkIjoi + MjAxNy0wMi0yMFQyMzowNTo0Mi4zNzJaIiwiaWQiOjIwOH0seyJzdGF0dXMi + OiJmYWlsZWQiLCJmaW5pc2hlZCI6IjIwMTctMDItMjBUMjI6MTk6MjkuNDA0 + WiIsImlkIjoyMDV9LHsic3RhdHVzIjoiZmFpbGVkIiwiZmluaXNoZWQiOiIy + MDE3LTAyLTIwVDIxOjUzOjIyLjg2OFoiLCJpZCI6MTk1fSx7InN0YXR1cyI6 + ImZhaWxlZCIsImZpbmlzaGVkIjoiMjAxNy0wMi0yMFQyMTo1MToyMS43Njha + IiwiaWQiOjE5Mn1dfSwiY3JlYXRlZCI6IjIwMTctMDItMTdUMTk6MzQ6NTgu + NzE5WiIsIm1vZGlmaWVkIjoiMjAxNy0wNS0wNFQyMDozNToxMS44MzRaIiwi + bmFtZSI6Imx1Y3lfdGVzdF8xIiwiZGVzY3JpcHRpb24iOiJ0ZW1wb3Jhcnkg + dGVzdCIsImpvYl90eXBlIjoicnVuIiwiaW52ZW50b3J5Ijo5LCJwcm9qZWN0 + IjoxNTUsInBsYXlib29rIjoidGVzdF8xLnlhbWwiLCJjcmVkZW50aWFsIjo1 + MiwiY2xvdWRfY3JlZGVudGlhbCI6bnVsbCwibmV0d29ya19jcmVkZW50aWFs + IjpudWxsLCJmb3JrcyI6MCwibGltaXQiOiIiLCJ2ZXJib3NpdHkiOjAsImV4 + dHJhX3ZhcnMiOiIiLCJqb2JfdGFncyI6IiIsImZvcmNlX2hhbmRsZXJzIjpm + YWxzZSwic2tpcF90YWdzIjoiIiwic3RhcnRfYXRfdGFzayI6IiIsImxhc3Rf + am9iX3J1biI6IjIwMTctMDUtMDRUMjA6MzU6NDcuMTQwOTg4WiIsImxhc3Rf + am9iX2ZhaWxlZCI6ZmFsc2UsImhhc19zY2hlZHVsZXMiOmZhbHNlLCJuZXh0 + X2pvYl9ydW4iOm51bGwsInN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJob3N0X2Nv + bmZpZ19rZXkiOiIiLCJhc2tfdmFyaWFibGVzX29uX2xhdW5jaCI6ZmFsc2Us + ImFza19saW1pdF9vbl9sYXVuY2giOmZhbHNlLCJhc2tfdGFnc19vbl9sYXVu + Y2giOmZhbHNlLCJhc2tfam9iX3R5cGVfb25fbGF1bmNoIjpmYWxzZSwiYXNr + X2ludmVudG9yeV9vbl9sYXVuY2giOmZhbHNlLCJhc2tfY3JlZGVudGlhbF9v + bl9sYXVuY2giOmZhbHNlLCJzdXJ2ZXlfZW5hYmxlZCI6ZmFsc2UsImJlY29t + ZV9lbmFibGVkIjp0cnVlLCJhbGxvd19zaW11bHRhbmVvdXMiOmZhbHNlfSx7 + ImlkIjoxNzgsInR5cGUiOiJqb2JfdGVtcGxhdGUiLCJ1cmwiOiIvYXBpL3Yx + L2pvYl90ZW1wbGF0ZXMvMTc4LyIsInJlbGF0ZWQiOnsiY3JlYXRlZF9ieSI6 + Ii9hcGkvdjEvdXNlcnMvMS8iLCJsYWJlbHMiOiIvYXBpL3YxL2pvYl90ZW1w + bGF0ZXMvMTc4L2xhYmVscy8iLCJpbnZlbnRvcnkiOiIvYXBpL3YxL2ludmVu + dG9yaWVzLzkvIiwicHJvamVjdCI6Ii9hcGkvdjEvcHJvamVjdHMvMTU1LyIs + ImNyZWRlbnRpYWwiOiIvYXBpL3YxL2NyZWRlbnRpYWxzLzUyLyIsImxhc3Rf + am9iIjoiL2FwaS92MS9qb2JzLzg0Mi8iLCJub3RpZmljYXRpb25fdGVtcGxh + dGVzX2Vycm9yIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE3OC9ub3RpZmlj + YXRpb25fdGVtcGxhdGVzX2Vycm9yLyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0 + ZXNfc3VjY2VzcyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xNzgvbm90aWZp + Y2F0aW9uX3RlbXBsYXRlc19zdWNjZXNzLyIsImpvYnMiOiIvYXBpL3YxL2pv + Yl90ZW1wbGF0ZXMvMTc4L2pvYnMvIiwib2JqZWN0X3JvbGVzIjoiL2FwaS92 + MS9qb2JfdGVtcGxhdGVzLzE3OC9vYmplY3Rfcm9sZXMvIiwibm90aWZpY2F0 + aW9uX3RlbXBsYXRlc19hbnkiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTc4 + L25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfYW55LyIsImFjY2Vzc19saXN0Ijoi + L2FwaS92MS9qb2JfdGVtcGxhdGVzLzE3OC9hY2Nlc3NfbGlzdC8iLCJsYXVu + Y2giOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTc4L2xhdW5jaC8iLCJzY2hl + ZHVsZXMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTc4L3NjaGVkdWxlcy8i + LCJhY3Rpdml0eV9zdHJlYW0iOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTc4 + L2FjdGl2aXR5X3N0cmVhbS8iLCJzdXJ2ZXlfc3BlYyI6Ii9hcGkvdjEvam9i + X3RlbXBsYXRlcy8xNzgvc3VydmV5X3NwZWMvIn0sInN1bW1hcnlfZmllbGRz + Ijp7Imxhc3Rfam9iIjp7ImlkIjo4NDIsIm5hbWUiOiJsdWN5X3ZhbGlkYXRl + X2lucHV0cyIsImRlc2NyaXB0aW9uIjoiIiwiZmluaXNoZWQiOiIyMDE3LTA1 + LTA0VDE5OjAyOjU2LjQwOVoiLCJzdGF0dXMiOiJmYWlsZWQiLCJmYWlsZWQi + OnRydWV9LCJsYXN0X3VwZGF0ZSI6eyJpZCI6ODQyLCJuYW1lIjoibHVjeV92 + YWxpZGF0ZV9pbnB1dHMiLCJkZXNjcmlwdGlvbiI6IiIsInN0YXR1cyI6ImZh + aWxlZCIsImZhaWxlZCI6dHJ1ZX0sImludmVudG9yeSI6eyJpZCI6OSwibmFt + ZSI6Imx1Y3lzX3Rlc3RzIiwiZGVzY3JpcHRpb24iOiIiLCJoYXNfYWN0aXZl + X2ZhaWx1cmVzIjpmYWxzZSwidG90YWxfaG9zdHMiOjIsImhvc3RzX3dpdGhf + YWN0aXZlX2ZhaWx1cmVzIjowLCJ0b3RhbF9ncm91cHMiOjIsImdyb3Vwc193 + aXRoX2FjdGl2ZV9mYWlsdXJlcyI6MCwiaGFzX2ludmVudG9yeV9zb3VyY2Vz + Ijp0cnVlLCJ0b3RhbF9pbnZlbnRvcnlfc291cmNlcyI6MiwiaW52ZW50b3J5 + X3NvdXJjZXNfd2l0aF9mYWlsdXJlcyI6MH0sImNyZWRlbnRpYWwiOnsiaWQi + OjUyLCJuYW1lIjoibHVjeV9tYWNoaW5lIiwiZGVzY3JpcHRpb24iOiIiLCJr + aW5kIjoic3NoIiwiY2xvdWQiOmZhbHNlfSwicHJvamVjdCI6eyJpZCI6MTU1 + LCJuYW1lIjoibHVjeSIsImRlc2NyaXB0aW9uIjoidGVzdCBwbGF5Ym9vayIs + InN0YXR1cyI6InN1Y2Nlc3NmdWwifSwiY3JlYXRlZF9ieSI6eyJpZCI6MSwi + dXNlcm5hbWUiOiJhZG1pbiIsImZpcnN0X25hbWUiOiIiLCJsYXN0X25hbWUi + OiIifSwib2JqZWN0X3JvbGVzIjp7ImFkbWluX3JvbGUiOnsiZGVzY3JpcHRp + b24iOiJDYW4gbWFuYWdlIGFsbCBhc3BlY3RzIG9mIHRoZSBqb2IgdGVtcGxh + dGUiLCJpZCI6NTc5LCJuYW1lIjoiQWRtaW4ifSwiZXhlY3V0ZV9yb2xlIjp7 + ImRlc2NyaXB0aW9uIjoiTWF5IHJ1biB0aGUgam9iIHRlbXBsYXRlIiwiaWQi + OjU4MSwibmFtZSI6IkV4ZWN1dGUifSwicmVhZF9yb2xlIjp7ImRlc2NyaXB0 + aW9uIjoiTWF5IHZpZXcgc2V0dGluZ3MgZm9yIHRoZSBqb2IgdGVtcGxhdGUi + LCJpZCI6NTgwLCJuYW1lIjoiUmVhZCJ9fSwibGFiZWxzIjp7ImNvdW50Ijow + LCJyZXN1bHRzIjpbXX0sImNhbl9jb3B5Ijp0cnVlLCJjYW5fZWRpdCI6dHJ1 + ZSwicmVjZW50X2pvYnMiOlt7InN0YXR1cyI6ImZhaWxlZCIsImZpbmlzaGVk + IjoiMjAxNy0wNS0wNFQxOTowMjo1Ni40MDlaIiwiaWQiOjg0Mn0seyJzdGF0 + dXMiOiJmYWlsZWQiLCJmaW5pc2hlZCI6IjIwMTctMDUtMDRUMTk6MDA6MTku + NDk3WiIsImlkIjo4NDB9LHsic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZpbmlz + aGVkIjoiMjAxNy0wNS0wNFQxODo1NTo0NC4wMDhaIiwiaWQiOjgzOH0seyJz + dGF0dXMiOiJmYWlsZWQiLCJmaW5pc2hlZCI6IjIwMTctMDUtMDRUMTg6NTQ6 + MTkuODY2WiIsImlkIjo4MzZ9LHsic3RhdHVzIjoiZmFpbGVkIiwiZmluaXNo + ZWQiOiIyMDE3LTA1LTA0VDE4OjUxOjA4Ljk1OFoiLCJpZCI6ODM0fSx7InN0 + YXR1cyI6ImZhaWxlZCIsImZpbmlzaGVkIjoiMjAxNy0wNS0wNFQxNDo1Mzow + NC4xMTJaIiwiaWQiOjgyMX0seyJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiZmlu + aXNoZWQiOiIyMDE3LTA1LTA0VDE0OjUyOjE4LjMwMFoiLCJpZCI6ODE5fSx7 + InN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6IjIwMTctMDItMjFU + MTg6MzM6MDQuODM2WiIsImlkIjoyNTd9LHsic3RhdHVzIjoiZmFpbGVkIiwi + ZmluaXNoZWQiOiIyMDE3LTAyLTIxVDE4OjI5OjM5LjczMloiLCJpZCI6MjU1 + fSx7InN0YXR1cyI6ImZhaWxlZCIsImZpbmlzaGVkIjoiMjAxNy0wMi0yMVQx + ODoyODo0MS4xMTZaIiwiaWQiOjI1M31dfSwiY3JlYXRlZCI6IjIwMTctMDIt + MjFUMTc6MjA6NTcuODMzWiIsIm1vZGlmaWVkIjoiMjAxNy0wNS0wNFQxOTow + MjoyOS45NThaIiwibmFtZSI6Imx1Y3lfdmFsaWRhdGVfaW5wdXRzIiwiZGVz + Y3JpcHRpb24iOiIiLCJqb2JfdHlwZSI6InJ1biIsImludmVudG9yeSI6OSwi + cHJvamVjdCI6MTU1LCJwbGF5Ym9vayI6InZhbGlkYXRlX2lucHV0cy55YW1s + IiwiY3JlZGVudGlhbCI6NTIsImNsb3VkX2NyZWRlbnRpYWwiOm51bGwsIm5l + dHdvcmtfY3JlZGVudGlhbCI6bnVsbCwiZm9ya3MiOjAsImxpbWl0IjoiIiwi + dmVyYm9zaXR5IjozLCJleHRyYV92YXJzIjoiLS0tXG5wYXJhbTE6ICdpbnN0 + YWxsJyIsImpvYl90YWdzIjoiIiwiZm9yY2VfaGFuZGxlcnMiOmZhbHNlLCJz + a2lwX3RhZ3MiOiIiLCJzdGFydF9hdF90YXNrIjoiIiwibGFzdF9qb2JfcnVu + IjoiMjAxNy0wNS0wNFQxOTowMjo1Ni40MDk0NzJaIiwibGFzdF9qb2JfZmFp + bGVkIjp0cnVlLCJoYXNfc2NoZWR1bGVzIjpmYWxzZSwibmV4dF9qb2JfcnVu + IjpudWxsLCJzdGF0dXMiOiJmYWlsZWQiLCJob3N0X2NvbmZpZ19rZXkiOiIi + LCJhc2tfdmFyaWFibGVzX29uX2xhdW5jaCI6ZmFsc2UsImFza19saW1pdF9v + bl9sYXVuY2giOmZhbHNlLCJhc2tfdGFnc19vbl9sYXVuY2giOmZhbHNlLCJh + c2tfam9iX3R5cGVfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2ludmVudG9yeV9v + bl9sYXVuY2giOmZhbHNlLCJhc2tfY3JlZGVudGlhbF9vbl9sYXVuY2giOmZh + bHNlLCJzdXJ2ZXlfZW5hYmxlZCI6ZmFsc2UsImJlY29tZV9lbmFibGVkIjp0 + cnVlLCJhbGxvd19zaW11bHRhbmVvdXMiOmZhbHNlfSx7ImlkIjoxMjUsInR5 + cGUiOiJqb2JfdGVtcGxhdGUiLCJ1cmwiOiIvYXBpL3YxL2pvYl90ZW1wbGF0 + ZXMvMTI1LyIsInJlbGF0ZWQiOnsiY3JlYXRlZF9ieSI6Ii9hcGkvdjEvdXNl + cnMvMS8iLCJsYWJlbHMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTI1L2xh + YmVscy8iLCJpbnZlbnRvcnkiOiIvYXBpL3YxL2ludmVudG9yaWVzLzEvIiwi + cHJvamVjdCI6Ii9hcGkvdjEvcHJvamVjdHMvMTI0LyIsImNyZWRlbnRpYWwi + OiIvYXBpL3YxL2NyZWRlbnRpYWxzLzEvIiwibGFzdF9qb2IiOiIvYXBpL3Yx + L2pvYnMvODEyLyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfZXJyb3IiOiIv + YXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTI1L25vdGlmaWNhdGlvbl90ZW1wbGF0 + ZXNfZXJyb3IvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRlc19zdWNjZXNzIjoi + L2FwaS92MS9qb2JfdGVtcGxhdGVzLzEyNS9ub3RpZmljYXRpb25fdGVtcGxh + dGVzX3N1Y2Nlc3MvIiwiam9icyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8x + MjUvam9icy8iLCJvYmplY3Rfcm9sZXMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0 + ZXMvMTI1L29iamVjdF9yb2xlcy8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVz + X2FueSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xMjUvbm90aWZpY2F0aW9u + X3RlbXBsYXRlc19hbnkvIiwiYWNjZXNzX2xpc3QiOiIvYXBpL3YxL2pvYl90 + ZW1wbGF0ZXMvMTI1L2FjY2Vzc19saXN0LyIsImxhdW5jaCI6Ii9hcGkvdjEv + am9iX3RlbXBsYXRlcy8xMjUvbGF1bmNoLyIsInNjaGVkdWxlcyI6Ii9hcGkv + djEvam9iX3RlbXBsYXRlcy8xMjUvc2NoZWR1bGVzLyIsImFjdGl2aXR5X3N0 + cmVhbSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xMjUvYWN0aXZpdHlfc3Ry + ZWFtLyIsInN1cnZleV9zcGVjIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzEy + NS9zdXJ2ZXlfc3BlYy8ifSwic3VtbWFyeV9maWVsZHMiOnsibGFzdF9qb2Ii + OnsiaWQiOjgxMiwibmFtZSI6Im1hZGh1X3Rlc3QiLCJkZXNjcmlwdGlvbiI6 + IiIsImZpbmlzaGVkIjoiMjAxNy0wNS0wMlQxOTozMTo1MS4wNTNaIiwic3Rh + dHVzIjoic3VjY2Vzc2Z1bCIsImZhaWxlZCI6ZmFsc2V9LCJsYXN0X3VwZGF0 + ZSI6eyJpZCI6ODEyLCJuYW1lIjoibWFkaHVfdGVzdCIsImRlc2NyaXB0aW9u + IjoiIiwic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZhaWxlZCI6ZmFsc2V9LCJp + bnZlbnRvcnkiOnsiaWQiOjEsIm5hbWUiOiJEZW1vIEludmVudG9yeSIsImRl + c2NyaXB0aW9uIjoiIiwiaGFzX2FjdGl2ZV9mYWlsdXJlcyI6ZmFsc2UsInRv + dGFsX2hvc3RzIjoyLCJob3N0c193aXRoX2FjdGl2ZV9mYWlsdXJlcyI6MCwi + dG90YWxfZ3JvdXBzIjowLCJncm91cHNfd2l0aF9hY3RpdmVfZmFpbHVyZXMi + OjAsImhhc19pbnZlbnRvcnlfc291cmNlcyI6ZmFsc2UsInRvdGFsX2ludmVu + dG9yeV9zb3VyY2VzIjowLCJpbnZlbnRvcnlfc291cmNlc193aXRoX2ZhaWx1 + cmVzIjowfSwiY3JlZGVudGlhbCI6eyJpZCI6MSwibmFtZSI6IkRlbW8gQ3Jl + ZGVudGlhbCIsImRlc2NyaXB0aW9uIjoiIiwia2luZCI6InNzaCIsImNsb3Vk + IjpmYWxzZX0sInByb2plY3QiOnsiaWQiOjEyNCwibmFtZSI6Im1hZGh1Iiwi + ZGVzY3JpcHRpb24iOiJzaW1wbGUgcGxheWJvb2tzIiwic3RhdHVzIjoic3Vj + Y2Vzc2Z1bCJ9LCJjcmVhdGVkX2J5Ijp7ImlkIjoxLCJ1c2VybmFtZSI6ImFk + bWluIiwiZmlyc3RfbmFtZSI6IiIsImxhc3RfbmFtZSI6IiJ9LCJvYmplY3Rf + cm9sZXMiOnsiYWRtaW5fcm9sZSI6eyJkZXNjcmlwdGlvbiI6IkNhbiBtYW5h + Z2UgYWxsIGFzcGVjdHMgb2YgdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjozODMs + Im5hbWUiOiJBZG1pbiJ9LCJleGVjdXRlX3JvbGUiOnsiZGVzY3JpcHRpb24i + OiJNYXkgcnVuIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6Mzg1LCJuYW1lIjoi + RXhlY3V0ZSJ9LCJyZWFkX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJNYXkgdmll + dyBzZXR0aW5ncyBmb3IgdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjozODQsIm5h + bWUiOiJSZWFkIn19LCJsYWJlbHMiOnsiY291bnQiOjAsInJlc3VsdHMiOltd + fSwiY2FuX2NvcHkiOnRydWUsImNhbl9lZGl0Ijp0cnVlLCJyZWNlbnRfam9i + cyI6W3sic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZpbmlzaGVkIjoiMjAxNy0w + NS0wMlQxOTozMTo1MS4wNTNaIiwiaWQiOjgxMn0seyJzdGF0dXMiOiJzdWNj + ZXNzZnVsIiwiZmluaXNoZWQiOiIyMDE3LTA1LTAyVDE5OjA0OjQzLjg4OVoi + LCJpZCI6ODExfSx7InN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6 + IjIwMTctMDUtMDJUMTM6NTA6MTcuNzk1WiIsImlkIjo4MDl9LHsic3RhdHVz + Ijoic3VjY2Vzc2Z1bCIsImZpbmlzaGVkIjoiMjAxNy0wNS0wMVQyMDo1Mjoz + MC40ODlaIiwiaWQiOjgwMX0seyJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiZmlu + aXNoZWQiOiIyMDE3LTAyLTI0VDIwOjQxOjMzLjMyOVoiLCJpZCI6Mzc4fSx7 + InN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6IjIwMTctMDItMjRU + MjA6MjM6NDAuMzkyWiIsImlkIjozNzd9LHsic3RhdHVzIjoic3VjY2Vzc2Z1 + bCIsImZpbmlzaGVkIjoiMjAxNy0wMi0yNFQyMDoxMzo0OS43MjRaIiwiaWQi + OjM3Nn0seyJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiZmluaXNoZWQiOiIyMDE3 + LTAyLTI0VDE5OjAxOjMxLjAxM1oiLCJpZCI6Mzc1fSx7InN0YXR1cyI6InN1 + Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6IjIwMTctMDItMjNUMjE6NTc6MDEuMDIx + WiIsImlkIjozNjJ9LHsic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZpbmlzaGVk + IjoiMjAxNy0wMi0yM1QyMDowODo0MC4yNjNaIiwiaWQiOjM1N31dfSwiY3Jl + YXRlZCI6IjIwMTctMDItMTVUMTg6MDg6MzcuNTQyWiIsIm1vZGlmaWVkIjoi + MjAxNy0wNS0wMlQxOTozMTowNS4zMzlaIiwibmFtZSI6Im1hZGh1X3Rlc3Qi + LCJkZXNjcmlwdGlvbiI6IiIsImpvYl90eXBlIjoicnVuIiwiaW52ZW50b3J5 + IjoxLCJwcm9qZWN0IjoxMjQsInBsYXlib29rIjoicGtnX2luZm8ueWFtbCIs + ImNyZWRlbnRpYWwiOjEsImNsb3VkX2NyZWRlbnRpYWwiOm51bGwsIm5ldHdv + cmtfY3JlZGVudGlhbCI6bnVsbCwiZm9ya3MiOjAsImxpbWl0IjoibG9jYWxo + b3N0IiwidmVyYm9zaXR5IjowLCJleHRyYV92YXJzIjoiLS0tXG4gcGtnOiBo + dHRwZFxuIHNsZWVwOiA0MFxuIGhvc3Q6IGxvY2FsaG9zdFxuIHVzZXI6IHJv + b3QiLCJqb2JfdGFncyI6IiIsImZvcmNlX2hhbmRsZXJzIjpmYWxzZSwic2tp + cF90YWdzIjoiIiwic3RhcnRfYXRfdGFzayI6IiIsImxhc3Rfam9iX3J1biI6 + IjIwMTctMDUtMDJUMTk6MzE6NTEuMDUzMTA3WiIsImxhc3Rfam9iX2ZhaWxl + ZCI6ZmFsc2UsImhhc19zY2hlZHVsZXMiOmZhbHNlLCJuZXh0X2pvYl9ydW4i + Om51bGwsInN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJob3N0X2NvbmZpZ19rZXki + OiIiLCJhc2tfdmFyaWFibGVzX29uX2xhdW5jaCI6ZmFsc2UsImFza19saW1p + dF9vbl9sYXVuY2giOmZhbHNlLCJhc2tfdGFnc19vbl9sYXVuY2giOmZhbHNl + LCJhc2tfam9iX3R5cGVfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2ludmVudG9y + eV9vbl9sYXVuY2giOnRydWUsImFza19jcmVkZW50aWFsX29uX2xhdW5jaCI6 + dHJ1ZSwic3VydmV5X2VuYWJsZWQiOmZhbHNlLCJiZWNvbWVfZW5hYmxlZCI6 + ZmFsc2UsImFsbG93X3NpbXVsdGFuZW91cyI6ZmFsc2V9LHsiaWQiOjM3OCwi + dHlwZSI6ImpvYl90ZW1wbGF0ZSIsInVybCI6Ii9hcGkvdjEvam9iX3RlbXBs + YXRlcy8zNzgvIiwicmVsYXRlZCI6eyJjcmVhdGVkX2J5IjoiL2FwaS92MS91 + c2Vycy8xLyIsImxhYmVscyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8zNzgv + bGFiZWxzLyIsImludmVudG9yeSI6Ii9hcGkvdjEvaW52ZW50b3JpZXMvMS8i + LCJwcm9qZWN0IjoiL2FwaS92MS9wcm9qZWN0cy8xNTUvIiwiY2xvdWRfY3Jl + ZGVudGlhbCI6Ii9hcGkvdjEvY3JlZGVudGlhbHMvMTYvIiwibmV0d29ya19j + cmVkZW50aWFsIjoiL2FwaS92MS9jcmVkZW50aWFscy81LyIsImxhc3Rfam9i + IjoiL2FwaS92MS9qb2JzLzU1Ny8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVz + X2Vycm9yIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzM3OC9ub3RpZmljYXRp + b25fdGVtcGxhdGVzX2Vycm9yLyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNf + c3VjY2VzcyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8zNzgvbm90aWZpY2F0 + aW9uX3RlbXBsYXRlc19zdWNjZXNzLyIsImpvYnMiOiIvYXBpL3YxL2pvYl90 + ZW1wbGF0ZXMvMzc4L2pvYnMvIiwib2JqZWN0X3JvbGVzIjoiL2FwaS92MS9q + b2JfdGVtcGxhdGVzLzM3OC9vYmplY3Rfcm9sZXMvIiwibm90aWZpY2F0aW9u + X3RlbXBsYXRlc19hbnkiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzc4L25v + dGlmaWNhdGlvbl90ZW1wbGF0ZXNfYW55LyIsImFjY2Vzc19saXN0IjoiL2Fw + aS92MS9qb2JfdGVtcGxhdGVzLzM3OC9hY2Nlc3NfbGlzdC8iLCJsYXVuY2gi + OiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzc4L2xhdW5jaC8iLCJzY2hlZHVs + ZXMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzc4L3NjaGVkdWxlcy8iLCJh + Y3Rpdml0eV9zdHJlYW0iOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzc4L2Fj + dGl2aXR5X3N0cmVhbS8iLCJzdXJ2ZXlfc3BlYyI6Ii9hcGkvdjEvam9iX3Rl + bXBsYXRlcy8zNzgvc3VydmV5X3NwZWMvIn0sInN1bW1hcnlfZmllbGRzIjp7 + Im5ldHdvcmtfY3JlZGVudGlhbCI6eyJpZCI6NSwibmFtZSI6IkRlbW8gQ3Jl + ZHMgMiIsImRlc2NyaXB0aW9uIjoidGVzdCIsImtpbmQiOiJuZXQifSwibGFz + dF9qb2IiOnsiaWQiOjU1NywibmFtZSI6Im1pcV9hYWFfcGxheWJvb2tfcHJl + X3Jlc291cmNlX3JldGlyZW1lbnQiLCJkZXNjcmlwdGlvbiI6ImFhYV9wbGF5 + Ym9va19wcmVfcmVzb3VyY2UiLCJmaW5pc2hlZCI6IjIwMTctMDMtMjNUMjE6 + Mjk6NTMuNDk1WiIsInN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmYWlsZWQiOmZh + bHNlfSwibGFzdF91cGRhdGUiOnsiaWQiOjU1NywibmFtZSI6Im1pcV9hYWFf + cGxheWJvb2tfcHJlX3Jlc291cmNlX3JldGlyZW1lbnQiLCJkZXNjcmlwdGlv + biI6ImFhYV9wbGF5Ym9va19wcmVfcmVzb3VyY2UiLCJzdGF0dXMiOiJzdWNj + ZXNzZnVsIiwiZmFpbGVkIjpmYWxzZX0sImludmVudG9yeSI6eyJpZCI6MSwi + bmFtZSI6IkRlbW8gSW52ZW50b3J5IiwiZGVzY3JpcHRpb24iOiIiLCJoYXNf + YWN0aXZlX2ZhaWx1cmVzIjpmYWxzZSwidG90YWxfaG9zdHMiOjIsImhvc3Rz + X3dpdGhfYWN0aXZlX2ZhaWx1cmVzIjowLCJ0b3RhbF9ncm91cHMiOjAsImdy + b3Vwc193aXRoX2FjdGl2ZV9mYWlsdXJlcyI6MCwiaGFzX2ludmVudG9yeV9z + b3VyY2VzIjpmYWxzZSwidG90YWxfaW52ZW50b3J5X3NvdXJjZXMiOjAsImlu + dmVudG9yeV9zb3VyY2VzX3dpdGhfZmFpbHVyZXMiOjB9LCJjbG91ZF9jcmVk + ZW50aWFsIjp7ImlkIjoxNiwibmFtZSI6Imx1Y3kgZGV2MDAiLCJkZXNjcmlw + dGlvbiI6IiIsImtpbmQiOiJ2bXdhcmUiLCJjbG91ZCI6dHJ1ZX0sInByb2pl + Y3QiOnsiaWQiOjE1NSwibmFtZSI6Imx1Y3kiLCJkZXNjcmlwdGlvbiI6InRl + c3QgcGxheWJvb2siLCJzdGF0dXMiOiJzdWNjZXNzZnVsIn0sImNyZWF0ZWRf + YnkiOnsiaWQiOjEsInVzZXJuYW1lIjoiYWRtaW4iLCJmaXJzdF9uYW1lIjoi + IiwibGFzdF9uYW1lIjoiIn0sIm9iamVjdF9yb2xlcyI6eyJhZG1pbl9yb2xl + Ijp7ImRlc2NyaXB0aW9uIjoiQ2FuIG1hbmFnZSBhbGwgYXNwZWN0cyBvZiB0 + aGUgam9iIHRlbXBsYXRlIiwiaWQiOjEyNDMsIm5hbWUiOiJBZG1pbiJ9LCJl + eGVjdXRlX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJNYXkgcnVuIHRoZSBqb2Ig + dGVtcGxhdGUiLCJpZCI6MTI0NSwibmFtZSI6IkV4ZWN1dGUifSwicmVhZF9y + b2xlIjp7ImRlc2NyaXB0aW9uIjoiTWF5IHZpZXcgc2V0dGluZ3MgZm9yIHRo + ZSBqb2IgdGVtcGxhdGUiLCJpZCI6MTI0NCwibmFtZSI6IlJlYWQifX0sImxh + YmVscyI6eyJjb3VudCI6MCwicmVzdWx0cyI6W119LCJjYW5fY29weSI6dHJ1 + ZSwiY2FuX2VkaXQiOnRydWUsInJlY2VudF9qb2JzIjpbeyJzdGF0dXMiOiJz + dWNjZXNzZnVsIiwiZmluaXNoZWQiOiIyMDE3LTAzLTIzVDIxOjI5OjUzLjQ5 + NVoiLCJpZCI6NTU3fSx7InN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmaW5pc2hl + ZCI6IjIwMTctMDMtMjNUMjE6MjI6MDMuNTIyWiIsImlkIjo1NTN9LHsic3Rh + dHVzIjoic3VjY2Vzc2Z1bCIsImZpbmlzaGVkIjoiMjAxNy0wMy0yM1QyMDo1 + ODo0Ni44MThaIiwiaWQiOjU0OX0seyJzdGF0dXMiOiJzdWNjZXNzZnVsIiwi + ZmluaXNoZWQiOiIyMDE3LTAzLTIzVDE5OjIwOjQ5LjA4OVoiLCJpZCI6NTQz + fSx7InN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6IjIwMTctMDMt + MjNUMTg6NTk6MDcuOTE4WiIsImlkIjo1Mzh9LHsic3RhdHVzIjoic3VjY2Vz + c2Z1bCIsImZpbmlzaGVkIjoiMjAxNy0wMy0yMlQyMDoxMToxOS4yMzlaIiwi + aWQiOjUxOX0seyJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiZmluaXNoZWQiOiIy + MDE3LTAzLTIyVDE5OjM4OjIxLjA4OFoiLCJpZCI6NTEzfV19LCJjcmVhdGVk + IjoiMjAxNy0wMy0yMFQyMDozNTowOS42NDJaIiwibW9kaWZpZWQiOiIyMDE3 + LTAzLTIzVDE5OjIwOjMwLjUyNVoiLCJuYW1lIjoibWlxX2FhYV9wbGF5Ym9v + a19wcmVfcmVzb3VyY2VfcmV0aXJlbWVudCIsImRlc2NyaXB0aW9uIjoiYWFh + X3BsYXlib29rX3ByZV9yZXNvdXJjZSIsImpvYl90eXBlIjoicnVuIiwiaW52 + ZW50b3J5IjoxLCJwcm9qZWN0IjoxNTUsInBsYXlib29rIjoiY2hlY2tfdmVy + c2lvbi55YW1sIiwiY3JlZGVudGlhbCI6bnVsbCwiY2xvdWRfY3JlZGVudGlh + bCI6MTYsIm5ldHdvcmtfY3JlZGVudGlhbCI6NSwiZm9ya3MiOjAsImxpbWl0 + IjoiIiwidmVyYm9zaXR5IjowLCJleHRyYV92YXJzIjoie1wibnVtYmVyXCI6 + XCIxXCJ9Iiwiam9iX3RhZ3MiOiIiLCJmb3JjZV9oYW5kbGVycyI6ZmFsc2Us + InNraXBfdGFncyI6IiIsInN0YXJ0X2F0X3Rhc2siOiIiLCJsYXN0X2pvYl9y + dW4iOiIyMDE3LTAzLTIzVDIxOjI5OjUzLjQ5NTgwMloiLCJsYXN0X2pvYl9m + YWlsZWQiOmZhbHNlLCJoYXNfc2NoZWR1bGVzIjpmYWxzZSwibmV4dF9qb2Jf + cnVuIjpudWxsLCJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiaG9zdF9jb25maWdf + a2V5IjoiIiwiYXNrX3ZhcmlhYmxlc19vbl9sYXVuY2giOnRydWUsImFza19s + aW1pdF9vbl9sYXVuY2giOnRydWUsImFza190YWdzX29uX2xhdW5jaCI6ZmFs + c2UsImFza19qb2JfdHlwZV9vbl9sYXVuY2giOmZhbHNlLCJhc2tfaW52ZW50 + b3J5X29uX2xhdW5jaCI6dHJ1ZSwiYXNrX2NyZWRlbnRpYWxfb25fbGF1bmNo + Ijp0cnVlLCJzdXJ2ZXlfZW5hYmxlZCI6ZmFsc2UsImJlY29tZV9lbmFibGVk + IjpmYWxzZSwiYWxsb3dfc2ltdWx0YW5lb3VzIjpmYWxzZX0seyJpZCI6NTA1 + LCJ0eXBlIjoiam9iX3RlbXBsYXRlIiwidXJsIjoiL2FwaS92MS9qb2JfdGVt + cGxhdGVzLzUwNS8iLCJyZWxhdGVkIjp7ImNyZWF0ZWRfYnkiOiIvYXBpL3Yx + L3VzZXJzLzEvIiwibW9kaWZpZWRfYnkiOiIvYXBpL3YxL3VzZXJzLzEvIiwi + bGFiZWxzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzUwNS9sYWJlbHMvIiwi + aW52ZW50b3J5IjoiL2FwaS92MS9pbnZlbnRvcmllcy8zOC8iLCJwcm9qZWN0 + IjoiL2FwaS92MS9wcm9qZWN0cy8xNTUvIiwiY3JlZGVudGlhbCI6Ii9hcGkv + djEvY3JlZGVudGlhbHMvNTgvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRlc19l + cnJvciI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy81MDUvbm90aWZpY2F0aW9u + X3RlbXBsYXRlc19lcnJvci8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVzX3N1 + Y2Nlc3MiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvNTA1L25vdGlmaWNhdGlv + bl90ZW1wbGF0ZXNfc3VjY2Vzcy8iLCJqb2JzIjoiL2FwaS92MS9qb2JfdGVt + cGxhdGVzLzUwNS9qb2JzLyIsIm9iamVjdF9yb2xlcyI6Ii9hcGkvdjEvam9i + X3RlbXBsYXRlcy81MDUvb2JqZWN0X3JvbGVzLyIsIm5vdGlmaWNhdGlvbl90 + ZW1wbGF0ZXNfYW55IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzUwNS9ub3Rp + ZmljYXRpb25fdGVtcGxhdGVzX2FueS8iLCJhY2Nlc3NfbGlzdCI6Ii9hcGkv + djEvam9iX3RlbXBsYXRlcy81MDUvYWNjZXNzX2xpc3QvIiwibGF1bmNoIjoi + L2FwaS92MS9qb2JfdGVtcGxhdGVzLzUwNS9sYXVuY2gvIiwic2NoZWR1bGVz + IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzUwNS9zY2hlZHVsZXMvIiwiYWN0 + aXZpdHlfc3RyZWFtIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzUwNS9hY3Rp + dml0eV9zdHJlYW0vIiwic3VydmV5X3NwZWMiOiIvYXBpL3YxL2pvYl90ZW1w + bGF0ZXMvNTA1L3N1cnZleV9zcGVjLyJ9LCJzdW1tYXJ5X2ZpZWxkcyI6eyJp + bnZlbnRvcnkiOnsiaWQiOjM4LCJuYW1lIjoiTWFuYWdlSVEgRGVmYXVsdCBJ + bnZlbnRvcnkiLCJkZXNjcmlwdGlvbiI6IiIsImhhc19hY3RpdmVfZmFpbHVy + ZXMiOmZhbHNlLCJ0b3RhbF9ob3N0cyI6MSwiaG9zdHNfd2l0aF9hY3RpdmVf + ZmFpbHVyZXMiOjAsInRvdGFsX2dyb3VwcyI6MCwiZ3JvdXBzX3dpdGhfYWN0 + aXZlX2ZhaWx1cmVzIjowLCJoYXNfaW52ZW50b3J5X3NvdXJjZXMiOmZhbHNl + LCJ0b3RhbF9pbnZlbnRvcnlfc291cmNlcyI6MCwiaW52ZW50b3J5X3NvdXJj + ZXNfd2l0aF9mYWlsdXJlcyI6MH0sImNyZWRlbnRpYWwiOnsiaWQiOjU4LCJu + YW1lIjoiOTk5IiwiZGVzY3JpcHRpb24iOiIiLCJraW5kIjoic3NoIiwiY2xv + dWQiOmZhbHNlfSwicHJvamVjdCI6eyJpZCI6MTU1LCJuYW1lIjoibHVjeSIs + ImRlc2NyaXB0aW9uIjoidGVzdCBwbGF5Ym9vayIsInN0YXR1cyI6InN1Y2Nl + c3NmdWwifSwiY3JlYXRlZF9ieSI6eyJpZCI6MSwidXNlcm5hbWUiOiJhZG1p + biIsImZpcnN0X25hbWUiOiIiLCJsYXN0X25hbWUiOiIifSwibW9kaWZpZWRf + YnkiOnsiaWQiOjEsInVzZXJuYW1lIjoiYWRtaW4iLCJmaXJzdF9uYW1lIjoi + IiwibGFzdF9uYW1lIjoiIn0sIm9iamVjdF9yb2xlcyI6eyJhZG1pbl9yb2xl + Ijp7ImRlc2NyaXB0aW9uIjoiQ2FuIG1hbmFnZSBhbGwgYXNwZWN0cyBvZiB0 + aGUgam9iIHRlbXBsYXRlIiwiaWQiOjIwODEsIm5hbWUiOiJBZG1pbiJ9LCJl + eGVjdXRlX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJNYXkgcnVuIHRoZSBqb2Ig + dGVtcGxhdGUiLCJpZCI6MjA4MywibmFtZSI6IkV4ZWN1dGUifSwicmVhZF9y + b2xlIjp7ImRlc2NyaXB0aW9uIjoiTWF5IHZpZXcgc2V0dGluZ3MgZm9yIHRo + ZSBqb2IgdGVtcGxhdGUiLCJpZCI6MjA4MiwibmFtZSI6IlJlYWQifX0sImxh + YmVscyI6eyJjb3VudCI6MCwicmVzdWx0cyI6W119LCJjYW5fY29weSI6dHJ1 + ZSwiY2FuX2VkaXQiOnRydWUsInJlY2VudF9qb2JzIjpbXX0sImNyZWF0ZWQi + OiIyMDE3LTA2LTE1VDEzOjM3OjU4LjMyN1oiLCJtb2RpZmllZCI6IjIwMTct + MDYtMTVUMTM6Mzc6NTguMzI3WiIsIm5hbWUiOiJtaXFfYW5zaWJsZV90ZXN0 + X3Byb3Zpc2lvbiIsImRlc2NyaXB0aW9uIjoiYW5zaWJsZV90ZXN0Iiwiam9i + X3R5cGUiOiJydW4iLCJpbnZlbnRvcnkiOjM4LCJwcm9qZWN0IjoxNTUsInBs + YXlib29rIjoiY2hlY2tfdmVyc2lvbi55YW1sIiwiY3JlZGVudGlhbCI6NTgs + ImNsb3VkX2NyZWRlbnRpYWwiOm51bGwsIm5ldHdvcmtfY3JlZGVudGlhbCI6 + bnVsbCwiZm9ya3MiOjAsImxpbWl0IjoiIiwidmVyYm9zaXR5IjowLCJleHRy + YV92YXJzIjoie30iLCJqb2JfdGFncyI6IiIsImZvcmNlX2hhbmRsZXJzIjpm + YWxzZSwic2tpcF90YWdzIjoiIiwic3RhcnRfYXRfdGFzayI6IiIsImxhc3Rf + am9iX3J1biI6bnVsbCwibGFzdF9qb2JfZmFpbGVkIjpmYWxzZSwiaGFzX3Nj + aGVkdWxlcyI6ZmFsc2UsIm5leHRfam9iX3J1biI6bnVsbCwic3RhdHVzIjoi + bmV2ZXIgdXBkYXRlZCIsImhvc3RfY29uZmlnX2tleSI6IiIsImFza192YXJp + YWJsZXNfb25fbGF1bmNoIjp0cnVlLCJhc2tfbGltaXRfb25fbGF1bmNoIjp0 + cnVlLCJhc2tfdGFnc19vbl9sYXVuY2giOmZhbHNlLCJhc2tfam9iX3R5cGVf + b25fbGF1bmNoIjpmYWxzZSwiYXNrX2ludmVudG9yeV9vbl9sYXVuY2giOnRy + dWUsImFza19jcmVkZW50aWFsX29uX2xhdW5jaCI6dHJ1ZSwic3VydmV5X2Vu + YWJsZWQiOmZhbHNlLCJiZWNvbWVfZW5hYmxlZCI6ZmFsc2UsImFsbG93X3Np + bXVsdGFuZW91cyI6ZmFsc2V9LHsiaWQiOjQ4MCwidHlwZSI6ImpvYl90ZW1w + bGF0ZSIsInVybCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy80ODAvIiwicmVs + YXRlZCI6eyJjcmVhdGVkX2J5IjoiL2FwaS92MS91c2Vycy8xLyIsImxhYmVs + cyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy80ODAvbGFiZWxzLyIsImludmVu + dG9yeSI6Ii9hcGkvdjEvaW52ZW50b3JpZXMvMzgvIiwicHJvamVjdCI6Ii9h + cGkvdjEvcHJvamVjdHMvMTU1LyIsImNyZWRlbnRpYWwiOiIvYXBpL3YxL2Ny + ZWRlbnRpYWxzLzUyLyIsImNsb3VkX2NyZWRlbnRpYWwiOiIvYXBpL3YxL2Ny + ZWRlbnRpYWxzLzE2LyIsImxhc3Rfam9iIjoiL2FwaS92MS9qb2JzLzc5OS8i + LCJub3RpZmljYXRpb25fdGVtcGxhdGVzX2Vycm9yIjoiL2FwaS92MS9qb2Jf + dGVtcGxhdGVzLzQ4MC9ub3RpZmljYXRpb25fdGVtcGxhdGVzX2Vycm9yLyIs + Im5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfc3VjY2VzcyI6Ii9hcGkvdjEvam9i + X3RlbXBsYXRlcy80ODAvbm90aWZpY2F0aW9uX3RlbXBsYXRlc19zdWNjZXNz + LyIsImpvYnMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvNDgwL2pvYnMvIiwi + b2JqZWN0X3JvbGVzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzQ4MC9vYmpl + Y3Rfcm9sZXMvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRlc19hbnkiOiIvYXBp + L3YxL2pvYl90ZW1wbGF0ZXMvNDgwL25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNf + YW55LyIsImFjY2Vzc19saXN0IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzQ4 + MC9hY2Nlc3NfbGlzdC8iLCJsYXVuY2giOiIvYXBpL3YxL2pvYl90ZW1wbGF0 + ZXMvNDgwL2xhdW5jaC8iLCJzY2hlZHVsZXMiOiIvYXBpL3YxL2pvYl90ZW1w + bGF0ZXMvNDgwL3NjaGVkdWxlcy8iLCJhY3Rpdml0eV9zdHJlYW0iOiIvYXBp + L3YxL2pvYl90ZW1wbGF0ZXMvNDgwL2FjdGl2aXR5X3N0cmVhbS8iLCJzdXJ2 + ZXlfc3BlYyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy80ODAvc3VydmV5X3Nw + ZWMvIn0sInN1bW1hcnlfZmllbGRzIjp7Imxhc3Rfam9iIjp7ImlkIjo3OTks + Im5hbWUiOiJtaXFfYXByaWwyOF9ub19wbGF5Ym9va195ZXNfcmVzb3VyY2Uy + X3Byb3Zpc2lvbiIsImRlc2NyaXB0aW9uIjoiYXByaWwyOF9ub19wbGF5Ym9v + a195ZXNfcmVzb3VyY2UyIiwiZmluaXNoZWQiOiIyMDE3LTA1LTAxVDE5OjA1 + OjE4LjMzOVoiLCJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiZmFpbGVkIjpmYWxz + ZX0sImxhc3RfdXBkYXRlIjp7ImlkIjo3OTksIm5hbWUiOiJtaXFfYXByaWwy + OF9ub19wbGF5Ym9va195ZXNfcmVzb3VyY2UyX3Byb3Zpc2lvbiIsImRlc2Ny + aXB0aW9uIjoiYXByaWwyOF9ub19wbGF5Ym9va195ZXNfcmVzb3VyY2UyIiwi + c3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZhaWxlZCI6ZmFsc2V9LCJpbnZlbnRv + cnkiOnsiaWQiOjM4LCJuYW1lIjoiTWFuYWdlSVEgRGVmYXVsdCBJbnZlbnRv + cnkiLCJkZXNjcmlwdGlvbiI6IiIsImhhc19hY3RpdmVfZmFpbHVyZXMiOmZh + bHNlLCJ0b3RhbF9ob3N0cyI6MSwiaG9zdHNfd2l0aF9hY3RpdmVfZmFpbHVy + ZXMiOjAsInRvdGFsX2dyb3VwcyI6MCwiZ3JvdXBzX3dpdGhfYWN0aXZlX2Zh + aWx1cmVzIjowLCJoYXNfaW52ZW50b3J5X3NvdXJjZXMiOmZhbHNlLCJ0b3Rh + bF9pbnZlbnRvcnlfc291cmNlcyI6MCwiaW52ZW50b3J5X3NvdXJjZXNfd2l0 + aF9mYWlsdXJlcyI6MH0sImNsb3VkX2NyZWRlbnRpYWwiOnsiaWQiOjE2LCJu + YW1lIjoibHVjeSBkZXYwMCIsImRlc2NyaXB0aW9uIjoiIiwia2luZCI6InZt + d2FyZSIsImNsb3VkIjp0cnVlfSwiY3JlZGVudGlhbCI6eyJpZCI6NTIsIm5h + bWUiOiJsdWN5X21hY2hpbmUiLCJkZXNjcmlwdGlvbiI6IiIsImtpbmQiOiJz + c2giLCJjbG91ZCI6ZmFsc2V9LCJwcm9qZWN0Ijp7ImlkIjoxNTUsIm5hbWUi + OiJsdWN5IiwiZGVzY3JpcHRpb24iOiJ0ZXN0IHBsYXlib29rIiwic3RhdHVz + Ijoic3VjY2Vzc2Z1bCJ9LCJjcmVhdGVkX2J5Ijp7ImlkIjoxLCJ1c2VybmFt + ZSI6ImFkbWluIiwiZmlyc3RfbmFtZSI6IiIsImxhc3RfbmFtZSI6IiJ9LCJv + YmplY3Rfcm9sZXMiOnsiYWRtaW5fcm9sZSI6eyJkZXNjcmlwdGlvbiI6IkNh + biBtYW5hZ2UgYWxsIGFzcGVjdHMgb2YgdGhlIGpvYiB0ZW1wbGF0ZSIsImlk + IjoxOTM3LCJuYW1lIjoiQWRtaW4ifSwiZXhlY3V0ZV9yb2xlIjp7ImRlc2Ny + aXB0aW9uIjoiTWF5IHJ1biB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjE5Mzks + Im5hbWUiOiJFeGVjdXRlIn0sInJlYWRfcm9sZSI6eyJkZXNjcmlwdGlvbiI6 + Ik1heSB2aWV3IHNldHRpbmdzIGZvciB0aGUgam9iIHRlbXBsYXRlIiwiaWQi + OjE5MzgsIm5hbWUiOiJSZWFkIn19LCJsYWJlbHMiOnsiY291bnQiOjAsInJl + c3VsdHMiOltdfSwiY2FuX2NvcHkiOnRydWUsImNhbl9lZGl0Ijp0cnVlLCJy + ZWNlbnRfam9icyI6W3sic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZpbmlzaGVk + IjoiMjAxNy0wNS0wMVQxOTowNToxOC4zMzlaIiwiaWQiOjc5OX0seyJzdGF0 + dXMiOiJzdWNjZXNzZnVsIiwiZmluaXNoZWQiOiIyMDE3LTA1LTAxVDE4OjQz + OjM2LjA2NFoiLCJpZCI6Nzk3fSx7InN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJm + aW5pc2hlZCI6IjIwMTctMDUtMDFUMTc6NDA6MDcuNDI5WiIsImlkIjo3OTR9 + LHsic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZpbmlzaGVkIjoiMjAxNy0wNS0w + MVQxNzoyOTo0MC44MzVaIiwiaWQiOjc5Mn0seyJzdGF0dXMiOiJzdWNjZXNz + ZnVsIiwiZmluaXNoZWQiOiIyMDE3LTA1LTAxVDE3OjA4OjU5LjY0MVoiLCJp + ZCI6NzkwfSx7InN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6IjIw + MTctMDUtMDFUMTY6NTY6MjEuNjg0WiIsImlkIjo3ODh9LHsic3RhdHVzIjoi + c3VjY2Vzc2Z1bCIsImZpbmlzaGVkIjoiMjAxNy0wNS0wMVQxNTo0ODoxNS4x + NzRaIiwiaWQiOjc4Nn0seyJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiZmluaXNo + ZWQiOiIyMDE3LTA0LTI4VDE4OjQ5OjU4LjM2MVoiLCJpZCI6NzgzfSx7InN0 + YXR1cyI6InN1Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6IjIwMTctMDQtMjhUMTg6 + MTc6MjUuMDkzWiIsImlkIjo3ODF9XX0sImNyZWF0ZWQiOiIyMDE3LTA0LTI4 + VDE4OjEwOjM3LjQ3MVoiLCJtb2RpZmllZCI6IjIwMTctMDUtMDFUMTk6MDQ6 + NTIuNDU5WiIsIm5hbWUiOiJtaXFfYXByaWwyOF9ub19wbGF5Ym9va195ZXNf + cmVzb3VyY2UyX3Byb3Zpc2lvbiIsImRlc2NyaXB0aW9uIjoiYXByaWwyOF9u + b19wbGF5Ym9va195ZXNfcmVzb3VyY2UyIiwiam9iX3R5cGUiOiJydW4iLCJp + bnZlbnRvcnkiOjM4LCJwcm9qZWN0IjoxNTUsInBsYXlib29rIjoiY2hlY2tf + dmVyc2lvbi55YW1sIiwiY3JlZGVudGlhbCI6NTIsImNsb3VkX2NyZWRlbnRp + YWwiOjE2LCJuZXR3b3JrX2NyZWRlbnRpYWwiOm51bGwsImZvcmtzIjowLCJs + aW1pdCI6IiIsInZlcmJvc2l0eSI6MCwiZXh0cmFfdmFycyI6IntcIm51bWJl + clwiOlwiMVwifSIsImpvYl90YWdzIjoiIiwiZm9yY2VfaGFuZGxlcnMiOmZh + bHNlLCJza2lwX3RhZ3MiOiIiLCJzdGFydF9hdF90YXNrIjoiIiwibGFzdF9q + b2JfcnVuIjoiMjAxNy0wNS0wMVQxOTowNToxOC4zMzk5MjZaIiwibGFzdF9q + b2JfZmFpbGVkIjpmYWxzZSwiaGFzX3NjaGVkdWxlcyI6ZmFsc2UsIm5leHRf + am9iX3J1biI6bnVsbCwic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImhvc3RfY29u + ZmlnX2tleSI6IiIsImFza192YXJpYWJsZXNfb25fbGF1bmNoIjp0cnVlLCJh + c2tfbGltaXRfb25fbGF1bmNoIjp0cnVlLCJhc2tfdGFnc19vbl9sYXVuY2gi + OmZhbHNlLCJhc2tfam9iX3R5cGVfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2lu + dmVudG9yeV9vbl9sYXVuY2giOnRydWUsImFza19jcmVkZW50aWFsX29uX2xh + dW5jaCI6dHJ1ZSwic3VydmV5X2VuYWJsZWQiOmZhbHNlLCJiZWNvbWVfZW5h + YmxlZCI6ZmFsc2UsImFsbG93X3NpbXVsdGFuZW91cyI6ZmFsc2V9LHsiaWQi + OjQ3OSwidHlwZSI6ImpvYl90ZW1wbGF0ZSIsInVybCI6Ii9hcGkvdjEvam9i + X3RlbXBsYXRlcy80NzkvIiwicmVsYXRlZCI6eyJjcmVhdGVkX2J5IjoiL2Fw + aS92MS91c2Vycy8xLyIsImxhYmVscyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRl + cy80NzkvbGFiZWxzLyIsImludmVudG9yeSI6Ii9hcGkvdjEvaW52ZW50b3Jp + ZXMvMzgvIiwicHJvamVjdCI6Ii9hcGkvdjEvcHJvamVjdHMvMTU1LyIsImNy + ZWRlbnRpYWwiOiIvYXBpL3YxL2NyZWRlbnRpYWxzLzUyLyIsImxhc3Rfam9i + IjoiL2FwaS92MS9qb2JzLzc3OS8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVz + X2Vycm9yIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzQ3OS9ub3RpZmljYXRp + b25fdGVtcGxhdGVzX2Vycm9yLyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNf + c3VjY2VzcyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy80Nzkvbm90aWZpY2F0 + aW9uX3RlbXBsYXRlc19zdWNjZXNzLyIsImpvYnMiOiIvYXBpL3YxL2pvYl90 + ZW1wbGF0ZXMvNDc5L2pvYnMvIiwib2JqZWN0X3JvbGVzIjoiL2FwaS92MS9q + b2JfdGVtcGxhdGVzLzQ3OS9vYmplY3Rfcm9sZXMvIiwibm90aWZpY2F0aW9u + X3RlbXBsYXRlc19hbnkiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvNDc5L25v + dGlmaWNhdGlvbl90ZW1wbGF0ZXNfYW55LyIsImFjY2Vzc19saXN0IjoiL2Fw + aS92MS9qb2JfdGVtcGxhdGVzLzQ3OS9hY2Nlc3NfbGlzdC8iLCJsYXVuY2gi + OiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvNDc5L2xhdW5jaC8iLCJzY2hlZHVs + ZXMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvNDc5L3NjaGVkdWxlcy8iLCJh + Y3Rpdml0eV9zdHJlYW0iOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvNDc5L2Fj + dGl2aXR5X3N0cmVhbS8iLCJzdXJ2ZXlfc3BlYyI6Ii9hcGkvdjEvam9iX3Rl + bXBsYXRlcy80Nzkvc3VydmV5X3NwZWMvIn0sInN1bW1hcnlfZmllbGRzIjp7 + Imxhc3Rfam9iIjp7ImlkIjo3NzksIm5hbWUiOiJtaXFfYXByaWwyOF9ub19w + bGF5Ym9va195ZXNfcmVzb3VyY2VfcHJvdmlzaW9uIiwiZGVzY3JpcHRpb24i + OiJhcHJpbDI4X25vX3BsYXlib29rX3llc19yZXNvdXJjZSIsImZpbmlzaGVk + IjoiMjAxNy0wNC0yOFQxODowNzoxMC4yMjNaIiwic3RhdHVzIjoic3VjY2Vz + c2Z1bCIsImZhaWxlZCI6ZmFsc2V9LCJsYXN0X3VwZGF0ZSI6eyJpZCI6Nzc5 + LCJuYW1lIjoibWlxX2FwcmlsMjhfbm9fcGxheWJvb2tfeWVzX3Jlc291cmNl + X3Byb3Zpc2lvbiIsImRlc2NyaXB0aW9uIjoiYXByaWwyOF9ub19wbGF5Ym9v + a195ZXNfcmVzb3VyY2UiLCJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiZmFpbGVk + IjpmYWxzZX0sImludmVudG9yeSI6eyJpZCI6MzgsIm5hbWUiOiJNYW5hZ2VJ + USBEZWZhdWx0IEludmVudG9yeSIsImRlc2NyaXB0aW9uIjoiIiwiaGFzX2Fj + dGl2ZV9mYWlsdXJlcyI6ZmFsc2UsInRvdGFsX2hvc3RzIjoxLCJob3N0c193 + aXRoX2FjdGl2ZV9mYWlsdXJlcyI6MCwidG90YWxfZ3JvdXBzIjowLCJncm91 + cHNfd2l0aF9hY3RpdmVfZmFpbHVyZXMiOjAsImhhc19pbnZlbnRvcnlfc291 + cmNlcyI6ZmFsc2UsInRvdGFsX2ludmVudG9yeV9zb3VyY2VzIjowLCJpbnZl + bnRvcnlfc291cmNlc193aXRoX2ZhaWx1cmVzIjowfSwiY3JlZGVudGlhbCI6 + eyJpZCI6NTIsIm5hbWUiOiJsdWN5X21hY2hpbmUiLCJkZXNjcmlwdGlvbiI6 + IiIsImtpbmQiOiJzc2giLCJjbG91ZCI6ZmFsc2V9LCJwcm9qZWN0Ijp7Imlk + IjoxNTUsIm5hbWUiOiJsdWN5IiwiZGVzY3JpcHRpb24iOiJ0ZXN0IHBsYXli + b29rIiwic3RhdHVzIjoic3VjY2Vzc2Z1bCJ9LCJjcmVhdGVkX2J5Ijp7Imlk + IjoxLCJ1c2VybmFtZSI6ImFkbWluIiwiZmlyc3RfbmFtZSI6IiIsImxhc3Rf + bmFtZSI6IiJ9LCJvYmplY3Rfcm9sZXMiOnsiYWRtaW5fcm9sZSI6eyJkZXNj + cmlwdGlvbiI6IkNhbiBtYW5hZ2UgYWxsIGFzcGVjdHMgb2YgdGhlIGpvYiB0 + ZW1wbGF0ZSIsImlkIjoxOTE5LCJuYW1lIjoiQWRtaW4ifSwiZXhlY3V0ZV9y + b2xlIjp7ImRlc2NyaXB0aW9uIjoiTWF5IHJ1biB0aGUgam9iIHRlbXBsYXRl + IiwiaWQiOjE5MjEsIm5hbWUiOiJFeGVjdXRlIn0sInJlYWRfcm9sZSI6eyJk + ZXNjcmlwdGlvbiI6Ik1heSB2aWV3IHNldHRpbmdzIGZvciB0aGUgam9iIHRl + bXBsYXRlIiwiaWQiOjE5MjAsIm5hbWUiOiJSZWFkIn19LCJsYWJlbHMiOnsi + Y291bnQiOjAsInJlc3VsdHMiOltdfSwiY2FuX2NvcHkiOnRydWUsImNhbl9l + ZGl0Ijp0cnVlLCJyZWNlbnRfam9icyI6W3sic3RhdHVzIjoic3VjY2Vzc2Z1 + bCIsImZpbmlzaGVkIjoiMjAxNy0wNC0yOFQxODowNzoxMC4yMjNaIiwiaWQi + Ojc3OX0seyJzdGF0dXMiOiJmYWlsZWQiLCJmaW5pc2hlZCI6IjIwMTctMDQt + MjhUMTg6MDM6NDYuMzExWiIsImlkIjo3Nzd9LHsic3RhdHVzIjoiZmFpbGVk + IiwiZmluaXNoZWQiOiIyMDE3LTA0LTI4VDE3OjU0OjE1LjU0NFoiLCJpZCI6 + Nzc1fV19LCJjcmVhdGVkIjoiMjAxNy0wNC0yOFQxNzo0OTowMi4yMjdaIiwi + bW9kaWZpZWQiOiIyMDE3LTA0LTI4VDE4OjA2OjQzLjMwNloiLCJuYW1lIjoi + bWlxX2FwcmlsMjhfbm9fcGxheWJvb2tfeWVzX3Jlc291cmNlX3Byb3Zpc2lv + biIsImRlc2NyaXB0aW9uIjoiYXByaWwyOF9ub19wbGF5Ym9va195ZXNfcmVz + b3VyY2UiLCJqb2JfdHlwZSI6InJ1biIsImludmVudG9yeSI6MzgsInByb2pl + Y3QiOjE1NSwicGxheWJvb2siOiJjaGVja192ZXJzaW9uLnlhbWwiLCJjcmVk + ZW50aWFsIjo1MiwiY2xvdWRfY3JlZGVudGlhbCI6bnVsbCwibmV0d29ya19j + cmVkZW50aWFsIjpudWxsLCJmb3JrcyI6MCwibGltaXQiOiIiLCJ2ZXJib3Np + dHkiOjAsImV4dHJhX3ZhcnMiOiJ7XCJudW1iZXJcIjpcIjFcIn0iLCJqb2Jf + dGFncyI6IiIsImZvcmNlX2hhbmRsZXJzIjpmYWxzZSwic2tpcF90YWdzIjoi + Iiwic3RhcnRfYXRfdGFzayI6IiIsImxhc3Rfam9iX3J1biI6IjIwMTctMDQt + MjhUMTg6MDc6MTAuMjIzNjkwWiIsImxhc3Rfam9iX2ZhaWxlZCI6ZmFsc2Us + Imhhc19zY2hlZHVsZXMiOmZhbHNlLCJuZXh0X2pvYl9ydW4iOm51bGwsInN0 + YXR1cyI6InN1Y2Nlc3NmdWwiLCJob3N0X2NvbmZpZ19rZXkiOiIiLCJhc2tf + dmFyaWFibGVzX29uX2xhdW5jaCI6dHJ1ZSwiYXNrX2xpbWl0X29uX2xhdW5j + aCI6dHJ1ZSwiYXNrX3RhZ3Nfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2pvYl90 + eXBlX29uX2xhdW5jaCI6ZmFsc2UsImFza19pbnZlbnRvcnlfb25fbGF1bmNo + Ijp0cnVlLCJhc2tfY3JlZGVudGlhbF9vbl9sYXVuY2giOnRydWUsInN1cnZl + eV9lbmFibGVkIjpmYWxzZSwiYmVjb21lX2VuYWJsZWQiOmZhbHNlLCJhbGxv + d19zaW11bHRhbmVvdXMiOmZhbHNlfSx7ImlkIjozMzMsInR5cGUiOiJqb2Jf + dGVtcGxhdGUiLCJ1cmwiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzMzLyIs + InJlbGF0ZWQiOnsiY3JlYXRlZF9ieSI6Ii9hcGkvdjEvdXNlcnMvMS8iLCJs + YWJlbHMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzMzL2xhYmVscy8iLCJp + bnZlbnRvcnkiOiIvYXBpL3YxL2ludmVudG9yaWVzLzEvIiwicHJvamVjdCI6 + Ii9hcGkvdjEvcHJvamVjdHMvMTU1LyIsImNsb3VkX2NyZWRlbnRpYWwiOiIv + YXBpL3YxL2NyZWRlbnRpYWxzLzE2LyIsImxhc3Rfam9iIjoiL2FwaS92MS9q + b2JzLzQ2OS8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVzX2Vycm9yIjoiL2Fw + aS92MS9qb2JfdGVtcGxhdGVzLzMzMy9ub3RpZmljYXRpb25fdGVtcGxhdGVz + X2Vycm9yLyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfc3VjY2VzcyI6Ii9h + cGkvdjEvam9iX3RlbXBsYXRlcy8zMzMvbm90aWZpY2F0aW9uX3RlbXBsYXRl + c19zdWNjZXNzLyIsImpvYnMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzMz + L2pvYnMvIiwib2JqZWN0X3JvbGVzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVz + LzMzMy9vYmplY3Rfcm9sZXMvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRlc19h + bnkiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzMzL25vdGlmaWNhdGlvbl90 + ZW1wbGF0ZXNfYW55LyIsImFjY2Vzc19saXN0IjoiL2FwaS92MS9qb2JfdGVt + cGxhdGVzLzMzMy9hY2Nlc3NfbGlzdC8iLCJsYXVuY2giOiIvYXBpL3YxL2pv + Yl90ZW1wbGF0ZXMvMzMzL2xhdW5jaC8iLCJzY2hlZHVsZXMiOiIvYXBpL3Yx + L2pvYl90ZW1wbGF0ZXMvMzMzL3NjaGVkdWxlcy8iLCJhY3Rpdml0eV9zdHJl + YW0iOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzMzL2FjdGl2aXR5X3N0cmVh + bS8iLCJzdXJ2ZXlfc3BlYyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8zMzMv + c3VydmV5X3NwZWMvIn0sInN1bW1hcnlfZmllbGRzIjp7Imxhc3Rfam9iIjp7 + ImlkIjo0NjksIm5hbWUiOiJtaXFfYXBfdGluYV90ZXN0MV9wcm92aXNpb24i + LCJkZXNjcmlwdGlvbiI6IjEwLjguOTkuMjA3IGFuZCAxMC44Ljk5LjI0OCIs + ImZpbmlzaGVkIjoiMjAxNy0wMy0xNlQxNzoxOTo1OC45NDRaIiwic3RhdHVz + IjoiZmFpbGVkIiwiZmFpbGVkIjp0cnVlfSwibGFzdF91cGRhdGUiOnsiaWQi + OjQ2OSwibmFtZSI6Im1pcV9hcF90aW5hX3Rlc3QxX3Byb3Zpc2lvbiIsImRl + c2NyaXB0aW9uIjoiMTAuOC45OS4yMDcgYW5kIDEwLjguOTkuMjQ4Iiwic3Rh + dHVzIjoiZmFpbGVkIiwiZmFpbGVkIjp0cnVlfSwiaW52ZW50b3J5Ijp7Imlk + IjoxLCJuYW1lIjoiRGVtbyBJbnZlbnRvcnkiLCJkZXNjcmlwdGlvbiI6IiIs + Imhhc19hY3RpdmVfZmFpbHVyZXMiOmZhbHNlLCJ0b3RhbF9ob3N0cyI6Miwi + aG9zdHNfd2l0aF9hY3RpdmVfZmFpbHVyZXMiOjAsInRvdGFsX2dyb3VwcyI6 + MCwiZ3JvdXBzX3dpdGhfYWN0aXZlX2ZhaWx1cmVzIjowLCJoYXNfaW52ZW50 + b3J5X3NvdXJjZXMiOmZhbHNlLCJ0b3RhbF9pbnZlbnRvcnlfc291cmNlcyI6 + MCwiaW52ZW50b3J5X3NvdXJjZXNfd2l0aF9mYWlsdXJlcyI6MH0sImNsb3Vk + X2NyZWRlbnRpYWwiOnsiaWQiOjE2LCJuYW1lIjoibHVjeSBkZXYwMCIsImRl + c2NyaXB0aW9uIjoiIiwia2luZCI6InZtd2FyZSIsImNsb3VkIjp0cnVlfSwi + cHJvamVjdCI6eyJpZCI6MTU1LCJuYW1lIjoibHVjeSIsImRlc2NyaXB0aW9u + IjoidGVzdCBwbGF5Ym9vayIsInN0YXR1cyI6InN1Y2Nlc3NmdWwifSwiY3Jl + YXRlZF9ieSI6eyJpZCI6MSwidXNlcm5hbWUiOiJhZG1pbiIsImZpcnN0X25h + bWUiOiIiLCJsYXN0X25hbWUiOiIifSwib2JqZWN0X3JvbGVzIjp7ImFkbWlu + X3JvbGUiOnsiZGVzY3JpcHRpb24iOiJDYW4gbWFuYWdlIGFsbCBhc3BlY3Rz + IG9mIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6MTA1MCwibmFtZSI6IkFkbWlu + In0sImV4ZWN1dGVfcm9sZSI6eyJkZXNjcmlwdGlvbiI6Ik1heSBydW4gdGhl + IGpvYiB0ZW1wbGF0ZSIsImlkIjoxMDUyLCJuYW1lIjoiRXhlY3V0ZSJ9LCJy + ZWFkX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJNYXkgdmlldyBzZXR0aW5ncyBm + b3IgdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjoxMDUxLCJuYW1lIjoiUmVhZCJ9 + fSwibGFiZWxzIjp7ImNvdW50IjowLCJyZXN1bHRzIjpbXX0sImNhbl9jb3B5 + Ijp0cnVlLCJjYW5fZWRpdCI6dHJ1ZSwicmVjZW50X2pvYnMiOlt7InN0YXR1 + cyI6ImZhaWxlZCIsImZpbmlzaGVkIjoiMjAxNy0wMy0xNlQxNzoxOTo1OC45 + NDRaIiwiaWQiOjQ2OX0seyJzdGF0dXMiOiJmYWlsZWQiLCJmaW5pc2hlZCI6 + IjIwMTctMDMtMTVUMjM6MDA6MzkuMzA4WiIsImlkIjo0NjV9XX0sImNyZWF0 + ZWQiOiIyMDE3LTAzLTE1VDIyOjU1OjE5LjQ3NloiLCJtb2RpZmllZCI6IjIw + MTctMDMtMTZUMTc6MTk6MjguNTk2WiIsIm5hbWUiOiJtaXFfYXBfdGluYV90 + ZXN0MV9wcm92aXNpb24iLCJkZXNjcmlwdGlvbiI6IjEwLjguOTkuMjA3IGFu + ZCAxMC44Ljk5LjI0OCIsImpvYl90eXBlIjoicnVuIiwiaW52ZW50b3J5Ijox + LCJwcm9qZWN0IjoxNTUsInBsYXlib29rIjoiY2hlY2tfdmVyc2lvbi55YW1s + IiwiY3JlZGVudGlhbCI6bnVsbCwiY2xvdWRfY3JlZGVudGlhbCI6MTYsIm5l + dHdvcmtfY3JlZGVudGlhbCI6bnVsbCwiZm9ya3MiOjAsImxpbWl0IjoiIiwi + dmVyYm9zaXR5IjowLCJleHRyYV92YXJzIjoie30iLCJqb2JfdGFncyI6IiIs + ImZvcmNlX2hhbmRsZXJzIjpmYWxzZSwic2tpcF90YWdzIjoiIiwic3RhcnRf + YXRfdGFzayI6IiIsImxhc3Rfam9iX3J1biI6IjIwMTctMDMtMTZUMTc6MTk6 + NTguOTQ0NzgwWiIsImxhc3Rfam9iX2ZhaWxlZCI6dHJ1ZSwiaGFzX3NjaGVk + dWxlcyI6ZmFsc2UsIm5leHRfam9iX3J1biI6bnVsbCwic3RhdHVzIjoiZmFp + bGVkIiwiaG9zdF9jb25maWdfa2V5IjoiIiwiYXNrX3ZhcmlhYmxlc19vbl9s + YXVuY2giOnRydWUsImFza19saW1pdF9vbl9sYXVuY2giOnRydWUsImFza190 + YWdzX29uX2xhdW5jaCI6ZmFsc2UsImFza19qb2JfdHlwZV9vbl9sYXVuY2gi + OmZhbHNlLCJhc2tfaW52ZW50b3J5X29uX2xhdW5jaCI6dHJ1ZSwiYXNrX2Ny + ZWRlbnRpYWxfb25fbGF1bmNoIjp0cnVlLCJzdXJ2ZXlfZW5hYmxlZCI6ZmFs + c2UsImJlY29tZV9lbmFibGVkIjpmYWxzZSwiYWxsb3dfc2ltdWx0YW5lb3Vz + IjpmYWxzZX0seyJpZCI6MzY4LCJ0eXBlIjoiam9iX3RlbXBsYXRlIiwidXJs + IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzM2OC8iLCJyZWxhdGVkIjp7ImNy + ZWF0ZWRfYnkiOiIvYXBpL3YxL3VzZXJzLzEvIiwibGFiZWxzIjoiL2FwaS92 + MS9qb2JfdGVtcGxhdGVzLzM2OC9sYWJlbHMvIiwiaW52ZW50b3J5IjoiL2Fw + aS92MS9pbnZlbnRvcmllcy8xLyIsInByb2plY3QiOiIvYXBpL3YxL3Byb2pl + Y3RzLzE1NS8iLCJjbG91ZF9jcmVkZW50aWFsIjoiL2FwaS92MS9jcmVkZW50 + aWFscy8xNi8iLCJuZXR3b3JrX2NyZWRlbnRpYWwiOiIvYXBpL3YxL2NyZWRl + bnRpYWxzLzUvIiwibGFzdF9qb2IiOiIvYXBpL3YxL2pvYnMvNDgxLyIsIm5v + dGlmaWNhdGlvbl90ZW1wbGF0ZXNfZXJyb3IiOiIvYXBpL3YxL2pvYl90ZW1w + bGF0ZXMvMzY4L25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfZXJyb3IvIiwibm90 + aWZpY2F0aW9uX3RlbXBsYXRlc19zdWNjZXNzIjoiL2FwaS92MS9qb2JfdGVt + cGxhdGVzLzM2OC9ub3RpZmljYXRpb25fdGVtcGxhdGVzX3N1Y2Nlc3MvIiwi + am9icyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8zNjgvam9icy8iLCJvYmpl + Y3Rfcm9sZXMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzY4L29iamVjdF9y + b2xlcy8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVzX2FueSI6Ii9hcGkvdjEv + am9iX3RlbXBsYXRlcy8zNjgvbm90aWZpY2F0aW9uX3RlbXBsYXRlc19hbnkv + IiwiYWNjZXNzX2xpc3QiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzY4L2Fj + Y2Vzc19saXN0LyIsImxhdW5jaCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8z + NjgvbGF1bmNoLyIsInNjaGVkdWxlcyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRl + cy8zNjgvc2NoZWR1bGVzLyIsImFjdGl2aXR5X3N0cmVhbSI6Ii9hcGkvdjEv + am9iX3RlbXBsYXRlcy8zNjgvYWN0aXZpdHlfc3RyZWFtLyIsInN1cnZleV9z + cGVjIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzM2OC9zdXJ2ZXlfc3BlYy8i + fSwic3VtbWFyeV9maWVsZHMiOnsibmV0d29ya19jcmVkZW50aWFsIjp7Imlk + Ijo1LCJuYW1lIjoiRGVtbyBDcmVkcyAyIiwiZGVzY3JpcHRpb24iOiJ0ZXN0 + Iiwia2luZCI6Im5ldCJ9LCJsYXN0X2pvYiI6eyJpZCI6NDgxLCJuYW1lIjoi + bWlxX2FwX3RpbmFfdGVzdF9ucGJfbnJlc19wcm92aXNpb24iLCJkZXNjcmlw + dGlvbiI6ImFwX3RpbmFfdGVzdF9ucGJfbnJlcyIsImZpbmlzaGVkIjoiMjAx + Ny0wMy0xN1QyMTo0OTozMC44NTNaIiwic3RhdHVzIjoic3VjY2Vzc2Z1bCIs + ImZhaWxlZCI6ZmFsc2V9LCJsYXN0X3VwZGF0ZSI6eyJpZCI6NDgxLCJuYW1l + IjoibWlxX2FwX3RpbmFfdGVzdF9ucGJfbnJlc19wcm92aXNpb24iLCJkZXNj + cmlwdGlvbiI6ImFwX3RpbmFfdGVzdF9ucGJfbnJlcyIsInN0YXR1cyI6InN1 + Y2Nlc3NmdWwiLCJmYWlsZWQiOmZhbHNlfSwiaW52ZW50b3J5Ijp7ImlkIjox + LCJuYW1lIjoiRGVtbyBJbnZlbnRvcnkiLCJkZXNjcmlwdGlvbiI6IiIsImhh + c19hY3RpdmVfZmFpbHVyZXMiOmZhbHNlLCJ0b3RhbF9ob3N0cyI6MiwiaG9z + dHNfd2l0aF9hY3RpdmVfZmFpbHVyZXMiOjAsInRvdGFsX2dyb3VwcyI6MCwi + Z3JvdXBzX3dpdGhfYWN0aXZlX2ZhaWx1cmVzIjowLCJoYXNfaW52ZW50b3J5 + X3NvdXJjZXMiOmZhbHNlLCJ0b3RhbF9pbnZlbnRvcnlfc291cmNlcyI6MCwi + aW52ZW50b3J5X3NvdXJjZXNfd2l0aF9mYWlsdXJlcyI6MH0sImNsb3VkX2Ny + ZWRlbnRpYWwiOnsiaWQiOjE2LCJuYW1lIjoibHVjeSBkZXYwMCIsImRlc2Ny + aXB0aW9uIjoiIiwia2luZCI6InZtd2FyZSIsImNsb3VkIjp0cnVlfSwicHJv + amVjdCI6eyJpZCI6MTU1LCJuYW1lIjoibHVjeSIsImRlc2NyaXB0aW9uIjoi + dGVzdCBwbGF5Ym9vayIsInN0YXR1cyI6InN1Y2Nlc3NmdWwifSwiY3JlYXRl + ZF9ieSI6eyJpZCI6MSwidXNlcm5hbWUiOiJhZG1pbiIsImZpcnN0X25hbWUi + OiIiLCJsYXN0X25hbWUiOiIifSwib2JqZWN0X3JvbGVzIjp7ImFkbWluX3Jv + bGUiOnsiZGVzY3JpcHRpb24iOiJDYW4gbWFuYWdlIGFsbCBhc3BlY3RzIG9m + IHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6MTE5MywibmFtZSI6IkFkbWluIn0s + ImV4ZWN1dGVfcm9sZSI6eyJkZXNjcmlwdGlvbiI6Ik1heSBydW4gdGhlIGpv + YiB0ZW1wbGF0ZSIsImlkIjoxMTk1LCJuYW1lIjoiRXhlY3V0ZSJ9LCJyZWFk + X3JvbGUiOnsiZGVzY3JpcHRpb24iOiJNYXkgdmlldyBzZXR0aW5ncyBmb3Ig + dGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjoxMTk0LCJuYW1lIjoiUmVhZCJ9fSwi + bGFiZWxzIjp7ImNvdW50IjowLCJyZXN1bHRzIjpbXX0sImNhbl9jb3B5Ijp0 + cnVlLCJjYW5fZWRpdCI6dHJ1ZSwicmVjZW50X2pvYnMiOlt7InN0YXR1cyI6 + InN1Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6IjIwMTctMDMtMTdUMjE6NDk6MzAu + ODUzWiIsImlkIjo0ODF9XX0sImNyZWF0ZWQiOiIyMDE3LTAzLTE3VDE4OjM1 + OjEzLjY0N1oiLCJtb2RpZmllZCI6IjIwMTctMDMtMTdUMjE6NDk6MDUuNzI0 + WiIsIm5hbWUiOiJtaXFfYXBfdGluYV90ZXN0X25wYl9ucmVzX3Byb3Zpc2lv + biIsImRlc2NyaXB0aW9uIjoiYXBfdGluYV90ZXN0X25wYl9ucmVzIiwiam9i + X3R5cGUiOiJydW4iLCJpbnZlbnRvcnkiOjEsInByb2plY3QiOjE1NSwicGxh + eWJvb2siOiJjaGVja192ZXJzaW9uLnlhbWwiLCJjcmVkZW50aWFsIjpudWxs + LCJjbG91ZF9jcmVkZW50aWFsIjoxNiwibmV0d29ya19jcmVkZW50aWFsIjo1 + LCJmb3JrcyI6MCwibGltaXQiOiIiLCJ2ZXJib3NpdHkiOjAsImV4dHJhX3Zh + cnMiOiJ7XCJudW1iZXJcIjpcIjFcIn0iLCJqb2JfdGFncyI6IiIsImZvcmNl + X2hhbmRsZXJzIjpmYWxzZSwic2tpcF90YWdzIjoiIiwic3RhcnRfYXRfdGFz + ayI6IiIsImxhc3Rfam9iX3J1biI6IjIwMTctMDMtMTdUMjE6NDk6MzAuODUz + OTcwWiIsImxhc3Rfam9iX2ZhaWxlZCI6ZmFsc2UsImhhc19zY2hlZHVsZXMi + OmZhbHNlLCJuZXh0X2pvYl9ydW4iOm51bGwsInN0YXR1cyI6InN1Y2Nlc3Nm + dWwiLCJob3N0X2NvbmZpZ19rZXkiOiIiLCJhc2tfdmFyaWFibGVzX29uX2xh + dW5jaCI6dHJ1ZSwiYXNrX2xpbWl0X29uX2xhdW5jaCI6dHJ1ZSwiYXNrX3Rh + Z3Nfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2pvYl90eXBlX29uX2xhdW5jaCI6 + ZmFsc2UsImFza19pbnZlbnRvcnlfb25fbGF1bmNoIjp0cnVlLCJhc2tfY3Jl + ZGVudGlhbF9vbl9sYXVuY2giOnRydWUsInN1cnZleV9lbmFibGVkIjpmYWxz + ZSwiYmVjb21lX2VuYWJsZWQiOmZhbHNlLCJhbGxvd19zaW11bHRhbmVvdXMi + OmZhbHNlfV19 + http_version: + recorded_at: Wed, 21 Jun 2017 19:22:57 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/80/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:22: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.036s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:22:58 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/80/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:22: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.039s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:22:58 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/81/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:22: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.043s + 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: Wed, 21 Jun 2017 19:22:58 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/81/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:22: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.038s + Content-Length: + - '375' + 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: Wed, 21 Jun 2017 19:22:58 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/30/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:22: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:22:58 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/30/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:22: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.036s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:22:58 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/189/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:22: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, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.041s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:22:59 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/189/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:22: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, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.048s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:22:59 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/190/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:22: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, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.035s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:22:59 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/190/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:22: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, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.035s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:22:59 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/38/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:22: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, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:22:59 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/38/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:22: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, DELETE, HEAD, OPTIONS + X-Api-Time: + - 0.053s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:00 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/188/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.047s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:00 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/188/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:00 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/571/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:00 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/571/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:00 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/572/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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 + Content-Length: + - '249' + 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: Wed, 21 Jun 2017 19:23:01 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/572/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.038s + 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: Wed, 21 Jun 2017 19:23:01 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/28/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.041s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:01 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/28/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:01 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/185/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.037s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:01 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/185/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.036s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:01 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/184/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:02 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/184/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.036s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:02 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/283/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:02 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/283/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:02 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/212/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:02 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/212/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:03 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/176/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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 + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:03 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/176/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.041s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:03 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/291/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.130s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:03 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/291/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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 + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:03 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/156/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.038s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:03 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/156/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.053s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:04 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/178/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.056s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:04 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/178/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.057s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:04 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/125/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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 + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:04 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/125/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.038s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:05 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/378/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:05 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/378/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.044s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:05 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/505/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.041s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:05 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/505/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.038s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:05 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/480/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.039s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:05 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/480/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:06 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/479/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:06 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/479/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.037s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:06 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/333/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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 + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:06 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/333/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.036s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:07 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/368/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:07 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/368/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:07 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/?page=2 + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.444s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: '{"count":120,"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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/155/","cloud_credential":"/api/v1/credentials/16/","network_credential":"/api/v1/credentials/5/","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":{"network_credential":{"id":5,"name":"Demo + Creds 2","description":"test","kind":"net"},"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":16,"name":"lucy + dev00","description":"","kind":"vmware","cloud":true},"project":{"id":155,"name":"lucy","description":"test + playbook","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":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":true,"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":1,"project":155,"playbook":"check_version.yaml","credential":null,"cloud_credential":16,"network_credential":5,"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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/155/","cloud_credential":"/api/v1/credentials/16/","network_credential":"/api/v1/credentials/5/","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":{"network_credential":{"id":5,"name":"Demo + Creds 2","description":"test","kind":"net"},"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":16,"name":"lucy + dev00","description":"","kind":"vmware","cloud":true},"project":{"id":155,"name":"lucy","description":"test + playbook","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":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":true,"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":1,"project":155,"playbook":"check_version.yaml","credential":null,"cloud_credential":16,"network_credential":5,"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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/155/","cloud_credential":"/api/v1/credentials/16/","network_credential":"/api/v1/credentials/5/","last_job":"/api/v1/jobs/485/","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":{"network_credential":{"id":5,"name":"Demo + Creds 2","description":"test","kind":"net"},"last_job":{"id":485,"name":"miq_ap_tina_test_pb_nres_provision","description":"10.8.99.207 + and 10.8.99.248","finished":"2017-03-17T22:19:24.196Z","status":"failed","failed":true},"last_update":{"id":485,"name":"miq_ap_tina_test_pb_nres_provision","description":"10.8.99.207 + and 10.8.99.248","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},"cloud_credential":{"id":16,"name":"lucy + dev00","description":"","kind":"vmware","cloud":true},"project":{"id":155,"name":"lucy","description":"test + playbook","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":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":true,"can_edit":true,"recent_jobs":[{"status":"failed","finished":"2017-03-17T22:19:24.196Z","id":485},{"status":"failed","finished":"2017-03-17T22:15:47.928Z","id":483}]},"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":1,"project":155,"playbook":"check_version.yaml","credential":null,"cloud_credential":16,"network_credential":5,"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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/155/","cloud_credential":"/api/v1/credentials/16/","network_credential":"/api/v1/credentials/5/","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":{"network_credential":{"id":5,"name":"Demo + Creds 2","description":"test","kind":"net"},"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":16,"name":"lucy + dev00","description":"","kind":"vmware","cloud":true},"project":{"id":155,"name":"lucy","description":"test + playbook","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":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":true,"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":1,"project":155,"playbook":"check_version.yaml","credential":null,"cloud_credential":16,"network_credential":5,"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/","project":"/api/v1/projects/35/","credential":"/api/v1/credentials/8/","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":{"credential":{"id":8,"name":"bd-test-changed","description":"","kind":"ssh","cloud":false},"project":{"id":35,"name":"DB","description":"DB + Playbooks","status":"failed"},"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":true,"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":35,"playbook":"create_ec2.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":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/","project":"/api/v1/projects/4/","credential":"/api/v1/credentials/1/","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":{"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":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":true,"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":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":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/","project":"/api/v1/projects/4/","credential":"/api/v1/credentials/1/","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},"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":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":true,"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":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-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/","project":"/api/v1/projects/4/","credential":"/api/v1/credentials/1/","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},"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":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":true,"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":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":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/","project":"/api/v1/projects/4/","credential":"/api/v1/credentials/1/","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},"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":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":true,"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":4,"playbook":"hello_world.yml","credential":1,"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":"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":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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/124/","credential":"/api/v1/credentials/1/","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":{"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":124,"name":"madhu","description":"simple + 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":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":true,"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":1,"project":124,"playbook":"pkg_info.yaml","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":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/","credential":"/api/v1/credentials/4/","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":{"credential":{"id":4,"name":"Demo + Creds 2","description":"test","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":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":4,"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/","credential":"/api/v1/credentials/4/","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":{"credential":{"id":4,"name":"Demo + Creds 2","description":"test","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":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":4,"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/","project":"/api/v1/projects/4/","credential":"/api/v1/credentials/1/","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":{"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":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":true,"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":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":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/","credential":"/api/v1/credentials/9/","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":{"credential":{"id":9,"name":"jwongCred","description":"jwong + tests cred post","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":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":9,"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/","credential":"/api/v1/credentials/9/","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":{"credential":{"id":9,"name":"jwongCred","description":"jwong + tests cred post","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":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":9,"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":334,"type":"job_template","url":"/api/v1/job_templates/334/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/334/labels/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/124/","credential":"/api/v1/credentials/8/","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":{"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":8,"name":"bd-test-changed","description":"","kind":"ssh","cloud":false},"project":{"id":124,"name":"madhu","description":"simple + 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":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":true,"can_edit":true,"recent_jobs":[]},"created":"2017-03-15T23:22:58.670Z","modified":"2017-04-06T17:52:34.227Z","name":"miq_hk-1_provision","description":"hk-1","job_type":"run","inventory":1,"project":124,"playbook":"pkg_info.yaml","credential":8,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"a\":\"s\",\"aa\":\"bb\"}","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":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/","project":"/api/v1/projects/4/","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},"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":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":true,"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":4,"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":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/","inventory":"/api/v1/inventories/1/","credential":"/api/v1/credentials/4/","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":{"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":4,"name":"Demo + Creds 2","description":"test","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":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":1,"project":null,"playbook":"","credential":4,"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/","inventory":"/api/v1/inventories/1/","credential":"/api/v1/credentials/4/","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":{"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":4,"name":"Demo + Creds 2","description":"test","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":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":1,"project":null,"playbook":"","credential":4,"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/","project":"/api/v1/projects/35/","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},"project":{"id":35,"name":"DB","description":"DB + Playbooks","status":"failed"},"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":true,"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":35,"playbook":"general_state_ec2.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":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/","project":"/api/v1/projects/4/","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},"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":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":true,"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":4,"playbook":"hello_world.yml","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},{"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/","project":"/api/v1/projects/29/","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},"project":{"id":29,"name":"lg-project","description":"lg_project","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":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":true,"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":29,"playbook":"lamp_haproxy/aws/rolling_update.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":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/","project":"/api/v1/projects/29/","credential":"/api/v1/credentials/4/","cloud_credential":"/api/v1/credentials/10/","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},"cloud_credential":{"id":10,"name":"JwongMCred","description":"test + aws cred","kind":"aws","cloud":true},"credential":{"id":4,"name":"Demo Creds + 2","description":"test","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":""},"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":true,"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":29,"playbook":"lamp_haproxy/aws/demo-aws-launch.yml","credential":4,"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}]}' + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:08 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/371/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:08 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/371/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:08 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/372/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.037s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:08 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/372/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.041s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:08 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/369/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:08 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/369/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:09 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/370/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:09 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/370/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.036s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:09 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/474/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.036s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:09 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/474/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.036s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:09 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/504/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.036s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:09 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/504/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.038s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:10 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/481/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.037s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:10 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/481/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:10 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/482/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:10 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/482/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:10 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/492/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:11 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/492/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:11 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/493/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:11 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/493/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:11 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/290/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:11 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/290/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:11 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/443/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.036s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:12 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/443/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:12 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/444/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:12 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/444/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:12 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/503/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:12 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/503/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:12 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/441/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.039s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:13 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/441/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:13 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/442/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.037s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:13 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/442/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.036s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:13 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/334/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.039s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:13 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/334/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:13 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/167/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.038s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:14 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/167/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:14 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/403/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:14 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/403/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:14 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/402/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:14 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/402/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:14 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/172/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:15 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/172/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:15 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/183/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.036s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:15 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/183/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:15 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/205/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:15 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/205/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:15 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/209/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.037s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:16 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/209/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:16 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/174/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:16 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/174/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:16 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/?page=3 + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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, HEAD, OPTIONS + X-Api-Time: + - 0.369s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: '{"count":120,"next":"/api/v1/job_templates/?page=4","previous":"/api/v1/job_templates/?page=2","results":[{"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/","project":"/api/v1/projects/4/","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},"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":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":true,"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":4,"playbook":"hello_world.yml","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/","project":"/api/v1/projects/4/","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},"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":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":true,"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":4,"playbook":"hello_world.yml","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/","project":"/api/v1/projects/35/","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},"project":{"id":35,"name":"DB","description":"DB + Playbooks","status":"failed"},"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":true,"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":35,"playbook":"dump_db.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":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":"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":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":"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":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/","project":"/api/v1/projects/155/","credential":"/api/v1/credentials/52/","cloud_credential":"/api/v1/credentials/16/","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},"cloud_credential":{"id":16,"name":"lucy + dev00","description":"","kind":"vmware","cloud":true},"credential":{"id":52,"name":"lucy_machine","description":"","kind":"ssh","cloud":false},"project":{"id":155,"name":"lucy","description":"test + playbook","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":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":true,"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":155,"playbook":"check_version.yaml","credential":52,"cloud_credential":16,"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/","project":"/api/v1/projects/155/","credential":"/api/v1/credentials/52/","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},"credential":{"id":52,"name":"lucy_machine","description":"","kind":"ssh","cloud":false},"project":{"id":155,"name":"lucy","description":"test + playbook","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":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":true,"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":155,"playbook":"validate_inputs.yaml","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":412,"type":"job_template","url":"/api/v1/job_templates/412/","related":{"created_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/412/labels/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/124/","credential":"/api/v1/credentials/1/","last_job":"/api/v1/jobs/572/","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":{"last_job":{"id":572,"name":"miq_Madhu_Test_provision","description":"Madhu + Test","finished":"2017-03-27T16:35:59.102Z","status":"failed","failed":true},"last_update":{"id":572,"name":"miq_Madhu_Test_provision","description":"Madhu + Test","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":124,"name":"madhu","description":"simple + playbooks","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":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":true,"can_edit":true,"recent_jobs":[{"status":"failed","finished":"2017-03-27T16:35:59.102Z","id":572},{"status":"failed","finished":"2017-03-27T16:30:46.879Z","id":570},{"status":"successful","finished":"2017-03-24T16:32:53.564Z","id":563},{"status":"successful","finished":"2017-03-24T16:19:50.683Z","id":562},{"status":"successful","finished":"2017-03-23T20:57:18.973Z","id":548},{"status":"successful","finished":"2017-03-23T20:36:01.619Z","id":545},{"status":"failed","finished":"2017-03-23T19:49:29.522Z","id":537},{"status":"failed","finished":"2017-03-23T19:12:41.314Z","id":542},{"status":"failed","finished":"2017-03-23T19:03:03.049Z","id":539},{"status":"failed","finished":"2017-03-23T16:15:04.808Z","id":530}]},"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":1,"project":124,"playbook":"pkg_info.yaml","credential":1,"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/","project":"/api/v1/projects/4/","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},"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":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":true,"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":4,"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":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/","project":"/api/v1/projects/4/","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},"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":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":true,"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":4,"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":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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/124/","credential":"/api/v1/credentials/1/","network_credential":"/api/v1/credentials/5/","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":{"network_credential":{"id":5,"name":"Demo + Creds 2","description":"test","kind":"net"},"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":124,"name":"madhu","description":"simple + 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":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":true,"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":1,"project":124,"playbook":"pkg_info.yaml","credential":1,"cloud_credential":null,"network_credential":5,"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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/124/","credential":"/api/v1/credentials/1/","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":{"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":124,"name":"madhu","description":"simple + 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":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":true,"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":1,"project":124,"playbook":"pkg_info.yaml","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":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/","project":"/api/v1/projects/4/","credential":"/api/v1/credentials/1/","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},"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":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":true,"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":4,"playbook":"hello_world.yml","credential":1,"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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/124/","credential":"/api/v1/credentials/1/","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":{"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":124,"name":"madhu","description":"simple + 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":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":true,"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":1,"project":124,"playbook":"pkg_info.yaml","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":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/","project":"/api/v1/projects/4/","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},"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":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":true,"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":4,"playbook":"hello_world.yml","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/","project":"/api/v1/projects/4/","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},"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":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":true,"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":4,"playbook":"hello_world.yml","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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/37/","credential":"/api/v1/credentials/1/","last_job":"/api/v1/jobs/216/","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":{"last_job":{"id":216,"name":"miq-playbook-demo_provision_hd2g8j13","description":"this + is a test","finished":"2017-02-20T23:10:59.875Z","status":"successful","failed":false},"last_update":{"id":216,"name":"miq-playbook-demo_provision_hd2g8j13","description":"this + is a test","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":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":[{"status":"successful","finished":"2017-02-20T23:10:59.875Z","id":216},{"status":"failed","finished":"2017-02-20T23:07:21.826Z","id":211}]},"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":1,"project":37,"playbook":"hello_world.yml","credential":1,"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/","project":"/api/v1/projects/4/","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},"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":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":true,"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":4,"playbook":"hello_world.yml","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/","project":"/api/v1/projects/4/","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},"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":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":true,"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":4,"playbook":"hello_world.yml","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/","project":"/api/v1/projects/35/","credential":"/api/v1/credentials/8/","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":{"credential":{"id":8,"name":"bd-test-changed","description":"","kind":"ssh","cloud":false},"project":{"id":35,"name":"DB","description":"DB + Playbooks","status":"failed"},"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":true,"can_edit":true,"recent_jobs":[]},"created":"2017-05-03T18:22:04.400Z","modified":"2017-05-03T18:22:04.400Z","name":"miq_playbook_hk1_provision","description":"playbook_hk1","job_type":"run","inventory":null,"project":35,"playbook":"create_ec2.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":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/","project":"/api/v1/projects/35/","credential":"/api/v1/credentials/1/","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":{"credential":{"id":1,"name":"Demo + Credential","description":"","kind":"ssh","cloud":false},"project":{"id":35,"name":"DB","description":"DB + Playbooks","status":"failed"},"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":true,"can_edit":true,"recent_jobs":[]},"created":"2017-05-03T16:17:38.302Z","modified":"2017-05-11T18:04:16.662Z","name":"miq_playbook_hk2_provision","description":"playbook_hk2","job_type":"run","inventory":null,"project":35,"playbook":"dump_db.yml","credential":1,"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/","project":"/api/v1/projects/35/","credential":"/api/v1/credentials/4/","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":{"credential":{"id":4,"name":"Demo + Creds 2","description":"test","kind":"ssh","cloud":false},"project":{"id":35,"name":"DB","description":"DB + Playbooks","status":"failed"},"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":true,"can_edit":true,"recent_jobs":[]},"created":"2017-05-03T16:20:11.729Z","modified":"2017-05-11T18:04:16.652Z","name":"miq_playbook_hk2_retirement","description":"playbook_hk2","job_type":"run","inventory":null,"project":35,"playbook":"dump_db.yml","credential":4,"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":false,"allow_simultaneous":false},{"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/","inventory":"/api/v1/inventories/1/","cloud_credential":"/api/v1/credentials/10/","network_credential":"/api/v1/credentials/5/","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":{"network_credential":{"id":5,"name":"Demo + Creds 2","description":"test","kind":"net"},"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":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":1,"project":null,"playbook":"","credential":null,"cloud_credential":10,"network_credential":5,"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":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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/124/","credential":"/api/v1/credentials/1/","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":{"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":124,"name":"madhu","description":"simple + 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":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":true,"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":1,"project":124,"playbook":"pkg_info.yaml","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":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: Wed, 21 Jun 2017 19:23:17 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/175/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:17 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/175/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.036s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:17 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/182/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:17 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/182/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:18 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/173/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23:18 GMT + Server: + - Apache/2.4.6 (Red Hat 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: Wed, 21 Jun 2017 19:23:18 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/173/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23:18 GMT + Server: + - Apache/2.4.6 (Red Hat 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: Wed, 21 Jun 2017 19:23:18 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/470/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23:18 GMT + Server: + - Apache/2.4.6 (Red Hat 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: Wed, 21 Jun 2017 19:23:18 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/470/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23:18 GMT + Server: + - Apache/2.4.6 (Red Hat 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: Wed, 21 Jun 2017 19:23:18 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/495/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23:18 GMT + Server: + - Apache/2.4.6 (Red Hat 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: Wed, 21 Jun 2017 19:23:18 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/495/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:19 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/496/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:19 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/496/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:19 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/500/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:19 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/500/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:19 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/502/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:19 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/502/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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 + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:20 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/412/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.038s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:20 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/412/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:20 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/164/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:20 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/164/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:20 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/162/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:20 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/162/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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 + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:21 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/229/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.036s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:21 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/229/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.040s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:21 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/227/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.042s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:21 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/227/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.038s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:21 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/475/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.036s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:21 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/475/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.038s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:22 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/285/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.036s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:22 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/285/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:22 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/133/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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 + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:22 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/133/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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 + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:22 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/128/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:23 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/128/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.036s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:23 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/120/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.036s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:23 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/120/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:23 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/127/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.039s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:23 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/127/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.043s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:23 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/132/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:24 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/132/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.037s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:24 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/488/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.038s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:24 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/488/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.037s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:24 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/486/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.036s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:24 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/486/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.037s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:24 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/487/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.041s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:25 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/487/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.039s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:25 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/293/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.036s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:25 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/293/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.042s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:25 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/243/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.038s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:25 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/243/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:26 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/?page=4 + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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, HEAD, OPTIONS + X-Api-Time: + - 0.358s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: '{"count":120,"next":"/api/v1/job_templates/?page=5","previous":"/api/v1/job_templates/?page=3","results":[{"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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/124/","credential":"/api/v1/credentials/1/","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":{"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":124,"name":"madhu","description":"simple + 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":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":true,"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":1,"project":124,"playbook":"pkg_info.yaml","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":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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/29/","credential":"/api/v1/credentials/1/","cloud_credential":"/api/v1/credentials/2/","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":{"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":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":""},"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":true,"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":1,"project":29,"playbook":"lamp_haproxy/aws/site.yml","credential":1,"cloud_credential":2,"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/","inventory":"/api/v1/inventories/1/","cloud_credential":"/api/v1/credentials/7/","network_credential":"/api/v1/credentials/5/","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":{"network_credential":{"id":5,"name":"Demo + Creds 2","description":"test","kind":"net"},"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":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":1,"project":null,"playbook":"","credential":null,"cloud_credential":7,"network_credential":5,"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/","project":"/api/v1/projects/29/","credential":"/api/v1/credentials/4/","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},"credential":{"id":4,"name":"Demo + Creds 2","description":"test","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":""},"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":true,"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":29,"playbook":"jboss-standalone/demo-aws-launch.yml","credential":4,"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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/124/","credential":"/api/v1/credentials/1/","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":{"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":124,"name":"madhu","description":"simple + 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":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":true,"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":1,"project":124,"playbook":"pkg_info.yaml","credential":1,"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/","credential":"/api/v1/credentials/53/","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":{"credential":{"id":53,"name":"machine-cred-02","description":"","kind":"ssh","cloud":false},"project":{"id":457,"name":"DB + Playbooks 2","description":"DB Playbooks 2","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":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":53,"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":498,"type":"job_template","url":"/api/v1/job_templates/498/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","labels":"/api/v1/job_templates/498/labels/","project":"/api/v1/projects/35/","credential":"/api/v1/credentials/4/","notification_templates_error":"/api/v1/job_templates/498/notification_templates_error/","notification_templates_success":"/api/v1/job_templates/498/notification_templates_success/","jobs":"/api/v1/job_templates/498/jobs/","object_roles":"/api/v1/job_templates/498/object_roles/","notification_templates_any":"/api/v1/job_templates/498/notification_templates_any/","access_list":"/api/v1/job_templates/498/access_list/","launch":"/api/v1/job_templates/498/launch/","schedules":"/api/v1/job_templates/498/schedules/","activity_stream":"/api/v1/job_templates/498/activity_stream/","survey_spec":"/api/v1/job_templates/498/survey_spec/"},"summary_fields":{"credential":{"id":4,"name":"Demo + Creds 2","description":"test","kind":"ssh","cloud":false},"project":{"id":35,"name":"DB","description":"DB + Playbooks","status":"failed"},"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":2048,"name":"Admin"},"execute_role":{"description":"May + run the job template","id":2050,"name":"Execute"},"read_role":{"description":"May + view settings for the job template","id":2049,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[]},"created":"2017-05-11T18:04:17.040Z","modified":"2017-05-11T18:15:23.476Z","name":"miq_test3_provision","description":"test3","job_type":"run","inventory":null,"project":35,"playbook":"general_state_ec2.yml","credential":4,"cloud_credential":null,"network_credential":null,"forks":0,"limit":"","verbosity":0,"extra_vars":"{\"ss\":\"sssff\"}","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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/124/","credential":"/api/v1/credentials/1/","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":{"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":124,"name":"madhu","description":"simple + 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":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":true,"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":1,"project":124,"playbook":"pkg_info.yaml","credential":1,"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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/124/","credential":"/api/v1/credentials/1/","last_job":"/api/v1/jobs/448/","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":{"last_job":{"id":448,"name":"miq_test_bz_mk_provision","description":"test_bz_mk","finished":"2017-03-06T17:43:27.561Z","status":"successful","failed":false},"last_update":{"id":448,"name":"miq_test_bz_mk_provision","description":"test_bz_mk","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":124,"name":"madhu","description":"simple + playbooks","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":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":true,"can_edit":true,"recent_jobs":[{"status":"successful","finished":"2017-03-06T17:43:27.561Z","id":448}]},"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":1,"project":124,"playbook":"pkg_info.yaml","credential":1,"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/","project":"/api/v1/projects/155/","credential":"/api/v1/credentials/52/","cloud_credential":"/api/v1/credentials/16/","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},"cloud_credential":{"id":16,"name":"lucy + dev00","description":"","kind":"vmware","cloud":true},"credential":{"id":52,"name":"lucy_machine","description":"","kind":"ssh","cloud":false},"project":{"id":155,"name":"lucy","description":"test + playbook","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":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":true,"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":155,"playbook":"check_version.yaml","credential":52,"cloud_credential":16,"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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/155/","credential":"/api/v1/credentials/9/","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":{"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":9,"name":"jwongCred","description":"jwong + tests cred post","kind":"ssh","cloud":false},"project":{"id":155,"name":"lucy","description":"test + playbook","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":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":true,"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":1,"project":155,"playbook":"list_params.yaml","credential":9,"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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/36/","credential":"/api/v1/credentials/9/","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":{"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":9,"name":"jwongCred","description":"jwong + tests cred post","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":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":1,"project":36,"playbook":"product/alerts/rss/lifecycle_events.yml","credential":9,"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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/124/","credential":"/api/v1/credentials/1/","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":{"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":124,"name":"madhu","description":"simple + 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":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":true,"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":1,"project":124,"playbook":"pkg_info.yaml","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":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/","project":"/api/v1/projects/4/","credential":"/api/v1/credentials/53/","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},"credential":{"id":53,"name":"machine-cred-02","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":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":true,"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},{"status":"successful","finished":"2017-04-13T17:58:49.757Z","id":648},{"status":"successful","finished":"2017-04-13T16:38:08.426Z","id":647},{"status":"successful","finished":"2017-04-13T14:32:39.863Z","id":646},{"status":"successful","finished":"2017-04-13T14:32:27.847Z","id":645},{"status":"successful","finished":"2017-04-12T19:02:40.470Z","id":644},{"status":"successful","finished":"2017-04-11T13:27:33.508Z","id":637},{"status":"successful","finished":"2017-04-11T13:02:19.208Z","id":636}]},"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":4,"playbook":"hello_world.yml","credential":53,"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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/4/","credential":"/api/v1/credentials/9/","cloud_credential":"/api/v1/credentials/7/","network_credential":"/api/v1/credentials/5/","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":{"network_credential":{"id":5,"name":"Demo + Creds 2","description":"test","kind":"net"},"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":7,"name":"syseng-e2e-vcenter6","description":"This + is a vCenter","kind":"vmware","cloud":true},"credential":{"id":9,"name":"jwongCred","description":"jwong + tests cred post","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":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":true,"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":1,"project":4,"playbook":"hello_world.yml","credential":9,"cloud_credential":7,"network_credential":5,"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/","credential":"/api/v1/credentials/1/","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":{"credential":{"id":1,"name":"Demo + Credential","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":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":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":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/","project":"/api/v1/projects/155/","credential":"/api/v1/credentials/8/","cloud_credential":"/api/v1/credentials/47/","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},"cloud_credential":{"id":47,"name":"abc","description":"","kind":"aws","cloud":true},"credential":{"id":8,"name":"bd-test-changed","description":"","kind":"ssh","cloud":false},"project":{"id":155,"name":"lucy","description":"test + playbook","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":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":true,"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":155,"playbook":"big_output.yaml","credential":8,"cloud_credential":47,"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/","inventory":"/api/v1/inventories/1/","credential":"/api/v1/credentials/8/","cloud_credential":"/api/v1/credentials/16/","network_credential":"/api/v1/credentials/5/","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":{"network_credential":{"id":5,"name":"Demo + Creds 2","description":"test","kind":"net"},"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":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":1,"project":null,"playbook":"","credential":8,"cloud_credential":16,"network_credential":5,"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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/35/","credential":"/api/v1/credentials/8/","cloud_credential":"/api/v1/credentials/10/","network_credential":"/api/v1/credentials/5/","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":{"network_credential":{"id":5,"name":"Demo + Creds 2","description":"test","kind":"net"},"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":10,"name":"JwongMCred","description":"test + aws cred","kind":"aws","cloud":true},"credential":{"id":8,"name":"bd-test-changed","description":"","kind":"ssh","cloud":false},"project":{"id":35,"name":"DB","description":"DB + Playbooks","status":"failed"},"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":true,"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":1,"project":35,"playbook":"create_ec2.yml","credential":8,"cloud_credential":10,"network_credential":5,"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/","inventory":"/api/v1/inventories/1/","credential":"/api/v1/credentials/8/","cloud_credential":"/api/v1/credentials/10/","network_credential":"/api/v1/credentials/5/","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":{"network_credential":{"id":5,"name":"Demo + Creds 2","description":"test","kind":"net"},"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":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":1,"project":null,"playbook":"","credential":8,"cloud_credential":10,"network_credential":5,"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/","project":"/api/v1/projects/4/","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},"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":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":true,"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":4,"playbook":"hello_world.yml","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/","project":"/api/v1/projects/4/","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},"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":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":true,"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":4,"playbook":"hello_world.yml","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},{"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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/124/","credential":"/api/v1/credentials/1/","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":{"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":124,"name":"madhu","description":"simple + 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":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":true,"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":1,"project":124,"playbook":"pkg_info.yaml","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":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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/124/","credential":"/api/v1/credentials/1/","cloud_credential":"/api/v1/credentials/10/","network_credential":"/api/v1/credentials/5/","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":{"network_credential":{"id":5,"name":"Demo + Creds 2","description":"test","kind":"net"},"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":10,"name":"JwongMCred","description":"test + aws cred","kind":"aws","cloud":true},"credential":{"id":1,"name":"Demo Credential","description":"","kind":"ssh","cloud":false},"project":{"id":124,"name":"madhu","description":"simple + 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":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":true,"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":1,"project":124,"playbook":"pkg_info.yaml","credential":1,"cloud_credential":10,"network_credential":5,"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}]}' + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:26 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/244/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.037s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:27 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/244/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.036s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:27 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/228/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:27 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/228/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:27 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/292/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:27 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/292/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:27 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/180/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.037s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:28 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/180/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:28 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/410/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:28 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/410/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.039s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:28 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/497/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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 + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:28 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/497/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:28 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/498/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:29 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/498/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:29 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/286/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:29 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/286/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:29 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/287/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:29 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/287/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.040s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:30 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/499/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:30 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/499/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:30 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/360/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.039s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:30 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/360/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:30 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/343/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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 + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:31 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/343/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:31 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/226/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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 + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:31 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/226/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:31 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/471/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:31 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/471/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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 + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:31 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/346/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:32 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/346/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:32 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/436/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:32 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/436/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.033s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:32 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/434/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.041s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:32 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/434/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.040s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:33 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/439/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:33 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/439/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.041s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:33 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/288/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.038s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:33 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/288/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.037s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:33 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/345/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.039s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:33 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/345/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.039s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:34 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/289/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:34 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/289/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.040s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:34 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/134/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:34 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/134/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.038s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:34 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/135/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.040s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:34 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/135/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:35 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/225/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.040s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:35 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/225/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:35 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/303/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:35 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/303/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:35 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/?page=5 + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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, HEAD, OPTIONS + X-Api-Time: + - 0.326s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: '{"count":120,"next":null,"previous":"/api/v1/job_templates/?page=4","results":[{"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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/4/","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":{"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},"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":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":true,"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":1,"project":4,"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},{"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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/124/","credential":"/api/v1/credentials/1/","last_job":"/api/v1/jobs/522/","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":{"last_job":{"id":522,"name":"miq_Test + Service_provision","description":"Test Service","finished":"2017-03-22T22:51:38.814Z","status":"failed","failed":true},"last_update":{"id":522,"name":"miq_Test + Service_provision","description":"Test Service","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":124,"name":"madhu","description":"simple + playbooks","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":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":true,"can_edit":true,"recent_jobs":[{"status":"failed","finished":"2017-03-22T22:51:38.814Z","id":522}]},"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":1,"project":124,"playbook":"pkg_info.yaml","credential":1,"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/","project":"/api/v1/projects/155/","credential":"/api/v1/credentials/52/","cloud_credential":"/api/v1/credentials/16/","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},"cloud_credential":{"id":16,"name":"lucy + dev00","description":"","kind":"vmware","cloud":true},"credential":{"id":52,"name":"lucy_machine","description":"","kind":"ssh","cloud":false},"project":{"id":155,"name":"lucy","description":"test + playbook","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":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":true,"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":155,"playbook":"check_version.yaml","credential":52,"cloud_credential":16,"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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/155/","cloud_credential":"/api/v1/credentials/16/","network_credential":"/api/v1/credentials/5/","last_job":"/api/v1/jobs/475/","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":{"network_credential":{"id":5,"name":"Demo + Creds 2","description":"test","kind":"net"},"last_job":{"id":475,"name":"miq_tina_ap_test2_provision","description":"tina_ap_test2","finished":"2017-03-16T21:31:43.713Z","status":"failed","failed":true},"last_update":{"id":475,"name":"miq_tina_ap_test2_provision","description":"tina_ap_test2","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},"cloud_credential":{"id":16,"name":"lucy + dev00","description":"","kind":"vmware","cloud":true},"project":{"id":155,"name":"lucy","description":"test + playbook","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":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":true,"can_edit":true,"recent_jobs":[{"status":"failed","finished":"2017-03-16T21:31:43.713Z","id":475}]},"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":1,"project":155,"playbook":"validate_inputs.yaml","credential":null,"cloud_credential":16,"network_credential":5,"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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/155/","cloud_credential":"/api/v1/credentials/16/","network_credential":"/api/v1/credentials/5/","last_job":"/api/v1/jobs/479/","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":{"network_credential":{"id":5,"name":"Demo + Creds 2","description":"test","kind":"net"},"last_job":{"id":479,"name":"miq_tina_ap_test3_provision","description":"tina_ap_test3","finished":"2017-03-17T16:51:25.842Z","status":"successful","failed":false},"last_update":{"id":479,"name":"miq_tina_ap_test3_provision","description":"tina_ap_test3","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},"cloud_credential":{"id":16,"name":"lucy + dev00","description":"","kind":"vmware","cloud":true},"project":{"id":155,"name":"lucy","description":"test + playbook","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":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":true,"can_edit":true,"recent_jobs":[{"status":"successful","finished":"2017-03-17T16:51:25.842Z","id":479},{"status":"successful","finished":"2017-03-16T21:40:14.079Z","id":477}]},"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":1,"project":155,"playbook":"check_version.yaml","credential":null,"cloud_credential":16,"network_credential":5,"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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/155/","cloud_credential":"/api/v1/credentials/16/","network_credential":"/api/v1/credentials/5/","last_job":"/api/v1/jobs/473/","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":{"network_credential":{"id":5,"name":"Demo + Creds 2","description":"test","kind":"net"},"last_job":{"id":473,"name":"miq_tina_no_retirement_playbook_default_provision","description":"tina_no_retirement_playbook_default","finished":"2017-03-16T17:38:55.543Z","status":"successful","failed":false},"last_update":{"id":473,"name":"miq_tina_no_retirement_playbook_default_provision","description":"tina_no_retirement_playbook_default","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},"cloud_credential":{"id":16,"name":"lucy + dev00","description":"","kind":"vmware","cloud":true},"project":{"id":155,"name":"lucy","description":"test + playbook","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":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":true,"can_edit":true,"recent_jobs":[{"status":"successful","finished":"2017-03-16T17:38:55.543Z","id":473},{"status":"successful","finished":"2017-03-16T17:38:29.682Z","id":471}]},"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":1,"project":155,"playbook":"check_version.yaml","credential":null,"cloud_credential":16,"network_credential":5,"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/","project":"/api/v1/projects/155/","credential":"/api/v1/credentials/52/","last_job":"/api/v1/jobs/589/","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":{"last_job":{"id":589,"name":"miq_wei0328-2_provision","description":"test","finished":"2017-03-30T13:51:22.758Z","status":"failed","failed":true},"last_update":{"id":589,"name":"miq_wei0328-2_provision","description":"test","status":"failed","failed":true},"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":155,"name":"lucy","description":"test + playbook","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":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":true,"can_edit":true,"recent_jobs":[{"status":"failed","finished":"2017-03-30T13:51:22.758Z","id":589},{"status":"successful","finished":"2017-03-29T18:00:17.812Z","id":587},{"status":"successful","finished":"2017-03-28T18:42:43.246Z","id":581}]},"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":155,"playbook":"plays.yaml","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":"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/","project":"/api/v1/projects/4/","credential":"/api/v1/credentials/27/","last_job":"/api/v1/jobs/586/","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":{"last_job":{"id":586,"name":"miq_wei0328-2_retirement","description":"test","finished":"2017-03-29T14:13:52.366Z","status":"failed","failed":true},"last_update":{"id":586,"name":"miq_wei0328-2_retirement","description":"test","status":"failed","failed":true},"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},"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":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":true,"can_edit":true,"recent_jobs":[{"status":"failed","finished":"2017-03-29T14:13:52.366Z","id":586}]},"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":4,"playbook":"hello_world.yml","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/","project":"/api/v1/projects/4/","credential":"/api/v1/credentials/1/","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},"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":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":true,"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":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":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/","project":"/api/v1/projects/35/","credential":"/api/v1/credentials/1/","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},"credential":{"id":1,"name":"Demo + Credential","description":"","kind":"ssh","cloud":false},"project":{"id":35,"name":"DB","description":"DB + Playbooks","status":"failed"},"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":true,"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":35,"playbook":"general_state_ec2.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":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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/29/","cloud_credential":"/api/v1/credentials/10/","network_credential":"/api/v1/credentials/5/","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":{"network_credential":{"id":5,"name":"Demo + Creds 2","description":"test","kind":"net"},"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":10,"name":"JwongMCred","description":"test + aws cred","kind":"aws","cloud":true},"project":{"id":29,"name":"lg-project","description":"lg_project","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":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":true,"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":1,"project":29,"playbook":"lamp_simple_rhel7/site.yml","credential":null,"cloud_credential":10,"network_credential":5,"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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/155/","cloud_credential":"/api/v1/credentials/16/","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":{"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":16,"name":"lucy + dev00","description":"","kind":"vmware","cloud":true},"project":{"id":155,"name":"lucy","description":"test + playbook","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":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":true,"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":1,"project":155,"playbook":"plays.yaml","credential":null,"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":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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/4/","credential":"/api/v1/credentials/8/","cloud_credential":"/api/v1/credentials/10/","network_credential":"/api/v1/credentials/5/","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":{"network_credential":{"id":5,"name":"Demo + Creds 2","description":"test","kind":"net"},"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":10,"name":"JwongMCred","description":"test + aws cred","kind":"aws","cloud":true},"credential":{"id":8,"name":"bd-test-changed","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":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":true,"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":1,"project":4,"playbook":"hello_world.yml","credential":8,"cloud_credential":10,"network_credential":5,"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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/4/","credential":"/api/v1/credentials/8/","network_credential":"/api/v1/credentials/5/","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":{"network_credential":{"id":5,"name":"Demo + Creds 2","description":"test","kind":"net"},"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":8,"name":"bd-test-changed","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":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":true,"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":1,"project":4,"playbook":"hello_world.yml","credential":8,"cloud_credential":null,"network_credential":5,"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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/124/","credential":"/api/v1/credentials/1/","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":{"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":124,"name":"madhu","description":"simple + playbooks","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":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":true,"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":1,"project":124,"playbook":"pkg_info_et_al.yaml","credential":1,"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/","inventory":"/api/v1/inventories/1/","project":"/api/v1/projects/124/","credential":"/api/v1/credentials/1/","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":{"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":124,"name":"madhu","description":"simple + playbooks","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":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":true,"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":1,"project":124,"playbook":"pkg_info_no_sleep.yaml","credential":1,"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/","project":"/api/v1/projects/4/","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},"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":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":true,"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":4,"playbook":"hello_world.yml","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/","project":"/api/v1/projects/4/","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},"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":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":true,"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":4,"playbook":"hello_world.yml","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/","project":"/api/v1/projects/155/","credential":"/api/v1/credentials/52/","last_job":"/api/v1/jobs/606/","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":{"last_job":{"id":606,"name":"wei-test1","description":"","finished":"2017-03-30T18:24:59.795Z","status":"successful","failed":false},"last_update":{"id":606,"name":"wei-test1","description":"","status":"successful","failed":false},"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},"credential":{"id":52,"name":"lucy_machine","description":"","kind":"ssh","cloud":false},"project":{"id":155,"name":"lucy","description":"test + playbook","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":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":true,"can_edit":true,"recent_jobs":[{"status":"successful","finished":"2017-03-30T18:24:59.795Z","id":606},{"status":"successful","finished":"2017-03-30T18:24:35.687Z","id":604},{"status":"successful","finished":"2017-03-30T18:23:11.259Z","id":602}]},"created":"2017-03-30T18:21:54.904Z","modified":"2017-03-30T18:22:43.362Z","name":"wei-test1","description":"","job_type":"run","inventory":63,"project":155,"playbook":"host_play.yaml","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":"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: Wed, 21 Jun 2017 19:23:36 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/224/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.034s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:36 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/224/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:36 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/411/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.036s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:36 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/411/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:37 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/501/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.038s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:37 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/501/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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 + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:37 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/354/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:37 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/354/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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 + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:37 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/355/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:37 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/355/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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 + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:38 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/342/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:38 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/342/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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 + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:38 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/446/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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 + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:38 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/446/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:38 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/447/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:38 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/447/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:39 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/483/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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 + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:39 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/483/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.036s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:39 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/179/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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 + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:39 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/179/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.039s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:39 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/275/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:39 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/275/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:40 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/332/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:40 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/332/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.041s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:40 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/270/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:40 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/270/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:40 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/274/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.036s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:41 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/274/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:41 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/131/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:41 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/131/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:41 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/41/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.035s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:41 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/41/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:41 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/126/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:42 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/126/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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: Wed, 21 Jun 2017 19:23:42 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/129/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.061s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:42 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/129/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.049s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:42 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/130/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.052s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:42 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/130/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.055s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:43 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/452/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:43 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/452/survey_spec/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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.034s + Content-Length: + - '2' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "{}" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:43 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/projects + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + 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, 21 Jun 2017 19:23:43 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: Wed, 21 Jun 2017 19:23:43 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/projects/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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, HEAD, OPTIONS + X-Api-Time: + - 0.388s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: '{"count":32,"next":"/api/v1/projects/?page=2","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/817/","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/817/"},"summary_fields":{"last_job":{"id":817,"name":"Demo + Project","description":"A great demo","finished":"2017-05-03T19:31:51.372Z","status":"successful","failed":false},"last_update":{"id":817,"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-05-03T19:31:42.668Z","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":"master","scm_clean":true,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-05-03T19:31:51.372527Z","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":"2017-05-03T19:31:51.372527Z"},{"id":29,"type":"project","url":"/api/v1/projects/29/","related":{"created_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/804/","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/804/"},"summary_fields":{"last_job":{"id":804,"name":"lg-project","description":"lg_project","finished":"2017-05-01T21:35:09.342Z","status":"successful","failed":false},"last_update":{"id":804,"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":""},"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":"2017-05-01T21:35:05.600Z","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":"2017-05-01T21:35:09.342180Z","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":"2017-05-01T21:35:09.342180Z"},{"id":35,"type":"project","url":"/api/v1/projects/35/","related":{"created_by":"/api/v1/users/1/","credential":"/api/v1/credentials/3/","last_job":"/api/v1/project_updates/617/","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/617/"},"summary_fields":{"last_job":{"id":617,"name":"DB","description":"DB + Playbooks","finished":"2017-04-10T07:36:07.139Z","status":"failed","failed":true},"last_update":{"id":617,"name":"DB","description":"DB + Playbooks","status":"failed","failed":true},"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":""},"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-04-10T07:35:53.860Z","name":"DB","description":"DB + Playbooks","local_path":"_35__db_github","scm_type":"git","scm_url":"https://github.com/syncrou/playbooks","scm_branch":"maste","scm_clean":false,"scm_delete_on_update":true,"credential":3,"last_job_run":"2017-04-10T07:36:07.139667Z","last_job_failed":true,"has_schedules":false,"next_job_run":null,"status":"failed","organization":1,"scm_delete_on_next_update":false,"scm_update_on_launch":true,"scm_update_cache_timeout":60,"last_update_failed":true,"last_updated":"2017-04-10T07:36:07.139667Z"},{"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":124,"type":"project","url":"/api/v1/projects/124/","related":{"created_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/619/","notification_templates_error":"/api/v1/projects/124/notification_templates_error/","notification_templates_success":"/api/v1/projects/124/notification_templates_success/","object_roles":"/api/v1/projects/124/object_roles/","notification_templates_any":"/api/v1/projects/124/notification_templates_any/","project_updates":"/api/v1/projects/124/project_updates/","update":"/api/v1/projects/124/update/","access_list":"/api/v1/projects/124/access_list/","playbooks":"/api/v1/projects/124/playbooks/","schedules":"/api/v1/projects/124/schedules/","teams":"/api/v1/projects/124/teams/","activity_stream":"/api/v1/projects/124/activity_stream/","organization":"/api/v1/organizations/1/","last_update":"/api/v1/project_updates/619/"},"summary_fields":{"last_job":{"id":619,"name":"madhu","description":"simple + playbooks","finished":"2017-04-10T07:38:20.788Z","status":"successful","failed":false},"last_update":{"id":619,"name":"madhu","description":"simple + playbooks","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":379,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":381,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":382,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":380,"name":"Read"}}},"created":"2017-02-15T18:06:26.379Z","modified":"2017-03-28T14:22:43.972Z","name":"madhu","description":"simple + playbooks","local_path":"_124__madhu","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-04-10T07:38:20.788937Z","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":"2017-04-10T07:38:20.788937Z"},{"id":155,"type":"project","url":"/api/v1/projects/155/","related":{"created_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/906/","notification_templates_error":"/api/v1/projects/155/notification_templates_error/","notification_templates_success":"/api/v1/projects/155/notification_templates_success/","object_roles":"/api/v1/projects/155/object_roles/","notification_templates_any":"/api/v1/projects/155/notification_templates_any/","project_updates":"/api/v1/projects/155/project_updates/","update":"/api/v1/projects/155/update/","access_list":"/api/v1/projects/155/access_list/","playbooks":"/api/v1/projects/155/playbooks/","schedules":"/api/v1/projects/155/schedules/","teams":"/api/v1/projects/155/teams/","activity_stream":"/api/v1/projects/155/activity_stream/","organization":"/api/v1/organizations/1/","last_update":"/api/v1/project_updates/906/"},"summary_fields":{"last_job":{"id":906,"name":"lucy","description":"test + playbook","finished":"2017-06-08T15:24:42.582Z","status":"successful","failed":false},"last_update":{"id":906,"name":"lucy","description":"test + playbook","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":479,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":481,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":482,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":480,"name":"Read"}}},"created":"2017-02-17T19:27:36.598Z","modified":"2017-03-22T19:16:46.229Z","name":"lucy","description":"test + playbook","local_path":"_155__lucy","scm_type":"git","scm_url":"https://github.com/lfu/playbook","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-06-08T15:24:42.582420Z","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-06-08T15:24:42.582420Z"},{"id":418,"type":"project","url":"/api/v1/projects/418/","related":{"created_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/527/","notification_templates_error":"/api/v1/projects/418/notification_templates_error/","notification_templates_success":"/api/v1/projects/418/notification_templates_success/","object_roles":"/api/v1/projects/418/object_roles/","notification_templates_any":"/api/v1/projects/418/notification_templates_any/","project_updates":"/api/v1/projects/418/project_updates/","update":"/api/v1/projects/418/update/","access_list":"/api/v1/projects/418/access_list/","playbooks":"/api/v1/projects/418/playbooks/","schedules":"/api/v1/projects/418/schedules/","teams":"/api/v1/projects/418/teams/","activity_stream":"/api/v1/projects/418/activity_stream/","organization":"/api/v1/organizations/1/","last_update":"/api/v1/project_updates/527/"},"summary_fields":{"last_job":{"id":527,"name":"jwong-test3","description":"test","finished":"2017-03-23T14:54:24.481Z","status":"failed","failed":true},"last_update":{"id":527,"name":"jwong-test3","description":"test","status":"failed","failed":true},"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":1468,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":1470,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1471,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":1469,"name":"Read"}}},"created":"2017-03-23T14:54:15.650Z","modified":"2017-03-23T14:54:15.753Z","name":"jwong-test3","description":"test","local_path":"_418__jwong_test3","scm_type":"git","scm_url":"git://abc","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-03-23T14:54:24.481829Z","last_job_failed":true,"has_schedules":false,"next_job_run":null,"status":"failed","organization":1,"scm_delete_on_next_update":false,"scm_update_on_launch":false,"scm_update_cache_timeout":0,"last_update_failed":true,"last_updated":"2017-03-23T14:54:24.481829Z"},{"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/","modified_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/566/","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/566/"},"summary_fields":{"last_job":{"id":566,"name":"gm_test_repo","description":"gm_test_repo","finished":"2017-03-24T18:32:57.111Z","status":"successful","failed":false},"last_update":{"id":566,"name":"gm_test_repo","description":"gm_test_repo","status":"successful","failed":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 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-03-24T19:12:32.527Z","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-03-24T18:32:57.111528Z","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-24T18:32:57.111528Z"},{"id":430,"type":"project","url":"/api/v1/projects/430/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","credential":"/api/v1/credentials/3/","last_job":"/api/v1/project_updates/568/","notification_templates_error":"/api/v1/projects/430/notification_templates_error/","notification_templates_success":"/api/v1/projects/430/notification_templates_success/","object_roles":"/api/v1/projects/430/object_roles/","notification_templates_any":"/api/v1/projects/430/notification_templates_any/","project_updates":"/api/v1/projects/430/project_updates/","update":"/api/v1/projects/430/update/","access_list":"/api/v1/projects/430/access_list/","playbooks":"/api/v1/projects/430/playbooks/","schedules":"/api/v1/projects/430/schedules/","teams":"/api/v1/projects/430/teams/","activity_stream":"/api/v1/projects/430/activity_stream/","organization":"/api/v1/organizations/1/","last_update":"/api/v1/project_updates/568/"},"summary_fields":{"last_job":{"id":568,"name":"I + have credentials","description":"Credentials","finished":"2017-03-27T07:29:02.222Z","status":"successful","failed":false},"last_update":{"id":568,"name":"I + have credentials","description":"Credentials","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":1642,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":1644,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1645,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":1643,"name":"Read"}}},"created":"2017-03-27T07:28:37.154Z","modified":"2017-03-29T07:54:05.583Z","name":"I + have credentials","description":"Credentials","local_path":"_430__i_have_credentials","scm_type":"git","scm_url":"https://github.com/ManageIQ/manageiq","scm_branch":"master","scm_clean":true,"scm_delete_on_update":false,"credential":3,"last_job_run":"2017-03-27T07:29:02.222318Z","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":1,"last_update_failed":false,"last_updated":"2017-03-27T07:29:02.222318Z"},{"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/","credential":"/api/v1/credentials/3/","last_job":"/api/v1/project_updates/614/","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/","last_update":"/api/v1/project_updates/614/"},"summary_fields":{"last_job":{"id":614,"name":"DB + Playbooks 2","description":"DB Playbooks 2","finished":"2017-04-04T19:19:28.398Z","status":"successful","failed":false},"last_update":{"id":614,"name":"DB + Playbooks 2","description":"DB Playbooks 2","status":"successful","failed":false},"credential":{"id":3,"name":"db-github","description":"db-github","kind":"scm","cloud":false},"organization":{"id":4,"name":"ManageIQ","description":"ManageIQ + Default Organization"},"created_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-04-04T19:19:23.779Z","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":3,"last_job_run":"2017-04-04T19:19:28.398567Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","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:28.398567Z"},{"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":472,"type":"project","url":"/api/v1/projects/472/","related":{"created_by":"/api/v1/users/1/","credential":"/api/v1/credentials/3/","last_job":"/api/v1/project_updates/659/","notification_templates_error":"/api/v1/projects/472/notification_templates_error/","notification_templates_success":"/api/v1/projects/472/notification_templates_success/","object_roles":"/api/v1/projects/472/object_roles/","notification_templates_any":"/api/v1/projects/472/notification_templates_any/","project_updates":"/api/v1/projects/472/project_updates/","update":"/api/v1/projects/472/update/","access_list":"/api/v1/projects/472/access_list/","playbooks":"/api/v1/projects/472/playbooks/","schedules":"/api/v1/projects/472/schedules/","teams":"/api/v1/projects/472/teams/","activity_stream":"/api/v1/projects/472/activity_stream/","organization":"/api/v1/organizations/1/","last_update":"/api/v1/project_updates/659/"},"summary_fields":{"last_job":{"id":659,"name":"targeted_refresh","description":"","finished":"2017-04-26T15:22:45.771Z","status":"successful","failed":false},"last_update":{"id":659,"name":"targeted_refresh","description":"","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":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the project","id":1889,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":1891,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1892,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":1890,"name":"Read"}}},"created":"2017-04-10T18:28:19.485Z","modified":"2017-04-26T15:19:49.078Z","name":"targeted_refresh","description":"","local_path":"_472__targeted_refresh","scm_type":"git","scm_url":"https://github.com/ansible/ansible.git","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":3,"last_job_run":"2017-04-26T15:22:45.771456Z","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":"2017-04-26T15:22:45.771456Z"},{"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":478,"type":"project","url":"/api/v1/projects/478/","related":{"created_by":"/api/v1/users/1/","last_job":"/api/v1/project_updates/774/","notification_templates_error":"/api/v1/projects/478/notification_templates_error/","notification_templates_success":"/api/v1/projects/478/notification_templates_success/","object_roles":"/api/v1/projects/478/object_roles/","notification_templates_any":"/api/v1/projects/478/notification_templates_any/","project_updates":"/api/v1/projects/478/project_updates/","update":"/api/v1/projects/478/update/","access_list":"/api/v1/projects/478/access_list/","playbooks":"/api/v1/projects/478/playbooks/","schedules":"/api/v1/projects/478/schedules/","teams":"/api/v1/projects/478/teams/","activity_stream":"/api/v1/projects/478/activity_stream/","organization":"/api/v1/organizations/1/","last_update":"/api/v1/project_updates/774/"},"summary_fields":{"last_job":{"id":774,"name":"durandom-race-condition","description":"checking + a race condition when updating","finished":"2017-04-26T17:58:21.033Z","status":"successful","failed":false},"last_update":{"id":774,"name":"durandom-race-condition","description":"checking + a race condition when updating","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":1912,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":1914,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":1915,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":1913,"name":"Read"}}},"created":"2017-04-26T15:41:28.178Z","modified":"2017-04-26T17:45:56.001Z","name":"durandom-race-condition","description":"checking + a race condition when updating","local_path":"_478__durandom_race_condition","scm_type":"git","scm_url":"https://github.com/durandom/ansible-examples","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":null,"last_job_run":"2017-04-26T17:58:21.033031Z","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":"2017-04-26T17:58:21.033031Z"},{"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"}]}' + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:44 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/projects/4/playbooks/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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, 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: Wed, 21 Jun 2017 19:23:44 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/projects/29/playbooks/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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, HEAD, OPTIONS + X-Api-Time: + - 0.046s + Transfer-Encoding: + - chunked + 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: Wed, 21 Jun 2017 19:23:45 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/projects/35/playbooks/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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, HEAD, OPTIONS + X-Api-Time: + - 0.037s + Transfer-Encoding: + - chunked + 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: Wed, 21 Jun 2017 19:23:45 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/projects/36/playbooks/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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, HEAD, OPTIONS + X-Api-Time: + - 2.959s + 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: Wed, 21 Jun 2017 19:23:48 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/projects/37/playbooks/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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, HEAD, OPTIONS + X-Api-Time: + - 0.032s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: '["hello_world.yml"]' + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:48 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/projects/40/playbooks/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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, HEAD, OPTIONS + X-Api-Time: + - 0.035s + 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: Wed, 21 Jun 2017 19:23:48 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/projects/124/playbooks/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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, HEAD, OPTIONS + X-Api-Time: + - 0.034s + Content-Length: + - '170' + Content-Type: + - application/json + body: + encoding: UTF-8 + 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: Wed, 21 Jun 2017 19:23:48 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/config + uri: https://dev-ansible-tower3.example.com/api/v1/projects/155/playbooks/ body: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: - code: 301 - message: MOVED PERMANENTLY + code: 200 + message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:52 GMT + - Wed, 21 Jun 2017 19:23:48 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.038s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: '["big_output.yaml","check_version.yaml","echo_inputs.yaml","host_play.yaml","list_inputs.yaml","list_params.yaml","plays.yaml","print_output.yaml","set_stats.yaml","test_1.yaml","validate_inputs.yaml"]' + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:49 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/projects/418/playbooks/ + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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, HEAD, OPTIONS + X-Api-Time: + - 0.032s Content-Length: - - '0' + - '2' Content-Type: - - text/html; charset=utf-8 + - application/json body: encoding: UTF-8 + string: "[]" + http_version: + recorded_at: Wed, 21 Jun 2017 19:23:49 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/projects/422/playbooks/ + body: + encoding: US-ASCII string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + User-Agent: + - Faraday v0.9.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, 21 Jun 2017 19:23: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, HEAD, OPTIONS + X-Api-Time: + - 0.151s + Transfer-Encoding: + - chunked + Content-Type: + - application/json + body: + encoding: UTF-8 + string: "[]" http_version: - recorded_at: Thu, 09 Feb 2017 09:37:53 GMT + recorded_at: Wed, 21 Jun 2017 19:23:49 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/config/ + uri: https://dev-ansible-tower3.example.com/api/v1/projects/428/playbooks/ body: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 200 message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:52 GMT + - Wed, 21 Jun 2017 19:23: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 + - GET, HEAD, OPTIONS X-Api-Time: - - 0.223s + - 0.033s Content-Length: - - '9766' + - '103' Content-Type: - application/json body: - encoding: ASCII-8BIT - string: !binary |- - eyJldWxhIjoiQU5TSUJMRSBUT1dFUiBCWSBSRUQgSEFUIEVORCBVU0VSIExJQ0VOU0UgQUdSRUVNRU5UXG5cblRoaXMgZW5kIHVzZXIgbGljZW5zZSBhZ3JlZW1lbnQgKOKAnEVVTEHigJ0pIGdvdmVybnMgdGhlIHVzZSBvZiB0aGUgQW5zaWJsZSBUb3dlciBzb2Z0d2FyZSBhbmQgYW55IHJlbGF0ZWQgdXBkYXRlcywgdXBncmFkZXMsIHZlcnNpb25zLCBhcHBlYXJhbmNlLCBzdHJ1Y3R1cmUgYW5kIG9yZ2FuaXphdGlvbiAodGhlIOKAnEFuc2libGUgVG93ZXIgU29mdHdhcmXigJ0pLCByZWdhcmRsZXNzIG9mIHRoZSBkZWxpdmVyeSBtZWNoYW5pc20uICBcblxuMS4gIExpY2Vuc2UgR3JhbnQuICBTdWJqZWN0IHRvIHRoZSB0ZXJtcyBvZiB0aGlzIEVVTEEsIFJlZCBIYXQsIEluYy4gYW5kIGl0cyBhZmZpbGlhdGVzICjigJxSZWQgSGF04oCdKSBncmFudCB0byB5b3UgKOKAnFlvdeKAnSkgYSBub24tdHJhbnNmZXJhYmxlLCBub24tZXhjbHVzaXZlLCB3b3JsZHdpZGUsIG5vbi1zdWJsaWNlbnNhYmxlLCBsaW1pdGVkLCByZXZvY2FibGUgbGljZW5zZSB0byB1c2UgdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgZm9yIHRoZSB0ZXJtIG9mIHRoZSBhc3NvY2lhdGVkIFJlZCBIYXQgU29mdHdhcmUgU3Vic2NyaXB0aW9uKHMpIGFuZCBpbiBhIHF1YW50aXR5IGVxdWFsIHRvIHRoZSBudW1iZXIgb2YgUmVkIEhhdCBTb2Z0d2FyZSBTdWJzY3JpcHRpb25zIHB1cmNoYXNlZCBmcm9tIFJlZCBIYXQgZm9yIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlICjigJxMaWNlbnNl4oCdKSwgZWFjaCBhcyBzZXQgZm9ydGggb24gdGhlIGFwcGxpY2FibGUgUmVkIEhhdCBvcmRlcmluZyBkb2N1bWVudC4gIFlvdSBhY3F1aXJlIG9ubHkgdGhlIHJpZ2h0IHRvIHVzZSB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZSBhbmQgZG8gbm90IGFjcXVpcmUgYW55IHJpZ2h0cyBvZiBvd25lcnNoaXAuIFJlZCBIYXQgcmVzZXJ2ZXMgYWxsIHJpZ2h0cyB0byB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZSBub3QgZXhwcmVzc2x5IGdyYW50ZWQgdG8gWW91LiAgVGhpcyBMaWNlbnNlIGdyYW50IHBlcnRhaW5zIHNvbGVseSB0byBZb3VyIHVzZSBvZiB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZSBhbmQgaXMgbm90IGludGVuZGVkIHRvIGxpbWl0IFlvdXIgcmlnaHRzIHVuZGVyLCBvciBncmFudCBZb3UgcmlnaHRzIHRoYXQgc3VwZXJzZWRlLCB0aGUgbGljZW5zZSB0ZXJtcyBvZiBhbnkgc29mdHdhcmUgcGFja2FnZXMgd2hpY2ggbWF5IGJlIG1hZGUgYXZhaWxhYmxlIHdpdGggdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgdGhhdCBhcmUgc3ViamVjdCB0byBhbiBvcGVuIHNvdXJjZSBzb2Z0d2FyZSBsaWNlbnNlLiAgXG4gXG4yLiAgSW50ZWxsZWN0dWFsIFByb3BlcnR5IFJpZ2h0cy4gIFRpdGxlIHRvIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlIGFuZCBlYWNoIGNvbXBvbmVudCwgY29weSBhbmQgbW9kaWZpY2F0aW9uLCBpbmNsdWRpbmcgYWxsIGRlcml2YXRpdmUgd29ya3Mgd2hldGhlciBtYWRlIGJ5IFJlZCBIYXQsIFlvdSBvciBvbiBSZWQgSGF0J3MgYmVoYWxmLCBpbmNsdWRpbmcgdGhvc2UgbWFkZSBhdCBZb3VyIHN1Z2dlc3Rpb24gYW5kIGFsbCBhc3NvY2lhdGVkIGludGVsbGVjdHVhbCBwcm9wZXJ0eSByaWdodHMsIGFyZSBhbmQgc2hhbGwgcmVtYWluIHRoZSBzb2xlIGFuZCBleGNsdXNpdmUgcHJvcGVydHkgb2YgUmVkIEhhdCBhbmQvb3IgaXQgbGljZW5zb3JzLiAgVGhlIExpY2Vuc2UgZG9lcyBub3QgYXV0aG9yaXplIFlvdSAobm9yIG1heSBZb3UgYWxsb3cgYW55IHRoaXJkIHBhcnR5LCBzcGVjaWZpY2FsbHkgbm9uLWVtcGxveWVlcyBvZiBZb3VycykgdG86IChhKSBjb3B5LCBkaXN0cmlidXRlLCByZXByb2R1Y2UsIHVzZSBvciBhbGxvdyB0aGlyZCBwYXJ0eSBhY2Nlc3MgdG8gdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgZXhjZXB0IGFzIGV4cHJlc3NseSBhdXRob3JpemVkIGhlcmV1bmRlcjsgKGIpIGRlY29tcGlsZSwgZGlzYXNzZW1ibGUsIHJldmVyc2UgZW5naW5lZXIsIHRyYW5zbGF0ZSwgbW9kaWZ5LCBjb252ZXJ0IG9yIGFwcGx5IGFueSBwcm9jZWR1cmUgb3IgcHJvY2VzcyB0byB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZSBpbiBvcmRlciB0byBhc2NlcnRhaW4sIGRlcml2ZSwgYW5kL29yIGFwcHJvcHJpYXRlIGZvciBhbnkgcmVhc29uIG9yIHB1cnBvc2UsIGluY2x1ZGluZyB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZSBzb3VyY2UgY29kZSBvciBzb3VyY2UgbGlzdGluZ3Mgb3IgYW55IHRyYWRlIHNlY3JldCBpbmZvcm1hdGlvbiBvciBwcm9jZXNzIGNvbnRhaW5lZCBpbiB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZSAoZXhjZXB0IGFzIHBlcm1pdHRlZCB1bmRlciBhcHBsaWNhYmxlIGxhdyk7IChjKSBleGVjdXRlIG9yIGluY29ycG9yYXRlIG90aGVyIHNvZnR3YXJlIChleGNlcHQgZm9yIGFwcHJvdmVkIHNvZnR3YXJlIGFzIGFwcGVhcnMgaW4gdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgZG9jdW1lbnRhdGlvbiBvciBzcGVjaWZpY2FsbHkgYXBwcm92ZWQgYnkgUmVkIEhhdCBpbiB3cml0aW5nKSBpbnRvIEFuc2libGUgVG93ZXIgU29mdHdhcmUsIG9yIGNyZWF0ZSBhIGRlcml2YXRpdmUgd29yayBvZiBhbnkgcGFydCBvZiB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZTsgKGQpIHJlbW92ZSBhbnkgdHJhZGVtYXJrcywgdHJhZGUgbmFtZXMgb3IgdGl0bGVzLCBjb3B5cmlnaHRzIGxlZ2VuZHMgb3IgYW55IG90aGVyIHByb3ByaWV0YXJ5IG1hcmtpbmcgb24gdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmU7IChlKSBkaXNjbG9zZSB0aGUgcmVzdWx0cyBvZiBhbnkgYmVuY2htYXJraW5nIG9mIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlICh3aGV0aGVyIG9yIG5vdCBvYnRhaW5lZCB3aXRoIFJlZCBIYXTigJlzIGFzc2lzdGFuY2UpIHRvIGFueSB0aGlyZCBwYXJ0eTsgKGYpIGF0dGVtcHQgdG8gY2lyY3VtdmVudCBhbnkgdXNlciBsaW1pdHMgb3Igb3RoZXIgbGljZW5zZSwgdGltaW5nIG9yIHVzZSByZXN0cmljdGlvbnMgdGhhdCBhcmUgYnVpbHQgaW50bywgZGVmaW5lZCBvciBhZ3JlZWQgdXBvbiwgcmVnYXJkaW5nIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlLiBZb3UgYXJlIGhlcmVieSBub3RpZmllZCB0aGF0IHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlIG1heSBjb250YWluIHRpbWUtb3V0IGRldmljZXMsIGNvdW50ZXIgZGV2aWNlcywgYW5kL29yIG90aGVyIGRldmljZXMgaW50ZW5kZWQgdG8gZW5zdXJlIHRoZSBsaW1pdHMgb2YgdGhlIExpY2Vuc2Ugd2lsbCBub3QgYmUgZXhjZWVkZWQgKOKAnExpbWl0aW5nIERldmljZXPigJ0pLiAgSWYgdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgY29udGFpbnMgTGltaXRpbmcgRGV2aWNlcywgUmVkIEhhdCB3aWxsIHByb3ZpZGUgWW91IG1hdGVyaWFscyBuZWNlc3NhcnkgdG8gdXNlIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlIHRvIHRoZSBleHRlbnQgcGVybWl0dGVkLiAgWW91IG1heSBub3QgdGFtcGVyIHdpdGggb3Igb3RoZXJ3aXNlIHRha2UgYW55IGFjdGlvbiB0byBkZWZlYXQgb3IgY2lyY3VtdmVudCBhIExpbWl0aW5nIERldmljZSBvciBvdGhlciBjb250cm9sIG1lYXN1cmUsIGluY2x1ZGluZyBidXQgbm90IGxpbWl0ZWQgdG8sIHJlc2V0dGluZyB0aGUgdW5pdCBhbW91bnQgb3IgdXNpbmcgZmFsc2UgaG9zdCBpZGVudGlmaWNhdGlvbiBudW1iZXIgZm9yIHRoZSBwdXJwb3NlIG9mIGV4dGVuZGluZyBhbnkgdGVybSBvZiB0aGUgTGljZW5zZS4gXG5cbjMuICBFdmFsdWF0aW9uIExpY2Vuc2VzLiBVbmxlc3MgWW91IGhhdmUgcHVyY2hhc2VkIEFuc2libGUgVG93ZXIgU29mdHdhcmUgU3Vic2NyaXB0aW9ucyBmcm9tIFJlZCBIYXQgb3IgYW4gYXV0aG9yaXplZCByZXNlbGxlciB1bmRlciB0aGUgdGVybXMgb2YgYSBjb21tZXJjaWFsIGFncmVlbWVudCB3aXRoIFJlZCBIYXQsIGFsbCB1c2Ugb2YgdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgc2hhbGwgYmUgbGltaXRlZCB0byB0ZXN0aW5nIHB1cnBvc2VzIGFuZCBub3QgZm9yIHByb2R1Y3Rpb24gdXNlICjigJxFdmFsdWF0aW9u4oCdKS4gVW5sZXNzIG90aGVyd2lzZSBhZ3JlZWQgYnkgUmVkIEhhdCwgRXZhbHVhdGlvbiBvZiB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZSBzaGFsbCBiZSBsaW1pdGVkIHRvIGFuIGV2YWx1YXRpb24gZW52aXJvbm1lbnQgYW5kIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlIHNoYWxsIG5vdCBiZSB1c2VkIHRvIG1hbmFnZSBhbnkgc3lzdGVtcyBvciB2aXJ0dWFsIG1hY2hpbmVzIG9uIG5ldHdvcmtzIGJlaW5nIHVzZWQgaW4gdGhlIG9wZXJhdGlvbiBvZiBZb3VyIGJ1c2luZXNzIG9yIGFueSBvdGhlciBub24tZXZhbHVhdGlvbiBwdXJwb3NlLiAgVW5sZXNzIG90aGVyd2lzZSBhZ3JlZWQgYnkgUmVkIEhhdCwgWW91IHNoYWxsIGxpbWl0IGFsbCBFdmFsdWF0aW9uIHVzZSB0byBhIHNpbmdsZSAzMCBkYXkgZXZhbHVhdGlvbiBwZXJpb2QgYW5kIHNoYWxsIG5vdCBkb3dubG9hZCBvciBvdGhlcndpc2Ugb2J0YWluIGFkZGl0aW9uYWwgY29waWVzIG9mIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlIG9yIGxpY2Vuc2Uga2V5cyBmb3IgRXZhbHVhdGlvbi5cblxuNC4gIExpbWl0ZWQgV2FycmFudHkuICBFeGNlcHQgYXMgc3BlY2lmaWNhbGx5IHN0YXRlZCBpbiB0aGlzIFNlY3Rpb24gNCwgdG8gdGhlIG1heGltdW0gZXh0ZW50IHBlcm1pdHRlZCB1bmRlciBhcHBsaWNhYmxlIGxhdywgdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgYW5kIHRoZSBjb21wb25lbnRzIGFyZSBwcm92aWRlZCBhbmQgbGljZW5zZWQg4oCcYXMgaXPigJ0gd2l0aG91dCB3YXJyYW50eSBvZiBhbnkga2luZCwgZXhwcmVzc2VkIG9yIGltcGxpZWQsIGluY2x1ZGluZyB0aGUgaW1wbGllZCB3YXJyYW50aWVzIG9mIG1lcmNoYW50YWJpbGl0eSwgbm9uLWluZnJpbmdlbWVudCBvciBmaXRuZXNzIGZvciBhIHBhcnRpY3VsYXIgcHVycG9zZS4gIFJlZCBIYXQgd2FycmFudHMgc29sZWx5IHRvIFlvdSB0aGF0IHRoZSBtZWRpYSBvbiB3aGljaCB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZSBtYXkgYmUgZnVybmlzaGVkIHdpbGwgYmUgZnJlZSBmcm9tIGRlZmVjdHMgaW4gbWF0ZXJpYWxzIGFuZCBtYW51ZmFjdHVyZSB1bmRlciBub3JtYWwgdXNlIGZvciBhIHBlcmlvZCBvZiB0aGlydHkgKDMwKSBkYXlzIGZyb20gdGhlIGRhdGUgb2YgZGVsaXZlcnkgdG8gWW91LiAgUmVkIEhhdCBkb2VzIG5vdCB3YXJyYW50IHRoYXQgdGhlIGZ1bmN0aW9ucyBjb250YWluZWQgaW4gdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgd2lsbCBtZWV0IFlvdXIgcmVxdWlyZW1lbnRzIG9yIHRoYXQgdGhlIG9wZXJhdGlvbiBvZiB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZSB3aWxsIGJlIGVudGlyZWx5IGVycm9yIGZyZWUsIGFwcGVhciBwcmVjaXNlbHkgYXMgZGVzY3JpYmVkIGluIHRoZSBhY2NvbXBhbnlpbmcgZG9jdW1lbnRhdGlvbiwgb3IgY29tcGx5IHdpdGggcmVndWxhdG9yeSByZXF1aXJlbWVudHMuIFxuXG41LiAgTGltaXRhdGlvbiBvZiBSZW1lZGllcyBhbmQgTGlhYmlsaXR5LiBUbyB0aGUgbWF4aW11bSBleHRlbnQgcGVybWl0dGVkIGJ5IGFwcGxpY2FibGUgbGF3LCBZb3VyIGV4Y2x1c2l2ZSByZW1lZHkgdW5kZXIgdGhpcyBFVUxBIGlzIHRvIHJldHVybiBhbnkgZGVmZWN0aXZlIG1lZGlhIHdpdGhpbiB0aGlydHkgKDMwKSBkYXlzIG9mIGRlbGl2ZXJ5IGFsb25nIHdpdGggYSBjb3B5IG9mIFlvdXIgcGF5bWVudCByZWNlaXB0IGFuZCBSZWQgSGF0LCBhdCBpdHMgb3B0aW9uLCB3aWxsIHJlcGxhY2UgaXQgb3IgcmVmdW5kIHRoZSBtb25leSBwYWlkIGJ5IFlvdSBmb3IgdGhlIG1lZGlhLiAgVG8gdGhlIG1heGltdW0gZXh0ZW50IHBlcm1pdHRlZCB1bmRlciBhcHBsaWNhYmxlIGxhdywgbmVpdGhlciBSZWQgSGF0IG5vciBhbnkgUmVkIEhhdCBhdXRob3JpemVkIGRpc3RyaWJ1dG9yIHdpbGwgYmUgbGlhYmxlIHRvIFlvdSBmb3IgYW55IGluY2lkZW50YWwgb3IgY29uc2VxdWVudGlhbCBkYW1hZ2VzLCBpbmNsdWRpbmcgbG9zdCBwcm9maXRzIG9yIGxvc3Qgc2F2aW5ncyBhcmlzaW5nIG91dCBvZiB0aGUgdXNlIG9yIGluYWJpbGl0eSB0byB1c2UgdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgb3IgYW55IGNvbXBvbmVudCwgZXZlbiBpZiBSZWQgSGF0IG9yIHRoZSBhdXRob3JpemVkIGRpc3RyaWJ1dG9yIGhhcyBiZWVuIGFkdmlzZWQgb2YgdGhlIHBvc3NpYmlsaXR5IG9mIHN1Y2ggZGFtYWdlcy4gIEluIG5vIGV2ZW50IHNoYWxsIFJlZCBIYXQncyBsaWFiaWxpdHkgb3IgYW4gYXV0aG9yaXplZCBkaXN0cmlidXRvcuKAmXMgbGlhYmlsaXR5IGV4Y2VlZCB0aGUgYW1vdW50IHRoYXQgWW91IHBhaWQgdG8gUmVkIEhhdCBmb3IgdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgZHVyaW5nIHRoZSB0d2VsdmUgbW9udGhzIHByZWNlZGluZyB0aGUgZmlyc3QgZXZlbnQgZ2l2aW5nIHJpc2UgdG8gbGlhYmlsaXR5LlxuXG42LiAgRXhwb3J0IENvbnRyb2wuICBJbiBhY2NvcmRhbmNlIHdpdGggdGhlIGxhd3Mgb2YgdGhlIFVuaXRlZCBTdGF0ZXMgYW5kIG90aGVyIGNvdW50cmllcywgWW91IHJlcHJlc2VudCBhbmQgd2FycmFudCB0aGF0IFlvdTogKGEpIHVuZGVyc3RhbmQgdGhhdCB0aGUgQW5zaWJsZSBUb3dlciBTb2Z0d2FyZSBhbmQgaXRzIGNvbXBvbmVudHMgbWF5IGJlIHN1YmplY3QgdG8gZXhwb3J0IGNvbnRyb2xzIHVuZGVyIHRoZSBVLlMuIENvbW1lcmNlIERlcGFydG1lbnTigJlzIEV4cG9ydCBBZG1pbmlzdHJhdGlvbiBSZWd1bGF0aW9ucyAo4oCcRUFS4oCdKTsgKGIpIGFyZSBub3QgbG9jYXRlZCBpbiBhbnkgY291bnRyeSBsaXN0ZWQgaW4gQ291bnRyeSBHcm91cCBFOjEgaW4gU3VwcGxlbWVudCBOby4gMSB0byBwYXJ0IDc0MCBvZiB0aGUgRUFSOyAoYykgd2lsbCBub3QgZXhwb3J0LCByZS1leHBvcnQsIG9yIHRyYW5zZmVyIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlIHRvIGFueSBwcm9oaWJpdGVkIGRlc3RpbmF0aW9uIG9yIHRvIGFueSBlbmQgdXNlciB3aG8gaGFzIGJlZW4gcHJvaGliaXRlZCBmcm9tIHBhcnRpY2lwYXRpbmcgaW4gVVMgZXhwb3J0IHRyYW5zYWN0aW9ucyBieSBhbnkgZmVkZXJhbCBhZ2VuY3kgb2YgdGhlIFVTIGdvdmVybm1lbnQ7ICAoZCkgd2lsbCBub3QgdXNlIG9yIHRyYW5zZmVyIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlIGZvciB1c2UgaW4gY29ubmVjdGlvbiB3aXRoIHRoZSBkZXNpZ24sIGRldmVsb3BtZW50IG9yIHByb2R1Y3Rpb24gb2YgbnVjbGVhciwgY2hlbWljYWwgb3IgYmlvbG9naWNhbCB3ZWFwb25zLCBvciByb2NrZXQgc3lzdGVtcywgc3BhY2UgbGF1bmNoIHZlaGljbGVzLCBvciBzb3VuZGluZyByb2NrZXRzIG9yIHVubWFubmVkIGFpciB2ZWhpY2xlIHN5c3RlbXM7IChlKSB1bmRlcnN0YW5kIGFuZCBhZ3JlZSB0aGF0IGlmIHlvdSBhcmUgaW4gdGhlIFVuaXRlZCBTdGF0ZXMgYW5kIHlvdSBleHBvcnQgb3IgdHJhbnNmZXIgdGhlIEFuc2libGUgVG93ZXIgU29mdHdhcmUgdG8gZWxpZ2libGUgZW5kIHVzZXJzLCB5b3Ugd2lsbCwgdG8gdGhlIGV4dGVudCByZXF1aXJlZCBieSBFQVIgU2VjdGlvbiA3NDAuMTcgb2J0YWluIGEgbGljZW5zZSBmb3Igc3VjaCBleHBvcnQgb3IgdHJhbnNmZXIgYW5kIHdpbGwgc3VibWl0IHNlbWktYW5udWFsIHJlcG9ydHMgdG8gdGhlIENvbW1lcmNlIERlcGFydG1lbnTigJlzIEJ1cmVhdSBvZiBJbmR1c3RyeSBhbmQgU2VjdXJpdHksIHdoaWNoIGluY2x1ZGUgdGhlIG5hbWUgYW5kIGFkZHJlc3MgKGluY2x1ZGluZyBjb3VudHJ5KSBvZiBlYWNoIHRyYW5zZmVyZWU7IGFuZCAoZikgdW5kZXJzdGFuZCB0aGF0IGNvdW50cmllcyBpbmNsdWRpbmcgdGhlIFVuaXRlZCBTdGF0ZXMgbWF5IHJlc3RyaWN0IHRoZSBpbXBvcnQsIHVzZSwgb3IgZXhwb3J0IG9mIGVuY3J5cHRpb24gcHJvZHVjdHMgKHdoaWNoIG1heSBpbmNsdWRlIHRoZSBBbnNpYmxlIFRvd2VyIFNvZnR3YXJlKSBhbmQgYWdyZWUgdGhhdCB5b3Ugc2hhbGwgYmUgc29sZWx5IHJlc3BvbnNpYmxlIGZvciBjb21wbGlhbmNlIHdpdGggYW55IHN1Y2ggaW1wb3J0LCB1c2UsIG9yIGV4cG9ydCByZXN0cmljdGlvbnMuXG5cbjcuICBHZW5lcmFsLiAgSWYgYW55IHByb3Zpc2lvbiBvZiB0aGlzIEVVTEEgaXMgaGVsZCB0byBiZSB1bmVuZm9yY2VhYmxlLCB0aGF0IHNoYWxsIG5vdCBhZmZlY3QgdGhlIGVuZm9yY2VhYmlsaXR5IG9mIHRoZSByZW1haW5pbmcgcHJvdmlzaW9ucy4gIFRoaXMgYWdyZWVtZW50IHNoYWxsIGJlIGdvdmVybmVkIGJ5IHRoZSBsYXdzIG9mIHRoZSBTdGF0ZSBvZiBOZXcgWW9yayBhbmQgb2YgdGhlIFVuaXRlZCBTdGF0ZXMsIHdpdGhvdXQgcmVnYXJkIHRvIGFueSBjb25mbGljdCBvZiBsYXdzIHByb3Zpc2lvbnMuIFRoZSByaWdodHMgYW5kIG9ibGlnYXRpb25zIG9mIHRoZSBwYXJ0aWVzIHRvIHRoaXMgRVVMQSBzaGFsbCBub3QgYmUgZ292ZXJuZWQgYnkgdGhlIFVuaXRlZCBOYXRpb25zIENvbnZlbnRpb24gb24gdGhlIEludGVybmF0aW9uYWwgU2FsZSBvZiBHb29kcy4gXG5cbkNvcHlyaWdodCDCqSAyMDE1IFJlZCBIYXQsIEluYy4gIEFsbCByaWdodHMgcmVzZXJ2ZWQuICBcIlJlZCBIYXRcIiBhbmQg4oCcQW5zaWJsZSBUb3dlcuKAnSBhcmUgcmVnaXN0ZXJlZCB0cmFkZW1hcmtzIG9mIFJlZCBIYXQsIEluYy4gIEFsbCBvdGhlciB0cmFkZW1hcmtzIGFyZSB0aGUgcHJvcGVydHkgb2YgdGhlaXIgcmVzcGVjdGl2ZSBvd25lcnMuXG4iLCJsaWNlbnNlX2luZm8iOnsiZGVwbG95bWVudF9pZCI6ImEzZGJkYzdmNTRlNDlhNjAzN2M0MzFmYTc4YmZmZTc0NjY3ZmRhY2EiLCJzdWJzY3JpcHRpb25fbmFtZSI6IkFuc2libGUgVG93ZXIgYnkgUmVkIEhhdCwgU3RhbmRhcmQgKDEwMCBNYW5hZ2VkIE5vZGVzKSIsImN1cnJlbnRfaW5zdGFuY2VzIjo4MywiZmVhdHVyZXMiOnsic3VydmV5cyI6dHJ1ZSwibXVsdGlwbGVfb3JnYW5pemF0aW9ucyI6dHJ1ZSwic3lzdGVtX3RyYWNraW5nIjp0cnVlLCJlbnRlcnByaXNlX2F1dGgiOnRydWUsInJlYnJhbmRpbmciOnRydWUsImFjdGl2aXR5X3N0cmVhbXMiOnRydWUsImxkYXAiOnRydWUsImhhIjp0cnVlfSwiZGF0ZV9leHBpcmVkIjpmYWxzZSwiYXZhaWxhYmxlX2luc3RhbmNlcyI6MTAwLCJob3N0bmFtZSI6ImZmNmI5ZTFmNTYxNTRhNjFiZWViNWE0ZGJkY2EzMjFhIiwiZnJlZV9pbnN0YW5jZXMiOjE3LCJpbnN0YW5jZV9jb3VudCI6MTAwLCJ0aW1lX3JlbWFpbmluZyI6MzEyMTExNDcsImNvbXBsaWFudCI6dHJ1ZSwiZ3JhY2VfcGVyaW9kX3JlbWFpbmluZyI6MzM4MDMxNDcsImNvbnRhY3RfZW1haWwiOiJqb2VzbWl0QHJlZGhhdC5jb20iLCJjb21wYW55X25hbWUiOiJSZWQgSGF0LCBJbmMuIiwiZGF0ZV93YXJuaW5nIjpmYWxzZSwibGljZW5zZV90eXBlIjoiZW50ZXJwcmlzZSIsImNvbnRhY3RfbmFtZSI6IkpvZSAgU21pdGgiLCJsaWNlbnNlX2RhdGUiOjE1MTc4NDc4MTksImxpY2Vuc2Vfa2V5IjoiZWQ5ZDAwZjFhMjU0ZTJiMGI3NzBiYWViMmIyNjg4YzQzN2U5ZGVlNDE3OTY2N2RmYmZmY2QxOTNlNTA4YTI2MyIsInZhbGlkX2tleSI6dHJ1ZX0sImFuYWx5dGljc19zdGF0dXMiOiJkZXRhaWxlZCIsInZlcnNpb24iOiIzLjAuMSIsInByb2plY3RfYmFzZV9kaXIiOiIvdmFyL2xpYi9hd3gvcHJvamVjdHMiLCJ0aW1lX3pvbmUiOiJBbWVyaWNhL05ld19Zb3JrIiwiYW5zaWJsZV92ZXJzaW9uIjoiMi4xLjAuMCIsInByb2plY3RfbG9jYWxfcGF0aHMiOltdfQ== + 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: Thu, 09 Feb 2017 09:37:54 GMT + recorded_at: Wed, 21 Jun 2017 19:23:49 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/job_templates + uri: https://dev-ansible-tower3.example.com/api/v1/projects/430/playbooks/ body: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: - code: 301 - message: MOVED PERMANENTLY + code: 200 + message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:53 GMT + - Wed, 21 Jun 2017 19:23:49 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/ + Vary: + - Accept,Cookie + Allow: + - GET, HEAD, OPTIONS + X-Api-Time: + - 1.136s Content-Length: - - '0' + - '23207' Content-Type: - - text/html; charset=utf-8 + - 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:55 GMT + recorded_at: Wed, 21 Jun 2017 19:23:51 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/ + uri: https://dev-ansible-tower3.example.com/api/v1/projects/432/playbooks/ body: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 200 message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:54 GMT + - Wed, 21 Jun 2017 19:23: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, HEAD, OPTIONS + - GET, HEAD, OPTIONS X-Api-Time: - - 0.192s - Content-Length: - - '31548' + - 0.031s + Transfer-Encoding: + - chunked 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: Wed, 21 Jun 2017 19:23:51 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/76/survey_spec/ + uri: https://dev-ansible-tower3.example.com/api/v1/projects/433/playbooks/ body: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 200 message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:55 GMT + - Wed, 21 Jun 2017 19:23: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 + - 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:37:56 GMT + recorded_at: Wed, 21 Jun 2017 19:23:51 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/76/survey_spec/ + uri: https://dev-ansible-tower3.example.com/api/v1/projects/440/playbooks/ body: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 200 message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:55 GMT + - Wed, 21 Jun 2017 19:23: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 + - GET, HEAD, OPTIONS X-Api-Time: - - 0.034s - Content-Length: - - '2' + - 0.032s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 - string: "{}" + string: "[]" http_version: - recorded_at: Thu, 09 Feb 2017 09:37:57 GMT + recorded_at: Wed, 21 Jun 2017 19:23:51 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/78/survey_spec/ + uri: https://dev-ansible-tower3.example.com/api/v1/projects/448/playbooks/ body: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 200 message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:56 GMT + - Wed, 21 Jun 2017 19:23: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 + - GET, HEAD, OPTIONS X-Api-Time: - - 0.036s - Content-Length: - - '2' + - 0.115s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 - string: "{}" + string: "[]" http_version: - recorded_at: Thu, 09 Feb 2017 09:37:57 GMT + recorded_at: Wed, 21 Jun 2017 19:23:51 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/78/survey_spec/ + uri: https://dev-ansible-tower3.example.com/api/v1/projects/453/playbooks/ body: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 200 message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:56 GMT + - Wed, 21 Jun 2017 19:23: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 + - GET, HEAD, OPTIONS X-Api-Time: - - 0.033s - Content-Length: - - '2' + - 0.504s + 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:58 GMT + recorded_at: Wed, 21 Jun 2017 19:23:52 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/79/survey_spec/ + uri: https://dev-ansible-tower3.example.com/api/v1/projects/454/playbooks/ body: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 200 message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:57 GMT + - Wed, 21 Jun 2017 19:23: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 + - GET, HEAD, OPTIONS X-Api-Time: - - 0.034s + - 1.274s 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: Wed, 21 Jun 2017 19:23:54 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/79/survey_spec/ + uri: https://dev-ansible-tower3.example.com/api/v1/projects/455/playbooks/ body: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 200 message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:58 GMT + - Wed, 21 Jun 2017 19:23: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 + - GET, HEAD, OPTIONS X-Api-Time: - - 0.034s + - 1.187s 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:59 GMT + recorded_at: Wed, 21 Jun 2017 19:23:55 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/80/survey_spec/ + uri: https://dev-ansible-tower3.example.com/api/v1/projects/457/playbooks/ body: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 200 message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:58 GMT + - Wed, 21 Jun 2017 19:23: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 + - GET, HEAD, OPTIONS X-Api-Time: - 0.035s - Content-Length: - - '2' + Transfer-Encoding: + - chunked 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:38:00 GMT + recorded_at: Wed, 21 Jun 2017 19:23:55 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/80/survey_spec/ + uri: https://dev-ansible-tower3.example.com/api/v1/projects/469/playbooks/ body: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 200 message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:59 GMT + - Wed, 21 Jun 2017 19:23: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 + - GET, HEAD, OPTIONS X-Api-Time: - - 0.033s - Content-Length: - - '2' + - 0.445s + 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: Wed, 21 Jun 2017 19:23:56 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/81/survey_spec/ + uri: https://dev-ansible-tower3.example.com/api/v1/projects/472/playbooks/ body: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 200 message: OK headers: Date: - - Thu, 09 Feb 2017 10:37:59 GMT + - Wed, 21 Jun 2017 19:23: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 + - GET, HEAD, OPTIONS X-Api-Time: - - 0.033s + - 0.180s Content-Length: - - '375' + - '3806' 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: '["docs/docsite/keyword_desc.yml","packaging/release/release.yml","shippable.yml","test/integration/amazon.yml","test/integration/asa.yaml","test/integration/azure.yml","test/integration/cloudflare.yml","test/integration/cloudscale.yml","test/integration/cloudstack.yml","test/integration/cnos.yaml","test/integration/consul.yml","test/integration/consul_inventory.yml","test/integration/dellos10.yaml","test/integration/dellos6.yaml","test/integration/dellos9.yaml","test/integration/destructive.yml","test/integration/eos.yaml","test/integration/exoscale.yml","test/integration/galaxy_playbook.yml","test/integration/galaxy_playbook_git.yml","test/integration/gce.yml","test/integration/ios.yaml","test/integration/iosxr.yaml","test/integration/jenkins.yml","test/integration/junos.yaml","test/integration/net_command.yml","test/integration/non_destructive.yml","test/integration/nxos.yaml","test/integration/ops.yaml","test/integration/rackspace.yml","test/integration/targets/async_extra_data/test_async.yml","test/integration/targets/binary_modules/download_binary_modules.yml","test/integration/targets/binary_modules/test_binary_modules.yml","test/integration/targets/blocks/main.yml","test/integration/targets/blocks/nested_fail.yml","test/integration/targets/blocks/nested_nested_fail.yml","test/integration/targets/callback_retry_task_name/test.yml","test/integration/targets/check_mode/check_mode.yml","test/integration/targets/connection/test_connection.yml","test/integration/targets/delegate_to/test_delegate_to.yml","test/integration/targets/environment/test_environment.yml","test/integration/targets/filters/vars/main.yml","test/integration/targets/gathering_facts/test_gathering_facts.yml","test/integration/targets/group_by/test_group_by.yml","test/integration/targets/groupby_filter/test_jinja2_groupby.yml","test/integration/targets/handlers/test_force_handlers.yml","test/integration/targets/handlers/test_handlers.yml","test/integration/targets/handlers/test_handlers_include.yml","test/integration/targets/handlers/test_handlers_inexistent_notify.yml","test/integration/targets/handlers/test_handlers_listen.yml","test/integration/targets/handlers/test_listening_handlers.yml","test/integration/targets/hash/test_hash.yml","test/integration/targets/hosts_field/test_hosts_field.yml","test/integration/targets/includes/test_includes.yml","test/integration/targets/includes/test_includes2.yml","test/integration/targets/includes/test_includes3.yml","test/integration/targets/lookup_paths/play.yml","test/integration/targets/lookup_paths/testplay.yml","test/integration/targets/lookup_properties/test_lookup_properties.yml","test/integration/targets/module_utils/module_utils_envvar.yml","test/integration/targets/module_utils/module_utils_test.yml","test/integration/targets/no_log/no_log_local.yml","test/integration/targets/parsing/bad_parsing.yml","test/integration/targets/parsing/good_parsing.yml","test/integration/targets/pull/pull-integration-test/local.yml","test/integration/targets/tags/test_tags.yml","test/integration/targets/template_jinja2_latest/main.yml","test/integration/targets/templating_settings/test_templating_settings.yml","test/integration/targets/test_infra/test_test_infra.yml","test/integration/targets/unicode/unicode.yml","test/integration/targets/var_blending/test_var_blending.yml","test/integration/targets/var_precedence/test_var_precedence.yml","test/integration/targets/vault/test_vault.yml","test/integration/targets/vault/test_vault_embedded.yml","test/integration/targets/vault/test_vaulted_inventory.yml","test/integration/test_win_group1.yml","test/integration/test_win_group2.yml","test/integration/test_win_group3.yml","test/integration/vars/test_var_encrypted.yml","test/integration/vyos.yaml","test/utils/docker/httptester/httptester.yml"]' http_version: - recorded_at: Thu, 09 Feb 2017 09:38:01 GMT + recorded_at: Wed, 21 Jun 2017 19:23:56 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/81/survey_spec/ + uri: https://dev-ansible-tower3.example.com/api/v1/projects/473/playbooks/ body: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 200 message: OK headers: Date: - - Thu, 09 Feb 2017 10:38:00 GMT + - Wed, 21 Jun 2017 19:23: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 + - GET, HEAD, OPTIONS X-Api-Time: - - 0.035s - Content-Length: - - '375' + - 0.030s + 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: Wed, 21 Jun 2017 19:23:56 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/30/survey_spec/ + uri: https://dev-ansible-tower3.example.com/api/v1/projects/478/playbooks/ body: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 200 message: OK headers: Date: - - Thu, 09 Feb 2017 10:38:00 GMT + - Wed, 21 Jun 2017 19:23: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 + - GET, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.059s Content-Length: - - '2' + - '5490' Content-Type: - application/json body: encoding: UTF-8 - string: "{}" + string: '["pb_02d2c259-897f-4207-b3b3-fc8e6bbdc6ed.yml","pb_032fd6f1-2055-40c3-b276-8e3d91ca0b67.yml","pb_03e3c49a-a563-47db-9d66-f0d6b8371012.yml","pb_05aa5388-7d01-4dc0-a984-be2b1328693e.yml","pb_093276db-008b-4acd-9ae8-03270035c90e.yml","pb_09449a89-a103-4865-b02c-2edfea19beb1.yml","pb_12a7843e-eb5b-4d60-b7aa-51300ae3028f.yml","pb_13da164d-3314-4ca2-8b56-f75bf3a9c478.yml","pb_13e16428-c33e-4f3e-95a1-a4750cad4ad1.yml","pb_1439b496-04ef-4dd7-b08c-d8c373081a7a.yml","pb_161d5474-75e5-4451-8503-becdda0cbaed.yml","pb_18ce3f18-15c3-462a-aa6c-b415847f62af.yml","pb_191602fb-8118-48fb-8a23-29b659cfc222.yml","pb_1ec5ab82-05c1-425a-84a7-559e248b4080.yml","pb_20009131-555d-424d-9385-351e8f930a36.yml","pb_22b08c31-acee-4f79-b5d2-cfbee5540b33.yml","pb_26035258-c4c6-4c62-b526-98c83f7bf9ff.yml","pb_2603f864-fd16-494d-8ee0-e5d970529a43.yml","pb_2fd99166-efe3-43f6-89da-a77a58b8a0b1.yml","pb_300582d9-1438-4945-9326-f2000366c1a9.yml","pb_311c50af-62cf-4780-b0a9-9d46a16ad1d6.yml","pb_3464063b-d9e0-47f8-b159-4b47f196b472.yml","pb_34f63406-75a1-4a77-a82a-910df2ba27b2.yml","pb_3cd619ed-89f9-4736-981d-e43eba42247c.yml","pb_3f000ad4-3b45-4203-928d-90c3b8f121e9.yml","pb_40fdefa8-bd92-41a3-92e3-6fcb2f820c68.yml","pb_437e1dab-a926-439a-bd7a-ade97bb417c7.yml","pb_4500996b-21c8-47a6-9adb-08ab6a93ba20.yml","pb_45583ee3-dc4e-4958-80dc-b4d649edded7.yml","pb_470a38a3-c8ac-4f08-b1ba-de5243b9e947.yml","pb_4aa8de01-ebe7-429e-8847-40503e9bdb26.yml","pb_50250804-b04f-4372-949f-de347424b29d.yml","pb_509959c8-8f0d-4b45-8a26-274885b276af.yml","pb_51e02432-30bb-4994-aeac-7ec96048db7f.yml","pb_53e62040-9979-4d33-9e70-c647cfb8a0b3.yml","pb_546b1077-58ef-49f8-afc8-48658dfa031a.yml","pb_54ada18a-db3f-41e5-9d0a-da54cf31c296.yml","pb_56e46c65-17b2-4d81-a96c-013f1ee9ebc2.yml","pb_5808c3b2-353d-48b0-9425-73cac9bbad83.yml","pb_58dd57e4-00eb-461f-bb9d-53e114f7ec1e.yml","pb_59548d09-f100-4c17-a4ee-4fadb0943e64.yml","pb_5bad9a6a-c680-4695-a471-02b18cd22114.yml","pb_5e3aa384-ec78-4318-845f-924e8c5b50bf.yml","pb_63500dd1-f714-41c5-902a-756ae2fb9db6.yml","pb_6389a1d9-ce32-4875-9727-9e0a82fa5274.yml","pb_63b2c4c1-cc2e-4905-97c9-7e3e794b536d.yml","pb_66fb0626-267f-4bea-a501-ec59f59f8261.yml","pb_6b7dc1d3-caa3-4f00-9af6-d1487a2cdc76.yml","pb_6c655003-7144-422c-865f-17d152fd52d3.yml","pb_6cd40dc6-9694-4986-bf96-65a5a85b38a8.yml","pb_6d7bb374-20c5-4546-b7af-405d5c6f0027.yml","pb_7780dc6b-46e8-4745-ab05-23146006e3f0.yml","pb_795f34ac-1092-4cfc-ae86-15a9ee667991.yml","pb_7b04938c-329c-4c63-9176-890ebe0d15e0.yml","pb_7b47e046-08d4-4d55-a540-d38da7190754.yml","pb_7e809940-9496-47cc-8a2a-0f502f671048.yml","pb_848cbe5e-6017-49cf-8c8c-202b28b2ed38.yml","pb_85c67ab1-24d8-4a1b-a1de-7cd2d001b09d.yml","pb_8b036357-70cb-4971-92c1-4699fd5a9e06.yml","pb_8ccecb83-9fc3-44ef-b173-4076293f146b.yml","pb_8e76182d-8d42-4214-9b45-a9f8829d6562.yml","pb_8f2b25bc-1bf7-47ae-a4c6-34ec39ab5118.yml","pb_900eab05-b60b-47d2-b5ad-48bd55764d73.yml","pb_914cafda-d97a-4f94-af71-92b8f210ff82.yml","pb_95a56244-600d-4a47-a175-45dbcc2ff53b.yml","pb_95cb0d18-53f5-4b49-a9ef-8ea217249c2c.yml","pb_962a129d-39ad-48df-b8c4-fb1819e6facc.yml","pb_9ad826cc-677a-46c6-a501-01e52c5fc686.yml","pb_9ceb11d9-c30b-4abc-ac25-7bd923341927.yml","pb_9ef2bc67-5555-4d25-acbb-527d1f7a5bc4.yml","pb_9f086187-f452-4ed5-b65b-3862f0b42173.yml","pb_a37468fe-35b8-49b1-97c4-59510de5281c.yml","pb_a3cf13c9-1a7d-4a93-a96f-f34480673366.yml","pb_a428e8f3-b61a-4363-9cc9-b70387e1028c.yml","pb_a6c6a6d2-9516-4e9c-bcc1-79c8ef211305.yml","pb_a7eb54df-5b38-45bc-822f-aaecd9812643.yml","pb_a8b2fa46-9dce-429a-b7d4-0853fc73df9b.yml","pb_aa9ea77f-e545-4d53-9037-9863473cdfb1.yml","pb_ae56b5f4-ada7-4895-8d32-3a18b90a2779.yml","pb_af199a10-ed12-48f2-b1a7-94e3dec5df7c.yml","pb_b0f518ed-a9dc-4c64-8988-2fa48197e95b.yml","pb_b6e717b8-6a4b-4162-b9d4-4a04d025a14d.yml","pb_b7246a26-6093-4617-8058-ca78bd99c751.yml","pb_b7a5ef9b-885a-4d6a-a88a-c65ee2edb2c8.yml","pb_b83ffe5c-34da-4938-810b-db20defd1064.yml","pb_b8b2e9eb-2c5b-4fa9-8b4d-3d8210157ed2.yml","pb_b8df2daa-25f2-4ee6-a45d-e2f517a691f1.yml","pb_ba2f4dbd-3269-47b0-bf08-7fb01df94682.yml","pb_ba47adec-c0f0-437b-9181-fd4c4ed4a875.yml","pb_bb3c3309-deb7-44ba-bce0-26583d360587.yml","pb_bf3a7fc4-2323-40fb-9ea0-7d2e6071ad0a.yml","pb_bffaa55f-6dd7-4469-b0fb-407abdf4b781.yml","pb_c1c82dd6-ee8d-433e-be3b-3c5cdd5b0ce2.yml","pb_c29dc6fa-ed04-421c-9938-9e010be40220.yml","pb_c829c8de-a8b5-4fd6-a976-5d6fc4638afa.yml","pb_c83ce7eb-3221-4a30-8237-2b3a0f0e32df.yml","pb_cf1aa27c-dc85-4e4e-9908-6035e609fc89.yml","pb_d092ede5-055f-4cfb-b30f-0c2ed358bfa2.yml","pb_d31297db-dec8-459b-848e-42d3a4e0ac70.yml","pb_d550dec1-e258-456d-b4d8-9f5356e447d2.yml","pb_d631eb1d-be75-4a50-858e-5d6649a84705.yml","pb_db30651c-acb9-47b4-9ce0-70b7a3c3eb29.yml","pb_db49912b-c07f-4d21-b009-88288f0e1946.yml","pb_ded854c7-2a9a-4228-b408-b449a6a3c20e.yml","pb_df934ef3-440f-4823-83bb-755c220d007d.yml","pb_e079a618-b260-4578-8dd8-080329968e7e.yml","pb_e14033af-b7ed-4b22-ba5a-5bbf0520c9d9.yml","pb_e162d096-a91a-4835-8750-f959541cadc2.yml","pb_e432b3d5-c326-4c7a-9a13-16f926d7e2d1.yml","pb_e4b009b1-3a25-4067-b70a-21c3976b8bda.yml","pb_e69a0cc8-09b8-4235-8389-5582d5090cb7.yml","pb_ec328496-e5f8-4269-8eff-68b7ab837ca7.yml","pb_edd2595e-0887-40f4-91ea-729a019c3698.yml","pb_ee715146-3c8c-4716-958a-e6f3b86286fa.yml","pb_ef088de6-01ac-41ef-b8a7-70c9c40b2d68.yml","pb_f176936f-33b1-43ab-8259-e688daff5438.yml","pb_f1e39f95-011f-4177-be6e-d9464a508593.yml","pb_f51e98b5-b8f5-49d9-9c7e-d34a89463113.yml","pb_fc515138-cd39-4a8f-9436-3a124121687b.yml","playbook.yml"]' http_version: - recorded_at: Thu, 09 Feb 2017 09:38:02 GMT + recorded_at: Wed, 21 Jun 2017 19:23:57 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/30/survey_spec/ + uri: https://dev-ansible-tower3.example.com/api/v1/projects/484/playbooks/ body: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 200 message: OK headers: Date: - - Thu, 09 Feb 2017 10:38:01 GMT + - Wed, 21 Jun 2017 19:23: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 + - GET, HEAD, OPTIONS X-Api-Time: - - 0.034s + - 0.047s 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: Wed, 21 Jun 2017 19:23:57 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/54/survey_spec/ + uri: https://dev-ansible-tower3.example.com/api/v1/projects/?page=2 body: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 200 message: OK headers: Date: - - Thu, 09 Feb 2017 10:38:02 GMT + - Wed, 21 Jun 2017 19:23: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 + - GET, POST, HEAD, OPTIONS X-Api-Time: - - 0.033s + - 0.145s Content-Length: - - '2' + - '16393' Content-Type: - application/json body: encoding: UTF-8 - string: "{}" + string: '{"count":32,"next":null,"previous":"/api/v1/projects/?page=1","results":[{"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/","credential":"/api/v1/credentials/3/","last_job":"/api/v1/project_updates/844/","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/","last_update":"/api/v1/project_updates/844/"},"summary_fields":{"last_job":{"id":844,"name":"LGNew","description":"LGNew","finished":"2017-05-04T19:05:46.408Z","status":"successful","failed":false},"last_update":{"id":844,"name":"LGNew","description":"LGNew","status":"successful","failed":false},"credential":{"id":3,"name":"db-github","description":"db-github","kind":"scm","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 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-05-08T19:17:49.912Z","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":3,"last_job_run":"2017-05-04T19:05:46.408450Z","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-05-04T19:05:46.408450Z"},{"id":491,"type":"project","url":"/api/v1/projects/491/","related":{"created_by":"/api/v1/users/1/","credential":"/api/v1/credentials/3/","last_job":"/api/v1/project_updates/887/","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/","last_update":"/api/v1/project_updates/887/"},"summary_fields":{"last_job":{"id":887,"name":"Repo1","description":"Repo1","finished":"2017-05-08T20:25:03.102Z","status":"successful","failed":false},"last_update":{"id":887,"name":"Repo1","description":"Repo1","status":"successful","failed":false},"credential":{"id":3,"name":"db-github","description":"db-github","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":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-05-08T20:24:35.513Z","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":3,"last_job_run":"2017-05-08T20:25:03.102642Z","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-05-08T20:25:03.102642Z"},{"id":506,"type":"project","url":"/api/v1/projects/506/","related":{"created_by":"/api/v1/users/1/","credential":"/api/v1/credentials/3/","last_job":"/api/v1/project_updates/910/","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/","last_update":"/api/v1/project_updates/910/"},"summary_fields":{"last_job":{"id":910,"name":"mine","description":"","finished":"2017-06-16T14:22:32.839Z","status":"failed","failed":true},"last_update":{"id":910,"name":"mine","description":"","status":"failed","failed":true},"credential":{"id":3,"name":"db-github","description":"db-github","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":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-06-16T14:22:23.339Z","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":3,"last_job_run":"2017-06-16T14:22:32.839758Z","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-16T14:22:32.839758Z"},{"id":507,"type":"project","url":"/api/v1/projects/507/","related":{"created_by":"/api/v1/users/1/","credential":"/api/v1/credentials/3/","last_job":"/api/v1/project_updates/912/","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/","last_update":"/api/v1/project_updates/912/"},"summary_fields":{"last_job":{"id":912,"name":"mine-http","description":"","finished":"2017-06-16T14:32:00.592Z","status":"successful","failed":false},"last_update":{"id":912,"name":"mine-http","description":"","status":"successful","failed":false},"credential":{"id":3,"name":"db-github","description":"db-github","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":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-06-16T14:31:44.572Z","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":3,"last_job_run":"2017-06-16T14:32:00.592319Z","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-06-16T14:32:00.592319Z"},{"id":508,"type":"project","url":"/api/v1/projects/508/","related":{"created_by":"/api/v1/users/1/","credential":"/api/v1/credentials/3/","last_job":"/api/v1/project_updates/914/","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/","last_update":"/api/v1/project_updates/914/"},"summary_fields":{"last_job":{"id":914,"name":"mine-ssh","description":"","finished":"2017-06-16T14:41:50.220Z","status":"failed","failed":true},"last_update":{"id":914,"name":"mine-ssh","description":"","status":"failed","failed":true},"credential":{"id":3,"name":"db-github","description":"db-github","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":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-06-16T14:41:43.640Z","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":3,"last_job_run":"2017-06-16T14:41:50.220638Z","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-16T14:41:50.220638Z"},{"id":570,"type":"project","url":"/api/v1/projects/570/","related":{"created_by":"/api/v1/users/1/","credential":"/api/v1/credentials/108/","last_job":"/api/v1/project_updates/941/","notification_templates_error":"/api/v1/projects/570/notification_templates_error/","notification_templates_success":"/api/v1/projects/570/notification_templates_success/","object_roles":"/api/v1/projects/570/object_roles/","notification_templates_any":"/api/v1/projects/570/notification_templates_any/","project_updates":"/api/v1/projects/570/project_updates/","update":"/api/v1/projects/570/update/","access_list":"/api/v1/projects/570/access_list/","playbooks":"/api/v1/projects/570/playbooks/","schedules":"/api/v1/projects/570/schedules/","teams":"/api/v1/projects/570/teams/","activity_stream":"/api/v1/projects/570/activity_stream/","organization":"/api/v1/organizations/33/","last_update":"/api/v1/project_updates/941/"},"summary_fields":{"last_job":{"id":941,"name":"hello_repo","description":"","finished":"2017-06-21T19:21:14.635Z","status":"successful","failed":false},"last_update":{"id":941,"name":"hello_repo","description":"","status":"successful","failed":false},"credential":{"id":108,"name":"hello_scm_cred","description":"","kind":"scm","cloud":false},"organization":{"id":33,"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":2613,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":2615,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":2616,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":2614,"name":"Read"}}},"created":"2017-06-21T19:20:59.349Z","modified":"2017-06-21T19:20:59.484Z","name":"hello_repo","description":"","local_path":"_570__hello_repo","scm_type":"git","scm_url":"https://github.com/jameswnl/ansible-examples","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":108,"last_job_run":"2017-06-21T19:21:14.635125Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","organization":33,"scm_delete_on_next_update":false,"scm_update_on_launch":false,"scm_update_cache_timeout":0,"last_update_failed":false,"last_updated":"2017-06-21T19:21:14.635125Z"}]}' http_version: - recorded_at: Thu, 09 Feb 2017 09:38:03 GMT + recorded_at: Wed, 21 Jun 2017 19:23:57 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/54/survey_spec/ + uri: https://dev-ansible-tower3.example.com/api/v1/projects/489/playbooks/ body: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 200 message: OK headers: Date: - - Thu, 09 Feb 2017 10:38:02 GMT + - Wed, 21 Jun 2017 19:23: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 + - 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: Wed, 21 Jun 2017 19:23:57 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/38/survey_spec/ + uri: https://dev-ansible-tower3.example.com/api/v1/projects/490/playbooks/ body: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 200 message: OK headers: Date: - - Thu, 09 Feb 2017 10:38:03 GMT + - Wed, 21 Jun 2017 19:23: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 + - GET, HEAD, OPTIONS X-Api-Time: - - 0.034s - Content-Length: - - '2' + - 0.046s + 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:04 GMT + recorded_at: Wed, 21 Jun 2017 19:23:57 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/38/survey_spec/ + uri: https://dev-ansible-tower3.example.com/api/v1/projects/491/playbooks/ body: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 200 message: OK headers: Date: - - Thu, 09 Feb 2017 10:38:03 GMT + - Wed, 21 Jun 2017 19:23: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 + - GET, HEAD, OPTIONS X-Api-Time: - - 0.033s - Content-Length: - - '2' + - 0.045s + 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:05 GMT + recorded_at: Wed, 21 Jun 2017 19:23:58 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/5/survey_spec/ + uri: https://dev-ansible-tower3.example.com/api/v1/projects/506/playbooks/ body: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 200 message: OK headers: Date: - - Thu, 09 Feb 2017 10:38:04 GMT + - Wed, 21 Jun 2017 19:23: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 + - 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:05 GMT + recorded_at: Wed, 21 Jun 2017 19:23:58 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/5/survey_spec/ + uri: https://dev-ansible-tower3.example.com/api/v1/projects/507/playbooks/ body: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 200 message: OK headers: Date: - - Thu, 09 Feb 2017 10:38:05 GMT + - Wed, 21 Jun 2017 19:23: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 + - GET, HEAD, OPTIONS X-Api-Time: - - 0.034s - Content-Length: - - '2' + - 0.032s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 - string: "{}" + string: "[]" http_version: - recorded_at: Thu, 09 Feb 2017 09:38:06 GMT + recorded_at: Wed, 21 Jun 2017 19:23:58 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/28/survey_spec/ + uri: https://dev-ansible-tower3.example.com/api/v1/projects/508/playbooks/ body: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 200 message: OK headers: Date: - - Thu, 09 Feb 2017 10:38:05 GMT + - Wed, 21 Jun 2017 19:23: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 + - GET, HEAD, OPTIONS X-Api-Time: - - 0.034s - 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:06 GMT + recorded_at: Wed, 21 Jun 2017 19:23:58 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/28/survey_spec/ + uri: https://dev-ansible-tower3.example.com/api/v1/projects/570/playbooks/ body: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 200 message: OK headers: Date: - - Thu, 09 Feb 2017 10:38:06 GMT + - Wed, 21 Jun 2017 19:23: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 + - GET, HEAD, OPTIONS X-Api-Time: - - 0.035s - 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:07 GMT + recorded_at: Wed, 21 Jun 2017 19:23:58 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/41/survey_spec/ + uri: https://dev-ansible-tower3.example.com/api/v1/credentials + body: + encoding: US-ASCII + string: '' + headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== + 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, 21 Jun 2017 19:23:58 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, 21 Jun 2017 19:23:58 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/credentials/ body: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 200 message: OK headers: Date: - - Thu, 09 Feb 2017 10:38:06 GMT + - Wed, 21 Jun 2017 19:23: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, DELETE, HEAD, OPTIONS + - GET, POST, HEAD, OPTIONS X-Api-Time: - - 0.034s + - 0.340s Content-Length: - - '2' + - '37006' Content-Type: - application/json body: encoding: UTF-8 - string: "{}" + string: '{"count":47,"next":"/api/v1/credentials/?page=2","previous":null,"results":[{"id":47,"type":"credential","url":"/api/v1/credentials/47/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/1/","owner_teams":"/api/v1/credentials/47/owner_teams/","owner_users":"/api/v1/credentials/47/owner_users/","activity_stream":"/api/v1/credentials/47/activity_stream/","access_list":"/api/v1/credentials/47/access_list/","object_roles":"/api/v1/credentials/47/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":1668,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":1670,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":1669,"name":"Read"}},"owners":[]},"created":"2017-03-27T19:06:13.710Z","modified":"2017-03-27T19:13:51.406Z","name":"abc","description":"","kind":"aws","cloud":true,"host":"","username":"a","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":65,"type":"credential","url":"/api/v1/credentials/65/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/1/","owner_teams":"/api/v1/credentials/65/owner_teams/","owner_users":"/api/v1/credentials/65/owner_users/","activity_stream":"/api/v1/credentials/65/activity_stream/","access_list":"/api/v1/credentials/65/access_list/","object_roles":"/api/v1/credentials/65/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":1900,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":1902,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":1901,"name":"Read"}},"owners":[]},"created":"2017-04-24T13:13:26.576Z","modified":"2017-04-24T13:13:26.627Z","name":"amazon-credential-01","description":"","kind":"aws","cloud":true,"host":"","username":"abcd","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":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":110,"type":"credential","url":"/api/v1/credentials/110/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/33/","owner_teams":"/api/v1/credentials/110/owner_teams/","owner_users":"/api/v1/credentials/110/owner_users/","activity_stream":"/api/v1/credentials/110/activity_stream/","access_list":"/api/v1/credentials/110/access_list/","object_roles":"/api/v1/credentials/110/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":33,"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":2602,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":2604,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":2603,"name":"Read"}},"owners":[]},"created":"2017-06-21T19:20:50.666Z","modified":"2017-06-21T19:20:50.784Z","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":55,"type":"credential","url":"/api/v1/credentials/55/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/1/","owner_teams":"/api/v1/credentials/55/owner_teams/","owner_users":"/api/v1/credentials/55/owner_users/","activity_stream":"/api/v1/credentials/55/activity_stream/","access_list":"/api/v1/credentials/55/access_list/","object_roles":"/api/v1/credentials/55/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":1745,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":1747,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":1746,"name":"Read"}},"owners":[]},"created":"2017-03-28T21:58:22.568Z","modified":"2017-04-24T14:38:15.212Z","name":"mmm","description":"","kind":"aws","cloud":true,"host":"","username":"m","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":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":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":111,"type":"credential","url":"/api/v1/credentials/111/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/33/","owner_teams":"/api/v1/credentials/111/owner_teams/","owner_users":"/api/v1/credentials/111/owner_users/","activity_stream":"/api/v1/credentials/111/activity_stream/","access_list":"/api/v1/credentials/111/access_list/","object_roles":"/api/v1/credentials/111/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":33,"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":2605,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":2607,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":2606,"name":"Read"}},"owners":[]},"created":"2017-06-21T19:20:52.817Z","modified":"2017-06-21T19:20:52.937Z","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":68,"type":"credential","url":"/api/v1/credentials/68/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/1/","owner_teams":"/api/v1/credentials/68/owner_teams/","owner_users":"/api/v1/credentials/68/owner_users/","activity_stream":"/api/v1/credentials/68/activity_stream/","access_list":"/api/v1/credentials/68/access_list/","object_roles":"/api/v1/credentials/68/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":2069,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":2071,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":2070,"name":"Read"}},"owners":[]},"created":"2017-06-12T13:46:31.378Z","modified":"2017-06-12T13:48:11.383Z","name":"test-network-cred","description":"testing: + auth unchecked","kind":"net","cloud":false,"host":"","username":"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":true,"authorize_password":"$encrypted$"},{"id":70,"type":"credential","url":"/api/v1/credentials/70/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/1/","owner_teams":"/api/v1/credentials/70/owner_teams/","owner_users":"/api/v1/credentials/70/owner_users/","activity_stream":"/api/v1/credentials/70/activity_stream/","access_list":"/api/v1/credentials/70/access_list/","object_roles":"/api/v1/credentials/70/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":2075,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":2077,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":2076,"name":"Read"}},"owners":[]},"created":"2017-06-12T13:58:49.009Z","modified":"2017-06-12T13:58:49.066Z","name":"test-network-ssh","description":"with + ssh key","kind":"net","cloud":false,"host":"","username":"test-nw-ssh","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":true,"authorize_password":"$encrypted$"},{"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":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":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":108,"type":"credential","url":"/api/v1/credentials/108/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/33/","owner_teams":"/api/v1/credentials/108/owner_teams/","owner_users":"/api/v1/credentials/108/owner_users/","activity_stream":"/api/v1/credentials/108/activity_stream/","access_list":"/api/v1/credentials/108/access_list/","object_roles":"/api/v1/credentials/108/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":33,"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":2596,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":2598,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":2597,"name":"Read"}},"owners":[]},"created":"2017-06-21T19:20:47.839Z","modified":"2017-06-21T19:20:47.959Z","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":58,"type":"credential","url":"/api/v1/credentials/58/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/1/","owner_teams":"/api/v1/credentials/58/owner_teams/","owner_users":"/api/v1/credentials/58/owner_users/","activity_stream":"/api/v1/credentials/58/activity_stream/","access_list":"/api/v1/credentials/58/access_list/","object_roles":"/api/v1/credentials/58/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":1754,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":1756,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":1755,"name":"Read"}},"owners":[]},"created":"2017-03-29T00:21:48.628Z","modified":"2017-03-29T00:21:48.683Z","name":"999","description":"","kind":"ssh","cloud":false,"host":"","username":"999","password":"","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"su","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":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":"","become_username":"","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":109,"type":"credential","url":"/api/v1/credentials/109/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/33/","owner_teams":"/api/v1/credentials/109/owner_teams/","owner_users":"/api/v1/credentials/109/owner_users/","activity_stream":"/api/v1/credentials/109/activity_stream/","access_list":"/api/v1/credentials/109/access_list/","object_roles":"/api/v1/credentials/109/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":33,"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":2599,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":2601,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":2600,"name":"Read"}},"owners":[]},"created":"2017-06-21T19:20:49.252Z","modified":"2017-06-21T19:20:49.381Z","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":9,"type":"credential","url":"/api/v1/credentials/9/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/1/","owner_teams":"/api/v1/credentials/9/owner_teams/","owner_users":"/api/v1/credentials/9/owner_users/","activity_stream":"/api/v1/credentials/9/activity_stream/","access_list":"/api/v1/credentials/9/access_list/","object_roles":"/api/v1/credentials/9/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":235,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":237,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":236,"name":"Read"}},"owners":[]},"created":"2017-02-08T22:20:19.758Z","modified":"2017-02-08T22:40:34.603Z","name":"jwongCred","description":"jwong + tests cred post","kind":"ssh","cloud":false,"host":"","username":"james","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"$encrypted$","ssh_key_unlock":"$encrypted$","become_method":"sudo","become_username":"jroot","become_password":"$encrypted$","vault_password":"$encrypted$","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":29,"type":"credential","url":"/api/v1/credentials/29/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/1/","owner_teams":"/api/v1/credentials/29/owner_teams/","owner_users":"/api/v1/credentials/29/owner_users/","activity_stream":"/api/v1/credentials/29/activity_stream/","access_list":"/api/v1/credentials/29/access_list/","object_roles":"/api/v1/credentials/29/object_roles/","user":"/api/v1/users/1/"},"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":1480,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":1482,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":1481,"name":"Read"}},"owners":[{"url":"/api/v1/users/1/","description":" + ","type":"user","id":1,"name":"admin"}]},"created":"2017-03-23T16:31:01.639Z","modified":"2017-03-23T16:32:40.579Z","name":"jwongtes43","description":"test","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":""}]}' http_version: - recorded_at: Thu, 09 Feb 2017 09:38:08 GMT + recorded_at: Wed, 21 Jun 2017 19:23:59 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/41/survey_spec/ + uri: https://dev-ansible-tower3.example.com/api/v1/credentials/?page=2 body: encoding: US-ASCII string: '' headers: + Authorization: + - Basic YWRtaW46c21hcnR2bQ== User-Agent: - Faraday v0.9.2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> response: status: code: 200 message: OK headers: Date: - - Thu, 09 Feb 2017 10:38:07 GMT + - Wed, 21 Jun 2017 19:23: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, DELETE, HEAD, OPTIONS + - GET, POST, HEAD, OPTIONS X-Api-Time: - - 0.034s + - 0.312s Content-Length: - - '2' + - '32383' Content-Type: - application/json body: encoding: UTF-8 - string: "{}" + string: '{"count":47,"next":null,"previous":"/api/v1/credentials/?page=1","results":[{"id":14,"type":"credential","url":"/api/v1/credentials/14/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/1/","owner_teams":"/api/v1/credentials/14/owner_teams/","owner_users":"/api/v1/credentials/14/owner_users/","activity_stream":"/api/v1/credentials/14/activity_stream/","access_list":"/api/v1/credentials/14/access_list/","object_roles":"/api/v1/credentials/14/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":615,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":617,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":616,"name":"Read"}},"owners":[]},"created":"2017-02-22T21:24:36.452Z","modified":"2017-03-27T17:19:53.594Z","name":"jwong-test-post__","description":"","kind":"ssh","cloud":false,"host":"","username":"jwong-test-username","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":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":""},{"id":59,"type":"credential","url":"/api/v1/credentials/59/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/1/","owner_teams":"/api/v1/credentials/59/owner_teams/","owner_users":"/api/v1/credentials/59/owner_users/","activity_stream":"/api/v1/credentials/59/activity_stream/","access_list":"/api/v1/credentials/59/access_list/","object_roles":"/api/v1/credentials/59/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":1761,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":1763,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":1762,"name":"Read"}},"owners":[]},"created":"2017-03-29T13:23:44.596Z","modified":"2017-03-29T13:23:44.647Z","name":"machine01","description":"","kind":"ssh","cloud":false,"host":"","username":"username","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":50,"type":"credential","url":"/api/v1/credentials/50/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/1/","owner_teams":"/api/v1/credentials/50/owner_teams/","owner_users":"/api/v1/credentials/50/owner_users/","activity_stream":"/api/v1/credentials/50/activity_stream/","access_list":"/api/v1/credentials/50/access_list/","object_roles":"/api/v1/credentials/50/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":1695,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":1697,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":1696,"name":"Read"}},"owners":[]},"created":"2017-03-28T13:52:09.509Z","modified":"2017-03-28T13:52:09.561Z","name":"machine-cred-01","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":53,"type":"credential","url":"/api/v1/credentials/53/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/1/","owner_teams":"/api/v1/credentials/53/owner_teams/","owner_users":"/api/v1/credentials/53/owner_users/","activity_stream":"/api/v1/credentials/53/activity_stream/","access_list":"/api/v1/credentials/53/access_list/","object_roles":"/api/v1/credentials/53/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":1714,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":1716,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":1715,"name":"Read"}},"owners":[]},"created":"2017-03-28T16:59:37.981Z","modified":"2017-03-28T16:59:38.041Z","name":"machine-cred-02","description":"","kind":"ssh","cloud":false,"host":"","username":"root","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":54,"type":"credential","url":"/api/v1/credentials/54/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/1/","owner_teams":"/api/v1/credentials/54/owner_teams/","owner_users":"/api/v1/credentials/54/owner_users/","activity_stream":"/api/v1/credentials/54/activity_stream/","access_list":"/api/v1/credentials/54/access_list/","object_roles":"/api/v1/credentials/54/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":1723,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":1725,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":1724,"name":"Read"}},"owners":[]},"created":"2017-03-28T17:23:29.527Z","modified":"2017-03-28T17:23:29.583Z","name":"machine-cred-03","description":"","kind":"ssh","cloud":false,"host":"","username":"root","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":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":51,"type":"credential","url":"/api/v1/credentials/51/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/1/","owner_teams":"/api/v1/credentials/51/owner_teams/","owner_users":"/api/v1/credentials/51/owner_users/","activity_stream":"/api/v1/credentials/51/activity_stream/","access_list":"/api/v1/credentials/51/access_list/","object_roles":"/api/v1/credentials/51/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":1698,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":1700,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":1699,"name":"Read"}},"owners":[]},"created":"2017-03-28T14:09:52.476Z","modified":"2017-03-28T14:09:52.532Z","name":"new-credential","description":"","kind":"ssh","cloud":false,"host":"","username":"root","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":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":57,"type":"credential","url":"/api/v1/credentials/57/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/1/","owner_teams":"/api/v1/credentials/57/owner_teams/","owner_users":"/api/v1/credentials/57/owner_users/","activity_stream":"/api/v1/credentials/57/activity_stream/","access_list":"/api/v1/credentials/57/access_list/","object_roles":"/api/v1/credentials/57/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":1751,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":1753,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":1752,"name":"Read"}},"owners":[]},"created":"2017-03-29T00:00:57.231Z","modified":"2017-03-29T00:00:57.287Z","name":"ppp","description":"","kind":"ssh","cloud":false,"host":"","username":"","password":"","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":46,"type":"credential","url":"/api/v1/credentials/46/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/1/","owner_teams":"/api/v1/credentials/46/owner_teams/","owner_users":"/api/v1/credentials/46/owner_users/","activity_stream":"/api/v1/credentials/46/activity_stream/","access_list":"/api/v1/credentials/46/access_list/","object_roles":"/api/v1/credentials/46/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":1620,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":1622,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":1621,"name":"Read"}},"owners":[]},"created":"2017-03-24T14:05:43.381Z","modified":"2017-03-24T14:05:43.431Z","name":"scm-credential-01","description":"","kind":"ssh","cloud":false,"host":"","username":"","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":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":49,"type":"credential","url":"/api/v1/credentials/49/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/1/","owner_teams":"/api/v1/credentials/49/owner_teams/","owner_users":"/api/v1/credentials/49/owner_users/","activity_stream":"/api/v1/credentials/49/activity_stream/","access_list":"/api/v1/credentials/49/access_list/","object_roles":"/api/v1/credentials/49/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":1692,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":1694,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":1693,"name":"Read"}},"owners":[]},"created":"2017-03-27T22:41:18.832Z","modified":"2017-03-29T00:20:20.463Z","name":"zzz","description":"","kind":"ssh","cloud":false,"host":"","username":"nnn","password":"","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"pbrun","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.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":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.cloudforms.lab.eng.rdu2.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":""},{"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":""},{"id":56,"type":"credential","url":"/api/v1/credentials/56/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/1/","owner_teams":"/api/v1/credentials/56/owner_teams/","owner_users":"/api/v1/credentials/56/owner_users/","activity_stream":"/api/v1/credentials/56/activity_stream/","access_list":"/api/v1/credentials/56/access_list/","object_roles":"/api/v1/credentials/56/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":1748,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":1750,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":1749,"name":"Read"}},"owners":[]},"created":"2017-03-28T22:02:10.054Z","modified":"2017-03-28T22:02:10.109Z","name":"vv","description":"","kind":"vmware","cloud":true,"host":"v","username":"v","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: Wed, 21 Jun 2017 19:24:00 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 0a24790a..00000000 --- a/spec/vcr_cassettes/manageiq/providers/ansible_tower/automation_manager/refresher_configuration_script_sources.yml +++ /dev/null @@ -1,481 +0,0 @@ ---- -http_interactions: -- request: - method: get - uri: https://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: - - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> - 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://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: - - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> - 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://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: - - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> - 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://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: - - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> - 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://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: - - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> - 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://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: - - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> - 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://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: - - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> - 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://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: - - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> - 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 30b29340..00000000 --- a/spec/vcr_cassettes/manageiq/providers/ansible_tower/automation_manager/refresher_credentials.yml +++ /dev/null @@ -1,107 +0,0 @@ ---- -http_interactions: -- request: - method: get - uri: https://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: - - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> - 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://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: - - "*/*" - Authorization: Basic <%= Base64.encode64("testuser:secret").chomp %> - 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