diff --git a/app/models/manageiq/providers/ansible_tower/automation_manager/azure_credential.rb b/app/models/manageiq/providers/ansible_tower/automation_manager/azure_credential.rb index ead6aa15..27d2e5eb 100644 --- a/app/models/manageiq/providers/ansible_tower/automation_manager/azure_credential.rb +++ b/app/models/manageiq/providers/ansible_tower/automation_manager/azure_credential.rb @@ -1,4 +1,4 @@ # This corresponds to Ansible Tower's Azure Resource Manager (azure_rm) type credential. We are not modeling the deprecated Azure classic -class ManageIQ::Providers::AnsibleTower::AutomationManager::AzureCredential < - ManageIQ::Providers::AnsibleTower::AutomationManager::CloudCredential +class ManageIQ::Providers::AnsibleTower::AutomationManager::AzureCredential < ManageIQ::Providers::AnsibleTower::AutomationManager::CloudCredential + include ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::AzureCredential end diff --git a/app/models/manageiq/providers/ansible_tower/automation_manager/google_credential.rb b/app/models/manageiq/providers/ansible_tower/automation_manager/google_credential.rb index 47a9ece8..57011b26 100644 --- a/app/models/manageiq/providers/ansible_tower/automation_manager/google_credential.rb +++ b/app/models/manageiq/providers/ansible_tower/automation_manager/google_credential.rb @@ -1,2 +1,3 @@ class ManageIQ::Providers::AnsibleTower::AutomationManager::GoogleCredential < ManageIQ::Providers::AnsibleTower::AutomationManager::CloudCredential + include ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::GoogleCredential end diff --git a/app/models/manageiq/providers/ansible_tower/automation_manager/network_credential.rb b/app/models/manageiq/providers/ansible_tower/automation_manager/network_credential.rb index 1e6a9622..57d56599 100644 --- a/app/models/manageiq/providers/ansible_tower/automation_manager/network_credential.rb +++ b/app/models/manageiq/providers/ansible_tower/automation_manager/network_credential.rb @@ -1,2 +1,3 @@ class ManageIQ::Providers::AnsibleTower::AutomationManager::NetworkCredential < ManageIQ::Providers::AnsibleTower::AutomationManager::Credential + include ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::NetworkCredential end diff --git a/app/models/manageiq/providers/ansible_tower/automation_manager/openstack_credential.rb b/app/models/manageiq/providers/ansible_tower/automation_manager/openstack_credential.rb index c159d945..dcdc1574 100644 --- a/app/models/manageiq/providers/ansible_tower/automation_manager/openstack_credential.rb +++ b/app/models/manageiq/providers/ansible_tower/automation_manager/openstack_credential.rb @@ -1,2 +1,3 @@ class ManageIQ::Providers::AnsibleTower::AutomationManager::OpenstackCredential < ManageIQ::Providers::AnsibleTower::AutomationManager::CloudCredential + include ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::OpenstackCredential end diff --git a/app/models/manageiq/providers/ansible_tower/automation_manager/rackspace_credential.rb b/app/models/manageiq/providers/ansible_tower/automation_manager/rackspace_credential.rb index 2f9c8499..c63e3ec6 100644 --- a/app/models/manageiq/providers/ansible_tower/automation_manager/rackspace_credential.rb +++ b/app/models/manageiq/providers/ansible_tower/automation_manager/rackspace_credential.rb @@ -1,2 +1,3 @@ class ManageIQ::Providers::AnsibleTower::AutomationManager::RackspaceCredential < ManageIQ::Providers::AnsibleTower::AutomationManager::CloudCredential + include ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::RackspaceCredential end diff --git a/app/models/manageiq/providers/ansible_tower/automation_manager/satellite6_credential.rb b/app/models/manageiq/providers/ansible_tower/automation_manager/satellite6_credential.rb index 0007e929..4b1956de 100644 --- a/app/models/manageiq/providers/ansible_tower/automation_manager/satellite6_credential.rb +++ b/app/models/manageiq/providers/ansible_tower/automation_manager/satellite6_credential.rb @@ -1,2 +1,3 @@ class ManageIQ::Providers::AnsibleTower::AutomationManager::Satellite6Credential < ManageIQ::Providers::AnsibleTower::AutomationManager::CloudCredential + include ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::Satellite6Credential end diff --git a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/amazon_credential.rb b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/amazon_credential.rb index 87a74642..1ce02be3 100644 --- a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/amazon_credential.rb +++ b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/amazon_credential.rb @@ -1,6 +1,4 @@ module ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::AmazonCredential - extend ActiveSupport::Concern - COMMON_ATTRIBUTES = { :userid => { :label => N_('Access Key'), diff --git a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/azure_credential.rb b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/azure_credential.rb new file mode 100644 index 00000000..2162f85d --- /dev/null +++ b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/azure_credential.rb @@ -0,0 +1,50 @@ +module ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::AzureCredential + COMMON_ATTRIBUTES = { + :userid => { + :label => N_('Username'), + :help_text => N_('The username to use to connect to the Microsoft Azure account') + }, + :password => { + :type => :password, + :label => N_('Password'), + :help_text => N_('The password to use to connect to the Microsoft Azure account') + } + }.freeze + + EXTRA_ATTRIBUTES = { + :subscription => { + :type => :string, + :label => N_('Subscription ID'), + :help_text => N_('The Subscription UUID for the Microsoft Azure account'), + :max_length => 1024, + :required => true + }, + :tenant => { + :type => :string, + :label => N_('Tenant ID'), + :help_text => N_('The Tenant ID for the Microsoft Azure account'), + :max_length => 1024 + }, + :secret => { + :type => :password, + :label => N_('Client Secret'), + :help_text => N_('The Client Secret for the Microsoft Azure account'), + :max_length => 1024, + }, + :client => { + :type => :string, + :label => N_('Client ID'), + :help_text => N_('The Client ID for the Microsoft Azure account'), + :max_length => 128 + }, + }.freeze + + API_ATTRIBUTES = COMMON_ATTRIBUTES.merge(EXTRA_ATTRIBUTES).freeze + + API_OPTIONS = { + :type => 'cloud', + :label => N_('Azure'), + :attributes => API_ATTRIBUTES + }.freeze + TOWER_KIND = 'azure_rm'.freeze +end diff --git a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/google_credential.rb b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/google_credential.rb new file mode 100644 index 00000000..3f017a88 --- /dev/null +++ b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/google_credential.rb @@ -0,0 +1,35 @@ +module ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::GoogleCredential + COMMON_ATTRIBUTES = { + :userid => { + :type => :email, + :label => N_('Service Account Email Address'), + :help_text => N_('The email address assigned to the Google Compute Engine service account'), + :required => true + } + }.freeze + + EXTRA_ATTRIBUTES = { + :ssh_key_data => { + :type => :password, + :multiline => true, + :label => N_('RSA Private Key'), + :help_text => N_('Contents of the PEM file associated with the service account email'), + :required => true + }, + :project => { + :type => :string, + :label => N_('Project'), + :help_text => N_('The GCE assigned identification. It is constructed as two words followed by a three digit number, such as: squeamish-ossifrage-123'), + :max_length => 100, + } + }.freeze + + API_ATTRIBUTES = COMMON_ATTRIBUTES.merge(EXTRA_ATTRIBUTES).freeze + + API_OPTIONS = { + :type => 'cloud', + :label => N_('Google Compute Engine'), + :attributes => API_ATTRIBUTES + }.freeze + TOWER_KIND = 'gce'.freeze +end diff --git a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/machine_credential.rb b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/machine_credential.rb index 57b9282e..8a51578a 100644 --- a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/machine_credential.rb +++ b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/machine_credential.rb @@ -1,6 +1,4 @@ module ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::MachineCredential - extend ActiveSupport::Concern - COMMON_ATTRIBUTES = { :userid => { :label => N_('Username'), diff --git a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/network_credential.rb b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/network_credential.rb new file mode 100644 index 00000000..de355880 --- /dev/null +++ b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/network_credential.rb @@ -0,0 +1,49 @@ +module ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::NetworkCredential + COMMON_ATTRIBUTES = { + :userid => { + :label => N_('Username'), + :help_text => N_('Username for this credential'), + :required => true + }, + :password => { + :type => :password, + :label => N_('Password'), + :help_text => N_('Password for this credential'), + :required => true + } + }.freeze + + EXTRA_ATTRIBUTES = { + :authorize => { + :type => :boolean, + :label => N_('Authorize'), + :help_text => N_('Whether to use the authorize mechanism') + }, + :authorize_password => { + :type => :password, + :label => N_('Authorize password'), + :help_text => N_('Password used by the authorize mechanism') + }, + :ssh_key_data => { + :type => :password, + :multiline => true, + :label => N_('SSH key'), + :help_text => N_('RSA or DSA private key to be used instead of password') + }, + :ssh_key_unlock => { + :type => :password, + :label => N_('Private key passphrase'), + :help_text => N_('Passphrase to unlock SSH private key if encrypted'), + :max_length => 1024 + } + }.freeze + + API_ATTRIBUTES = COMMON_ATTRIBUTES.merge(EXTRA_ATTRIBUTES).freeze + + API_OPTIONS = { + :label => N_('network'), + :type => 'network', + :attributes => API_ATTRIBUTES + }.freeze + TOWER_KIND = 'net'.freeze +end diff --git a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/openstack_credential.rb b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/openstack_credential.rb new file mode 100644 index 00000000..65587aae --- /dev/null +++ b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/openstack_credential.rb @@ -0,0 +1,47 @@ +module ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::OpenstackCredential + COMMON_ATTRIBUTES = { + :userid => { + :label => N_('Username'), + :help_text => N_('The username to use to connect to OpenStack'), + :required => true + }, + :password => { + :type => :password, + :label => N_('Password (API Key)'), + :help_text => N_('The password or API key to use to connect to OpenStack'), + :required => true + } + }.freeze + + EXTRA_ATTRIBUTES = { + :host => { + :type => :string, + :label => N_('Host (Authentication URL'), + :help_text => N_('The host to authenticate with. For example, https://openstack.business.com/v2.0'), + :max_length => 1024, + :required => true + }, + :project => { + :type => :string, + :label => N_('Project (Tenant Name)'), + :help_text => N_('This is the tenant name. This value is usually the same as the username'), + :max_length => 100, + :required => true + }, + :domain => { + :type => :string, + :label => N_('Domain Name'), + :help_text => N_('OpenStack domains define administrative boundaries. It is only needed for Keystone v3 authentication URLs'), + :max_length => 100 + } + }.freeze + + API_ATTRIBUTES = COMMON_ATTRIBUTES.merge(EXTRA_ATTRIBUTES).freeze + + API_OPTIONS = { + :type => 'cloud', + :label => N_('OpenStack'), + :attributes => API_ATTRIBUTES + }.freeze + TOWER_KIND = 'openstack'.freeze +end diff --git a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/rackspace_credential.rb b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/rackspace_credential.rb new file mode 100644 index 00000000..de240ffa --- /dev/null +++ b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/rackspace_credential.rb @@ -0,0 +1,24 @@ +module ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::RackspaceCredential + COMMON_ATTRIBUTES = { + :userid => { + :label => N_('Username'), + :help_text => N_('Username for this credential'), + :required => true + }, + :password => { + :type => :password, + :label => N_('API Key'), + :help_text => N_('API Key for this credential'), + :required => true + } + }.freeze + + API_ATTRIBUTES = COMMON_ATTRIBUTES + + API_OPTIONS = { + :type => 'cloud', + :label => N_('Rackspace'), + :attributes => API_ATTRIBUTES + }.freeze + TOWER_KIND = 'rax'.freeze +end diff --git a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/satellite6_credential.rb b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/satellite6_credential.rb new file mode 100644 index 00000000..371ae2f2 --- /dev/null +++ b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/satellite6_credential.rb @@ -0,0 +1,34 @@ +module ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::Satellite6Credential + COMMON_ATTRIBUTES = { + :userid => { + :label => N_('Username'), + :help_text => N_('The username to use to connect to Satellite 6'), + :required => true + }, + :password => { + :type => :password, + :label => N_('Password'), + :help_text => N_('The password to use to connect to Satellite 6'), + :required => true + } + }.freeze + + EXTRA_ATTRIBUTES = { + :host => { + :type => :string, + :label => N_('Satellite 6 Host'), + :help_text => N_('Hostname or IP address which corresponds to your Red Hat Satellite 6 server'), + :max_length => 1024, + :required => true + } + }.freeze + + API_ATTRIBUTES = COMMON_ATTRIBUTES.merge(EXTRA_ATTRIBUTES).freeze + + API_OPTIONS = { + :type => 'cloud', + :label => N_('Satellite6'), + :attributes => API_ATTRIBUTES + }.freeze + TOWER_KIND = 'satellite6'.freeze +end diff --git a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/scm_credential.rb b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/scm_credential.rb index ff30df12..94ddfecb 100644 --- a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/scm_credential.rb +++ b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/scm_credential.rb @@ -1,6 +1,4 @@ module ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::ScmCredential - extend ActiveSupport::Concern - COMMON_ATTRIBUTES = { :userid => { :label => N_('Username'), diff --git a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/vmware_credential.rb b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/vmware_credential.rb index e37a33bb..9a7a4435 100644 --- a/app/models/manageiq/providers/ansible_tower/shared/automation_manager/vmware_credential.rb +++ b/app/models/manageiq/providers/ansible_tower/shared/automation_manager/vmware_credential.rb @@ -1,6 +1,4 @@ module ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::VmwareCredential - extend ActiveSupport::Concern - COMMON_ATTRIBUTES = { :userid => { :label => N_('Username'), diff --git a/lib/tasks_private/spec_helper.rake b/lib/tasks_private/spec_helper.rake index e14d2087..9d92d36f 100644 --- a/lib/tasks_private/spec_helper.rake +++ b/lib/tasks_private/spec_helper.rake @@ -80,6 +80,37 @@ class PopulateTower end def create_dataset + + ssh_key_data = <<~HEREDOC + -----BEGIN RSA PRIVATE KEY----- + MIIEowIBAAKCAQEArIIYuT+hC2dhPaSx68zTxsh5OJ3byVLNoX7urk8XU20OjlK4 + 7++J7qqkHojXadRZrJI69/BFteqOpLr16fAuTdPnEV1dIolEApT9Gd5sEMb4SFFc + QmZPtOCuFMRjweQBVqAFboUDpzp1Yosjyiw34JWaT8n2SVYjgFB/6SZt9/r/ZHjU + qOnQi/VY1Zp6eWtjW+LpverzCDS7EAv06OLeu9CZtKLNl8DcgcCvCbuONPCsbaSv + FtK8kw4Ev/oJvoYa3RbMphx9dfj8WB0xOcdlDmJLlvqw/iuBX0Ktslm/nADcPcxK + sd37i8Ds2BRVIlr7F3Pblh77TIP+KWzM0lVs1wIDAQABAoIBAAdpj6ZmFYVn68W6 + TerT4kWoV40XO1prNGq8CYVz4Iy1Iur6ovesU0DuFB87wgXKGhBQODhvGo+2hGqP + ngFvUI4HjOYyHM5fF40E2dtCs2IFKqXw2QYBX2tmPBSoW6D5KxWNyq31CTMmT+Ts + FZ2aSMxdoUPMaci86smYq+ZYwGDnVfp2Da5G/GnvdmN+x51mMku5hETBMCOpR+n9 + Z4bYnayVGyLXBJvwhx3pdIprwzAvoiySFjp/tFk+knxiPK84dJ3tIfdtgXmf1Cp9 + pEqDQR3lnvwW0LrBG3c6MiJRlp+Pl3EOZNMLdmsaKODnInwO2U5BNPQuVHPdrObD + 1GXxcAECgYEA3xkFdbQ+I6QZH5OSNxPKRPcqcYuYewTwQKmiL3mSoICfV9dRNV3e + ewQpcca7h9dcjTtdyx8PfvCNFR/uh/FhMw+kRXb4bdKDbDrKcQ9x23RFatbsgN14 + q90a6FaEOjOXf0TiTNqP/LTFry1x2r1ZCDLtVcg5zWM/iwUgrO5qOJkCgYEAxfMV + ijLKtBg8Mbdhb2F29vIxMokZS++AhEjWuWl7d/DCApjCXzrfMaHnBC6b4Oppubkp + i40KnkaaDSy03U4hpcSPoPONbv2Fw4o/88ml71DF44D7kXCIFjSMvPLEtU2qLl4z + o4dHUSbtycBzn+wou+IdgPNqNnBYvl/eBNHvBu8CgYBQJ3M4uMtijsCgAasUsr2H + Ta4oIVllSX7wHIIywGEX3V5idu+sVs9qLzKcuCQESDHuZBfstHoix1ZI8rIGkYi0 + ibghZP8Ypful1PGK8Vuc1wdhvVo3alrClKvoMb1ME+EoTp1ns1bsGh60M4Wma0Uj + lviCS2/JBRF9Zxg4SWhMcQKBgQC3PLABv8a4M371HqXJLtWq/sLf3t1V15yF1888 + zxIGEw3kzXeQI7UcAp0Q1/xflV7NF0QH9EWSAhT0gR/jhEHNa0jxWsLfrTs3qTBO + AanjAEhOssUs+phexcJJ3giNNBmG1pjClaVEz95qVgYyUa/bTBK3nZwCTLk5cRDa + MWMsbQKBgCaNkKxH/gZBxVGbnjxbaxTGGq2TxNrKcKWEY4aIybcJ1kM0+UctHPy2 + ixDk3cLUN9/a24A9BI+3GkyuX9LmubW/HqmSErIxnw6fx8OGUsVc/oJxJFbJjXQv + QS4PQZOVkJOn3sZr4hlMMLEKA7NSP9O9BiXCQIycrCDN6YlZ+0/c + -----END RSA PRIVATE KEY----- + HEREDOC + puts "=== Re-creating Tower objects ===" # create test organization uri = '/api/v1/organizations/' @@ -95,13 +126,33 @@ class PopulateTower data = {"name" => "hello_machine_cred", "kind" => "ssh", "username" => "admin", "password" => "abc", "organization" => organization['id']} machine_credential = create_obj(uri, data) + # create network cred + data = {"name" => "hello_network_cred", "kind" => "net", "username" => "admin", "password" => "abc", "organization" => organization['id']} + network_credential = create_obj(uri, data) + # create cloud aws cred data = {"name" => "hello_aws_cred", "kind" => "aws", "username" => "ABC", "password" => "abc", "organization" => organization['id']} aws_credential = create_obj(uri, data) - # create network cred - data = {"name" => "hello_network_cred", "kind" => "net", "username" => "admin", "password" => "abc", "organization" => organization['id']} - network_credential = create_obj(uri, data) + # create cloud openstack cred + data = {"name" => "hello_openstack_cred", "kind" => "openstack", "username" => "hello_rack", "password" => "abc", "host" => "openstack.com", "project" => "hello_rack", "organization" => organization['id']} + _openstack_credential = create_obj(uri, data) + + # create cloud google cred + data = {"name" => "hello_gce_cred", "kind" => "gce", "username" => "hello_gce@gce.com", "ssh_key_data" => ssh_key_data, "project" => "squeamish-ossifrage-123", "organization" => organization['id']} + _gce_credential = create_obj(uri, data) + + # create cloud rackspace cred + data = {"name" => "hello_rax_cred", "kind" => "rax", "username" => "admin", "password" => "abc", "organization" => organization['id']} + _rax_credential = create_obj(uri, data) + + # create cloud azure(RM) cred + data = {"name" => "hello_azure_cred", "kind" => "azure_rm", "username" => "admin", "password" => "abc", "subscription" => "sub_id", "tenant" => "ten_id", "secret" => "my_secret", "client" => "cli_id", "organization" => organization['id']} + _azure_credential = create_obj(uri, data) + + # create cloud satellite6 cred + data = {"name" => "hello_sat_cred", "kind" => "satellite6", "username" => "admin", "password" => "abc", "host" => "s1.sat.com", "organization" => organization['id']} + _azure_credential = create_obj(uri, data) # create inventory uri = '/api/v1/inventories/' @@ -135,6 +186,7 @@ class PopulateTower self end + def counts puts "=== Object counts ===" targets = { diff --git a/spec/support/ansible_shared/automation_manager/refresher.rb b/spec/support/ansible_shared/automation_manager/refresher.rb index 27027c14..6609d60e 100644 --- a/spec/support/ansible_shared/automation_manager/refresher.rb +++ b/spec/support/ansible_shared/automation_manager/refresher.rb @@ -100,16 +100,18 @@ def assert_counts 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(130) + expect(automation_manager.configured_systems.count).to eq(131) 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) + expect(automation_manager.credentials.count).to eq(54) end def assert_credentials expect(expected_configuration_script.authentications.count).to eq(3) + + # machine_credential machine_credential = expected_configuration_script.authentications.find_by( :type => manager_class::MachineCredential ) @@ -117,10 +119,12 @@ def assert_credentials :name => "hello_machine_cred", :userid => "admin", ) + expect(machine_credential.options.keys).to match_array([:become_method, :become_password, :become_username, :ssh_key_data, :ssh_key_unlock, :vault_password]) expect(machine_credential.options.keys).to match_array(machine_credential.class::EXTRA_ATTRIBUTES.keys) expect(machine_credential.options[:become_method]).to eq('') expect(machine_credential.options[:become_username]).to eq('') + # network_credential network_credential = expected_configuration_script.authentications.find_by( :type => manager_class::NetworkCredential ) @@ -128,7 +132,7 @@ def assert_credentials :name => "hello_network_cred", :userid => "admin", ) - expect(network_credential.options.keys).to match_array(network_credential.class::EXTRA_ATTRIBUTES.keys) + expect(network_credential.options.keys).to match_array([:authorize, :authorize_password, :ssh_key_data, :ssh_key_unlock]) cloud_credential = expected_configuration_script.authentications.find_by( :type => manager_class::AmazonCredential @@ -137,14 +141,27 @@ def assert_credentials :name => "hello_aws_cred", :userid => "ABC", ) - expect(cloud_credential.options.keys).to match_array(cloud_credential.class::EXTRA_ATTRIBUTES.keys) + expect(cloud_credential.options.keys).to match_array([:security_token]) + # scm_credential scm_credential = expected_configuration_script_source.authentication expect(scm_credential).to have_attributes( :name => "hello_scm_cred", :userid => "admin" ) - expect(scm_credential.options.keys).to match_array(scm_credential.class::EXTRA_ATTRIBUTES.keys) + expect(scm_credential.options.keys).to match_array([:ssh_key_data, :ssh_key_unlock]) + + # other credential types + openstack_cred = automation_manager.credentials.find_by(:name => 'hello_openstack_cred') + expect(openstack_cred.type.split('::').last).to eq("OpenstackCredential") + gce_cred = automation_manager.credentials.find_by(:name => 'hello_gce_cred') + expect(gce_cred.type.split('::').last).to eq("GoogleCredential") + rackspace_cred = automation_manager.credentials.find_by(:name => 'hello_rax_cred') + expect(rackspace_cred.type.split('::').last).to eq("RackspaceCredential") + azure_cred = automation_manager.credentials.find_by(:name => 'hello_azure_cred') + expect(azure_cred.type.split('::').last).to eq("AzureCredential") + satellite6_cred = automation_manager.credentials.find_by(:name => 'hello_sat_cred') + expect(satellite6_cred.type.split('::').last).to eq("Satellite6Credential") end def assert_playbooks @@ -175,7 +192,7 @@ def assert_configured_system expect(expected_configured_system).to have_attributes( :type => manager_class::ConfiguredSystem.name, :hostname => "hello_vm", - :manager_ref => "242", + :manager_ref => "251", :virtual_instance_ref => "4233080d-7467-de61-76c9-c8307b6e4830", ) expect(expected_configured_system.counterpart).to eq(expected_counterpart_vm) @@ -186,7 +203,7 @@ def assert_configuration_script_with_nil_survey_spec expect(expected_configuration_script).to have_attributes( :name => "hello_template", :description => "test job", - :manager_ref => "571", + :manager_ref => "598", :survey_spec => {}, :variables => {}, ) @@ -200,7 +217,7 @@ def assert_configuration_script_with_survey_spec expect(system).to have_attributes( :name => "hello_template_with_survey", :description => "test job with survey spec", - :manager_ref => "572", + :manager_ref => "599", :variables => {} ) survey = system.survey_spec @@ -211,7 +228,7 @@ def assert_configuration_script_with_survey_spec def assert_inventory_root_group expect(expected_inventory_root_group).to have_attributes( :name => "hello_inventory", - :ems_ref => "103", + :ems_ref => "112", :type => "ManageIQ::Providers::AutomationManager::InventoryRootGroup", ) 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 f5c722ca..78e5cd45 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 @@ -21,7 +21,7 @@ http_interactions: message: MOVED PERMANENTLY headers: Date: - - Wed, 21 Jun 2017 19:22:51 GMT + - Tue, 27 Jun 2017 17:54:36 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Location: @@ -34,7 +34,7 @@ http_interactions: encoding: UTF-8 string: '' http_version: - recorded_at: Wed, 21 Jun 2017 19:22:51 GMT + recorded_at: Tue, 27 Jun 2017 17:54:49 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/config/ @@ -56,7 +56,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:22:51 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -64,7 +64,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.231s + - 0.217s Transfer-Encoding: - chunked Content-Type: @@ -278,8 +278,8 @@ http_interactions: dmFpbGFibGVfaW5zdGFuY2VzIjoxMDAwMCwiaG9zdG5hbWUiOiIxMjk0ZGQ2 MzAxMjY0NDIxOGI1MmExN2I2YmM0MzBlZCIsImZyZWVfaW5zdGFuY2VzIjo5 OTAyLCJpbnN0YW5jZV9jb3VudCI6MTAwMDAsInRpbWVfcmVtYWluaW5nIjoy - MDYzNzEzMSwiY29tcGxpYW50Ijp0cnVlLCJncmFjZV9wZXJpb2RfcmVtYWlu - aW5nIjoyMzIyOTEzMSwiY29udGFjdF9lbWFpbCI6ImpvZXNtaXRAcmVkaGF0 + MDEyNDAyNiwiY29tcGxpYW50Ijp0cnVlLCJncmFjZV9wZXJpb2RfcmVtYWlu + aW5nIjoyMjcxNjAyNiwiY29udGFjdF9lbWFpbCI6ImpvZXNtaXRAcmVkaGF0 LmNvbSIsImNvbXBhbnlfbmFtZSI6IlJlZCBIYXQsIEluYy4iLCJkYXRlX3dh cm5pbmciOmZhbHNlLCJsaWNlbnNlX3R5cGUiOiJlbnRlcnByaXNlIiwiY29u dGFjdF9uYW1lIjoiSm9lICBTbWl0aCIsImxpY2Vuc2VfZGF0ZSI6MTUxODcx @@ -291,7 +291,7 @@ http_interactions: LCJhbnNpYmxlX3ZlcnNpb24iOiIyLjEuMC4wIiwicHJvamVjdF9sb2NhbF9w YXRocyI6W119 http_version: - recorded_at: Wed, 21 Jun 2017 19:22:51 GMT + recorded_at: Tue, 27 Jun 2017 17:54:50 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/inventories @@ -313,7 +313,7 @@ http_interactions: message: MOVED PERMANENTLY headers: Date: - - Wed, 21 Jun 2017 19:22:51 GMT + - Tue, 27 Jun 2017 17:54:37 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Location: @@ -326,7 +326,7 @@ http_interactions: encoding: UTF-8 string: '' http_version: - recorded_at: Wed, 21 Jun 2017 19:22:51 GMT + recorded_at: Tue, 27 Jun 2017 17:54:50 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/inventories/ @@ -348,7 +348,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:22:51 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -356,9 +356,9 @@ http_interactions: Allow: - GET, POST, HEAD, OPTIONS X-Api-Time: - - 0.203s - Transfer-Encoding: - - chunked + - 0.202s + Content-Length: + - '47886' Content-Type: - application/json body: @@ -404,14 +404,14 @@ http_interactions: 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 + 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":112,"type":"inventory","url":"/api/v1/inventories/112/","related":{"created_by":"/api/v1/users/1/","job_templates":"/api/v1/inventories/112/job_templates/","scan_job_templates":"/api/v1/inventories/112/scan_job_templates/","variable_data":"/api/v1/inventories/112/variable_data/","root_groups":"/api/v1/inventories/112/root_groups/","object_roles":"/api/v1/inventories/112/object_roles/","ad_hoc_commands":"/api/v1/inventories/112/ad_hoc_commands/","script":"/api/v1/inventories/112/script/","tree":"/api/v1/inventories/112/tree/","access_list":"/api/v1/inventories/112/access_list/","hosts":"/api/v1/inventories/112/hosts/","groups":"/api/v1/inventories/112/groups/","activity_stream":"/api/v1/inventories/112/activity_stream/","inventory_sources":"/api/v1/inventories/112/inventory_sources/","organization":"/api/v1/organizations/43/"},"summary_fields":{"organization":{"id":43,"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 + use the inventory in a job template","id":2960,"name":"Use"},"admin_role":{"description":"Can + manage all aspects of the inventory","id":2958,"name":"Admin"},"adhoc_role":{"description":"May + run ad hoc commands on an inventory","id":2957,"name":"Ad Hoc"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":2961,"name":"Update"},"read_role":{"description":"May + view settings for the inventory","id":2959,"name":"Read"}}},"created":"2017-06-27T17:52:17.125Z","modified":"2017-06-27T17:52:21.171Z","name":"hello_inventory","description":"inventory + for miq spec tests","organization":43,"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 @@ -506,7 +506,7 @@ http_interactions: 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 + recorded_at: Tue, 27 Jun 2017 17:54:50 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/inventories/?page=2 @@ -528,7 +528,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:22:52 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -536,7 +536,7 @@ http_interactions: Allow: - GET, POST, HEAD, OPTIONS X-Api-Time: - - 0.075s + - 0.073s Content-Length: - '7756' Content-Type: @@ -567,7 +567,7 @@ http_interactions: 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: Wed, 21 Jun 2017 19:22:52 GMT + recorded_at: Tue, 27 Jun 2017 17:54:50 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/hosts @@ -589,7 +589,7 @@ http_interactions: message: MOVED PERMANENTLY headers: Date: - - Wed, 21 Jun 2017 19:22:52 GMT + - Tue, 27 Jun 2017 17:54:38 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Location: @@ -602,7 +602,7 @@ http_interactions: encoding: UTF-8 string: '' http_version: - recorded_at: Wed, 21 Jun 2017 19:22:52 GMT + recorded_at: Tue, 27 Jun 2017 17:54:50 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/hosts/ @@ -624,7 +624,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:22:52 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -632,9 +632,9 @@ http_interactions: Allow: - GET, POST, HEAD, OPTIONS X-Api-Time: - - 0.271s - Content-Length: - - '45198' + - 0.239s + Transfer-Encoding: + - chunked Content-Type: - application/json body: @@ -646,7 +646,7 @@ http_interactions: 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 + 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/"},"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},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"recent_jobs":[]},"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":null,"last_job_host_summary":null},{"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 @@ -657,7 +657,7 @@ http_interactions: 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 + recorded_at: Tue, 27 Jun 2017 17:54:52 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/hosts/?page=2 @@ -679,7 +679,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:22:53 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -687,16 +687,15 @@ http_interactions: Allow: - GET, POST, HEAD, OPTIONS X-Api-Time: - - 0.259s - Content-Length: - - '76574' + - 0.243s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 - 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 + string: '{"count":133,"next":"/api/v1/hosts/?page=3","previous":"/api/v1/hosts/?page=1","results":[{"id":179,"type":"host","url":"/api/v1/hosts/179/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/179/job_host_summaries/","variable_data":"/api/v1/hosts/179/variable_data/","job_events":"/api/v1/hosts/179/job_events/","ad_hoc_commands":"/api/v1/hosts/179/ad_hoc_commands/","fact_versions":"/api/v1/hosts/179/fact_versions/","inventory_sources":"/api/v1/hosts/179/inventory_sources/","groups":"/api/v1/hosts/179/groups/","activity_stream":"/api/v1/hosts/179/activity_stream/","all_groups":"/api/v1/hosts/179/all_groups/","ad_hoc_command_events":"/api/v1/hosts/179/ad_hoc_command_events/","inventory":"/api/v1/inventories/59/"},"summary_fields":{"inventory":{"id":59,"name":"miq_aaa_playbook_no_resource_retirement_320","description":"","has_active_failures":false,"total_hosts":2,"hosts_with_active_failures":0,"total_groups":0,"groups_with_active_failures":0,"has_inventory_sources":false,"total_inventory_sources":0,"inventory_sources_with_failures":0},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"recent_jobs":[]},"created":"2017-03-30T15:47:53.454Z","modified":"2017-03-30T15:47:53.454Z","name":"10.8.99.248","description":"","inventory":59,"enabled":true,"instance_id":"","variables":"","has_active_failures":false,"has_inventory_sources":false,"last_job":null,"last_job_host_summary":null},{"id":175,"type":"host","url":"/api/v1/hosts/175/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/175/job_host_summaries/","variable_data":"/api/v1/hosts/175/variable_data/","job_events":"/api/v1/hosts/175/job_events/","ad_hoc_commands":"/api/v1/hosts/175/ad_hoc_commands/","fact_versions":"/api/v1/hosts/175/fact_versions/","inventory_sources":"/api/v1/hosts/175/inventory_sources/","groups":"/api/v1/hosts/175/groups/","activity_stream":"/api/v1/hosts/175/activity_stream/","all_groups":"/api/v1/hosts/175/all_groups/","ad_hoc_command_events":"/api/v1/hosts/175/ad_hoc_command_events/","inventory":"/api/v1/inventories/57/","last_job":"/api/v1/jobs/586/","last_job_host_summary":"/api/v1/job_host_summaries/319/"},"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":319,"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:27.199Z","modified":"2017-03-29T14:13:52.287Z","name":"10.8.99.248","description":"","inventory":57,"enabled":true,"instance_id":"","variables":"","has_active_failures":true,"has_inventory_sources":false,"last_job":586,"last_job_host_summary":319},{"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":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":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, @@ -705,7 +704,7 @@ http_interactions: \"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.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_instanceUuid\": + \"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\": @@ -734,7 +733,7 @@ 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.cloudforms.lab.eng.rdu2.redhat.com\", + \"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\": @@ -762,7 +761,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.cloudforms.lab.eng.rdu2.redhat.com\", + 0, \"ansible_ssh_host\": \"192.168.122.1\", \"vmware_hostSystem\": \"ibm-x3550m4-03.example.com\", \"vmware_uptimeSeconds\": 8040, \"vmware_memorySizeMB\": 4096, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[NFS Share] aab-idp/aab-idp.vmx\", \"vmware_guestState\": \"running\", \"vmware_staticMemoryEntitlement\": 4162, \"vmware_toolsStatus\": @@ -789,7 +788,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.cloudforms.lab.eng.rdu2.redhat.com\", + 23, \"ansible_ssh_host\": \"10.8.97.9\", \"vmware_hostSystem\": \"ibm-x3550m4-03.example.com\", \"vmware_uptimeSeconds\": 91224, \"vmware_memorySizeMB\": 4096, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[NFS Share] aab-ipaserver7/aab-ipaserver7.vmx\", \"vmware_guestState\": \"running\", \"vmware_staticMemoryEntitlement\": 4165, @@ -816,7 +815,7 @@ 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.cloudforms.lab.eng.rdu2.redhat.com\", + \"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\": @@ -842,7 +841,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.cloudforms.lab.eng.rdu2.redhat.com\", + 4606, \"ansible_ssh_host\": \"10.8.97.8\", \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", \"vmware_uptimeSeconds\": 2230594, \"vmware_memorySizeMB\": 16384, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[NFS Share] aab-miq-saml/aab-miq-saml.vmx\", \"vmware_guestState\": \"running\", \"vmware_staticMemoryEntitlement\": 16536, \"vmware_toolsStatus\": @@ -868,9 +867,9 @@ http_interactions: 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.cloudforms.lab.eng.rdu2.redhat.com\", + 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.cloudforms.lab.eng.rdu2.redhat.com\", + 767, \"ansible_ssh_host\": \"10.8.99.221\", \"vmware_hostSystem\": \"ibm-x3550m4-01.example.com\", \"vmware_uptimeSeconds\": 13112, \"vmware_memorySizeMB\": 4096, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[NFS Share] CFME (Agrare)/CFME (Agrare).vmx\", \"vmware_guestState\": \"running\", \"vmware_staticMemoryEntitlement\": 4181, @@ -894,7 +893,7 @@ http_interactions: \"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\": + \"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\": @@ -918,7 +917,7 @@ http_interactions: \"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.cloudforms.lab.eng.rdu2.redhat.com\", + \"vmware_hostSystem\": \"ibm-x3550m4-03.example.com\", \"vmware_instanceUuid\": \"500c98d1-ce8e-2113-c9df-45c03ea5788b\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 91227, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[NFS Share] ag_rhel_7_1_clone_1/ag_rhel_7_1_clone_1.vmx\", @@ -944,7 +943,7 @@ http_interactions: \"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.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_instanceUuid\": + \"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\", @@ -969,7 +968,7 @@ http_interactions: (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.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_instanceUuid\": + \"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\": @@ -987,13 +986,13 @@ http_interactions: \"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\": + \"inactive\", \"vmware_unshared\": 0, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"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\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"jwong-esxi3.example.com\", \"vmware_instanceUuid\": \"501440fc-8659-7059-b306-d52462d3f460\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[vsanDatastore] 42ae1c58-90fc-40d2-924f-0050568c8460/ag_test_1.vmx\", @@ -1012,13 +1011,13 @@ http_interactions: \"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":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\": + \"inactive\", \"vmware_unshared\": 8388608, \"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\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"jwong-esxi3.example.com\", \"vmware_instanceUuid\": \"501440fc-8659-7059-b306-d52462d3f460\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[vsanDatastore] 42ae1c58-90fc-40d2-924f-0050568c8460/ag_test_1.vmx\", @@ -1037,14 +1036,14 @@ http_interactions: \"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\": + \"inactive\", \"vmware_unshared\": 8388608, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":false,"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.cloudforms.lab.eng.rdu2.redhat.com\", + \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", \"vmware_instanceUuid\": \"500c33be-6d66-9c60-41d8-7be3d9f1b81b\", \"vmware_distributedCpuEntitlement\": 191, \"vmware_uptimeSeconds\": 91332, \"vmware_memorySizeMB\": 8192, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[NFS Share] akrzos-rhel7-performance/akrzos-rhel7-performance.vmx\", @@ -1068,7 +1067,7 @@ http_interactions: \"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.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_product_classId\": + \"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\": @@ -1101,7 +1100,7 @@ http_interactions: [\"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\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"test-vc60-host2.example.com\", \"vmware_instanceUuid\": \"50337917-876b-364f-6c3e-030ab9411b7e\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[NFS Share] Ansible-Host/Ansible-Host.vmx\", \"vmware_guestState\": @@ -1125,7 +1124,7 @@ http_interactions: [\"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\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"test-vc60-host2.example.com\", \"vmware_instanceUuid\": \"500cb691-6d91-b961-c9da-7e23a1b1833d\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[NFS Share] ansible-stupid-test/ansible-stupid-test.vmx\", @@ -1149,7 +1148,7 @@ http_interactions: [\"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\": + \"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\": @@ -1173,7 +1172,7 @@ http_interactions: \"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\": + \"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\", @@ -1194,7 +1193,7 @@ http_interactions: \"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 + recorded_at: Tue, 27 Jun 2017 17:54:53 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/hosts/?page=3 @@ -1216,7 +1215,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:22:53 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -1224,7 +1223,7 @@ http_interactions: Allow: - GET, POST, HEAD, OPTIONS X-Api-Time: - - 0.243s + - 0.277s Transfer-Encoding: - chunked Content-Type: @@ -1237,7 +1236,7 @@ http_interactions: [\"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.cloudforms.lab.eng.rdu2.redhat.com\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", \"vmware_instanceUuid\": \"500c49be-365b-6d6f-eb35-283590a82d38\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[NFS Share] bdunne-VmEmpty/bdunne-VmEmpty.vmx\", @@ -1259,7 +1258,7 @@ http_interactions: \"[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.cloudforms.lab.eng.rdu2.redhat.com\", + 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\": @@ -1274,7 +1273,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.cloudforms.lab.eng.rdu2.redhat.com\", + 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": \"dhcp-8-99-207.example.com\", \"vmware_product_vendor\": \"Red Hat, Inc.\", \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 8192, \"vmware_instanceUuid\": \"500c352d-8daf-465f-8bf1-7ff5557f7fd8\", \"vmware_compressedMemory\": 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": @@ -1290,7 +1289,7 @@ http_interactions: 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\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.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\", @@ -1313,7 +1312,7 @@ http_interactions: \"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.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_product_classId\": + \"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\": @@ -1330,7 +1329,7 @@ http_interactions: 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.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_product_vendor\": + \"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\": @@ -1347,7 +1346,7 @@ http_interactions: [\"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\": + \"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\", @@ -1371,7 +1370,7 @@ http_interactions: [\"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\": + \"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\", @@ -1395,7 +1394,7 @@ http_interactions: [\"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\": + \"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\", @@ -1419,9 +1418,9 @@ http_interactions: [\"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.cloudforms.lab.eng.rdu2.redhat.com\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostName\": \"dhcp-8-99-226.example.com\", \"vmware_instanceUuid\": \"500c5397-47c9-d319-6cf6-08dea1250db5\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.com\", + 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\": @@ -1444,7 +1443,7 @@ http_interactions: [\"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\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", \"vmware_instanceUuid\": \"500c3ceb-025b-dcde-517f-8e7d06fbcb8e\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 1024, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[NFS Share] db-centos-7-rebuild-request/db-centos-7-rebuild-request.vmx\", @@ -1470,7 +1469,7 @@ http_interactions: \"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\": + \"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\", @@ -1495,7 +1494,7 @@ http_interactions: [\"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.cloudforms.lab.eng.rdu2.redhat.com\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", \"vmware_instanceUuid\": \"500c5ba2-3a7c-0159-d2d0-df42dcc15d6f\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 4096, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[NFS Share] db_cfme_5.5/db_cfme_5.5.vmx\", \"vmware_guestState\": @@ -1519,7 +1518,7 @@ http_interactions: \"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\": + \"jwong-esxi1.example.com\", \"vmware_instanceUuid\": \"5014351b-43b4-b3b2-0d37-b4b4f6344062\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 1024, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[vsanDatastore] def6eb57-988d-f316-fa6e-0050568ce18d/db-clone-to-template-01.vmtx\", @@ -1545,7 +1544,7 @@ http_interactions: \"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\": + \"jwong-esxi1.example.com\", \"vmware_instanceUuid\": \"5014351b-43b4-b3b2-0d37-b4b4f6344062\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 1024, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[vsanDatastore] def6eb57-988d-f316-fa6e-0050568ce18d/db-clone-to-template-01.vmtx\", @@ -1571,9 +1570,9 @@ http_interactions: [\"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.cloudforms.lab.eng.rdu2.redhat.com\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostName\": \"dhcp-8-99-226.example.com\", \"vmware_instanceUuid\": \"500c5399-55d1-e563-9f51-4dabcbf6a297\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.com\", + 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\": @@ -1598,7 +1597,7 @@ http_interactions: [\"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\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", \"vmware_instanceUuid\": \"500cbbed-2c8e-32f6-60db-3b775df7b027\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[NFS Share] db-test-nic-001/db-test-nic-001.vmx\", @@ -1624,7 +1623,7 @@ http_interactions: [\"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\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", \"vmware_instanceUuid\": \"500c08df-53b3-75eb-19b3-8d30e57602b5\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[NFS Share] db-test-nic-002/db-test-nic-002.vmx\", @@ -1652,7 +1651,7 @@ 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.cloudforms.lab.eng.rdu2.redhat.com\", + 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\": @@ -1675,7 +1674,7 @@ http_interactions: \"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\": + \"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\", @@ -1700,7 +1699,7 @@ http_interactions: \"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.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_instanceUuid\": + \"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\", @@ -1724,7 +1723,7 @@ http_interactions: \"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\": + \"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\", @@ -1748,7 +1747,7 @@ http_interactions: [\"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\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", \"vmware_instanceUuid\": \"500cd202-2d1b-b97c-1c31-664ca41963eb\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[NFS Share] g_vm_prov009/g_vm_prov009.vmx\", \"vmware_guestState\": @@ -1765,12 +1764,12 @@ 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":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\": + \"vmware_unshared\": 0, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":251,"type":"host","url":"/api/v1/hosts/251/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/251/job_host_summaries/","variable_data":"/api/v1/hosts/251/variable_data/","job_events":"/api/v1/hosts/251/job_events/","ad_hoc_commands":"/api/v1/hosts/251/ad_hoc_commands/","fact_versions":"/api/v1/hosts/251/fact_versions/","inventory_sources":"/api/v1/hosts/251/inventory_sources/","groups":"/api/v1/hosts/251/groups/","activity_stream":"/api/v1/hosts/251/activity_stream/","all_groups":"/api/v1/hosts/251/all_groups/","ad_hoc_command_events":"/api/v1/hosts/251/ad_hoc_command_events/","inventory":"/api/v1/inventories/112/"},"summary_fields":{"inventory":{"id":112,"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-27T17:52:21.094Z","modified":"2017-06-27T17:52:21.094Z","name":"hello_vm","description":"","inventory":112,"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.cloudforms.lab.eng.rdu2.redhat.com\", + 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\": @@ -1785,7 +1784,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.cloudforms.lab.eng.rdu2.redhat.com\", + 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": \"dhcp-8-99-212.example.com\", \"vmware_product_vendor\": \"Red Hat, Inc.\", \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 8192, \"vmware_instanceUuid\": \"500cb5bf-aa2e-b4d6-c4a3-a236ee3dbce5\", \"vmware_compressedMemory\": 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": @@ -1798,7 +1797,7 @@ http_interactions: \"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}]}' http_version: - recorded_at: Wed, 21 Jun 2017 19:22:54 GMT + recorded_at: Tue, 27 Jun 2017 17:54:53 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/hosts/?page=4 @@ -1820,7 +1819,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:22:54 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -1828,7 +1827,7 @@ http_interactions: Allow: - GET, POST, HEAD, OPTIONS X-Api-Time: - - 0.681s + - 0.221s Transfer-Encoding: - chunked Content-Type: @@ -1841,7 +1840,7 @@ http_interactions: [\"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\": + \"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\", @@ -1866,7 +1865,7 @@ http_interactions: [\"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.cloudforms.lab.eng.rdu2.redhat.com\", + 41, \"vmware_hostSystem\": \"ibm-x3550m4-03.example.com\", \"vmware_instanceUuid\": \"500ca39f-7fbc-f357-b7e0-eda686864da6\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 91289, \"vmware_memorySizeMB\": 4096, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[NFS Share] joev-apache-openldap/joev-apache-openldap.vmx\", @@ -1893,7 +1892,7 @@ 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.cloudforms.lab.eng.rdu2.redhat.com\", + 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\": @@ -1916,7 +1915,7 @@ http_interactions: \"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.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_product_classId\": + \"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\": @@ -1953,7 +1952,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.cloudforms.lab.eng.rdu2.redhat.com\", + 23, \"ansible_ssh_host\": \"10.8.97.14\", \"vmware_hostSystem\": \"ibm-x3550m4-03.example.com\", \"vmware_uptimeSeconds\": 91237, \"vmware_memorySizeMB\": 16384, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[NFS Share] joev-ipa-rhel7/joev-ipa-rhel7.vmx\", \"vmware_guestState\": \"running\", \"vmware_staticMemoryEntitlement\": 16528, @@ -1979,7 +1978,7 @@ 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.cloudforms.lab.eng.rdu2.redhat.com\", + 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\": @@ -2003,9 +2002,9 @@ http_interactions: 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.cloudforms.lab.eng.rdu2.redhat.com\", + \"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.cloudforms.lab.eng.rdu2.redhat.com\", + 23, \"ansible_ssh_host\": \"10.8.99.233\", \"vmware_hostSystem\": \"ibm-x3550m4-03.example.com\", \"vmware_uptimeSeconds\": 179605, \"vmware_memorySizeMB\": 4096, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[NFS Share] joev-ldap/joev-ldap.vmx\", \"vmware_guestState\": \"running\", \"vmware_staticMemoryEntitlement\": 4172, \"vmware_toolsStatus\": @@ -2026,7 +2025,7 @@ http_interactions: \"[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.cloudforms.lab.eng.rdu2.redhat.com\", + null, \"vmware_balloonedMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-01.example.com\", \"vmware_product_classId\": null, \"vmware_distributedCpuEntitlement\": 191, \"ansible_ssh_host\": \"10.8.99.225\", \"vmware_product_key\": 0, \"vmware_unshared\": 4714955285, \"vmware_guestState\": \"running\", \"vmware_staticMemoryEntitlement\": @@ -2058,7 +2057,7 @@ http_interactions: \"[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.cloudforms.lab.eng.rdu2.redhat.com\", + null, \"vmware_balloonedMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", \"vmware_product_classId\": null, \"vmware_distributedCpuEntitlement\": 167, \"ansible_ssh_host\": \"10.8.99.247\", \"vmware_product_key\": 0, \"vmware_unshared\": 5397594974, \"vmware_guestState\": \"running\", \"vmware_staticMemoryEntitlement\": @@ -2075,7 +2074,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.cloudforms.lab.eng.rdu2.redhat.com\", + 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": \"dhcp-8-99-247.example.com\", \"vmware_product_vendor\": \"ManageIQ\", \"vmware_uptimeSeconds\": 7825, \"vmware_memorySizeMB\": 6144, \"vmware_instanceUuid\": \"500c2dcd-c5b0-2ba1-c2b8-802452f0ae74\", \"vmware_compressedMemory\": 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": 4, \"vmware_installBootRequired\": @@ -2091,7 +2090,7 @@ http_interactions: \"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.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_product_classId\": + \"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\": @@ -2124,7 +2123,7 @@ http_interactions: \"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.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_product_classId\": + \"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\": @@ -2141,7 +2140,7 @@ http_interactions: 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\": + \"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\": @@ -2157,7 +2156,7 @@ http_interactions: \"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.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_product_classId\": + \"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\": @@ -2174,7 +2173,7 @@ http_interactions: 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\": + \"dhcp-8-99-235.example.com\", \"vmware_product_vendor\": \"ManageIQ\", \"vmware_uptimeSeconds\": 8071, \"vmware_memorySizeMB\": 6144, \"vmware_instanceUuid\": \"500c22a0-7d5d-ce9d-de7f-93de5bceaec0\", \"vmware_compressedMemory\": 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": 4, \"vmware_installBootRequired\": @@ -2189,7 +2188,7 @@ http_interactions: \"[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.cloudforms.lab.eng.rdu2.redhat.com\", + 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\": @@ -2204,7 +2203,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.cloudforms.lab.eng.rdu2.redhat.com\", + 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": \"dhcp-8-99-217.example.com\", \"vmware_product_vendor\": \"ManageIQ\", \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 6144, \"vmware_instanceUuid\": \"500cfd3e-4464-c051-0ece-039973a2651b\", \"vmware_compressedMemory\": 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": 4, \"vmware_installBootRequired\": @@ -2222,9 +2221,9 @@ http_interactions: 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.cloudforms.lab.eng.rdu2.redhat.com\", + \"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.cloudforms.lab.eng.rdu2.redhat.com\", + 0, \"ansible_ssh_host\": \"10.8.99.246\", \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", \"vmware_uptimeSeconds\": 179637, \"vmware_memorySizeMB\": 8192, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[NFS Share] jp-img2/jp-img2.vmx\", \"vmware_guestState\": \"running\", \"vmware_staticMemoryEntitlement\": 8317, \"vmware_toolsStatus\": @@ -2248,7 +2247,7 @@ http_interactions: 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.cloudforms.lab.eng.rdu2.redhat.com\", + \"vmware_distributedCpuEntitlement\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 16384, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[NFS Share] jprause-brewery7/jprause-brewery7.vmx\", \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": @@ -2272,9 +2271,9 @@ http_interactions: [\"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.cloudforms.lab.eng.rdu2.redhat.com\", + 0, \"vmware_hostName\": \"dhcp-8-99-249.example.com\", \"vmware_instanceUuid\": \"500c7a0d-0538-3baf-ba22-fb070f840b89\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_hostSystem\": \"ibm-x3550m4-01.cloudforms.lab.eng.rdu2.redhat.com\", + 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\": @@ -2298,9 +2297,9 @@ http_interactions: [\"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.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_instanceUuid\": + \"dhcp-8-99-210.example.com\", \"vmware_instanceUuid\": \"500c871d-ba8d-ef9e-89c0-78095c8f987f\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.com\", + 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[NFS Share] jwong-centos7/jwong-centos7.vmx\", \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": @@ -2323,7 +2322,7 @@ http_interactions: [\"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.cloudforms.lab.eng.rdu2.redhat.com\", + 43, \"vmware_hostSystem\": \"ibm-x3550m4-01.example.com\", \"vmware_instanceUuid\": \"500cd4eb-2647-0faa-e0bd-27d7c09422cb\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 2233053, \"vmware_memorySizeMB\": 8192, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[datastore1] jwong-centos7(2)/jwong-centos7(2).vmx\", @@ -2342,7 +2341,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":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\": + \"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.example.com","description":"imported","inventory":2,"enabled":true,"instance_id":"420cf288-bc81-acd9-78c0-052dc4bb08f8","variables":"{\"vmware_privateMemory\": 2680, \"vmware_resourcePool\": \"Resources\", \"vmware_ipAddress\": \"10.8.97.18\", \"vmware_guestMemoryUsage\": 245, \"vmware_overallCpuUsage\": 335, \"vmware_suspendInterval\": 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"VMware @@ -2351,14 +2350,14 @@ 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.cloudforms.lab.eng.rdu2.redhat.com\", + \"vmware_hostSystem\": \"ibm-x3550m4-04.example.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\", + 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.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_toolsVersionStatus\": + \"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\": @@ -2378,7 +2377,7 @@ 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.cloudforms.lab.eng.rdu2.redhat.com\", + \"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\": @@ -2405,7 +2404,7 @@ 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.cloudforms.lab.eng.rdu2.redhat.com\", + \"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\": @@ -2428,7 +2427,7 @@ http_interactions: \"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.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_product_classId\": + \"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\": @@ -2464,7 +2463,7 @@ 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.cloudforms.lab.eng.rdu2.redhat.com\", + \"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\": @@ -2489,7 +2488,7 @@ http_interactions: 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 + recorded_at: Tue, 27 Jun 2017 17:54:54 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/hosts/?page=5 @@ -2511,7 +2510,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:22:55 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -2519,25 +2518,25 @@ http_interactions: Allow: - GET, POST, HEAD, OPTIONS X-Api-Time: - - 0.237s - Content-Length: - - '82691' + - 0.222s + Transfer-Encoding: + - chunked 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 + string: '{"count":133,"next":"/api/v1/hosts/?page=6","previous":"/api/v1/hosts/?page=4","results":[{"id":84,"type":"host","url":"/api/v1/hosts/84/","related":{"created_by":"/api/v1/users/1/","job_host_summaries":"/api/v1/hosts/84/job_host_summaries/","variable_data":"/api/v1/hosts/84/variable_data/","job_events":"/api/v1/hosts/84/job_events/","ad_hoc_commands":"/api/v1/hosts/84/ad_hoc_commands/","fact_versions":"/api/v1/hosts/84/fact_versions/","inventory_sources":"/api/v1/hosts/84/inventory_sources/","groups":"/api/v1/hosts/84/groups/","activity_stream":"/api/v1/hosts/84/activity_stream/","all_groups":"/api/v1/hosts/84/all_groups/","ad_hoc_command_events":"/api/v1/hosts/84/ad_hoc_command_events/","inventory":"/api/v1/inventories/6/"},"summary_fields":{"inventory":{"id":6,"name":"acme-corp","description":"","has_active_failures":true,"total_hosts":1,"hosts_with_active_failures":1,"total_groups":2,"groups_with_active_failures":1,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":1},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"recent_jobs":[]},"created":"2017-01-30T11:28:59.770Z","modified":"2017-02-23T20:25:15.701Z","name":"localhost","description":"","inventory":6,"enabled":true,"instance_id":"","variables":"","has_active_failures":true,"has_inventory_sources":false,"last_job":null,"last_job_host_summary":null},{"id":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\": + local","has_active_failures":false,"has_inventory_sources":false,"last_job":891,"last_job_host_summary":394},{"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.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_instanceUuid\": + \"dhcp-8-99-217.example.com\", \"vmware_instanceUuid\": \"5033aca6-0e5d-31f7-5921-bf61a3eee024\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_hostSystem\": \"ibm-x3550m4-03.cloudforms.lab.eng.rdu2.redhat.com\", + 0, \"vmware_hostSystem\": \"ibm-x3550m4-03.example.com\", \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 6144, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[NFS Share] lucy_54/lucy_54.vmx\", \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": @@ -2559,7 +2558,7 @@ http_interactions: \"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\", + 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\": @@ -2596,7 +2595,7 @@ 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.cloudforms.lab.eng.rdu2.redhat.com\", + \"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, @@ -2620,7 +2619,7 @@ http_interactions: 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\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", \"vmware_instanceUuid\": \"500cc24a-4e94-db0f-b6e3-e0c162ec4cf8\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[NFS Share] mk_centos_7.1/mk_centos_7.1.vmtx\", @@ -2642,7 +2641,7 @@ http_interactions: \"[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.cloudforms.lab.eng.rdu2.redhat.com\", + 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\": @@ -2657,7 +2656,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.cloudforms.lab.eng.rdu2.redhat.com\", + 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": \"dhcp-8-99-239.example.com\", \"vmware_product_vendor\": \"Red Hat, Inc.\", \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 8192, \"vmware_instanceUuid\": \"500c7825-5f67-1c20-df2e-a274ec4ee74c\", \"vmware_compressedMemory\": 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": @@ -2672,7 +2671,7 @@ http_interactions: \"[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.cloudforms.lab.eng.rdu2.redhat.com\", + 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\": @@ -2687,7 +2686,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.cloudforms.lab.eng.rdu2.redhat.com\", + 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": \"dhcp-8-99-223.example.com\", \"vmware_product_vendor\": \"Red Hat, Inc.\", \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 8192, \"vmware_instanceUuid\": \"500c3bb1-3ca0-b84e-49bc-716999210331\", \"vmware_compressedMemory\": 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": @@ -2702,7 +2701,7 @@ http_interactions: \"[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.cloudforms.lab.eng.rdu2.redhat.com\", + 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\": @@ -2717,7 +2716,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.cloudforms.lab.eng.rdu2.redhat.com\", + 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": \"dhcp-8-99-215.example.com\", \"vmware_product_vendor\": \"Red Hat, Inc.\", \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 8192, \"vmware_instanceUuid\": \"500c02aa-7f5c-e726-8425-7a1320c173e3\", \"vmware_compressedMemory\": 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": @@ -2737,7 +2736,7 @@ 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.cloudforms.lab.eng.rdu2.redhat.com\", + \"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\": @@ -2765,7 +2764,7 @@ 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.cloudforms.lab.eng.rdu2.redhat.com\", + \"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\": @@ -2792,7 +2791,7 @@ 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.cloudforms.lab.eng.rdu2.redhat.com\", + \"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, @@ -2816,7 +2815,7 @@ http_interactions: \"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\": + \"jwong-esxi1.example.com\", \"vmware_instanceUuid\": \"5014d9a8-0dce-5c5c-0d1f-a20b86d5774d\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 512, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[vsanDatastore] 19635857-84db-0320-5ee5-0050568ce18d/test1.vmtx\", @@ -2840,7 +2839,7 @@ http_interactions: \"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\": + \"jwong-esxi1.example.com\", \"vmware_instanceUuid\": \"5014d9a8-0dce-5c5c-0d1f-a20b86d5774d\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 512, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[vsanDatastore] 19635857-84db-0320-5ee5-0050568ce18d/test1.vmtx\", @@ -2858,39 +2857,14 @@ http_interactions: -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\": + \"vmware_sharedMemory\": 0}","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\": + \"jwong-esxi2.example.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\", @@ -2908,13 +2882,38 @@ http_interactions: -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\": + \"vmware_unshared\": 25165824, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":false,"last_job":null,"last_job_host_summary":null},{"id":213,"type":"host","url":"/api/v1/hosts/213/","related":{"job_host_summaries":"/api/v1/hosts/213/job_host_summaries/","variable_data":"/api/v1/hosts/213/variable_data/","job_events":"/api/v1/hosts/213/job_events/","ad_hoc_commands":"/api/v1/hosts/213/ad_hoc_commands/","fact_versions":"/api/v1/hosts/213/fact_versions/","inventory_sources":"/api/v1/hosts/213/inventory_sources/","groups":"/api/v1/hosts/213/groups/","activity_stream":"/api/v1/hosts/213/activity_stream/","all_groups":"/api/v1/hosts/213/all_groups/","ad_hoc_command_events":"/api/v1/hosts/213/ad_hoc_command_events/","inventory":"/api/v1/inventories/77/"},"summary_fields":{"inventory":{"id":77,"name":"jwong-i-group","description":"","has_active_failures":false,"total_hosts":8,"hosts_with_active_failures":0,"total_groups":14,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2017-06-19T19:46:54.515Z","modified":"2017-06-19T20:16:50.155Z","name":"test2","description":"imported","inventory":77,"enabled":true,"instance_id":"4214204b-41d6-e1a8-aad2-a7f4e8209e6a","variables":"{\"vmware_vmPathName\": + \"[vsanDatastore] aae19057-04e2-f15f-23d5-0050568c8460/test2.vmx\", \"vmware_guestMemoryUsage\": + 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"Red + Hat Enterprise Linux 7 (64-bit)\", \"vmware_balloonedMemory\": 0, \"vmware_hostSystem\": + \"jwong-esxi2.example.com\", \"vmware_instanceUuid\": + \"50143c2a-5348-4728-f2c1-4061fc26cfd6\", \"vmware_distributedCpuEntitlement\": + 0, \"vmware_unshared\": 25165824, \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": + 0, \"vmware_toolsStatus\": \"toolsNotInstalled\", \"vmware_overallStatus\": + \"green\", \"vmware_uuid\": \"4214204b-41d6-e1a8-aad2-a7f4e8209e6a\", \"vmware_faultToleranceState\": + \"notConfigured\", \"vmware_staticCpuEntitlement\": 0, \"vmware_uncommitted\": + 38629539840, \"vmware_distributedMemoryEntitlement\": 0, \"vmware_template\": + false, \"vmware_overallCpuDemand\": 0, \"vmware_ftSecondaryLatency\": -1, + \"vmware_numVirtualDisks\": 3, \"vmware_annotation\": null, \"vmware_maxMemoryUsage\": + 512, \"vmware_recordReplayState\": \"inactive\", \"vmware_sharedMemory\": + 0, \"vmware_privateMemory\": 8, \"vmware_resourcePool\": \"Resources\", \"vmware_overallCpuUsage\": + 0, \"vmware_suspendInterval\": 0, \"vmware_toolsInstallerMounted\": false, + \"vmware_memoryReservation\": 0, \"vmware_maxCpuUsage\": 2400, \"vmware_numMksConnections\": + 0, \"vmware_numEthernetCards\": 1, \"vmware_uptimeSeconds\": 1540, \"vmware_memorySizeMB\": + 512, \"vmware_compressedMemory\": 0, \"vmware_numCpu\": 1, \"vmware_installBootRequired\": + false, \"vmware_committed\": 755299813, \"vmware_name\": \"test2\", \"vmware_toolsVersionStatus\": + \"guestToolsNotInstalled\", \"vmware_cpuReservation\": 0, \"vmware_hostMemoryUsage\": + 32, \"vmware_connectionState\": \"connected\", \"vmware_guestHeartbeatStatus\": + \"gray\", \"vmware_toolsRunningStatus\": \"guestToolsNotRunning\", \"vmware_powerState\": + \"poweredOn\", \"vmware_ftLogBandwidth\": -1, \"vmware_datastores\": [\"vsanDatastore\"], + \"vmware_guestId\": \"rhel7_64Guest\", \"vmware_swappedMemory\": 0, \"vmware_consumedOverheadMemory\": + 24, \"vmware_ftLatencyStatus\": \"gray\"}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":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\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"jwong-esxi1.example.com\", \"vmware_instanceUuid\": \"501464a9-d214-64a1-fef9-1a482d0391b5\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 4096, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[datastore2] test2-tag1/test2-tag1.vmx\", \"vmware_guestState\": @@ -2938,7 +2937,7 @@ http_interactions: [\"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\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"jwong-esxi1.example.com\", \"vmware_instanceUuid\": \"501464a9-d214-64a1-fef9-1a482d0391b5\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 4096, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[datastore2] test2-tag1/test2-tag1.vmx\", \"vmware_guestState\": @@ -2962,7 +2961,7 @@ http_interactions: [\"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\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"jwong-esxi2.example.com\", \"vmware_instanceUuid\": \"5014bb35-5e62-b1ae-e411-6d3e713b97b1\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 4096, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[vsanDatastore] 45f59057-484f-80dd-9090-0050568c8460/test3.vmx\", @@ -2986,7 +2985,7 @@ http_interactions: [\"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\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"jwong-esxi2.example.com\", \"vmware_instanceUuid\": \"5014bb35-5e62-b1ae-e411-6d3e713b97b1\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 4096, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[vsanDatastore] 45f59057-484f-80dd-9090-0050568c8460/test3.vmx\", @@ -3010,7 +3009,7 @@ http_interactions: [\"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.cloudforms.lab.eng.rdu2.redhat.com\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"test-vc60-host1.example.com\", \"vmware_instanceUuid\": \"500c9705-7ea2-615e-32b4-66a487142f26\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[datastore1] test_billya/test_billya.vmx\", \"vmware_guestState\": @@ -3035,9 +3034,9 @@ http_interactions: [\"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.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_instanceUuid\": + \"dhcp-8-99-237.example.com\", \"vmware_instanceUuid\": \"500c8890-1e81-8c04-3b95-d6ff3cc0d26c\", \"vmware_distributedCpuEntitlement\": - 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.cloudforms.lab.eng.rdu2.redhat.com\", + 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[NFS Share] test_mkanoor_05_24_16/test_mkanoor_05_24_16.vmx\", \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": @@ -3054,13 +3053,13 @@ 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":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\": + \"inactive\", \"vmware_unshared\": 1885753903, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":true,"last_job":null,"last_job_host_summary":null},{"id":211,"type":"host","url":"/api/v1/hosts/211/","related":{"job_host_summaries":"/api/v1/hosts/211/job_host_summaries/","variable_data":"/api/v1/hosts/211/variable_data/","job_events":"/api/v1/hosts/211/job_events/","ad_hoc_commands":"/api/v1/hosts/211/ad_hoc_commands/","fact_versions":"/api/v1/hosts/211/fact_versions/","inventory_sources":"/api/v1/hosts/211/inventory_sources/","groups":"/api/v1/hosts/211/groups/","activity_stream":"/api/v1/hosts/211/activity_stream/","all_groups":"/api/v1/hosts/211/all_groups/","ad_hoc_command_events":"/api/v1/hosts/211/ad_hoc_command_events/","inventory":"/api/v1/inventories/77/"},"summary_fields":{"inventory":{"id":77,"name":"jwong-i-group","description":"","has_active_failures":false,"total_hosts":8,"hosts_with_active_failures":0,"total_groups":14,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2017-06-19T19:46:54.504Z","modified":"2017-06-19T19:46:54.984Z","name":"test-new-rbvm","description":"imported","inventory":77,"enabled":false,"instance_id":"42144e72-ffa6-a3dc-529b-166fce314721","variables":"{\"vmware_privateMemory\": 0, \"vmware_resourcePool\": \"Resources\", \"vmware_guestMemoryUsage\": 0, \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 7 (64-bit)\", \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": 0, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": - 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"jwong-esxi2.cloudforms.lab.eng.rdu2.redhat.com\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"jwong-esxi2.example.com\", \"vmware_instanceUuid\": \"50149a48-6088-b4c7-3be8-760b83809200\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 1024, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[datastore1 (1)] test-new-rbvm/test-new-rbvm.vmx\", @@ -3079,13 +3078,13 @@ http_interactions: \"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\": + \"inactive\", \"vmware_unshared\": 0, \"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\", + 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": \"jwong-esxi2.example.com\", \"vmware_instanceUuid\": \"50149a48-6088-b4c7-3be8-760b83809200\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 1024, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[datastore1 (1)] test-new-rbvm/test-new-rbvm.vmx\", @@ -3104,9 +3103,9 @@ http_interactions: \"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}]}' + \"inactive\", \"vmware_unshared\": 0, \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":false,"last_job":null,"last_job_host_summary":null}]}' http_version: - recorded_at: Wed, 21 Jun 2017 19:22:56 GMT + recorded_at: Tue, 27 Jun 2017 17:54:54 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/hosts/?page=6 @@ -3128,7 +3127,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:22:56 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -3136,20 +3135,20 @@ http_interactions: Allow: - GET, POST, HEAD, OPTIONS X-Api-Time: - - 0.117s - Content-Length: - - '29254' + - 0.113s + Transfer-Encoding: + - chunked 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\": + string: '{"count":133,"next":null,"previous":"/api/v1/hosts/?page=5","results":[{"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\": + \"jwong-esxi3.example.com\", \"vmware_instanceUuid\": \"50140bb2-d202-dca6-539b-b9f1f46faa84\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[vsanDatastore] f05fb757-909a-24d1-f2be-0050568c8460/test_template.vmtx\", @@ -3168,13 +3167,13 @@ http_interactions: \"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\": + \"vmware_sharedMemory\": 0}","has_active_failures":false,"has_inventory_sources":false,"last_job":null,"last_job_host_summary":null},{"id":216,"type":"host","url":"/api/v1/hosts/216/","related":{"job_host_summaries":"/api/v1/hosts/216/job_host_summaries/","variable_data":"/api/v1/hosts/216/variable_data/","job_events":"/api/v1/hosts/216/job_events/","ad_hoc_commands":"/api/v1/hosts/216/ad_hoc_commands/","fact_versions":"/api/v1/hosts/216/fact_versions/","inventory_sources":"/api/v1/hosts/216/inventory_sources/","groups":"/api/v1/hosts/216/groups/","activity_stream":"/api/v1/hosts/216/activity_stream/","all_groups":"/api/v1/hosts/216/all_groups/","ad_hoc_command_events":"/api/v1/hosts/216/ad_hoc_command_events/","inventory":"/api/v1/inventories/77/"},"summary_fields":{"inventory":{"id":77,"name":"jwong-i-group","description":"","has_active_failures":false,"total_hosts":8,"hosts_with_active_failures":0,"total_groups":14,"groups_with_active_failures":0,"has_inventory_sources":true,"total_inventory_sources":1,"inventory_sources_with_failures":0},"recent_jobs":[]},"created":"2017-06-19T19:46:54.531Z","modified":"2017-06-19T19:46:54.989Z","name":"test_template","description":"imported","inventory":77,"enabled":false,"instance_id":"4214ec19-dda9-9397-54a1-00c9eabfc597","variables":"{\"vmware_privateMemory\": 0, \"vmware_resourcePool\": \"\", \"vmware_guestMemoryUsage\": 0, \"vmware_overallCpuUsage\": 0, \"vmware_suspendInterval\": 0, \"vmware_networks\": [\"VM Network\"], \"vmware_guestFullName\": \"Red Hat Enterprise Linux 7 (64-bit)\", \"vmware_toolsInstallerMounted\": false, \"vmware_memoryReservation\": 0, \"vmware_numMksConnections\": 0, \"vmware_balloonedMemory\": 0, \"vmware_numEthernetCards\": 1, \"vmware_consumedOverheadMemory\": 0, \"vmware_hostSystem\": - \"jwong-esxi3.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_instanceUuid\": + \"jwong-esxi3.example.com\", \"vmware_instanceUuid\": \"50140bb2-d202-dca6-539b-b9f1f46faa84\", \"vmware_distributedCpuEntitlement\": 0, \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 2048, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[vsanDatastore] f05fb757-909a-24d1-f2be-0050568c8460/test_template.vmtx\", @@ -3193,13 +3192,13 @@ http_interactions: \"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 + \"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/"},"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.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_product_classId\": + \"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\": @@ -3216,7 +3215,7 @@ http_interactions: 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\": + \"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\": @@ -3232,7 +3231,7 @@ http_interactions: \"[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.cloudforms.lab.eng.rdu2.redhat.com\", + \"vmware_balloonedMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-03.example.com\", \"vmware_product_classId\": null, \"vmware_distributedCpuEntitlement\": 0, \"vmware_product_key\": 0, \"vmware_unshared\": 4408238651, \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": @@ -3248,7 +3247,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.cloudforms.lab.eng.rdu2.redhat.com\", + 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": \"dhcp-8-99-248.example.com\", \"vmware_product_vendor\": \"ManageIQ\", \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 6144, \"vmware_instanceUuid\": \"500c19f6-4c2d-0328-e4c3-b02a6cdebeff\", \"vmware_compressedMemory\": 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": 4, \"vmware_installBootRequired\": @@ -3265,7 +3264,7 @@ http_interactions: \"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.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_product_classId\": + \"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\": @@ -3282,7 +3281,7 @@ http_interactions: 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\": + \"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\": @@ -3298,7 +3297,7 @@ http_interactions: \"[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.cloudforms.lab.eng.rdu2.redhat.com\", + \"vmware_balloonedMemory\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-01.example.com\", \"vmware_product_classId\": null, \"vmware_distributedCpuEntitlement\": 0, \"vmware_product_key\": 0, \"vmware_unshared\": 4405457467, \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": 0, \"vmware_toolsStatus\": @@ -3314,7 +3313,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.cloudforms.lab.eng.rdu2.redhat.com\", + 1, \"vmware_product_productUrl\": null, \"vmware_hostName\": \"dhcp-8-99-212.example.com\", \"vmware_product_vendor\": \"ManageIQ\", \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 6144, \"vmware_instanceUuid\": \"500ca844-5d90-10d8-27c8-a7d90baad9d5\", \"vmware_compressedMemory\": 0, \"vmware_product_vendorUrl\": null, \"vmware_numCpu\": 4, \"vmware_installBootRequired\": @@ -3331,7 +3330,7 @@ http_interactions: \"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.cloudforms.lab.eng.rdu2.redhat.com\", \"vmware_instanceUuid\": + \"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\": @@ -3355,7 +3354,7 @@ http_interactions: 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.cloudforms.lab.eng.rdu2.redhat.com\", + \"vmware_distributedCpuEntitlement\": 0, \"vmware_hostSystem\": \"ibm-x3550m4-04.example.com\", \"vmware_uptimeSeconds\": 0, \"vmware_memorySizeMB\": 4096, \"vmware_compressedMemory\": 0, \"vmware_vmPathName\": \"[NFS Share] windows_2012_temp/windows_2012_temp.vmtx\", \"vmware_guestState\": \"notRunning\", \"vmware_staticMemoryEntitlement\": @@ -3374,7 +3373,7 @@ 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: Wed, 21 Jun 2017 19:22:56 GMT + recorded_at: Tue, 27 Jun 2017 17:54:55 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/config @@ -3396,7 +3395,7 @@ http_interactions: message: MOVED PERMANENTLY headers: Date: - - Wed, 21 Jun 2017 19:22:56 GMT + - Tue, 27 Jun 2017 17:54:42 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Location: @@ -3409,7 +3408,7 @@ http_interactions: encoding: UTF-8 string: '' http_version: - recorded_at: Wed, 21 Jun 2017 19:22:56 GMT + recorded_at: Tue, 27 Jun 2017 17:54:55 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/config/ @@ -3431,7 +3430,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:22:56 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -3439,7 +3438,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.222s + - 0.216s Content-Length: - '9774' Content-Type: @@ -3653,8 +3652,8 @@ http_interactions: dmFpbGFibGVfaW5zdGFuY2VzIjoxMDAwMCwiaG9zdG5hbWUiOiIxMjk0ZGQ2 MzAxMjY0NDIxOGI1MmExN2I2YmM0MzBlZCIsImZyZWVfaW5zdGFuY2VzIjo5 OTAyLCJpbnN0YW5jZV9jb3VudCI6MTAwMDAsInRpbWVfcmVtYWluaW5nIjoy - MDYzNzEyNiwiY29tcGxpYW50Ijp0cnVlLCJncmFjZV9wZXJpb2RfcmVtYWlu - aW5nIjoyMzIyOTEyNiwiY29udGFjdF9lbWFpbCI6ImpvZXNtaXRAcmVkaGF0 + MDEyNDAyMCwiY29tcGxpYW50Ijp0cnVlLCJncmFjZV9wZXJpb2RfcmVtYWlu + aW5nIjoyMjcxNjAyMCwiY29udGFjdF9lbWFpbCI6ImpvZXNtaXRAcmVkaGF0 LmNvbSIsImNvbXBhbnlfbmFtZSI6IlJlZCBIYXQsIEluYy4iLCJkYXRlX3dh cm5pbmciOmZhbHNlLCJsaWNlbnNlX3R5cGUiOiJlbnRlcnByaXNlIiwiY29u dGFjdF9uYW1lIjoiSm9lICBTbWl0aCIsImxpY2Vuc2VfZGF0ZSI6MTUxODcx @@ -3666,7 +3665,7 @@ http_interactions: LCJhbnNpYmxlX3ZlcnNpb24iOiIyLjEuMC4wIiwicHJvamVjdF9sb2NhbF9w YXRocyI6W119 http_version: - recorded_at: Wed, 21 Jun 2017 19:22:56 GMT + recorded_at: Tue, 27 Jun 2017 17:54:55 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates @@ -3688,7 +3687,7 @@ http_interactions: message: MOVED PERMANENTLY headers: Date: - - Wed, 21 Jun 2017 19:22:56 GMT + - Tue, 27 Jun 2017 17:54:42 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Location: @@ -3701,7 +3700,7 @@ http_interactions: encoding: UTF-8 string: '' http_version: - recorded_at: Wed, 21 Jun 2017 19:22:57 GMT + recorded_at: Tue, 27 Jun 2017 17:54:55 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/ @@ -3723,7 +3722,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:22:57 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -3731,7 +3730,7 @@ http_interactions: Allow: - GET, POST, HEAD, OPTIONS X-Api-Time: - - 0.437s + - 0.399s Transfer-Encoding: - chunked Content-Type: @@ -4030,163 +4029,395 @@ http_interactions: Y2FuX2VkaXQiOnRydWUsInJlY2VudF9qb2JzIjpbeyJzdGF0dXMiOiJzdWNj ZXNzZnVsIiwiZmluaXNoZWQiOiIyMDE3LTAzLTE2VDE2OjI0OjQzLjgyNVoi LCJpZCI6NDY3fSx7InN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6 - IjIwMTctMDItMjdUMTQ6NTM6MjUuMDEzWiIsImlkIjozODB9LHsic3RhdHVz - Ijoic3VjY2Vzc2Z1bCIsImZpbmlzaGVkIjoiMjAxNy0wMi0yM1QxNjoxMjoz - MS42MzNaIiwiaWQiOjM0OX0seyJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiZmlu - aXNoZWQiOiIyMDE3LTAyLTIzVDE2OjA5OjU0LjA2MloiLCJpZCI6MzQ3fSx7 - InN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6IjIwMTctMDItMjNU - MTY6MDc6NTMuNzY4WiIsImlkIjozNDV9LHsic3RhdHVzIjoic3VjY2Vzc2Z1 - bCIsImZpbmlzaGVkIjoiMjAxNy0wMi0yM1QxNTo1OTowMi45NTJaIiwiaWQi - OjM0M30seyJzdGF0dXMiOiJmYWlsZWQiLCJmaW5pc2hlZCI6IjIwMTctMDIt - MjNUMTU6NTQ6MjQuMzU4WiIsImlkIjozNDF9LHsic3RhdHVzIjoic3VjY2Vz - c2Z1bCIsImZpbmlzaGVkIjoiMjAxNy0wMi0yM1QxNTo1MjoyNC4zNzZaIiwi - aWQiOjMzOX0seyJzdGF0dXMiOiJmYWlsZWQiLCJmaW5pc2hlZCI6IjIwMTct - MDItMjNUMTU6NDc6NTguMzgzWiIsImlkIjozMzd9LHsic3RhdHVzIjoiZmFp - bGVkIiwiZmluaXNoZWQiOiIyMDE3LTAyLTIzVDE1OjQ2OjU3LjY1N1oiLCJp - ZCI6MzM1fV19LCJjcmVhdGVkIjoiMjAxNy0wMi0yMlQyMjozMTo0My43NDJa - IiwibW9kaWZpZWQiOiIyMDE3LTAzLTE2VDE2OjI0OjE4LjU3MFoiLCJuYW1l - IjoiY2hlY2tfdmVyc2lvbiIsImRlc2NyaXB0aW9uIjoiIiwiam9iX3R5cGUi - OiJydW4iLCJpbnZlbnRvcnkiOjksInByb2plY3QiOjE1NSwicGxheWJvb2si - OiJjaGVja192ZXJzaW9uLnlhbWwiLCJjcmVkZW50aWFsIjpudWxsLCJjbG91 - ZF9jcmVkZW50aWFsIjpudWxsLCJuZXR3b3JrX2NyZWRlbnRpYWwiOm51bGws + IjIwMTctMDItMjdUMTQ6NTM6MjUuMDEzWiIsImlkIjozODB9XX0sImNyZWF0 + ZWQiOiIyMDE3LTAyLTIyVDIyOjMxOjQzLjc0MloiLCJtb2RpZmllZCI6IjIw + MTctMDMtMTZUMTY6MjQ6MTguNTcwWiIsIm5hbWUiOiJjaGVja192ZXJzaW9u + IiwiZGVzY3JpcHRpb24iOiIiLCJqb2JfdHlwZSI6InJ1biIsImludmVudG9y + eSI6OSwicHJvamVjdCI6MTU1LCJwbGF5Ym9vayI6ImNoZWNrX3ZlcnNpb24u + eWFtbCIsImNyZWRlbnRpYWwiOm51bGwsImNsb3VkX2NyZWRlbnRpYWwiOm51 + bGwsIm5ldHdvcmtfY3JlZGVudGlhbCI6bnVsbCwiZm9ya3MiOjAsImxpbWl0 + IjoiIiwidmVyYm9zaXR5IjowLCJleHRyYV92YXJzIjoiLS0tXG5udW1iZXI6 + IOKAnDDigJ0iLCJqb2JfdGFncyI6IiIsImZvcmNlX2hhbmRsZXJzIjpmYWxz + ZSwic2tpcF90YWdzIjoiIiwic3RhcnRfYXRfdGFzayI6IiIsImxhc3Rfam9i + X3J1biI6IjIwMTctMDMtMTZUMTY6MjQ6NDMuODI1Njg4WiIsImxhc3Rfam9i + X2ZhaWxlZCI6ZmFsc2UsImhhc19zY2hlZHVsZXMiOmZhbHNlLCJuZXh0X2pv + Yl9ydW4iOm51bGwsInN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJob3N0X2NvbmZp + Z19rZXkiOiIiLCJhc2tfdmFyaWFibGVzX29uX2xhdW5jaCI6ZmFsc2UsImFz + a19saW1pdF9vbl9sYXVuY2giOmZhbHNlLCJhc2tfdGFnc19vbl9sYXVuY2gi + OmZhbHNlLCJhc2tfam9iX3R5cGVfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2lu + dmVudG9yeV9vbl9sYXVuY2giOmZhbHNlLCJhc2tfY3JlZGVudGlhbF9vbl9s + YXVuY2giOmZhbHNlLCJzdXJ2ZXlfZW5hYmxlZCI6ZmFsc2UsImJlY29tZV9l + bmFibGVkIjpmYWxzZSwiYWxsb3dfc2ltdWx0YW5lb3VzIjpmYWxzZX0seyJp + ZCI6MzgsInR5cGUiOiJqb2JfdGVtcGxhdGUiLCJ1cmwiOiIvYXBpL3YxL2pv + Yl90ZW1wbGF0ZXMvMzgvIiwicmVsYXRlZCI6eyJjcmVhdGVkX2J5IjoiL2Fw + aS92MS91c2Vycy8xLyIsIm1vZGlmaWVkX2J5IjoiL2FwaS92MS91c2Vycy8x + LyIsImxhYmVscyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8zOC9sYWJlbHMv + IiwiaW52ZW50b3J5IjoiL2FwaS92MS9pbnZlbnRvcmllcy8xLyIsInByb2pl + Y3QiOiIvYXBpL3YxL3Byb2plY3RzLzM2LyIsImNyZWRlbnRpYWwiOiIvYXBp + L3YxL2NyZWRlbnRpYWxzLzQvIiwiY2xvdWRfY3JlZGVudGlhbCI6Ii9hcGkv + djEvY3JlZGVudGlhbHMvMi8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVzX2Vy + cm9yIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzM4L25vdGlmaWNhdGlvbl90 + ZW1wbGF0ZXNfZXJyb3IvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRlc19zdWNj + ZXNzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzM4L25vdGlmaWNhdGlvbl90 + ZW1wbGF0ZXNfc3VjY2Vzcy8iLCJqb2JzIjoiL2FwaS92MS9qb2JfdGVtcGxh + dGVzLzM4L2pvYnMvIiwib2JqZWN0X3JvbGVzIjoiL2FwaS92MS9qb2JfdGVt + cGxhdGVzLzM4L29iamVjdF9yb2xlcy8iLCJub3RpZmljYXRpb25fdGVtcGxh + dGVzX2FueSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8zOC9ub3RpZmljYXRp + b25fdGVtcGxhdGVzX2FueS8iLCJhY2Nlc3NfbGlzdCI6Ii9hcGkvdjEvam9i + X3RlbXBsYXRlcy8zOC9hY2Nlc3NfbGlzdC8iLCJsYXVuY2giOiIvYXBpL3Yx + L2pvYl90ZW1wbGF0ZXMvMzgvbGF1bmNoLyIsInNjaGVkdWxlcyI6Ii9hcGkv + djEvam9iX3RlbXBsYXRlcy8zOC9zY2hlZHVsZXMvIiwiYWN0aXZpdHlfc3Ry + ZWFtIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzM4L2FjdGl2aXR5X3N0cmVh + bS8iLCJzdXJ2ZXlfc3BlYyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8zOC9z + dXJ2ZXlfc3BlYy8ifSwic3VtbWFyeV9maWVsZHMiOnsiaW52ZW50b3J5Ijp7 + ImlkIjoxLCJuYW1lIjoiRGVtbyBJbnZlbnRvcnkiLCJkZXNjcmlwdGlvbiI6 + IiIsImhhc19hY3RpdmVfZmFpbHVyZXMiOmZhbHNlLCJ0b3RhbF9ob3N0cyI6 + MiwiaG9zdHNfd2l0aF9hY3RpdmVfZmFpbHVyZXMiOjAsInRvdGFsX2dyb3Vw + cyI6MCwiZ3JvdXBzX3dpdGhfYWN0aXZlX2ZhaWx1cmVzIjowLCJoYXNfaW52 + ZW50b3J5X3NvdXJjZXMiOmZhbHNlLCJ0b3RhbF9pbnZlbnRvcnlfc291cmNl + cyI6MCwiaW52ZW50b3J5X3NvdXJjZXNfd2l0aF9mYWlsdXJlcyI6MH0sImNs + b3VkX2NyZWRlbnRpYWwiOnsiaWQiOjIsIm5hbWUiOiJkZXYtdmM2MCIsImRl + c2NyaXB0aW9uIjoiIiwia2luZCI6InZtd2FyZSIsImNsb3VkIjp0cnVlfSwi + Y3JlZGVudGlhbCI6eyJpZCI6NCwibmFtZSI6IkRlbW8gQ3JlZHMgMiIsImRl + c2NyaXB0aW9uIjoidGVzdCIsImtpbmQiOiJzc2giLCJjbG91ZCI6ZmFsc2V9 + LCJwcm9qZWN0Ijp7ImlkIjozNiwibmFtZSI6Imp3b25nLW9yZzIiLCJkZXNj + cmlwdGlvbiI6Ik1JUSBVSSB1cGRhdGUiLCJzdGF0dXMiOiJzdWNjZXNzZnVs + In0sImNyZWF0ZWRfYnkiOnsiaWQiOjEsInVzZXJuYW1lIjoiYWRtaW4iLCJm + aXJzdF9uYW1lIjoiIiwibGFzdF9uYW1lIjoiIn0sIm1vZGlmaWVkX2J5Ijp7 + ImlkIjoxLCJ1c2VybmFtZSI6ImFkbWluIiwiZmlyc3RfbmFtZSI6IiIsImxh + c3RfbmFtZSI6IiJ9LCJvYmplY3Rfcm9sZXMiOnsiYWRtaW5fcm9sZSI6eyJk + ZXNjcmlwdGlvbiI6IkNhbiBtYW5hZ2UgYWxsIGFzcGVjdHMgb2YgdGhlIGpv + YiB0ZW1wbGF0ZSIsImlkIjo4OSwibmFtZSI6IkFkbWluIn0sImV4ZWN1dGVf + cm9sZSI6eyJkZXNjcmlwdGlvbiI6Ik1heSBydW4gdGhlIGpvYiB0ZW1wbGF0 + ZSIsImlkIjo5MSwibmFtZSI6IkV4ZWN1dGUifSwicmVhZF9yb2xlIjp7ImRl + c2NyaXB0aW9uIjoiTWF5IHZpZXcgc2V0dGluZ3MgZm9yIHRoZSBqb2IgdGVt + cGxhdGUiLCJpZCI6OTAsIm5hbWUiOiJSZWFkIn19LCJsYWJlbHMiOnsiY291 + bnQiOjEsInJlc3VsdHMiOlt7ImlkIjoxLCJuYW1lIjoiZGVtbyJ9XX0sImNh + bl9jb3B5Ijp0cnVlLCJjYW5fZWRpdCI6dHJ1ZSwicmVjZW50X2pvYnMiOltd + fSwiY3JlYXRlZCI6IjIwMTctMDEtMTZUMTU6NTM6MDMuMjU0WiIsIm1vZGlm + aWVkIjoiMjAxNy0wMS0xNlQxNTo1MzowMy4yNTRaIiwibmFtZSI6IkRlbW8g + am9iIHRlbXBsYXRlIiwiZGVzY3JpcHRpb24iOiJ0ZXN0Iiwiam9iX3R5cGUi + OiJydW4iLCJpbnZlbnRvcnkiOjEsInByb2plY3QiOjM2LCJwbGF5Ym9vayI6 + InByb2R1Y3QvY2hhcnRzL21pcV9yZXBvcnRzL3ZpbV9wZXJmX2RhaWx5Lnlh + bWwiLCJjcmVkZW50aWFsIjo0LCJjbG91ZF9jcmVkZW50aWFsIjoyLCJuZXR3 + b3JrX2NyZWRlbnRpYWwiOm51bGwsImZvcmtzIjowLCJsaW1pdCI6IiIsInZl + cmJvc2l0eSI6MCwiZXh0cmFfdmFycyI6IiIsImpvYl90YWdzIjoiIiwiZm9y + Y2VfaGFuZGxlcnMiOmZhbHNlLCJza2lwX3RhZ3MiOiIiLCJzdGFydF9hdF90 + YXNrIjoiIiwibGFzdF9qb2JfcnVuIjpudWxsLCJsYXN0X2pvYl9mYWlsZWQi + OmZhbHNlLCJoYXNfc2NoZWR1bGVzIjpmYWxzZSwibmV4dF9qb2JfcnVuIjpu + dWxsLCJzdGF0dXMiOiJuZXZlciB1cGRhdGVkIiwiaG9zdF9jb25maWdfa2V5 + IjoiIiwiYXNrX3ZhcmlhYmxlc19vbl9sYXVuY2giOmZhbHNlLCJhc2tfbGlt + aXRfb25fbGF1bmNoIjpmYWxzZSwiYXNrX3RhZ3Nfb25fbGF1bmNoIjpmYWxz + ZSwiYXNrX2pvYl90eXBlX29uX2xhdW5jaCI6ZmFsc2UsImFza19pbnZlbnRv + cnlfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2NyZWRlbnRpYWxfb25fbGF1bmNo + IjpmYWxzZSwic3VydmV5X2VuYWJsZWQiOmZhbHNlLCJiZWNvbWVfZW5hYmxl + ZCI6dHJ1ZSwiYWxsb3dfc2ltdWx0YW5lb3VzIjpmYWxzZX0seyJpZCI6MTg4 + LCJ0eXBlIjoiam9iX3RlbXBsYXRlIiwidXJsIjoiL2FwaS92MS9qb2JfdGVt + cGxhdGVzLzE4OC8iLCJyZWxhdGVkIjp7ImNyZWF0ZWRfYnkiOiIvYXBpL3Yx + L3VzZXJzLzEvIiwibGFiZWxzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE4 + OC9sYWJlbHMvIiwiaW52ZW50b3J5IjoiL2FwaS92MS9pbnZlbnRvcmllcy85 + LyIsInByb2plY3QiOiIvYXBpL3YxL3Byb2plY3RzLzE1NS8iLCJub3RpZmlj + YXRpb25fdGVtcGxhdGVzX2Vycm9yIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVz + LzE4OC9ub3RpZmljYXRpb25fdGVtcGxhdGVzX2Vycm9yLyIsIm5vdGlmaWNh + dGlvbl90ZW1wbGF0ZXNfc3VjY2VzcyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRl + cy8xODgvbm90aWZpY2F0aW9uX3RlbXBsYXRlc19zdWNjZXNzLyIsImpvYnMi + OiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTg4L2pvYnMvIiwib2JqZWN0X3Jv + bGVzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE4OC9vYmplY3Rfcm9sZXMv + Iiwibm90aWZpY2F0aW9uX3RlbXBsYXRlc19hbnkiOiIvYXBpL3YxL2pvYl90 + ZW1wbGF0ZXMvMTg4L25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfYW55LyIsImFj + Y2Vzc19saXN0IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE4OC9hY2Nlc3Nf + bGlzdC8iLCJsYXVuY2giOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTg4L2xh + dW5jaC8iLCJzY2hlZHVsZXMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTg4 + L3NjaGVkdWxlcy8iLCJhY3Rpdml0eV9zdHJlYW0iOiIvYXBpL3YxL2pvYl90 + ZW1wbGF0ZXMvMTg4L2FjdGl2aXR5X3N0cmVhbS8iLCJzdXJ2ZXlfc3BlYyI6 + Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xODgvc3VydmV5X3NwZWMvIn0sInN1 + bW1hcnlfZmllbGRzIjp7ImludmVudG9yeSI6eyJpZCI6OSwibmFtZSI6Imx1 + Y3lzX3Rlc3RzIiwiZGVzY3JpcHRpb24iOiIiLCJoYXNfYWN0aXZlX2ZhaWx1 + cmVzIjpmYWxzZSwidG90YWxfaG9zdHMiOjIsImhvc3RzX3dpdGhfYWN0aXZl + X2ZhaWx1cmVzIjowLCJ0b3RhbF9ncm91cHMiOjIsImdyb3Vwc193aXRoX2Fj + dGl2ZV9mYWlsdXJlcyI6MCwiaGFzX2ludmVudG9yeV9zb3VyY2VzIjp0cnVl + LCJ0b3RhbF9pbnZlbnRvcnlfc291cmNlcyI6MiwiaW52ZW50b3J5X3NvdXJj + ZXNfd2l0aF9mYWlsdXJlcyI6MH0sInByb2plY3QiOnsiaWQiOjE1NSwibmFt + ZSI6Imx1Y3kiLCJkZXNjcmlwdGlvbiI6InRlc3QgcGxheWJvb2siLCJzdGF0 + dXMiOiJzdWNjZXNzZnVsIn0sImNyZWF0ZWRfYnkiOnsiaWQiOjEsInVzZXJu + YW1lIjoiYWRtaW4iLCJmaXJzdF9uYW1lIjoiIiwibGFzdF9uYW1lIjoiIn0s + Im9iamVjdF9yb2xlcyI6eyJhZG1pbl9yb2xlIjp7ImRlc2NyaXB0aW9uIjoi + Q2FuIG1hbmFnZSBhbGwgYXNwZWN0cyBvZiB0aGUgam9iIHRlbXBsYXRlIiwi + aWQiOjYwOSwibmFtZSI6IkFkbWluIn0sImV4ZWN1dGVfcm9sZSI6eyJkZXNj + cmlwdGlvbiI6Ik1heSBydW4gdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjo2MTEs + Im5hbWUiOiJFeGVjdXRlIn0sInJlYWRfcm9sZSI6eyJkZXNjcmlwdGlvbiI6 + Ik1heSB2aWV3IHNldHRpbmdzIGZvciB0aGUgam9iIHRlbXBsYXRlIiwiaWQi + OjYxMCwibmFtZSI6IlJlYWQifX0sImxhYmVscyI6eyJjb3VudCI6MCwicmVz + dWx0cyI6W119LCJjYW5fY29weSI6ZmFsc2UsImNhbl9lZGl0Ijp0cnVlLCJy + ZWNlbnRfam9icyI6W119LCJjcmVhdGVkIjoiMjAxNy0wMi0yMlQxOTo1Njo0 + Ni40MzBaIiwibW9kaWZpZWQiOiIyMDE3LTAyLTIyVDIwOjI2OjEwLjY2Mloi + LCJuYW1lIjoiZWNob19pbnB1dHMiLCJkZXNjcmlwdGlvbiI6IiIsImpvYl90 + eXBlIjoicnVuIiwiaW52ZW50b3J5Ijo5LCJwcm9qZWN0IjoxNTUsInBsYXli + b29rIjoiZWNob19pbnB1dHMueWFtbCIsImNyZWRlbnRpYWwiOm51bGwsImNs + b3VkX2NyZWRlbnRpYWwiOm51bGwsIm5ldHdvcmtfY3JlZGVudGlhbCI6bnVs + bCwiZm9ya3MiOjAsImxpbWl0IjoiIiwidmVyYm9zaXR5IjowLCJleHRyYV92 + YXJzIjoiLS0tXG5teV92YXI6IDM0Iiwiam9iX3RhZ3MiOiIiLCJmb3JjZV9o + YW5kbGVycyI6ZmFsc2UsInNraXBfdGFncyI6IiIsInN0YXJ0X2F0X3Rhc2si + OiIiLCJsYXN0X2pvYl9ydW4iOiIyMDE3LTAyLTIyVDIwOjI2OjM5LjA5NjM4 + OFoiLCJsYXN0X2pvYl9mYWlsZWQiOmZhbHNlLCJoYXNfc2NoZWR1bGVzIjpm + YWxzZSwibmV4dF9qb2JfcnVuIjpudWxsLCJzdGF0dXMiOiJzdWNjZXNzZnVs + IiwiaG9zdF9jb25maWdfa2V5IjoiIiwiYXNrX3ZhcmlhYmxlc19vbl9sYXVu + Y2giOmZhbHNlLCJhc2tfbGltaXRfb25fbGF1bmNoIjpmYWxzZSwiYXNrX3Rh + Z3Nfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2pvYl90eXBlX29uX2xhdW5jaCI6 + ZmFsc2UsImFza19pbnZlbnRvcnlfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2Ny + ZWRlbnRpYWxfb25fbGF1bmNoIjpmYWxzZSwic3VydmV5X2VuYWJsZWQiOmZh + bHNlLCJiZWNvbWVfZW5hYmxlZCI6ZmFsc2UsImFsbG93X3NpbXVsdGFuZW91 + cyI6ZmFsc2V9LHsiaWQiOjU5OCwidHlwZSI6ImpvYl90ZW1wbGF0ZSIsInVy + bCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy81OTgvIiwicmVsYXRlZCI6eyJj + cmVhdGVkX2J5IjoiL2FwaS92MS91c2Vycy8xLyIsIm1vZGlmaWVkX2J5Ijoi + L2FwaS92MS91c2Vycy8xLyIsImxhYmVscyI6Ii9hcGkvdjEvam9iX3RlbXBs + YXRlcy81OTgvbGFiZWxzLyIsImludmVudG9yeSI6Ii9hcGkvdjEvaW52ZW50 + b3JpZXMvMTEyLyIsInByb2plY3QiOiIvYXBpL3YxL3Byb2plY3RzLzU5Ny8i + LCJjcmVkZW50aWFsIjoiL2FwaS92MS9jcmVkZW50aWFscy8xNjIvIiwiY2xv + dWRfY3JlZGVudGlhbCI6Ii9hcGkvdjEvY3JlZGVudGlhbHMvMTY0LyIsIm5l + dHdvcmtfY3JlZGVudGlhbCI6Ii9hcGkvdjEvY3JlZGVudGlhbHMvMTYzLyIs + Im5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfZXJyb3IiOiIvYXBpL3YxL2pvYl90 + ZW1wbGF0ZXMvNTk4L25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfZXJyb3IvIiwi + bm90aWZpY2F0aW9uX3RlbXBsYXRlc19zdWNjZXNzIjoiL2FwaS92MS9qb2Jf + dGVtcGxhdGVzLzU5OC9ub3RpZmljYXRpb25fdGVtcGxhdGVzX3N1Y2Nlc3Mv + Iiwiam9icyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy81OTgvam9icy8iLCJv + YmplY3Rfcm9sZXMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvNTk4L29iamVj + dF9yb2xlcy8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVzX2FueSI6Ii9hcGkv + djEvam9iX3RlbXBsYXRlcy81OTgvbm90aWZpY2F0aW9uX3RlbXBsYXRlc19h + bnkvIiwiYWNjZXNzX2xpc3QiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvNTk4 + L2FjY2Vzc19saXN0LyIsImxhdW5jaCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRl + cy81OTgvbGF1bmNoLyIsInNjaGVkdWxlcyI6Ii9hcGkvdjEvam9iX3RlbXBs + YXRlcy81OTgvc2NoZWR1bGVzLyIsImFjdGl2aXR5X3N0cmVhbSI6Ii9hcGkv + djEvam9iX3RlbXBsYXRlcy81OTgvYWN0aXZpdHlfc3RyZWFtLyIsInN1cnZl + eV9zcGVjIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzU5OC9zdXJ2ZXlfc3Bl + Yy8ifSwic3VtbWFyeV9maWVsZHMiOnsibmV0d29ya19jcmVkZW50aWFsIjp7 + ImlkIjoxNjMsIm5hbWUiOiJoZWxsb19uZXR3b3JrX2NyZWQiLCJkZXNjcmlw + dGlvbiI6IiIsImtpbmQiOiJuZXQifSwiaW52ZW50b3J5Ijp7ImlkIjoxMTIs + Im5hbWUiOiJoZWxsb19pbnZlbnRvcnkiLCJkZXNjcmlwdGlvbiI6ImludmVu + dG9yeSBmb3IgbWlxIHNwZWMgdGVzdHMiLCJoYXNfYWN0aXZlX2ZhaWx1cmVz + IjpmYWxzZSwidG90YWxfaG9zdHMiOjEsImhvc3RzX3dpdGhfYWN0aXZlX2Zh + aWx1cmVzIjowLCJ0b3RhbF9ncm91cHMiOjAsImdyb3Vwc193aXRoX2FjdGl2 + ZV9mYWlsdXJlcyI6MCwiaGFzX2ludmVudG9yeV9zb3VyY2VzIjpmYWxzZSwi + dG90YWxfaW52ZW50b3J5X3NvdXJjZXMiOjAsImludmVudG9yeV9zb3VyY2Vz + X3dpdGhfZmFpbHVyZXMiOjB9LCJjbG91ZF9jcmVkZW50aWFsIjp7ImlkIjox + NjQsIm5hbWUiOiJoZWxsb19hd3NfY3JlZCIsImRlc2NyaXB0aW9uIjoiIiwi + a2luZCI6ImF3cyIsImNsb3VkIjp0cnVlfSwiY3JlZGVudGlhbCI6eyJpZCI6 + MTYyLCJuYW1lIjoiaGVsbG9fbWFjaGluZV9jcmVkIiwiZGVzY3JpcHRpb24i + OiIiLCJraW5kIjoic3NoIiwiY2xvdWQiOmZhbHNlfSwicHJvamVjdCI6eyJp + ZCI6NTk3LCJuYW1lIjoiaGVsbG9fcmVwbyIsImRlc2NyaXB0aW9uIjoiIiwi + c3RhdHVzIjoic3VjY2Vzc2Z1bCJ9LCJjcmVhdGVkX2J5Ijp7ImlkIjoxLCJ1 + c2VybmFtZSI6ImFkbWluIiwiZmlyc3RfbmFtZSI6IiIsImxhc3RfbmFtZSI6 + IiJ9LCJtb2RpZmllZF9ieSI6eyJpZCI6MSwidXNlcm5hbWUiOiJhZG1pbiIs + ImZpcnN0X25hbWUiOiIiLCJsYXN0X25hbWUiOiIifSwib2JqZWN0X3JvbGVz + Ijp7ImFkbWluX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJDYW4gbWFuYWdlIGFs + bCBhc3BlY3RzIG9mIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6Mjk2NiwibmFt + ZSI6IkFkbWluIn0sImV4ZWN1dGVfcm9sZSI6eyJkZXNjcmlwdGlvbiI6Ik1h + eSBydW4gdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjoyOTY4LCJuYW1lIjoiRXhl + Y3V0ZSJ9LCJyZWFkX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJNYXkgdmlldyBz + ZXR0aW5ncyBmb3IgdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjoyOTY3LCJuYW1l + IjoiUmVhZCJ9fSwibGFiZWxzIjp7ImNvdW50IjowLCJyZXN1bHRzIjpbXX0s + ImNhbl9jb3B5Ijp0cnVlLCJjYW5fZWRpdCI6dHJ1ZSwicmVjZW50X2pvYnMi + OltdfSwiY3JlYXRlZCI6IjIwMTctMDYtMjdUMTc6NTI6NDcuMDg3WiIsIm1v + ZGlmaWVkIjoiMjAxNy0wNi0yN1QxNzo1Mjo0Ny4wODdaIiwibmFtZSI6Imhl + bGxvX3RlbXBsYXRlIiwiZGVzY3JpcHRpb24iOiJ0ZXN0IGpvYiIsImpvYl90 + eXBlIjoicnVuIiwiaW52ZW50b3J5IjoxMTIsInByb2plY3QiOjU5NywicGxh + eWJvb2siOiJoZWxsb193b3JsZC55bWwiLCJjcmVkZW50aWFsIjoxNjIsImNs + b3VkX2NyZWRlbnRpYWwiOjE2NCwibmV0d29ya19jcmVkZW50aWFsIjoxNjMs ImZvcmtzIjowLCJsaW1pdCI6IiIsInZlcmJvc2l0eSI6MCwiZXh0cmFfdmFy - cyI6Ii0tLVxubnVtYmVyOiDigJww4oCdIiwiam9iX3RhZ3MiOiIiLCJmb3Jj + cyI6IiIsImpvYl90YWdzIjoiIiwiZm9yY2VfaGFuZGxlcnMiOmZhbHNlLCJz + a2lwX3RhZ3MiOiIiLCJzdGFydF9hdF90YXNrIjoiIiwibGFzdF9qb2JfcnVu + IjpudWxsLCJsYXN0X2pvYl9mYWlsZWQiOmZhbHNlLCJoYXNfc2NoZWR1bGVz + IjpmYWxzZSwibmV4dF9qb2JfcnVuIjpudWxsLCJzdGF0dXMiOiJuZXZlciB1 + cGRhdGVkIiwiaG9zdF9jb25maWdfa2V5IjoiIiwiYXNrX3ZhcmlhYmxlc19v + bl9sYXVuY2giOmZhbHNlLCJhc2tfbGltaXRfb25fbGF1bmNoIjpmYWxzZSwi + YXNrX3RhZ3Nfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2pvYl90eXBlX29uX2xh + dW5jaCI6ZmFsc2UsImFza19pbnZlbnRvcnlfb25fbGF1bmNoIjpmYWxzZSwi + YXNrX2NyZWRlbnRpYWxfb25fbGF1bmNoIjpmYWxzZSwic3VydmV5X2VuYWJs + ZWQiOmZhbHNlLCJiZWNvbWVfZW5hYmxlZCI6ZmFsc2UsImFsbG93X3NpbXVs + dGFuZW91cyI6ZmFsc2V9LHsiaWQiOjU5OSwidHlwZSI6ImpvYl90ZW1wbGF0 + ZSIsInVybCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy81OTkvIiwicmVsYXRl + ZCI6eyJjcmVhdGVkX2J5IjoiL2FwaS92MS91c2Vycy8xLyIsIm1vZGlmaWVk + X2J5IjoiL2FwaS92MS91c2Vycy8xLyIsImxhYmVscyI6Ii9hcGkvdjEvam9i + X3RlbXBsYXRlcy81OTkvbGFiZWxzLyIsImludmVudG9yeSI6Ii9hcGkvdjEv + aW52ZW50b3JpZXMvMTEyLyIsInByb2plY3QiOiIvYXBpL3YxL3Byb2plY3Rz + LzU5Ny8iLCJjcmVkZW50aWFsIjoiL2FwaS92MS9jcmVkZW50aWFscy8xNjIv + Iiwibm90aWZpY2F0aW9uX3RlbXBsYXRlc19lcnJvciI6Ii9hcGkvdjEvam9i + X3RlbXBsYXRlcy81OTkvbm90aWZpY2F0aW9uX3RlbXBsYXRlc19lcnJvci8i + LCJub3RpZmljYXRpb25fdGVtcGxhdGVzX3N1Y2Nlc3MiOiIvYXBpL3YxL2pv + Yl90ZW1wbGF0ZXMvNTk5L25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfc3VjY2Vz + cy8iLCJqb2JzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzU5OS9qb2JzLyIs + Im9iamVjdF9yb2xlcyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy81OTkvb2Jq + ZWN0X3JvbGVzLyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfYW55IjoiL2Fw + aS92MS9qb2JfdGVtcGxhdGVzLzU5OS9ub3RpZmljYXRpb25fdGVtcGxhdGVz + X2FueS8iLCJhY2Nlc3NfbGlzdCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy81 + OTkvYWNjZXNzX2xpc3QvIiwibGF1bmNoIjoiL2FwaS92MS9qb2JfdGVtcGxh + dGVzLzU5OS9sYXVuY2gvIiwic2NoZWR1bGVzIjoiL2FwaS92MS9qb2JfdGVt + cGxhdGVzLzU5OS9zY2hlZHVsZXMvIiwiYWN0aXZpdHlfc3RyZWFtIjoiL2Fw + aS92MS9qb2JfdGVtcGxhdGVzLzU5OS9hY3Rpdml0eV9zdHJlYW0vIiwic3Vy + dmV5X3NwZWMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvNTk5L3N1cnZleV9z + cGVjLyJ9LCJzdW1tYXJ5X2ZpZWxkcyI6eyJpbnZlbnRvcnkiOnsiaWQiOjEx + MiwibmFtZSI6ImhlbGxvX2ludmVudG9yeSIsImRlc2NyaXB0aW9uIjoiaW52 + ZW50b3J5IGZvciBtaXEgc3BlYyB0ZXN0cyIsImhhc19hY3RpdmVfZmFpbHVy + ZXMiOmZhbHNlLCJ0b3RhbF9ob3N0cyI6MSwiaG9zdHNfd2l0aF9hY3RpdmVf + ZmFpbHVyZXMiOjAsInRvdGFsX2dyb3VwcyI6MCwiZ3JvdXBzX3dpdGhfYWN0 + aXZlX2ZhaWx1cmVzIjowLCJoYXNfaW52ZW50b3J5X3NvdXJjZXMiOmZhbHNl + LCJ0b3RhbF9pbnZlbnRvcnlfc291cmNlcyI6MCwiaW52ZW50b3J5X3NvdXJj + ZXNfd2l0aF9mYWlsdXJlcyI6MH0sImNyZWRlbnRpYWwiOnsiaWQiOjE2Miwi + bmFtZSI6ImhlbGxvX21hY2hpbmVfY3JlZCIsImRlc2NyaXB0aW9uIjoiIiwi + a2luZCI6InNzaCIsImNsb3VkIjpmYWxzZX0sInByb2plY3QiOnsiaWQiOjU5 + NywibmFtZSI6ImhlbGxvX3JlcG8iLCJkZXNjcmlwdGlvbiI6IiIsInN0YXR1 + cyI6InN1Y2Nlc3NmdWwifSwiY3JlYXRlZF9ieSI6eyJpZCI6MSwidXNlcm5h + bWUiOiJhZG1pbiIsImZpcnN0X25hbWUiOiIiLCJsYXN0X25hbWUiOiIifSwi + bW9kaWZpZWRfYnkiOnsiaWQiOjEsInVzZXJuYW1lIjoiYWRtaW4iLCJmaXJz + dF9uYW1lIjoiIiwibGFzdF9uYW1lIjoiIn0sIm9iamVjdF9yb2xlcyI6eyJh + ZG1pbl9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiQ2FuIG1hbmFnZSBhbGwgYXNw + ZWN0cyBvZiB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjI5NjksIm5hbWUiOiJB + ZG1pbiJ9LCJleGVjdXRlX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJNYXkgcnVu + IHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6Mjk3MSwibmFtZSI6IkV4ZWN1dGUi + fSwicmVhZF9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiTWF5IHZpZXcgc2V0dGlu + Z3MgZm9yIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6Mjk3MCwibmFtZSI6IlJl + YWQifX0sImxhYmVscyI6eyJjb3VudCI6MCwicmVzdWx0cyI6W119LCJzdXJ2 + ZXkiOnsiZGVzY3JpcHRpb24iOiJEZXNjcmlwdGlvbiBvZiB0aGUgc2ltcGxl + IHN1cnZleSIsInRpdGxlIjoiU2ltcGxlIFN1cnZleSJ9LCJjYW5fY29weSI6 + dHJ1ZSwiY2FuX2VkaXQiOnRydWUsInJlY2VudF9qb2JzIjpbXX0sImNyZWF0 + ZWQiOiIyMDE3LTA2LTI3VDE3OjUzOjEzLjE0MloiLCJtb2RpZmllZCI6IjIw + MTctMDYtMjdUMTc6NTM6MTMuNTA3WiIsIm5hbWUiOiJoZWxsb190ZW1wbGF0 + ZV93aXRoX3N1cnZleSIsImRlc2NyaXB0aW9uIjoidGVzdCBqb2Igd2l0aCBz + dXJ2ZXkgc3BlYyIsImpvYl90eXBlIjoicnVuIiwiaW52ZW50b3J5IjoxMTIs + InByb2plY3QiOjU5NywicGxheWJvb2siOiJoZWxsb193b3JsZC55bWwiLCJj + cmVkZW50aWFsIjoxNjIsImNsb3VkX2NyZWRlbnRpYWwiOm51bGwsIm5ldHdv + cmtfY3JlZGVudGlhbCI6bnVsbCwiZm9ya3MiOjAsImxpbWl0IjoiIiwidmVy + Ym9zaXR5IjowLCJleHRyYV92YXJzIjoiIiwiam9iX3RhZ3MiOiIiLCJmb3Jj 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 + c2siOiIiLCJsYXN0X2pvYl9ydW4iOm51bGwsImxhc3Rfam9iX2ZhaWxlZCI6 + ZmFsc2UsImhhc19zY2hlZHVsZXMiOmZhbHNlLCJuZXh0X2pvYl9ydW4iOm51 + bGwsInN0YXR1cyI6Im5ldmVyIHVwZGF0ZWQiLCJob3N0X2NvbmZpZ19rZXki + OiIiLCJhc2tfdmFyaWFibGVzX29uX2xhdW5jaCI6ZmFsc2UsImFza19saW1p + dF9vbl9sYXVuY2giOmZhbHNlLCJhc2tfdGFnc19vbl9sYXVuY2giOmZhbHNl + LCJhc2tfam9iX3R5cGVfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2ludmVudG9y + eV9vbl9sYXVuY2giOmZhbHNlLCJhc2tfY3JlZGVudGlhbF9vbl9sYXVuY2gi + OmZhbHNlLCJzdXJ2ZXlfZW5hYmxlZCI6dHJ1ZSwiYmVjb21lX2VuYWJsZWQi + OmZhbHNlLCJhbGxvd19zaW11bHRhbmVvdXMiOmZhbHNlfSx7ImlkIjoyOCwi + dHlwZSI6ImpvYl90ZW1wbGF0ZSIsInVybCI6Ii9hcGkvdjEvam9iX3RlbXBs + YXRlcy8yOC8iLCJyZWxhdGVkIjp7ImNyZWF0ZWRfYnkiOiIvYXBpL3YxL3Vz + ZXJzLzEvIiwibGFiZWxzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzI4L2xh + YmVscy8iLCJpbnZlbnRvcnkiOiIvYXBpL3YxL2ludmVudG9yaWVzLzEvIiwi + cHJvamVjdCI6Ii9hcGkvdjEvcHJvamVjdHMvMjkvIiwiY3JlZGVudGlhbCI6 + Ii9hcGkvdjEvY3JlZGVudGlhbHMvMS8iLCJub3RpZmljYXRpb25fdGVtcGxh + dGVzX2Vycm9yIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzI4L25vdGlmaWNh + dGlvbl90ZW1wbGF0ZXNfZXJyb3IvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRl + c19zdWNjZXNzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzI4L25vdGlmaWNh + dGlvbl90ZW1wbGF0ZXNfc3VjY2Vzcy8iLCJqb2JzIjoiL2FwaS92MS9qb2Jf + dGVtcGxhdGVzLzI4L2pvYnMvIiwib2JqZWN0X3JvbGVzIjoiL2FwaS92MS9q + b2JfdGVtcGxhdGVzLzI4L29iamVjdF9yb2xlcy8iLCJub3RpZmljYXRpb25f + dGVtcGxhdGVzX2FueSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8yOC9ub3Rp + ZmljYXRpb25fdGVtcGxhdGVzX2FueS8iLCJhY2Nlc3NfbGlzdCI6Ii9hcGkv + djEvam9iX3RlbXBsYXRlcy8yOC9hY2Nlc3NfbGlzdC8iLCJsYXVuY2giOiIv + YXBpL3YxL2pvYl90ZW1wbGF0ZXMvMjgvbGF1bmNoLyIsInNjaGVkdWxlcyI6 + Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8yOC9zY2hlZHVsZXMvIiwiYWN0aXZp + dHlfc3RyZWFtIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzI4L2FjdGl2aXR5 + X3N0cmVhbS8iLCJzdXJ2ZXlfc3BlYyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRl + cy8yOC9zdXJ2ZXlfc3BlYy8ifSwic3VtbWFyeV9maWVsZHMiOnsiaW52ZW50 + b3J5Ijp7ImlkIjoxLCJuYW1lIjoiRGVtbyBJbnZlbnRvcnkiLCJkZXNjcmlw + dGlvbiI6IiIsImhhc19hY3RpdmVfZmFpbHVyZXMiOmZhbHNlLCJ0b3RhbF9o + b3N0cyI6MiwiaG9zdHNfd2l0aF9hY3RpdmVfZmFpbHVyZXMiOjAsInRvdGFs + X2dyb3VwcyI6MCwiZ3JvdXBzX3dpdGhfYWN0aXZlX2ZhaWx1cmVzIjowLCJo + YXNfaW52ZW50b3J5X3NvdXJjZXMiOmZhbHNlLCJ0b3RhbF9pbnZlbnRvcnlf + c291cmNlcyI6MCwiaW52ZW50b3J5X3NvdXJjZXNfd2l0aF9mYWlsdXJlcyI6 + MH0sImNyZWRlbnRpYWwiOnsiaWQiOjEsIm5hbWUiOiJEZW1vIENyZWRlbnRp + YWwiLCJkZXNjcmlwdGlvbiI6IiIsImtpbmQiOiJzc2giLCJjbG91ZCI6ZmFs + c2V9LCJwcm9qZWN0Ijp7ImlkIjoyOSwibmFtZSI6ImxnLXByb2plY3QiLCJk + ZXNjcmlwdGlvbiI6ImxnX3Byb2plY3QiLCJzdGF0dXMiOiJzdWNjZXNzZnVs + In0sImNyZWF0ZWRfYnkiOnsiaWQiOjEsInVzZXJuYW1lIjoiYWRtaW4iLCJm + aXJzdF9uYW1lIjoiIiwibGFzdF9uYW1lIjoiIn0sIm9iamVjdF9yb2xlcyI6 + eyJhZG1pbl9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiQ2FuIG1hbmFnZSBhbGwg + YXNwZWN0cyBvZiB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjMxLCJuYW1lIjoi + QWRtaW4ifSwiZXhlY3V0ZV9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiTWF5IHJ1 + biB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjMzLCJuYW1lIjoiRXhlY3V0ZSJ9 + LCJyZWFkX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJNYXkgdmlldyBzZXR0aW5n + cyBmb3IgdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjozMiwibmFtZSI6IlJlYWQi + fX0sImxhYmVscyI6eyJjb3VudCI6MCwicmVzdWx0cyI6W119LCJjYW5fY29w + eSI6dHJ1ZSwiY2FuX2VkaXQiOnRydWUsInJlY2VudF9qb2JzIjpbXX0sImNy + ZWF0ZWQiOiIyMDE2LTA5LTEzVDIwOjQyOjIxLjY3MFoiLCJtb2RpZmllZCI6 + IjIwMTYtMTEtMjlUMjE6NDA6MjIuODc2WiIsIm5hbWUiOiJMRyBEZW1vIEpv + YiBUZW1wbGF0ZSIsImRlc2NyaXB0aW9uIjoiIiwiam9iX3R5cGUiOiJjaGVj + ayIsImludmVudG9yeSI6MSwicHJvamVjdCI6MjksInBsYXlib29rIjoiamJv + c3Mtc3RhbmRhbG9uZS9zaXRlLnltbCIsImNyZWRlbnRpYWwiOjEsImNsb3Vk + X2NyZWRlbnRpYWwiOm51bGwsIm5ldHdvcmtfY3JlZGVudGlhbCI6bnVsbCwi + Zm9ya3MiOjAsImxpbWl0IjoiIiwidmVyYm9zaXR5IjowLCJleHRyYV92YXJz + IjoiIiwiam9iX3RhZ3MiOiIiLCJmb3JjZV9oYW5kbGVycyI6ZmFsc2UsInNr + aXBfdGFncyI6IiIsInN0YXJ0X2F0X3Rhc2siOiIiLCJsYXN0X2pvYl9ydW4i + OiIyMDE2LTExLTI5VDIxOjQwOjU4LjM5MjA1MVoiLCJsYXN0X2pvYl9mYWls + ZWQiOnRydWUsImhhc19zY2hlZHVsZXMiOmZhbHNlLCJuZXh0X2pvYl9ydW4i + Om51bGwsInN0YXR1cyI6ImZhaWxlZCIsImhvc3RfY29uZmlnX2tleSI6IiIs + ImFza192YXJpYWJsZXNfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2xpbWl0X29u + X2xhdW5jaCI6ZmFsc2UsImFza190YWdzX29uX2xhdW5jaCI6ZmFsc2UsImFz + a19qb2JfdHlwZV9vbl9sYXVuY2giOmZhbHNlLCJhc2tfaW52ZW50b3J5X29u + X2xhdW5jaCI6dHJ1ZSwiYXNrX2NyZWRlbnRpYWxfb25fbGF1bmNoIjpmYWxz + ZSwic3VydmV5X2VuYWJsZWQiOmZhbHNlLCJiZWNvbWVfZW5hYmxlZCI6ZmFs + c2UsImFsbG93X3NpbXVsdGFuZW91cyI6ZmFsc2V9LHsiaWQiOjE4NSwidHlw + ZSI6ImpvYl90ZW1wbGF0ZSIsInVybCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRl + cy8xODUvIiwicmVsYXRlZCI6eyJjcmVhdGVkX2J5IjoiL2FwaS92MS91c2Vy + cy8xLyIsImxhYmVscyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xODUvbGFi + ZWxzLyIsImludmVudG9yeSI6Ii9hcGkvdjEvaW52ZW50b3JpZXMvOS8iLCJw + cm9qZWN0IjoiL2FwaS92MS9wcm9qZWN0cy8xNTUvIiwiY3JlZGVudGlhbCI6 + Ii9hcGkvdjEvY3JlZGVudGlhbHMvNTIvIiwibGFzdF9qb2IiOiIvYXBpL3Yx + L2pvYnMvOTA1LyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfZXJyb3IiOiIv + YXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTg1L25vdGlmaWNhdGlvbl90ZW1wbGF0 + ZXNfZXJyb3IvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRlc19zdWNjZXNzIjoi + L2FwaS92MS9qb2JfdGVtcGxhdGVzLzE4NS9ub3RpZmljYXRpb25fdGVtcGxh + dGVzX3N1Y2Nlc3MvIiwiam9icyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8x + ODUvam9icy8iLCJvYmplY3Rfcm9sZXMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0 + ZXMvMTg1L29iamVjdF9yb2xlcy8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVz + X2FueSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xODUvbm90aWZpY2F0aW9u + X3RlbXBsYXRlc19hbnkvIiwiYWNjZXNzX2xpc3QiOiIvYXBpL3YxL2pvYl90 + ZW1wbGF0ZXMvMTg1L2FjY2Vzc19saXN0LyIsImxhdW5jaCI6Ii9hcGkvdjEv + am9iX3RlbXBsYXRlcy8xODUvbGF1bmNoLyIsInNjaGVkdWxlcyI6Ii9hcGkv + djEvam9iX3RlbXBsYXRlcy8xODUvc2NoZWR1bGVzLyIsImFjdGl2aXR5X3N0 + cmVhbSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xODUvYWN0aXZpdHlfc3Ry + ZWFtLyIsInN1cnZleV9zcGVjIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE4 + NS9zdXJ2ZXlfc3BlYy8ifSwic3VtbWFyeV9maWVsZHMiOnsibGFzdF9qb2Ii + OnsiaWQiOjkwNSwibmFtZSI6Imxpc3RfaW5wdXRzIiwiZGVzY3JpcHRpb24i + OiIiLCJmaW5pc2hlZCI6IjIwMTctMDYtMDhUMTU6MjQ6NTUuOTgxWiIsInN0 + YXR1cyI6InN1Y2Nlc3NmdWwiLCJmYWlsZWQiOmZhbHNlfSwibGFzdF91cGRh + dGUiOnsiaWQiOjkwNSwibmFtZSI6Imxpc3RfaW5wdXRzIiwiZGVzY3JpcHRp + b24iOiIiLCJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiZmFpbGVkIjpmYWxzZX0s + ImludmVudG9yeSI6eyJpZCI6OSwibmFtZSI6Imx1Y3lzX3Rlc3RzIiwiZGVz + Y3JpcHRpb24iOiIiLCJoYXNfYWN0aXZlX2ZhaWx1cmVzIjpmYWxzZSwidG90 + YWxfaG9zdHMiOjIsImhvc3RzX3dpdGhfYWN0aXZlX2ZhaWx1cmVzIjowLCJ0 + b3RhbF9ncm91cHMiOjIsImdyb3Vwc193aXRoX2FjdGl2ZV9mYWlsdXJlcyI6 + MCwiaGFzX2ludmVudG9yeV9zb3VyY2VzIjp0cnVlLCJ0b3RhbF9pbnZlbnRv + cnlfc291cmNlcyI6MiwiaW52ZW50b3J5X3NvdXJjZXNfd2l0aF9mYWlsdXJl + cyI6MH0sImNyZWRlbnRpYWwiOnsiaWQiOjUyLCJuYW1lIjoibHVjeV9tYWNo + aW5lIiwiZGVzY3JpcHRpb24iOiIiLCJraW5kIjoic3NoIiwiY2xvdWQiOmZh + bHNlfSwicHJvamVjdCI6eyJpZCI6MTU1LCJuYW1lIjoibHVjeSIsImRlc2Ny + aXB0aW9uIjoidGVzdCBwbGF5Ym9vayIsInN0YXR1cyI6InN1Y2Nlc3NmdWwi + fSwiY3JlYXRlZF9ieSI6eyJpZCI6MSwidXNlcm5hbWUiOiJhZG1pbiIsImZp 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 + c3BlY3RzIG9mIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6NjAwLCJuYW1lIjoi + QWRtaW4ifSwiZXhlY3V0ZV9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiTWF5IHJ1 + biB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjYwMiwibmFtZSI6IkV4ZWN1dGUi + fSwicmVhZF9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiTWF5IHZpZXcgc2V0dGlu + Z3MgZm9yIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6NjAxLCJuYW1lIjoiUmVh + ZCJ9fSwibGFiZWxzIjp7ImNvdW50IjowLCJyZXN1bHRzIjpbXX0sImNhbl9j + b3B5Ijp0cnVlLCJjYW5fZWRpdCI6dHJ1ZSwicmVjZW50X2pvYnMiOlt7InN0 + YXR1cyI6InN1Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6IjIwMTctMDYtMDhUMTU6 + MjQ6NTUuOTgxWiIsImlkIjo5MDV9XX0sImNyZWF0ZWQiOiIyMDE3LTAyLTIx + VDIyOjQwOjIxLjI2M1oiLCJtb2RpZmllZCI6IjIwMTctMDYtMDhUMTU6MjQ6 + MzguNDE1WiIsIm5hbWUiOiJsaXN0X2lucHV0cyIsImRlc2NyaXB0aW9uIjoi + Iiwiam9iX3R5cGUiOiJydW4iLCJpbnZlbnRvcnkiOjksInByb2plY3QiOjE1 + NSwicGxheWJvb2siOiJsaXN0X2lucHV0cy55YW1sIiwiY3JlZGVudGlhbCI6 + NTIsImNsb3VkX2NyZWRlbnRpYWwiOm51bGwsIm5ldHdvcmtfY3JlZGVudGlh bCI6bnVsbCwiZm9ya3MiOjAsImxpbWl0IjoiIiwidmVyYm9zaXR5IjowLCJl - eHRyYV92YXJzIjoiLS0tXG5teV92YXI6IDM0Iiwiam9iX3RhZ3MiOiIiLCJm + eHRyYV92YXJzIjoiLS0tXG5teV9oYXNoOlxuICBwMTogJ29uZSdcbiAgcDI6 + ICd0d28nXG4gIFxubXlfYXJyYXk6XG4gIC0gJ21haHdhaCdcbiAgLSAnbW9u + dHZpbGxlJ1xuICBcbm15X2Jvb2xlYW46IHRydWVcblxubXlfaW50OiAxMjM0 + NVxuXG5teV9waG9uZTogMTIzLTQ1Ni03ODkwXG5teV92YXI6IFwiMjQgSGln + aCBQbGFjZSwgTWFod2FoLCBOSiAwNzQ5NVwiIiwiam9iX3RhZ3MiOiIiLCJm b3JjZV9oYW5kbGVycyI6ZmFsc2UsInNraXBfdGFncyI6IiIsInN0YXJ0X2F0 - X3Rhc2siOiIiLCJsYXN0X2pvYl9ydW4iOiIyMDE3LTAyLTIyVDIwOjI2OjM5 - LjA5NjM4OFoiLCJsYXN0X2pvYl9mYWlsZWQiOmZhbHNlLCJoYXNfc2NoZWR1 + X3Rhc2siOiIiLCJsYXN0X2pvYl9ydW4iOiIyMDE3LTA2LTA4VDE1OjI0OjU1 + Ljk4MTk2MFoiLCJsYXN0X2pvYl9mYWlsZWQiOmZhbHNlLCJoYXNfc2NoZWR1 bGVzIjpmYWxzZSwibmV4dF9qb2JfcnVuIjpudWxsLCJzdGF0dXMiOiJzdWNj ZXNzZnVsIiwiaG9zdF9jb25maWdfa2V5IjoiIiwiYXNrX3ZhcmlhYmxlc19v bl9sYXVuY2giOmZhbHNlLCJhc2tfbGltaXRfb25fbGF1bmNoIjpmYWxzZSwi @@ -4194,333 +4425,44 @@ http_interactions: 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 + dGFuZW91cyI6ZmFsc2V9LHsiaWQiOjE4NCwidHlwZSI6ImpvYl90ZW1wbGF0 + ZSIsInVybCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xODQvIiwicmVsYXRl + ZCI6eyJjcmVhdGVkX2J5IjoiL2FwaS92MS91c2Vycy8xLyIsImxhYmVscyI6 + Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xODQvbGFiZWxzLyIsImludmVudG9y + eSI6Ii9hcGkvdjEvaW52ZW50b3JpZXMvOS8iLCJwcm9qZWN0IjoiL2FwaS92 + MS9wcm9qZWN0cy8xNTUvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRlc19lcnJv + ciI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xODQvbm90aWZpY2F0aW9uX3Rl + bXBsYXRlc19lcnJvci8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVzX3N1Y2Nl + c3MiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTg0L25vdGlmaWNhdGlvbl90 + ZW1wbGF0ZXNfc3VjY2Vzcy8iLCJqb2JzIjoiL2FwaS92MS9qb2JfdGVtcGxh + dGVzLzE4NC9qb2JzLyIsIm9iamVjdF9yb2xlcyI6Ii9hcGkvdjEvam9iX3Rl + bXBsYXRlcy8xODQvb2JqZWN0X3JvbGVzLyIsIm5vdGlmaWNhdGlvbl90ZW1w + bGF0ZXNfYW55IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE4NC9ub3RpZmlj + YXRpb25fdGVtcGxhdGVzX2FueS8iLCJhY2Nlc3NfbGlzdCI6Ii9hcGkvdjEv + am9iX3RlbXBsYXRlcy8xODQvYWNjZXNzX2xpc3QvIiwibGF1bmNoIjoiL2Fw + aS92MS9qb2JfdGVtcGxhdGVzLzE4NC9sYXVuY2gvIiwic2NoZWR1bGVzIjoi + L2FwaS92MS9qb2JfdGVtcGxhdGVzLzE4NC9zY2hlZHVsZXMvIiwiYWN0aXZp + dHlfc3RyZWFtIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE4NC9hY3Rpdml0 + eV9zdHJlYW0vIiwic3VydmV5X3NwZWMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0 + ZXMvMTg0L3N1cnZleV9zcGVjLyJ9LCJzdW1tYXJ5X2ZpZWxkcyI6eyJpbnZl + bnRvcnkiOnsiaWQiOjksIm5hbWUiOiJsdWN5c190ZXN0cyIsImRlc2NyaXB0 + aW9uIjoiIiwiaGFzX2FjdGl2ZV9mYWlsdXJlcyI6ZmFsc2UsInRvdGFsX2hv + c3RzIjoyLCJob3N0c193aXRoX2FjdGl2ZV9mYWlsdXJlcyI6MCwidG90YWxf + Z3JvdXBzIjoyLCJncm91cHNfd2l0aF9hY3RpdmVfZmFpbHVyZXMiOjAsImhh + c19pbnZlbnRvcnlfc291cmNlcyI6dHJ1ZSwidG90YWxfaW52ZW50b3J5X3Nv + dXJjZXMiOjIsImludmVudG9yeV9zb3VyY2VzX3dpdGhfZmFpbHVyZXMiOjB9 + LCJwcm9qZWN0Ijp7ImlkIjoxNTUsIm5hbWUiOiJsdWN5IiwiZGVzY3JpcHRp + b24iOiJ0ZXN0IHBsYXlib29rIiwic3RhdHVzIjoic3VjY2Vzc2Z1bCJ9LCJj + cmVhdGVkX2J5Ijp7ImlkIjoxLCJ1c2VybmFtZSI6ImFkbWluIiwiZmlyc3Rf + bmFtZSI6IiIsImxhc3RfbmFtZSI6IiJ9LCJvYmplY3Rfcm9sZXMiOnsiYWRt + aW5fcm9sZSI6eyJkZXNjcmlwdGlvbiI6IkNhbiBtYW5hZ2UgYWxsIGFzcGVj + dHMgb2YgdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjo1OTcsIm5hbWUiOiJBZG1p + biJ9LCJleGVjdXRlX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJNYXkgcnVuIHRo + ZSBqb2IgdGVtcGxhdGUiLCJpZCI6NTk5LCJuYW1lIjoiRXhlY3V0ZSJ9LCJy + ZWFkX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJNYXkgdmlldyBzZXR0aW5ncyBm + b3IgdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjo1OTgsIm5hbWUiOiJSZWFkIn19 + LCJsYWJlbHMiOnsiY291bnQiOjAsInJlc3VsdHMiOltdfSwiY2FuX2NvcHki + OmZhbHNlLCJjYW5fZWRpdCI6dHJ1ZSwicmVjZW50X2pvYnMiOltdfSwiY3Jl YXRlZCI6IjIwMTctMDItMjFUMjA6MjU6MzguNzcxWiIsIm1vZGlmaWVkIjoi MjAxNy0wMi0yMVQyMDoyNjo0MS40OTZaIiwibmFtZSI6Imxpc3RfcGFyYW1z IiwiZGVzY3JpcHRpb24iOiIiLCJqb2JfdHlwZSI6InJ1biIsImludmVudG9y @@ -4884,643 +4826,618 @@ http_interactions: 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 + MTctMDUtMDRUMjA6Mjk6MzUuNTU5WiIsImlkIjo4NTd9XX0sImNyZWF0ZWQi + OiIyMDE3LTAyLTE3VDE5OjM0OjU4LjcxOVoiLCJtb2RpZmllZCI6IjIwMTct + MDUtMDRUMjA6MzU6MTEuODM0WiIsIm5hbWUiOiJsdWN5X3Rlc3RfMSIsImRl + c2NyaXB0aW9uIjoidGVtcG9yYXJ5IHRlc3QiLCJqb2JfdHlwZSI6InJ1biIs + ImludmVudG9yeSI6OSwicHJvamVjdCI6MTU1LCJwbGF5Ym9vayI6InRlc3Rf + MS55YW1sIiwiY3JlZGVudGlhbCI6NTIsImNsb3VkX2NyZWRlbnRpYWwiOm51 + bGwsIm5ldHdvcmtfY3JlZGVudGlhbCI6bnVsbCwiZm9ya3MiOjAsImxpbWl0 + IjoiIiwidmVyYm9zaXR5IjowLCJleHRyYV92YXJzIjoiIiwiam9iX3RhZ3Mi + OiIiLCJmb3JjZV9oYW5kbGVycyI6ZmFsc2UsInNraXBfdGFncyI6IiIsInN0 + YXJ0X2F0X3Rhc2siOiIiLCJsYXN0X2pvYl9ydW4iOiIyMDE3LTA1LTA0VDIw + OjM1OjQ3LjE0MDk4OFoiLCJsYXN0X2pvYl9mYWlsZWQiOmZhbHNlLCJoYXNf + c2NoZWR1bGVzIjpmYWxzZSwibmV4dF9qb2JfcnVuIjpudWxsLCJzdGF0dXMi + OiJzdWNjZXNzZnVsIiwiaG9zdF9jb25maWdfa2V5IjoiIiwiYXNrX3Zhcmlh + Ymxlc19vbl9sYXVuY2giOmZhbHNlLCJhc2tfbGltaXRfb25fbGF1bmNoIjpm + YWxzZSwiYXNrX3RhZ3Nfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2pvYl90eXBl + X29uX2xhdW5jaCI6ZmFsc2UsImFza19pbnZlbnRvcnlfb25fbGF1bmNoIjpm + YWxzZSwiYXNrX2NyZWRlbnRpYWxfb25fbGF1bmNoIjpmYWxzZSwic3VydmV5 + X2VuYWJsZWQiOmZhbHNlLCJiZWNvbWVfZW5hYmxlZCI6dHJ1ZSwiYWxsb3df + c2ltdWx0YW5lb3VzIjpmYWxzZX0seyJpZCI6MTc4LCJ0eXBlIjoiam9iX3Rl + bXBsYXRlIiwidXJsIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE3OC8iLCJy + ZWxhdGVkIjp7ImNyZWF0ZWRfYnkiOiIvYXBpL3YxL3VzZXJzLzEvIiwibGFi + ZWxzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE3OC9sYWJlbHMvIiwiaW52 + ZW50b3J5IjoiL2FwaS92MS9pbnZlbnRvcmllcy85LyIsInByb2plY3QiOiIv + YXBpL3YxL3Byb2plY3RzLzE1NS8iLCJjcmVkZW50aWFsIjoiL2FwaS92MS9j + cmVkZW50aWFscy81Mi8iLCJsYXN0X2pvYiI6Ii9hcGkvdjEvam9icy84NDIv + Iiwibm90aWZpY2F0aW9uX3RlbXBsYXRlc19lcnJvciI6Ii9hcGkvdjEvam9i + X3RlbXBsYXRlcy8xNzgvbm90aWZpY2F0aW9uX3RlbXBsYXRlc19lcnJvci8i + LCJub3RpZmljYXRpb25fdGVtcGxhdGVzX3N1Y2Nlc3MiOiIvYXBpL3YxL2pv + Yl90ZW1wbGF0ZXMvMTc4L25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfc3VjY2Vz + cy8iLCJqb2JzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzE3OC9qb2JzLyIs + Im9iamVjdF9yb2xlcyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xNzgvb2Jq + ZWN0X3JvbGVzLyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfYW55IjoiL2Fw + aS92MS9qb2JfdGVtcGxhdGVzLzE3OC9ub3RpZmljYXRpb25fdGVtcGxhdGVz + X2FueS8iLCJhY2Nlc3NfbGlzdCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8x + NzgvYWNjZXNzX2xpc3QvIiwibGF1bmNoIjoiL2FwaS92MS9qb2JfdGVtcGxh + dGVzLzE3OC9sYXVuY2gvIiwic2NoZWR1bGVzIjoiL2FwaS92MS9qb2JfdGVt + cGxhdGVzLzE3OC9zY2hlZHVsZXMvIiwiYWN0aXZpdHlfc3RyZWFtIjoiL2Fw + aS92MS9qb2JfdGVtcGxhdGVzLzE3OC9hY3Rpdml0eV9zdHJlYW0vIiwic3Vy + dmV5X3NwZWMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTc4L3N1cnZleV9z + cGVjLyJ9LCJzdW1tYXJ5X2ZpZWxkcyI6eyJsYXN0X2pvYiI6eyJpZCI6ODQy + LCJuYW1lIjoibHVjeV92YWxpZGF0ZV9pbnB1dHMiLCJkZXNjcmlwdGlvbiI6 + IiIsImZpbmlzaGVkIjoiMjAxNy0wNS0wNFQxOTowMjo1Ni40MDlaIiwic3Rh + dHVzIjoiZmFpbGVkIiwiZmFpbGVkIjp0cnVlfSwibGFzdF91cGRhdGUiOnsi + aWQiOjg0MiwibmFtZSI6Imx1Y3lfdmFsaWRhdGVfaW5wdXRzIiwiZGVzY3Jp + cHRpb24iOiIiLCJzdGF0dXMiOiJmYWlsZWQiLCJmYWlsZWQiOnRydWV9LCJp + bnZlbnRvcnkiOnsiaWQiOjksIm5hbWUiOiJsdWN5c190ZXN0cyIsImRlc2Ny + aXB0aW9uIjoiIiwiaGFzX2FjdGl2ZV9mYWlsdXJlcyI6ZmFsc2UsInRvdGFs + X2hvc3RzIjoyLCJob3N0c193aXRoX2FjdGl2ZV9mYWlsdXJlcyI6MCwidG90 + YWxfZ3JvdXBzIjoyLCJncm91cHNfd2l0aF9hY3RpdmVfZmFpbHVyZXMiOjAs + Imhhc19pbnZlbnRvcnlfc291cmNlcyI6dHJ1ZSwidG90YWxfaW52ZW50b3J5 + X3NvdXJjZXMiOjIsImludmVudG9yeV9zb3VyY2VzX3dpdGhfZmFpbHVyZXMi + OjB9LCJjcmVkZW50aWFsIjp7ImlkIjo1MiwibmFtZSI6Imx1Y3lfbWFjaGlu + ZSIsImRlc2NyaXB0aW9uIjoiIiwia2luZCI6InNzaCIsImNsb3VkIjpmYWxz + ZX0sInByb2plY3QiOnsiaWQiOjE1NSwibmFtZSI6Imx1Y3kiLCJkZXNjcmlw + dGlvbiI6InRlc3QgcGxheWJvb2siLCJzdGF0dXMiOiJzdWNjZXNzZnVsIn0s + ImNyZWF0ZWRfYnkiOnsiaWQiOjEsInVzZXJuYW1lIjoiYWRtaW4iLCJmaXJz + dF9uYW1lIjoiIiwibGFzdF9uYW1lIjoiIn0sIm9iamVjdF9yb2xlcyI6eyJh + ZG1pbl9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiQ2FuIG1hbmFnZSBhbGwgYXNw + ZWN0cyBvZiB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjU3OSwibmFtZSI6IkFk + bWluIn0sImV4ZWN1dGVfcm9sZSI6eyJkZXNjcmlwdGlvbiI6Ik1heSBydW4g + dGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjo1ODEsIm5hbWUiOiJFeGVjdXRlIn0s + InJlYWRfcm9sZSI6eyJkZXNjcmlwdGlvbiI6Ik1heSB2aWV3IHNldHRpbmdz + IGZvciB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjU4MCwibmFtZSI6IlJlYWQi + fX0sImxhYmVscyI6eyJjb3VudCI6MCwicmVzdWx0cyI6W119LCJjYW5fY29w + eSI6dHJ1ZSwiY2FuX2VkaXQiOnRydWUsInJlY2VudF9qb2JzIjpbeyJzdGF0 + dXMiOiJmYWlsZWQiLCJmaW5pc2hlZCI6IjIwMTctMDUtMDRUMTk6MDI6NTYu + NDA5WiIsImlkIjo4NDJ9LHsic3RhdHVzIjoiZmFpbGVkIiwiZmluaXNoZWQi + OiIyMDE3LTA1LTA0VDE5OjAwOjE5LjQ5N1oiLCJpZCI6ODQwfSx7InN0YXR1 + cyI6InN1Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6IjIwMTctMDUtMDRUMTg6NTU6 + NDQuMDA4WiIsImlkIjo4Mzh9LHsic3RhdHVzIjoiZmFpbGVkIiwiZmluaXNo + ZWQiOiIyMDE3LTA1LTA0VDE4OjU0OjE5Ljg2NloiLCJpZCI6ODM2fSx7InN0 + YXR1cyI6ImZhaWxlZCIsImZpbmlzaGVkIjoiMjAxNy0wNS0wNFQxODo1MTow + OC45NThaIiwiaWQiOjgzNH0seyJzdGF0dXMiOiJmYWlsZWQiLCJmaW5pc2hl + ZCI6IjIwMTctMDUtMDRUMTQ6NTM6MDQuMTEyWiIsImlkIjo4MjF9LHsic3Rh + dHVzIjoic3VjY2Vzc2Z1bCIsImZpbmlzaGVkIjoiMjAxNy0wNS0wNFQxNDo1 + MjoxOC4zMDBaIiwiaWQiOjgxOX1dfSwiY3JlYXRlZCI6IjIwMTctMDItMjFU + MTc6MjA6NTcuODMzWiIsIm1vZGlmaWVkIjoiMjAxNy0wNS0wNFQxOTowMjoy + OS45NThaIiwibmFtZSI6Imx1Y3lfdmFsaWRhdGVfaW5wdXRzIiwiZGVzY3Jp + cHRpb24iOiIiLCJqb2JfdHlwZSI6InJ1biIsImludmVudG9yeSI6OSwicHJv + amVjdCI6MTU1LCJwbGF5Ym9vayI6InZhbGlkYXRlX2lucHV0cy55YW1sIiwi + Y3JlZGVudGlhbCI6NTIsImNsb3VkX2NyZWRlbnRpYWwiOm51bGwsIm5ldHdv + cmtfY3JlZGVudGlhbCI6bnVsbCwiZm9ya3MiOjAsImxpbWl0IjoiIiwidmVy + Ym9zaXR5IjozLCJleHRyYV92YXJzIjoiLS0tXG5wYXJhbTE6ICdpbnN0YWxs + JyIsImpvYl90YWdzIjoiIiwiZm9yY2VfaGFuZGxlcnMiOmZhbHNlLCJza2lw + X3RhZ3MiOiIiLCJzdGFydF9hdF90YXNrIjoiIiwibGFzdF9qb2JfcnVuIjoi + MjAxNy0wNS0wNFQxOTowMjo1Ni40MDk0NzJaIiwibGFzdF9qb2JfZmFpbGVk + Ijp0cnVlLCJoYXNfc2NoZWR1bGVzIjpmYWxzZSwibmV4dF9qb2JfcnVuIjpu + dWxsLCJzdGF0dXMiOiJmYWlsZWQiLCJob3N0X2NvbmZpZ19rZXkiOiIiLCJh + c2tfdmFyaWFibGVzX29uX2xhdW5jaCI6ZmFsc2UsImFza19saW1pdF9vbl9s + YXVuY2giOmZhbHNlLCJhc2tfdGFnc19vbl9sYXVuY2giOmZhbHNlLCJhc2tf + am9iX3R5cGVfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2ludmVudG9yeV9vbl9s + YXVuY2giOmZhbHNlLCJhc2tfY3JlZGVudGlhbF9vbl9sYXVuY2giOmZhbHNl + LCJzdXJ2ZXlfZW5hYmxlZCI6ZmFsc2UsImJlY29tZV9lbmFibGVkIjp0cnVl + LCJhbGxvd19zaW11bHRhbmVvdXMiOmZhbHNlfSx7ImlkIjoxMjUsInR5cGUi + OiJqb2JfdGVtcGxhdGUiLCJ1cmwiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMv + MTI1LyIsInJlbGF0ZWQiOnsiY3JlYXRlZF9ieSI6Ii9hcGkvdjEvdXNlcnMv + MS8iLCJsYWJlbHMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMTI1L2xhYmVs + cy8iLCJpbnZlbnRvcnkiOiIvYXBpL3YxL2ludmVudG9yaWVzLzEvIiwicHJv + amVjdCI6Ii9hcGkvdjEvcHJvamVjdHMvMTI0LyIsImNyZWRlbnRpYWwiOiIv + YXBpL3YxL2NyZWRlbnRpYWxzLzEvIiwibGFzdF9qb2IiOiIvYXBpL3YxL2pv + YnMvODEyLyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfZXJyb3IiOiIvYXBp + L3YxL2pvYl90ZW1wbGF0ZXMvMTI1L25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNf + ZXJyb3IvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRlc19zdWNjZXNzIjoiL2Fw + aS92MS9qb2JfdGVtcGxhdGVzLzEyNS9ub3RpZmljYXRpb25fdGVtcGxhdGVz + X3N1Y2Nlc3MvIiwiam9icyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xMjUv + am9icy8iLCJvYmplY3Rfcm9sZXMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMv + MTI1L29iamVjdF9yb2xlcy8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVzX2Fu + eSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xMjUvbm90aWZpY2F0aW9uX3Rl + bXBsYXRlc19hbnkvIiwiYWNjZXNzX2xpc3QiOiIvYXBpL3YxL2pvYl90ZW1w + bGF0ZXMvMTI1L2FjY2Vzc19saXN0LyIsImxhdW5jaCI6Ii9hcGkvdjEvam9i + X3RlbXBsYXRlcy8xMjUvbGF1bmNoLyIsInNjaGVkdWxlcyI6Ii9hcGkvdjEv + am9iX3RlbXBsYXRlcy8xMjUvc2NoZWR1bGVzLyIsImFjdGl2aXR5X3N0cmVh + bSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8xMjUvYWN0aXZpdHlfc3RyZWFt + LyIsInN1cnZleV9zcGVjIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzEyNS9z + dXJ2ZXlfc3BlYy8ifSwic3VtbWFyeV9maWVsZHMiOnsibGFzdF9qb2IiOnsi + aWQiOjgxMiwibmFtZSI6Im1hZGh1X3Rlc3QiLCJkZXNjcmlwdGlvbiI6IiIs + ImZpbmlzaGVkIjoiMjAxNy0wNS0wMlQxOTozMTo1MS4wNTNaIiwic3RhdHVz + Ijoic3VjY2Vzc2Z1bCIsImZhaWxlZCI6ZmFsc2V9LCJsYXN0X3VwZGF0ZSI6 + eyJpZCI6ODEyLCJuYW1lIjoibWFkaHVfdGVzdCIsImRlc2NyaXB0aW9uIjoi + Iiwic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZhaWxlZCI6ZmFsc2V9LCJpbnZl + bnRvcnkiOnsiaWQiOjEsIm5hbWUiOiJEZW1vIEludmVudG9yeSIsImRlc2Ny + aXB0aW9uIjoiIiwiaGFzX2FjdGl2ZV9mYWlsdXJlcyI6ZmFsc2UsInRvdGFs + X2hvc3RzIjoyLCJob3N0c193aXRoX2FjdGl2ZV9mYWlsdXJlcyI6MCwidG90 + YWxfZ3JvdXBzIjowLCJncm91cHNfd2l0aF9hY3RpdmVfZmFpbHVyZXMiOjAs + Imhhc19pbnZlbnRvcnlfc291cmNlcyI6ZmFsc2UsInRvdGFsX2ludmVudG9y + eV9zb3VyY2VzIjowLCJpbnZlbnRvcnlfc291cmNlc193aXRoX2ZhaWx1cmVz + IjowfSwiY3JlZGVudGlhbCI6eyJpZCI6MSwibmFtZSI6IkRlbW8gQ3JlZGVu + dGlhbCIsImRlc2NyaXB0aW9uIjoiIiwia2luZCI6InNzaCIsImNsb3VkIjpm + YWxzZX0sInByb2plY3QiOnsiaWQiOjEyNCwibmFtZSI6Im1hZGh1IiwiZGVz + Y3JpcHRpb24iOiJzaW1wbGUgcGxheWJvb2tzIiwic3RhdHVzIjoic3VjY2Vz + c2Z1bCJ9LCJjcmVhdGVkX2J5Ijp7ImlkIjoxLCJ1c2VybmFtZSI6ImFkbWlu + IiwiZmlyc3RfbmFtZSI6IiIsImxhc3RfbmFtZSI6IiJ9LCJvYmplY3Rfcm9s + ZXMiOnsiYWRtaW5fcm9sZSI6eyJkZXNjcmlwdGlvbiI6IkNhbiBtYW5hZ2Ug + YWxsIGFzcGVjdHMgb2YgdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjozODMsIm5h + bWUiOiJBZG1pbiJ9LCJleGVjdXRlX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJN + YXkgcnVuIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6Mzg1LCJuYW1lIjoiRXhl + Y3V0ZSJ9LCJyZWFkX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJNYXkgdmlldyBz + ZXR0aW5ncyBmb3IgdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjozODQsIm5hbWUi + OiJSZWFkIn19LCJsYWJlbHMiOnsiY291bnQiOjAsInJlc3VsdHMiOltdfSwi + Y2FuX2NvcHkiOnRydWUsImNhbl9lZGl0Ijp0cnVlLCJyZWNlbnRfam9icyI6 + W3sic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZpbmlzaGVkIjoiMjAxNy0wNS0w + MlQxOTozMTo1MS4wNTNaIiwiaWQiOjgxMn0seyJzdGF0dXMiOiJzdWNjZXNz + ZnVsIiwiZmluaXNoZWQiOiIyMDE3LTA1LTAyVDE5OjA0OjQzLjg4OVoiLCJp + ZCI6ODExfSx7InN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6IjIw + MTctMDUtMDJUMTM6NTA6MTcuNzk1WiIsImlkIjo4MDl9LHsic3RhdHVzIjoi + c3VjY2Vzc2Z1bCIsImZpbmlzaGVkIjoiMjAxNy0wNS0wMVQyMDo1MjozMC40 + ODlaIiwiaWQiOjgwMX1dfSwiY3JlYXRlZCI6IjIwMTctMDItMTVUMTg6MDg6 + MzcuNTQyWiIsIm1vZGlmaWVkIjoiMjAxNy0wNS0wMlQxOTozMTowNS4zMzla + IiwibmFtZSI6Im1hZGh1X3Rlc3QiLCJkZXNjcmlwdGlvbiI6IiIsImpvYl90 + eXBlIjoicnVuIiwiaW52ZW50b3J5IjoxLCJwcm9qZWN0IjoxMjQsInBsYXli + b29rIjoicGtnX2luZm8ueWFtbCIsImNyZWRlbnRpYWwiOjEsImNsb3VkX2Ny + ZWRlbnRpYWwiOm51bGwsIm5ldHdvcmtfY3JlZGVudGlhbCI6bnVsbCwiZm9y + a3MiOjAsImxpbWl0IjoibG9jYWxob3N0IiwidmVyYm9zaXR5IjowLCJleHRy + YV92YXJzIjoiLS0tXG4gcGtnOiBodHRwZFxuIHNsZWVwOiA0MFxuIGhvc3Q6 + IGxvY2FsaG9zdFxuIHVzZXI6IHJvb3QiLCJqb2JfdGFncyI6IiIsImZvcmNl + X2hhbmRsZXJzIjpmYWxzZSwic2tpcF90YWdzIjoiIiwic3RhcnRfYXRfdGFz + ayI6IiIsImxhc3Rfam9iX3J1biI6IjIwMTctMDUtMDJUMTk6MzE6NTEuMDUz + MTA3WiIsImxhc3Rfam9iX2ZhaWxlZCI6ZmFsc2UsImhhc19zY2hlZHVsZXMi + OmZhbHNlLCJuZXh0X2pvYl9ydW4iOm51bGwsInN0YXR1cyI6InN1Y2Nlc3Nm + dWwiLCJob3N0X2NvbmZpZ19rZXkiOiIiLCJhc2tfdmFyaWFibGVzX29uX2xh + dW5jaCI6ZmFsc2UsImFza19saW1pdF9vbl9sYXVuY2giOmZhbHNlLCJhc2tf + dGFnc19vbl9sYXVuY2giOmZhbHNlLCJhc2tfam9iX3R5cGVfb25fbGF1bmNo + IjpmYWxzZSwiYXNrX2ludmVudG9yeV9vbl9sYXVuY2giOnRydWUsImFza19j + cmVkZW50aWFsX29uX2xhdW5jaCI6dHJ1ZSwic3VydmV5X2VuYWJsZWQiOmZh + bHNlLCJiZWNvbWVfZW5hYmxlZCI6ZmFsc2UsImFsbG93X3NpbXVsdGFuZW91 + cyI6ZmFsc2V9LHsiaWQiOjM3OCwidHlwZSI6ImpvYl90ZW1wbGF0ZSIsInVy + bCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8zNzgvIiwicmVsYXRlZCI6eyJj + cmVhdGVkX2J5IjoiL2FwaS92MS91c2Vycy8xLyIsImxhYmVscyI6Ii9hcGkv + djEvam9iX3RlbXBsYXRlcy8zNzgvbGFiZWxzLyIsImludmVudG9yeSI6Ii9h + cGkvdjEvaW52ZW50b3JpZXMvMS8iLCJwcm9qZWN0IjoiL2FwaS92MS9wcm9q + ZWN0cy8xNTUvIiwiY2xvdWRfY3JlZGVudGlhbCI6Ii9hcGkvdjEvY3JlZGVu + dGlhbHMvMTYvIiwibmV0d29ya19jcmVkZW50aWFsIjoiL2FwaS92MS9jcmVk + ZW50aWFscy81LyIsImxhc3Rfam9iIjoiL2FwaS92MS9qb2JzLzU1Ny8iLCJu + b3RpZmljYXRpb25fdGVtcGxhdGVzX2Vycm9yIjoiL2FwaS92MS9qb2JfdGVt + cGxhdGVzLzM3OC9ub3RpZmljYXRpb25fdGVtcGxhdGVzX2Vycm9yLyIsIm5v + dGlmaWNhdGlvbl90ZW1wbGF0ZXNfc3VjY2VzcyI6Ii9hcGkvdjEvam9iX3Rl + bXBsYXRlcy8zNzgvbm90aWZpY2F0aW9uX3RlbXBsYXRlc19zdWNjZXNzLyIs + ImpvYnMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzc4L2pvYnMvIiwib2Jq + ZWN0X3JvbGVzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzM3OC9vYmplY3Rf + cm9sZXMvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRlc19hbnkiOiIvYXBpL3Yx + L2pvYl90ZW1wbGF0ZXMvMzc4L25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfYW55 + LyIsImFjY2Vzc19saXN0IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzM3OC9h + Y2Nlc3NfbGlzdC8iLCJsYXVuY2giOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMv + Mzc4L2xhdW5jaC8iLCJzY2hlZHVsZXMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0 + ZXMvMzc4L3NjaGVkdWxlcy8iLCJhY3Rpdml0eV9zdHJlYW0iOiIvYXBpL3Yx + L2pvYl90ZW1wbGF0ZXMvMzc4L2FjdGl2aXR5X3N0cmVhbS8iLCJzdXJ2ZXlf + c3BlYyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8zNzgvc3VydmV5X3NwZWMv + In0sInN1bW1hcnlfZmllbGRzIjp7Im5ldHdvcmtfY3JlZGVudGlhbCI6eyJp + ZCI6NSwibmFtZSI6IkRlbW8gQ3JlZHMgMiIsImRlc2NyaXB0aW9uIjoidGVz + dCIsImtpbmQiOiJuZXQifSwibGFzdF9qb2IiOnsiaWQiOjU1NywibmFtZSI6 + Im1pcV9hYWFfcGxheWJvb2tfcHJlX3Jlc291cmNlX3JldGlyZW1lbnQiLCJk + ZXNjcmlwdGlvbiI6ImFhYV9wbGF5Ym9va19wcmVfcmVzb3VyY2UiLCJmaW5p + c2hlZCI6IjIwMTctMDMtMjNUMjE6Mjk6NTMuNDk1WiIsInN0YXR1cyI6InN1 + Y2Nlc3NmdWwiLCJmYWlsZWQiOmZhbHNlfSwibGFzdF91cGRhdGUiOnsiaWQi + OjU1NywibmFtZSI6Im1pcV9hYWFfcGxheWJvb2tfcHJlX3Jlc291cmNlX3Jl + dGlyZW1lbnQiLCJkZXNjcmlwdGlvbiI6ImFhYV9wbGF5Ym9va19wcmVfcmVz + b3VyY2UiLCJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiZmFpbGVkIjpmYWxzZX0s + ImludmVudG9yeSI6eyJpZCI6MSwibmFtZSI6IkRlbW8gSW52ZW50b3J5Iiwi + ZGVzY3JpcHRpb24iOiIiLCJoYXNfYWN0aXZlX2ZhaWx1cmVzIjpmYWxzZSwi + dG90YWxfaG9zdHMiOjIsImhvc3RzX3dpdGhfYWN0aXZlX2ZhaWx1cmVzIjow + LCJ0b3RhbF9ncm91cHMiOjAsImdyb3Vwc193aXRoX2FjdGl2ZV9mYWlsdXJl + cyI6MCwiaGFzX2ludmVudG9yeV9zb3VyY2VzIjpmYWxzZSwidG90YWxfaW52 + ZW50b3J5X3NvdXJjZXMiOjAsImludmVudG9yeV9zb3VyY2VzX3dpdGhfZmFp + bHVyZXMiOjB9LCJjbG91ZF9jcmVkZW50aWFsIjp7ImlkIjoxNiwibmFtZSI6 + Imx1Y3kgZGV2MDAiLCJkZXNjcmlwdGlvbiI6IiIsImtpbmQiOiJ2bXdhcmUi + LCJjbG91ZCI6dHJ1ZX0sInByb2plY3QiOnsiaWQiOjE1NSwibmFtZSI6Imx1 + Y3kiLCJkZXNjcmlwdGlvbiI6InRlc3QgcGxheWJvb2siLCJzdGF0dXMiOiJz + dWNjZXNzZnVsIn0sImNyZWF0ZWRfYnkiOnsiaWQiOjEsInVzZXJuYW1lIjoi + YWRtaW4iLCJmaXJzdF9uYW1lIjoiIiwibGFzdF9uYW1lIjoiIn0sIm9iamVj + dF9yb2xlcyI6eyJhZG1pbl9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiQ2FuIG1h + bmFnZSBhbGwgYXNwZWN0cyBvZiB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjEy + NDMsIm5hbWUiOiJBZG1pbiJ9LCJleGVjdXRlX3JvbGUiOnsiZGVzY3JpcHRp + b24iOiJNYXkgcnVuIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6MTI0NSwibmFt + ZSI6IkV4ZWN1dGUifSwicmVhZF9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiTWF5 + IHZpZXcgc2V0dGluZ3MgZm9yIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6MTI0 + NCwibmFtZSI6IlJlYWQifX0sImxhYmVscyI6eyJjb3VudCI6MCwicmVzdWx0 + cyI6W119LCJjYW5fY29weSI6dHJ1ZSwiY2FuX2VkaXQiOnRydWUsInJlY2Vu + dF9qb2JzIjpbeyJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiZmluaXNoZWQiOiIy + MDE3LTAzLTIzVDIxOjI5OjUzLjQ5NVoiLCJpZCI6NTU3fSx7InN0YXR1cyI6 + InN1Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6IjIwMTctMDMtMjNUMjE6MjI6MDMu + NTIyWiIsImlkIjo1NTN9LHsic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZpbmlz + aGVkIjoiMjAxNy0wMy0yM1QyMDo1ODo0Ni44MThaIiwiaWQiOjU0OX0seyJz + dGF0dXMiOiJzdWNjZXNzZnVsIiwiZmluaXNoZWQiOiIyMDE3LTAzLTIzVDE5 + OjIwOjQ5LjA4OVoiLCJpZCI6NTQzfSx7InN0YXR1cyI6InN1Y2Nlc3NmdWwi + LCJmaW5pc2hlZCI6IjIwMTctMDMtMjNUMTg6NTk6MDcuOTE4WiIsImlkIjo1 + Mzh9LHsic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZpbmlzaGVkIjoiMjAxNy0w + My0yMlQyMDoxMToxOS4yMzlaIiwiaWQiOjUxOX0seyJzdGF0dXMiOiJzdWNj + ZXNzZnVsIiwiZmluaXNoZWQiOiIyMDE3LTAzLTIyVDE5OjM4OjIxLjA4OFoi + LCJpZCI6NTEzfV19LCJjcmVhdGVkIjoiMjAxNy0wMy0yMFQyMDozNTowOS42 + NDJaIiwibW9kaWZpZWQiOiIyMDE3LTAzLTIzVDE5OjIwOjMwLjUyNVoiLCJu + YW1lIjoibWlxX2FhYV9wbGF5Ym9va19wcmVfcmVzb3VyY2VfcmV0aXJlbWVu + dCIsImRlc2NyaXB0aW9uIjoiYWFhX3BsYXlib29rX3ByZV9yZXNvdXJjZSIs + ImpvYl90eXBlIjoicnVuIiwiaW52ZW50b3J5IjoxLCJwcm9qZWN0IjoxNTUs + InBsYXlib29rIjoiY2hlY2tfdmVyc2lvbi55YW1sIiwiY3JlZGVudGlhbCI6 + bnVsbCwiY2xvdWRfY3JlZGVudGlhbCI6MTYsIm5ldHdvcmtfY3JlZGVudGlh + bCI6NSwiZm9ya3MiOjAsImxpbWl0IjoiIiwidmVyYm9zaXR5IjowLCJleHRy + YV92YXJzIjoie1wibnVtYmVyXCI6XCIxXCJ9Iiwiam9iX3RhZ3MiOiIiLCJm + b3JjZV9oYW5kbGVycyI6ZmFsc2UsInNraXBfdGFncyI6IiIsInN0YXJ0X2F0 + X3Rhc2siOiIiLCJsYXN0X2pvYl9ydW4iOiIyMDE3LTAzLTIzVDIxOjI5OjUz + LjQ5NTgwMloiLCJsYXN0X2pvYl9mYWlsZWQiOmZhbHNlLCJoYXNfc2NoZWR1 + bGVzIjpmYWxzZSwibmV4dF9qb2JfcnVuIjpudWxsLCJzdGF0dXMiOiJzdWNj + ZXNzZnVsIiwiaG9zdF9jb25maWdfa2V5IjoiIiwiYXNrX3ZhcmlhYmxlc19v + bl9sYXVuY2giOnRydWUsImFza19saW1pdF9vbl9sYXVuY2giOnRydWUsImFz + a190YWdzX29uX2xhdW5jaCI6ZmFsc2UsImFza19qb2JfdHlwZV9vbl9sYXVu + Y2giOmZhbHNlLCJhc2tfaW52ZW50b3J5X29uX2xhdW5jaCI6dHJ1ZSwiYXNr + X2NyZWRlbnRpYWxfb25fbGF1bmNoIjp0cnVlLCJzdXJ2ZXlfZW5hYmxlZCI6 + ZmFsc2UsImJlY29tZV9lbmFibGVkIjpmYWxzZSwiYWxsb3dfc2ltdWx0YW5l + b3VzIjpmYWxzZX0seyJpZCI6NTA1LCJ0eXBlIjoiam9iX3RlbXBsYXRlIiwi + dXJsIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzUwNS8iLCJyZWxhdGVkIjp7 + ImNyZWF0ZWRfYnkiOiIvYXBpL3YxL3VzZXJzLzEvIiwibW9kaWZpZWRfYnki + OiIvYXBpL3YxL3VzZXJzLzEvIiwibGFiZWxzIjoiL2FwaS92MS9qb2JfdGVt + cGxhdGVzLzUwNS9sYWJlbHMvIiwiaW52ZW50b3J5IjoiL2FwaS92MS9pbnZl + bnRvcmllcy8zOC8iLCJwcm9qZWN0IjoiL2FwaS92MS9wcm9qZWN0cy8xNTUv + IiwiY3JlZGVudGlhbCI6Ii9hcGkvdjEvY3JlZGVudGlhbHMvNTgvIiwibm90 + aWZpY2F0aW9uX3RlbXBsYXRlc19lcnJvciI6Ii9hcGkvdjEvam9iX3RlbXBs + YXRlcy81MDUvbm90aWZpY2F0aW9uX3RlbXBsYXRlc19lcnJvci8iLCJub3Rp + ZmljYXRpb25fdGVtcGxhdGVzX3N1Y2Nlc3MiOiIvYXBpL3YxL2pvYl90ZW1w + bGF0ZXMvNTA1L25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfc3VjY2Vzcy8iLCJq + b2JzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzUwNS9qb2JzLyIsIm9iamVj + dF9yb2xlcyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy81MDUvb2JqZWN0X3Jv + bGVzLyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfYW55IjoiL2FwaS92MS9q + b2JfdGVtcGxhdGVzLzUwNS9ub3RpZmljYXRpb25fdGVtcGxhdGVzX2FueS8i + LCJhY2Nlc3NfbGlzdCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy81MDUvYWNj + ZXNzX2xpc3QvIiwibGF1bmNoIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzUw + NS9sYXVuY2gvIiwic2NoZWR1bGVzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVz + LzUwNS9zY2hlZHVsZXMvIiwiYWN0aXZpdHlfc3RyZWFtIjoiL2FwaS92MS9q + b2JfdGVtcGxhdGVzLzUwNS9hY3Rpdml0eV9zdHJlYW0vIiwic3VydmV5X3Nw + ZWMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvNTA1L3N1cnZleV9zcGVjLyJ9 + LCJzdW1tYXJ5X2ZpZWxkcyI6eyJpbnZlbnRvcnkiOnsiaWQiOjM4LCJuYW1l + IjoiTWFuYWdlSVEgRGVmYXVsdCBJbnZlbnRvcnkiLCJkZXNjcmlwdGlvbiI6 + IiIsImhhc19hY3RpdmVfZmFpbHVyZXMiOmZhbHNlLCJ0b3RhbF9ob3N0cyI6 + MSwiaG9zdHNfd2l0aF9hY3RpdmVfZmFpbHVyZXMiOjAsInRvdGFsX2dyb3Vw + cyI6MCwiZ3JvdXBzX3dpdGhfYWN0aXZlX2ZhaWx1cmVzIjowLCJoYXNfaW52 + ZW50b3J5X3NvdXJjZXMiOmZhbHNlLCJ0b3RhbF9pbnZlbnRvcnlfc291cmNl + cyI6MCwiaW52ZW50b3J5X3NvdXJjZXNfd2l0aF9mYWlsdXJlcyI6MH0sImNy + ZWRlbnRpYWwiOnsiaWQiOjU4LCJuYW1lIjoiOTk5IiwiZGVzY3JpcHRpb24i + OiIiLCJraW5kIjoic3NoIiwiY2xvdWQiOmZhbHNlfSwicHJvamVjdCI6eyJp + ZCI6MTU1LCJuYW1lIjoibHVjeSIsImRlc2NyaXB0aW9uIjoidGVzdCBwbGF5 + Ym9vayIsInN0YXR1cyI6InN1Y2Nlc3NmdWwifSwiY3JlYXRlZF9ieSI6eyJp + ZCI6MSwidXNlcm5hbWUiOiJhZG1pbiIsImZpcnN0X25hbWUiOiIiLCJsYXN0 + X25hbWUiOiIifSwibW9kaWZpZWRfYnkiOnsiaWQiOjEsInVzZXJuYW1lIjoi + YWRtaW4iLCJmaXJzdF9uYW1lIjoiIiwibGFzdF9uYW1lIjoiIn0sIm9iamVj + dF9yb2xlcyI6eyJhZG1pbl9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiQ2FuIG1h + bmFnZSBhbGwgYXNwZWN0cyBvZiB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjIw + ODEsIm5hbWUiOiJBZG1pbiJ9LCJleGVjdXRlX3JvbGUiOnsiZGVzY3JpcHRp + b24iOiJNYXkgcnVuIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6MjA4MywibmFt + ZSI6IkV4ZWN1dGUifSwicmVhZF9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiTWF5 + IHZpZXcgc2V0dGluZ3MgZm9yIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6MjA4 + MiwibmFtZSI6IlJlYWQifX0sImxhYmVscyI6eyJjb3VudCI6MCwicmVzdWx0 + cyI6W119LCJjYW5fY29weSI6dHJ1ZSwiY2FuX2VkaXQiOnRydWUsInJlY2Vu + dF9qb2JzIjpbXX0sImNyZWF0ZWQiOiIyMDE3LTA2LTE1VDEzOjM3OjU4LjMy + N1oiLCJtb2RpZmllZCI6IjIwMTctMDYtMTVUMTM6Mzc6NTguMzI3WiIsIm5h + bWUiOiJtaXFfYW5zaWJsZV90ZXN0X3Byb3Zpc2lvbiIsImRlc2NyaXB0aW9u + IjoiYW5zaWJsZV90ZXN0Iiwiam9iX3R5cGUiOiJydW4iLCJpbnZlbnRvcnki + OjM4LCJwcm9qZWN0IjoxNTUsInBsYXlib29rIjoiY2hlY2tfdmVyc2lvbi55 + YW1sIiwiY3JlZGVudGlhbCI6NTgsImNsb3VkX2NyZWRlbnRpYWwiOm51bGws + Im5ldHdvcmtfY3JlZGVudGlhbCI6bnVsbCwiZm9ya3MiOjAsImxpbWl0Ijoi + IiwidmVyYm9zaXR5IjowLCJleHRyYV92YXJzIjoie30iLCJqb2JfdGFncyI6 + IiIsImZvcmNlX2hhbmRsZXJzIjpmYWxzZSwic2tpcF90YWdzIjoiIiwic3Rh + cnRfYXRfdGFzayI6IiIsImxhc3Rfam9iX3J1biI6bnVsbCwibGFzdF9qb2Jf + ZmFpbGVkIjpmYWxzZSwiaGFzX3NjaGVkdWxlcyI6ZmFsc2UsIm5leHRfam9i + X3J1biI6bnVsbCwic3RhdHVzIjoibmV2ZXIgdXBkYXRlZCIsImhvc3RfY29u + ZmlnX2tleSI6IiIsImFza192YXJpYWJsZXNfb25fbGF1bmNoIjp0cnVlLCJh + c2tfbGltaXRfb25fbGF1bmNoIjp0cnVlLCJhc2tfdGFnc19vbl9sYXVuY2gi OmZhbHNlLCJhc2tfam9iX3R5cGVfb25fbGF1bmNoIjpmYWxzZSwiYXNrX2lu dmVudG9yeV9vbl9sYXVuY2giOnRydWUsImFza19jcmVkZW50aWFsX29uX2xh dW5jaCI6dHJ1ZSwic3VydmV5X2VuYWJsZWQiOmZhbHNlLCJiZWNvbWVfZW5h YmxlZCI6ZmFsc2UsImFsbG93X3NpbXVsdGFuZW91cyI6ZmFsc2V9LHsiaWQi - OjQ3OSwidHlwZSI6ImpvYl90ZW1wbGF0ZSIsInVybCI6Ii9hcGkvdjEvam9i - X3RlbXBsYXRlcy80NzkvIiwicmVsYXRlZCI6eyJjcmVhdGVkX2J5IjoiL2Fw + OjQ4MCwidHlwZSI6ImpvYl90ZW1wbGF0ZSIsInVybCI6Ii9hcGkvdjEvam9i + X3RlbXBsYXRlcy80ODAvIiwicmVsYXRlZCI6eyJjcmVhdGVkX2J5IjoiL2Fw aS92MS91c2Vycy8xLyIsImxhYmVscyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRl - cy80NzkvbGFiZWxzLyIsImludmVudG9yeSI6Ii9hcGkvdjEvaW52ZW50b3Jp + cy80ODAvbGFiZWxzLyIsImludmVudG9yeSI6Ii9hcGkvdjEvaW52ZW50b3Jp ZXMvMzgvIiwicHJvamVjdCI6Ii9hcGkvdjEvcHJvamVjdHMvMTU1LyIsImNy - ZWRlbnRpYWwiOiIvYXBpL3YxL2NyZWRlbnRpYWxzLzUyLyIsImxhc3Rfam9i - IjoiL2FwaS92MS9qb2JzLzc3OS8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVz - X2Vycm9yIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzQ3OS9ub3RpZmljYXRp + ZWRlbnRpYWwiOiIvYXBpL3YxL2NyZWRlbnRpYWxzLzUyLyIsImNsb3VkX2Ny + ZWRlbnRpYWwiOiIvYXBpL3YxL2NyZWRlbnRpYWxzLzE2LyIsImxhc3Rfam9i + IjoiL2FwaS92MS9qb2JzLzc5OS8iLCJub3RpZmljYXRpb25fdGVtcGxhdGVz + X2Vycm9yIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzQ4MC9ub3RpZmljYXRp b25fdGVtcGxhdGVzX2Vycm9yLyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNf - c3VjY2VzcyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy80Nzkvbm90aWZpY2F0 + c3VjY2VzcyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy80ODAvbm90aWZpY2F0 aW9uX3RlbXBsYXRlc19zdWNjZXNzLyIsImpvYnMiOiIvYXBpL3YxL2pvYl90 - ZW1wbGF0ZXMvNDc5L2pvYnMvIiwib2JqZWN0X3JvbGVzIjoiL2FwaS92MS9q - b2JfdGVtcGxhdGVzLzQ3OS9vYmplY3Rfcm9sZXMvIiwibm90aWZpY2F0aW9u - X3RlbXBsYXRlc19hbnkiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvNDc5L25v + ZW1wbGF0ZXMvNDgwL2pvYnMvIiwib2JqZWN0X3JvbGVzIjoiL2FwaS92MS9q + b2JfdGVtcGxhdGVzLzQ4MC9vYmplY3Rfcm9sZXMvIiwibm90aWZpY2F0aW9u + X3RlbXBsYXRlc19hbnkiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvNDgwL25v dGlmaWNhdGlvbl90ZW1wbGF0ZXNfYW55LyIsImFjY2Vzc19saXN0IjoiL2Fw - aS92MS9qb2JfdGVtcGxhdGVzLzQ3OS9hY2Nlc3NfbGlzdC8iLCJsYXVuY2gi - OiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvNDc5L2xhdW5jaC8iLCJzY2hlZHVs - ZXMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvNDc5L3NjaGVkdWxlcy8iLCJh - Y3Rpdml0eV9zdHJlYW0iOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvNDc5L2Fj + aS92MS9qb2JfdGVtcGxhdGVzLzQ4MC9hY2Nlc3NfbGlzdC8iLCJsYXVuY2gi + OiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvNDgwL2xhdW5jaC8iLCJzY2hlZHVs + ZXMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvNDgwL3NjaGVkdWxlcy8iLCJh + Y3Rpdml0eV9zdHJlYW0iOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvNDgwL2Fj 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 + bXBsYXRlcy80ODAvc3VydmV5X3NwZWMvIn0sInN1bW1hcnlfZmllbGRzIjp7 + Imxhc3Rfam9iIjp7ImlkIjo3OTksIm5hbWUiOiJtaXFfYXByaWwyOF9ub19w + bGF5Ym9va195ZXNfcmVzb3VyY2UyX3Byb3Zpc2lvbiIsImRlc2NyaXB0aW9u + IjoiYXByaWwyOF9ub19wbGF5Ym9va195ZXNfcmVzb3VyY2UyIiwiZmluaXNo + ZWQiOiIyMDE3LTA1LTAxVDE5OjA1OjE4LjMzOVoiLCJzdGF0dXMiOiJzdWNj + ZXNzZnVsIiwiZmFpbGVkIjpmYWxzZX0sImxhc3RfdXBkYXRlIjp7ImlkIjo3 + OTksIm5hbWUiOiJtaXFfYXByaWwyOF9ub19wbGF5Ym9va195ZXNfcmVzb3Vy + Y2UyX3Byb3Zpc2lvbiIsImRlc2NyaXB0aW9uIjoiYXByaWwyOF9ub19wbGF5 + Ym9va195ZXNfcmVzb3VyY2UyIiwic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZh + aWxlZCI6ZmFsc2V9LCJpbnZlbnRvcnkiOnsiaWQiOjM4LCJuYW1lIjoiTWFu + YWdlSVEgRGVmYXVsdCBJbnZlbnRvcnkiLCJkZXNjcmlwdGlvbiI6IiIsImhh + c19hY3RpdmVfZmFpbHVyZXMiOmZhbHNlLCJ0b3RhbF9ob3N0cyI6MSwiaG9z 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 + aXB0aW9uIjoiIiwia2luZCI6InZtd2FyZSIsImNsb3VkIjp0cnVlfSwiY3Jl + ZGVudGlhbCI6eyJpZCI6NTIsIm5hbWUiOiJsdWN5X21hY2hpbmUiLCJkZXNj + cmlwdGlvbiI6IiIsImtpbmQiOiJzc2giLCJjbG91ZCI6ZmFsc2V9LCJwcm9q + ZWN0Ijp7ImlkIjoxNTUsIm5hbWUiOiJsdWN5IiwiZGVzY3JpcHRpb24iOiJ0 + ZXN0IHBsYXlib29rIiwic3RhdHVzIjoic3VjY2Vzc2Z1bCJ9LCJjcmVhdGVk + X2J5Ijp7ImlkIjoxLCJ1c2VybmFtZSI6ImFkbWluIiwiZmlyc3RfbmFtZSI6 + IiIsImxhc3RfbmFtZSI6IiJ9LCJvYmplY3Rfcm9sZXMiOnsiYWRtaW5fcm9s + ZSI6eyJkZXNjcmlwdGlvbiI6IkNhbiBtYW5hZ2UgYWxsIGFzcGVjdHMgb2Yg + dGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjoxOTM3LCJuYW1lIjoiQWRtaW4ifSwi + ZXhlY3V0ZV9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiTWF5IHJ1biB0aGUgam9i + IHRlbXBsYXRlIiwiaWQiOjE5MzksIm5hbWUiOiJFeGVjdXRlIn0sInJlYWRf + cm9sZSI6eyJkZXNjcmlwdGlvbiI6Ik1heSB2aWV3IHNldHRpbmdzIGZvciB0 + aGUgam9iIHRlbXBsYXRlIiwiaWQiOjE5MzgsIm5hbWUiOiJSZWFkIn19LCJs + YWJlbHMiOnsiY291bnQiOjAsInJlc3VsdHMiOltdfSwiY2FuX2NvcHkiOnRy + dWUsImNhbl9lZGl0Ijp0cnVlLCJyZWNlbnRfam9icyI6W3sic3RhdHVzIjoi + c3VjY2Vzc2Z1bCIsImZpbmlzaGVkIjoiMjAxNy0wNS0wMVQxOTowNToxOC4z + MzlaIiwiaWQiOjc5OX0seyJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiZmluaXNo + ZWQiOiIyMDE3LTA1LTAxVDE4OjQzOjM2LjA2NFoiLCJpZCI6Nzk3fSx7InN0 + YXR1cyI6InN1Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6IjIwMTctMDUtMDFUMTc6 + NDA6MDcuNDI5WiIsImlkIjo3OTR9LHsic3RhdHVzIjoic3VjY2Vzc2Z1bCIs + ImZpbmlzaGVkIjoiMjAxNy0wNS0wMVQxNzoyOTo0MC44MzVaIiwiaWQiOjc5 + Mn0seyJzdGF0dXMiOiJzdWNjZXNzZnVsIiwiZmluaXNoZWQiOiIyMDE3LTA1 + LTAxVDE3OjA4OjU5LjY0MVoiLCJpZCI6NzkwfSx7InN0YXR1cyI6InN1Y2Nl + c3NmdWwiLCJmaW5pc2hlZCI6IjIwMTctMDUtMDFUMTY6NTY6MjEuNjg0WiIs + ImlkIjo3ODh9LHsic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZpbmlzaGVkIjoi + MjAxNy0wNS0wMVQxNTo0ODoxNS4xNzRaIiwiaWQiOjc4Nn0seyJzdGF0dXMi + OiJzdWNjZXNzZnVsIiwiZmluaXNoZWQiOiIyMDE3LTA0LTI4VDE4OjQ5OjU4 + LjM2MVoiLCJpZCI6NzgzfSx7InN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmaW5p + c2hlZCI6IjIwMTctMDQtMjhUMTg6MTc6MjUuMDkzWiIsImlkIjo3ODF9XX0s + ImNyZWF0ZWQiOiIyMDE3LTA0LTI4VDE4OjEwOjM3LjQ3MVoiLCJtb2RpZmll + ZCI6IjIwMTctMDUtMDFUMTk6MDQ6NTIuNDU5WiIsIm5hbWUiOiJtaXFfYXBy + aWwyOF9ub19wbGF5Ym9va195ZXNfcmVzb3VyY2UyX3Byb3Zpc2lvbiIsImRl + c2NyaXB0aW9uIjoiYXByaWwyOF9ub19wbGF5Ym9va195ZXNfcmVzb3VyY2Uy + Iiwiam9iX3R5cGUiOiJydW4iLCJpbnZlbnRvcnkiOjM4LCJwcm9qZWN0Ijox + NTUsInBsYXlib29rIjoiY2hlY2tfdmVyc2lvbi55YW1sIiwiY3JlZGVudGlh + bCI6NTIsImNsb3VkX2NyZWRlbnRpYWwiOjE2LCJuZXR3b3JrX2NyZWRlbnRp + YWwiOm51bGwsImZvcmtzIjowLCJsaW1pdCI6IiIsInZlcmJvc2l0eSI6MCwi + ZXh0cmFfdmFycyI6IntcIm51bWJlclwiOlwiMVwifSIsImpvYl90YWdzIjoi + IiwiZm9yY2VfaGFuZGxlcnMiOmZhbHNlLCJza2lwX3RhZ3MiOiIiLCJzdGFy + dF9hdF90YXNrIjoiIiwibGFzdF9qb2JfcnVuIjoiMjAxNy0wNS0wMVQxOTow + NToxOC4zMzk5MjZaIiwibGFzdF9qb2JfZmFpbGVkIjpmYWxzZSwiaGFzX3Nj + aGVkdWxlcyI6ZmFsc2UsIm5leHRfam9iX3J1biI6bnVsbCwic3RhdHVzIjoi + c3VjY2Vzc2Z1bCIsImhvc3RfY29uZmlnX2tleSI6IiIsImFza192YXJpYWJs + ZXNfb25fbGF1bmNoIjp0cnVlLCJhc2tfbGltaXRfb25fbGF1bmNoIjp0cnVl + LCJhc2tfdGFnc19vbl9sYXVuY2giOmZhbHNlLCJhc2tfam9iX3R5cGVfb25f + bGF1bmNoIjpmYWxzZSwiYXNrX2ludmVudG9yeV9vbl9sYXVuY2giOnRydWUs + ImFza19jcmVkZW50aWFsX29uX2xhdW5jaCI6dHJ1ZSwic3VydmV5X2VuYWJs + ZWQiOmZhbHNlLCJiZWNvbWVfZW5hYmxlZCI6ZmFsc2UsImFsbG93X3NpbXVs + dGFuZW91cyI6ZmFsc2V9LHsiaWQiOjQ3OSwidHlwZSI6ImpvYl90ZW1wbGF0 + ZSIsInVybCI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy80NzkvIiwicmVsYXRl + ZCI6eyJjcmVhdGVkX2J5IjoiL2FwaS92MS91c2Vycy8xLyIsImxhYmVscyI6 + Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy80NzkvbGFiZWxzLyIsImludmVudG9y + eSI6Ii9hcGkvdjEvaW52ZW50b3JpZXMvMzgvIiwicHJvamVjdCI6Ii9hcGkv + djEvcHJvamVjdHMvMTU1LyIsImNyZWRlbnRpYWwiOiIvYXBpL3YxL2NyZWRl + bnRpYWxzLzUyLyIsImxhc3Rfam9iIjoiL2FwaS92MS9qb2JzLzc3OS8iLCJu + b3RpZmljYXRpb25fdGVtcGxhdGVzX2Vycm9yIjoiL2FwaS92MS9qb2JfdGVt + cGxhdGVzLzQ3OS9ub3RpZmljYXRpb25fdGVtcGxhdGVzX2Vycm9yLyIsIm5v + dGlmaWNhdGlvbl90ZW1wbGF0ZXNfc3VjY2VzcyI6Ii9hcGkvdjEvam9iX3Rl + bXBsYXRlcy80Nzkvbm90aWZpY2F0aW9uX3RlbXBsYXRlc19zdWNjZXNzLyIs + ImpvYnMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvNDc5L2pvYnMvIiwib2Jq + ZWN0X3JvbGVzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzQ3OS9vYmplY3Rf + cm9sZXMvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRlc19hbnkiOiIvYXBpL3Yx + L2pvYl90ZW1wbGF0ZXMvNDc5L25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfYW55 + LyIsImFjY2Vzc19saXN0IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzQ3OS9h + Y2Nlc3NfbGlzdC8iLCJsYXVuY2giOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMv + NDc5L2xhdW5jaC8iLCJzY2hlZHVsZXMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0 + ZXMvNDc5L3NjaGVkdWxlcy8iLCJhY3Rpdml0eV9zdHJlYW0iOiIvYXBpL3Yx + L2pvYl90ZW1wbGF0ZXMvNDc5L2FjdGl2aXR5X3N0cmVhbS8iLCJzdXJ2ZXlf + c3BlYyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy80Nzkvc3VydmV5X3NwZWMv + In0sInN1bW1hcnlfZmllbGRzIjp7Imxhc3Rfam9iIjp7ImlkIjo3NzksIm5h + bWUiOiJtaXFfYXByaWwyOF9ub19wbGF5Ym9va195ZXNfcmVzb3VyY2VfcHJv + dmlzaW9uIiwiZGVzY3JpcHRpb24iOiJhcHJpbDI4X25vX3BsYXlib29rX3ll + c19yZXNvdXJjZSIsImZpbmlzaGVkIjoiMjAxNy0wNC0yOFQxODowNzoxMC4y + MjNaIiwic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZhaWxlZCI6ZmFsc2V9LCJs + YXN0X3VwZGF0ZSI6eyJpZCI6Nzc5LCJuYW1lIjoibWlxX2FwcmlsMjhfbm9f + cGxheWJvb2tfeWVzX3Jlc291cmNlX3Byb3Zpc2lvbiIsImRlc2NyaXB0aW9u + IjoiYXByaWwyOF9ub19wbGF5Ym9va195ZXNfcmVzb3VyY2UiLCJzdGF0dXMi + OiJzdWNjZXNzZnVsIiwiZmFpbGVkIjpmYWxzZX0sImludmVudG9yeSI6eyJp + ZCI6MzgsIm5hbWUiOiJNYW5hZ2VJUSBEZWZhdWx0IEludmVudG9yeSIsImRl + c2NyaXB0aW9uIjoiIiwiaGFzX2FjdGl2ZV9mYWlsdXJlcyI6ZmFsc2UsInRv + dGFsX2hvc3RzIjoxLCJob3N0c193aXRoX2FjdGl2ZV9mYWlsdXJlcyI6MCwi + dG90YWxfZ3JvdXBzIjowLCJncm91cHNfd2l0aF9hY3RpdmVfZmFpbHVyZXMi + OjAsImhhc19pbnZlbnRvcnlfc291cmNlcyI6ZmFsc2UsInRvdGFsX2ludmVu + dG9yeV9zb3VyY2VzIjowLCJpbnZlbnRvcnlfc291cmNlc193aXRoX2ZhaWx1 + cmVzIjowfSwiY3JlZGVudGlhbCI6eyJpZCI6NTIsIm5hbWUiOiJsdWN5X21h + Y2hpbmUiLCJkZXNjcmlwdGlvbiI6IiIsImtpbmQiOiJzc2giLCJjbG91ZCI6 + ZmFsc2V9LCJwcm9qZWN0Ijp7ImlkIjoxNTUsIm5hbWUiOiJsdWN5IiwiZGVz + Y3JpcHRpb24iOiJ0ZXN0IHBsYXlib29rIiwic3RhdHVzIjoic3VjY2Vzc2Z1 + bCJ9LCJjcmVhdGVkX2J5Ijp7ImlkIjoxLCJ1c2VybmFtZSI6ImFkbWluIiwi + Zmlyc3RfbmFtZSI6IiIsImxhc3RfbmFtZSI6IiJ9LCJvYmplY3Rfcm9sZXMi + OnsiYWRtaW5fcm9sZSI6eyJkZXNjcmlwdGlvbiI6IkNhbiBtYW5hZ2UgYWxs + IGFzcGVjdHMgb2YgdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjoxOTE5LCJuYW1l + IjoiQWRtaW4ifSwiZXhlY3V0ZV9yb2xlIjp7ImRlc2NyaXB0aW9uIjoiTWF5 + IHJ1biB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjE5MjEsIm5hbWUiOiJFeGVj + dXRlIn0sInJlYWRfcm9sZSI6eyJkZXNjcmlwdGlvbiI6Ik1heSB2aWV3IHNl + dHRpbmdzIGZvciB0aGUgam9iIHRlbXBsYXRlIiwiaWQiOjE5MjAsIm5hbWUi + OiJSZWFkIn19LCJsYWJlbHMiOnsiY291bnQiOjAsInJlc3VsdHMiOltdfSwi + Y2FuX2NvcHkiOnRydWUsImNhbl9lZGl0Ijp0cnVlLCJyZWNlbnRfam9icyI6 + W3sic3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZpbmlzaGVkIjoiMjAxNy0wNC0y + OFQxODowNzoxMC4yMjNaIiwiaWQiOjc3OX0seyJzdGF0dXMiOiJmYWlsZWQi + LCJmaW5pc2hlZCI6IjIwMTctMDQtMjhUMTg6MDM6NDYuMzExWiIsImlkIjo3 + Nzd9LHsic3RhdHVzIjoiZmFpbGVkIiwiZmluaXNoZWQiOiIyMDE3LTA0LTI4 + VDE3OjU0OjE1LjU0NFoiLCJpZCI6Nzc1fV19LCJjcmVhdGVkIjoiMjAxNy0w + NC0yOFQxNzo0OTowMi4yMjdaIiwibW9kaWZpZWQiOiIyMDE3LTA0LTI4VDE4 + OjA2OjQzLjMwNloiLCJuYW1lIjoibWlxX2FwcmlsMjhfbm9fcGxheWJvb2tf + eWVzX3Jlc291cmNlX3Byb3Zpc2lvbiIsImRlc2NyaXB0aW9uIjoiYXByaWwy + OF9ub19wbGF5Ym9va195ZXNfcmVzb3VyY2UiLCJqb2JfdHlwZSI6InJ1biIs + ImludmVudG9yeSI6MzgsInByb2plY3QiOjE1NSwicGxheWJvb2siOiJjaGVj + a192ZXJzaW9uLnlhbWwiLCJjcmVkZW50aWFsIjo1MiwiY2xvdWRfY3JlZGVu + dGlhbCI6bnVsbCwibmV0d29ya19jcmVkZW50aWFsIjpudWxsLCJmb3JrcyI6 + MCwibGltaXQiOiIiLCJ2ZXJib3NpdHkiOjAsImV4dHJhX3ZhcnMiOiJ7XCJu + dW1iZXJcIjpcIjFcIn0iLCJqb2JfdGFncyI6IiIsImZvcmNlX2hhbmRsZXJz + IjpmYWxzZSwic2tpcF90YWdzIjoiIiwic3RhcnRfYXRfdGFzayI6IiIsImxh + c3Rfam9iX3J1biI6IjIwMTctMDQtMjhUMTg6MDc6MTAuMjIzNjkwWiIsImxh + c3Rfam9iX2ZhaWxlZCI6ZmFsc2UsImhhc19zY2hlZHVsZXMiOmZhbHNlLCJu + ZXh0X2pvYl9ydW4iOm51bGwsInN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJob3N0 + X2NvbmZpZ19rZXkiOiIiLCJhc2tfdmFyaWFibGVzX29uX2xhdW5jaCI6dHJ1 + ZSwiYXNrX2xpbWl0X29uX2xhdW5jaCI6dHJ1ZSwiYXNrX3RhZ3Nfb25fbGF1 + bmNoIjpmYWxzZSwiYXNrX2pvYl90eXBlX29uX2xhdW5jaCI6ZmFsc2UsImFz + a19pbnZlbnRvcnlfb25fbGF1bmNoIjp0cnVlLCJhc2tfY3JlZGVudGlhbF9v + bl9sYXVuY2giOnRydWUsInN1cnZleV9lbmFibGVkIjpmYWxzZSwiYmVjb21l + X2VuYWJsZWQiOmZhbHNlLCJhbGxvd19zaW11bHRhbmVvdXMiOmZhbHNlfSx7 + ImlkIjozMzMsInR5cGUiOiJqb2JfdGVtcGxhdGUiLCJ1cmwiOiIvYXBpL3Yx + L2pvYl90ZW1wbGF0ZXMvMzMzLyIsInJlbGF0ZWQiOnsiY3JlYXRlZF9ieSI6 + Ii9hcGkvdjEvdXNlcnMvMS8iLCJsYWJlbHMiOiIvYXBpL3YxL2pvYl90ZW1w + bGF0ZXMvMzMzL2xhYmVscy8iLCJpbnZlbnRvcnkiOiIvYXBpL3YxL2ludmVu + dG9yaWVzLzEvIiwicHJvamVjdCI6Ii9hcGkvdjEvcHJvamVjdHMvMTU1LyIs + ImNsb3VkX2NyZWRlbnRpYWwiOiIvYXBpL3YxL2NyZWRlbnRpYWxzLzE2LyIs + Imxhc3Rfam9iIjoiL2FwaS92MS9qb2JzLzQ2OS8iLCJub3RpZmljYXRpb25f + dGVtcGxhdGVzX2Vycm9yIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzMzMy9u + b3RpZmljYXRpb25fdGVtcGxhdGVzX2Vycm9yLyIsIm5vdGlmaWNhdGlvbl90 + ZW1wbGF0ZXNfc3VjY2VzcyI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8zMzMv + bm90aWZpY2F0aW9uX3RlbXBsYXRlc19zdWNjZXNzLyIsImpvYnMiOiIvYXBp + L3YxL2pvYl90ZW1wbGF0ZXMvMzMzL2pvYnMvIiwib2JqZWN0X3JvbGVzIjoi + L2FwaS92MS9qb2JfdGVtcGxhdGVzLzMzMy9vYmplY3Rfcm9sZXMvIiwibm90 + aWZpY2F0aW9uX3RlbXBsYXRlc19hbnkiOiIvYXBpL3YxL2pvYl90ZW1wbGF0 + ZXMvMzMzL25vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfYW55LyIsImFjY2Vzc19s + aXN0IjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzMzMy9hY2Nlc3NfbGlzdC8i + LCJsYXVuY2giOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzMzL2xhdW5jaC8i + LCJzY2hlZHVsZXMiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzMzL3NjaGVk + dWxlcy8iLCJhY3Rpdml0eV9zdHJlYW0iOiIvYXBpL3YxL2pvYl90ZW1wbGF0 + ZXMvMzMzL2FjdGl2aXR5X3N0cmVhbS8iLCJzdXJ2ZXlfc3BlYyI6Ii9hcGkv + djEvam9iX3RlbXBsYXRlcy8zMzMvc3VydmV5X3NwZWMvIn0sInN1bW1hcnlf + ZmllbGRzIjp7Imxhc3Rfam9iIjp7ImlkIjo0NjksIm5hbWUiOiJtaXFfYXBf + dGluYV90ZXN0MV9wcm92aXNpb24iLCJkZXNjcmlwdGlvbiI6IjEwLjguOTku + MjA3IGFuZCAxMC44Ljk5LjI0OCIsImZpbmlzaGVkIjoiMjAxNy0wMy0xNlQx + NzoxOTo1OC45NDRaIiwic3RhdHVzIjoiZmFpbGVkIiwiZmFpbGVkIjp0cnVl + fSwibGFzdF91cGRhdGUiOnsiaWQiOjQ2OSwibmFtZSI6Im1pcV9hcF90aW5h + X3Rlc3QxX3Byb3Zpc2lvbiIsImRlc2NyaXB0aW9uIjoiMTAuOC45OS4yMDcg + YW5kIDEwLjguOTkuMjQ4Iiwic3RhdHVzIjoiZmFpbGVkIiwiZmFpbGVkIjp0 + cnVlfSwiaW52ZW50b3J5Ijp7ImlkIjoxLCJuYW1lIjoiRGVtbyBJbnZlbnRv + cnkiLCJkZXNjcmlwdGlvbiI6IiIsImhhc19hY3RpdmVfZmFpbHVyZXMiOmZh + bHNlLCJ0b3RhbF9ob3N0cyI6MiwiaG9zdHNfd2l0aF9hY3RpdmVfZmFpbHVy + ZXMiOjAsInRvdGFsX2dyb3VwcyI6MCwiZ3JvdXBzX3dpdGhfYWN0aXZlX2Zh + aWx1cmVzIjowLCJoYXNfaW52ZW50b3J5X3NvdXJjZXMiOmZhbHNlLCJ0b3Rh + bF9pbnZlbnRvcnlfc291cmNlcyI6MCwiaW52ZW50b3J5X3NvdXJjZXNfd2l0 + aF9mYWlsdXJlcyI6MH0sImNsb3VkX2NyZWRlbnRpYWwiOnsiaWQiOjE2LCJu + YW1lIjoibHVjeSBkZXYwMCIsImRlc2NyaXB0aW9uIjoiIiwia2luZCI6InZt + d2FyZSIsImNsb3VkIjp0cnVlfSwicHJvamVjdCI6eyJpZCI6MTU1LCJuYW1l + IjoibHVjeSIsImRlc2NyaXB0aW9uIjoidGVzdCBwbGF5Ym9vayIsInN0YXR1 + cyI6InN1Y2Nlc3NmdWwifSwiY3JlYXRlZF9ieSI6eyJpZCI6MSwidXNlcm5h + bWUiOiJhZG1pbiIsImZpcnN0X25hbWUiOiIiLCJsYXN0X25hbWUiOiIifSwi + b2JqZWN0X3JvbGVzIjp7ImFkbWluX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJD + YW4gbWFuYWdlIGFsbCBhc3BlY3RzIG9mIHRoZSBqb2IgdGVtcGxhdGUiLCJp + ZCI6MTA1MCwibmFtZSI6IkFkbWluIn0sImV4ZWN1dGVfcm9sZSI6eyJkZXNj + cmlwdGlvbiI6Ik1heSBydW4gdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjoxMDUy + LCJuYW1lIjoiRXhlY3V0ZSJ9LCJyZWFkX3JvbGUiOnsiZGVzY3JpcHRpb24i + OiJNYXkgdmlldyBzZXR0aW5ncyBmb3IgdGhlIGpvYiB0ZW1wbGF0ZSIsImlk + IjoxMDUxLCJuYW1lIjoiUmVhZCJ9fSwibGFiZWxzIjp7ImNvdW50IjowLCJy + ZXN1bHRzIjpbXX0sImNhbl9jb3B5Ijp0cnVlLCJjYW5fZWRpdCI6dHJ1ZSwi + cmVjZW50X2pvYnMiOlt7InN0YXR1cyI6ImZhaWxlZCIsImZpbmlzaGVkIjoi + MjAxNy0wMy0xNlQxNzoxOTo1OC45NDRaIiwiaWQiOjQ2OX0seyJzdGF0dXMi + OiJmYWlsZWQiLCJmaW5pc2hlZCI6IjIwMTctMDMtMTVUMjM6MDA6MzkuMzA4 + WiIsImlkIjo0NjV9XX0sImNyZWF0ZWQiOiIyMDE3LTAzLTE1VDIyOjU1OjE5 + LjQ3NloiLCJtb2RpZmllZCI6IjIwMTctMDMtMTZUMTc6MTk6MjguNTk2WiIs + Im5hbWUiOiJtaXFfYXBfdGluYV90ZXN0MV9wcm92aXNpb24iLCJkZXNjcmlw + dGlvbiI6IjEwLjguOTkuMjA3IGFuZCAxMC44Ljk5LjI0OCIsImpvYl90eXBl + IjoicnVuIiwiaW52ZW50b3J5IjoxLCJwcm9qZWN0IjoxNTUsInBsYXlib29r + IjoiY2hlY2tfdmVyc2lvbi55YW1sIiwiY3JlZGVudGlhbCI6bnVsbCwiY2xv + dWRfY3JlZGVudGlhbCI6MTYsIm5ldHdvcmtfY3JlZGVudGlhbCI6bnVsbCwi + Zm9ya3MiOjAsImxpbWl0IjoiIiwidmVyYm9zaXR5IjowLCJleHRyYV92YXJz + Ijoie30iLCJqb2JfdGFncyI6IiIsImZvcmNlX2hhbmRsZXJzIjpmYWxzZSwi + c2tpcF90YWdzIjoiIiwic3RhcnRfYXRfdGFzayI6IiIsImxhc3Rfam9iX3J1 + biI6IjIwMTctMDMtMTZUMTc6MTk6NTguOTQ0NzgwWiIsImxhc3Rfam9iX2Zh + aWxlZCI6dHJ1ZSwiaGFzX3NjaGVkdWxlcyI6ZmFsc2UsIm5leHRfam9iX3J1 + biI6bnVsbCwic3RhdHVzIjoiZmFpbGVkIiwiaG9zdF9jb25maWdfa2V5Ijoi + IiwiYXNrX3ZhcmlhYmxlc19vbl9sYXVuY2giOnRydWUsImFza19saW1pdF9v + bl9sYXVuY2giOnRydWUsImFza190YWdzX29uX2xhdW5jaCI6ZmFsc2UsImFz + a19qb2JfdHlwZV9vbl9sYXVuY2giOmZhbHNlLCJhc2tfaW52ZW50b3J5X29u + X2xhdW5jaCI6dHJ1ZSwiYXNrX2NyZWRlbnRpYWxfb25fbGF1bmNoIjp0cnVl + LCJzdXJ2ZXlfZW5hYmxlZCI6ZmFsc2UsImJlY29tZV9lbmFibGVkIjpmYWxz + ZSwiYWxsb3dfc2ltdWx0YW5lb3VzIjpmYWxzZX0seyJpZCI6MzY4LCJ0eXBl + Ijoiam9iX3RlbXBsYXRlIiwidXJsIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVz + LzM2OC8iLCJyZWxhdGVkIjp7ImNyZWF0ZWRfYnkiOiIvYXBpL3YxL3VzZXJz + LzEvIiwibGFiZWxzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzM2OC9sYWJl + bHMvIiwiaW52ZW50b3J5IjoiL2FwaS92MS9pbnZlbnRvcmllcy8xLyIsInBy + b2plY3QiOiIvYXBpL3YxL3Byb2plY3RzLzE1NS8iLCJjbG91ZF9jcmVkZW50 + aWFsIjoiL2FwaS92MS9jcmVkZW50aWFscy8xNi8iLCJuZXR3b3JrX2NyZWRl + bnRpYWwiOiIvYXBpL3YxL2NyZWRlbnRpYWxzLzUvIiwibGFzdF9qb2IiOiIv + YXBpL3YxL2pvYnMvNDgxLyIsIm5vdGlmaWNhdGlvbl90ZW1wbGF0ZXNfZXJy + b3IiOiIvYXBpL3YxL2pvYl90ZW1wbGF0ZXMvMzY4L25vdGlmaWNhdGlvbl90 + ZW1wbGF0ZXNfZXJyb3IvIiwibm90aWZpY2F0aW9uX3RlbXBsYXRlc19zdWNj + ZXNzIjoiL2FwaS92MS9qb2JfdGVtcGxhdGVzLzM2OC9ub3RpZmljYXRpb25f + dGVtcGxhdGVzX3N1Y2Nlc3MvIiwiam9icyI6Ii9hcGkvdjEvam9iX3RlbXBs + YXRlcy8zNjgvam9icy8iLCJvYmplY3Rfcm9sZXMiOiIvYXBpL3YxL2pvYl90 + ZW1wbGF0ZXMvMzY4L29iamVjdF9yb2xlcy8iLCJub3RpZmljYXRpb25fdGVt + cGxhdGVzX2FueSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8zNjgvbm90aWZp + Y2F0aW9uX3RlbXBsYXRlc19hbnkvIiwiYWNjZXNzX2xpc3QiOiIvYXBpL3Yx + L2pvYl90ZW1wbGF0ZXMvMzY4L2FjY2Vzc19saXN0LyIsImxhdW5jaCI6Ii9h + cGkvdjEvam9iX3RlbXBsYXRlcy8zNjgvbGF1bmNoLyIsInNjaGVkdWxlcyI6 + Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8zNjgvc2NoZWR1bGVzLyIsImFjdGl2 + aXR5X3N0cmVhbSI6Ii9hcGkvdjEvam9iX3RlbXBsYXRlcy8zNjgvYWN0aXZp + dHlfc3RyZWFtLyIsInN1cnZleV9zcGVjIjoiL2FwaS92MS9qb2JfdGVtcGxh + dGVzLzM2OC9zdXJ2ZXlfc3BlYy8ifSwic3VtbWFyeV9maWVsZHMiOnsibmV0 + d29ya19jcmVkZW50aWFsIjp7ImlkIjo1LCJuYW1lIjoiRGVtbyBDcmVkcyAy + IiwiZGVzY3JpcHRpb24iOiJ0ZXN0Iiwia2luZCI6Im5ldCJ9LCJsYXN0X2pv + YiI6eyJpZCI6NDgxLCJuYW1lIjoibWlxX2FwX3RpbmFfdGVzdF9ucGJfbnJl + c19wcm92aXNpb24iLCJkZXNjcmlwdGlvbiI6ImFwX3RpbmFfdGVzdF9ucGJf + bnJlcyIsImZpbmlzaGVkIjoiMjAxNy0wMy0xN1QyMTo0OTozMC44NTNaIiwi + c3RhdHVzIjoic3VjY2Vzc2Z1bCIsImZhaWxlZCI6ZmFsc2V9LCJsYXN0X3Vw + ZGF0ZSI6eyJpZCI6NDgxLCJuYW1lIjoibWlxX2FwX3RpbmFfdGVzdF9ucGJf + bnJlc19wcm92aXNpb24iLCJkZXNjcmlwdGlvbiI6ImFwX3RpbmFfdGVzdF9u + cGJfbnJlcyIsInN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmYWlsZWQiOmZhbHNl + fSwiaW52ZW50b3J5Ijp7ImlkIjoxLCJuYW1lIjoiRGVtbyBJbnZlbnRvcnki + LCJkZXNjcmlwdGlvbiI6IiIsImhhc19hY3RpdmVfZmFpbHVyZXMiOmZhbHNl + LCJ0b3RhbF9ob3N0cyI6MiwiaG9zdHNfd2l0aF9hY3RpdmVfZmFpbHVyZXMi + OjAsInRvdGFsX2dyb3VwcyI6MCwiZ3JvdXBzX3dpdGhfYWN0aXZlX2ZhaWx1 + cmVzIjowLCJoYXNfaW52ZW50b3J5X3NvdXJjZXMiOmZhbHNlLCJ0b3RhbF9p + bnZlbnRvcnlfc291cmNlcyI6MCwiaW52ZW50b3J5X3NvdXJjZXNfd2l0aF9m + YWlsdXJlcyI6MH0sImNsb3VkX2NyZWRlbnRpYWwiOnsiaWQiOjE2LCJuYW1l + IjoibHVjeSBkZXYwMCIsImRlc2NyaXB0aW9uIjoiIiwia2luZCI6InZtd2Fy + ZSIsImNsb3VkIjp0cnVlfSwicHJvamVjdCI6eyJpZCI6MTU1LCJuYW1lIjoi + bHVjeSIsImRlc2NyaXB0aW9uIjoidGVzdCBwbGF5Ym9vayIsInN0YXR1cyI6 + InN1Y2Nlc3NmdWwifSwiY3JlYXRlZF9ieSI6eyJpZCI6MSwidXNlcm5hbWUi + OiJhZG1pbiIsImZpcnN0X25hbWUiOiIiLCJsYXN0X25hbWUiOiIifSwib2Jq + ZWN0X3JvbGVzIjp7ImFkbWluX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJDYW4g + bWFuYWdlIGFsbCBhc3BlY3RzIG9mIHRoZSBqb2IgdGVtcGxhdGUiLCJpZCI6 + MTE5MywibmFtZSI6IkFkbWluIn0sImV4ZWN1dGVfcm9sZSI6eyJkZXNjcmlw + dGlvbiI6Ik1heSBydW4gdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjoxMTk1LCJu + YW1lIjoiRXhlY3V0ZSJ9LCJyZWFkX3JvbGUiOnsiZGVzY3JpcHRpb24iOiJN + YXkgdmlldyBzZXR0aW5ncyBmb3IgdGhlIGpvYiB0ZW1wbGF0ZSIsImlkIjox + MTk0LCJuYW1lIjoiUmVhZCJ9fSwibGFiZWxzIjp7ImNvdW50IjowLCJyZXN1 + bHRzIjpbXX0sImNhbl9jb3B5Ijp0cnVlLCJjYW5fZWRpdCI6dHJ1ZSwicmVj + ZW50X2pvYnMiOlt7InN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJmaW5pc2hlZCI6 + IjIwMTctMDMtMTdUMjE6NDk6MzAuODUzWiIsImlkIjo0ODF9XX0sImNyZWF0 + ZWQiOiIyMDE3LTAzLTE3VDE4OjM1OjEzLjY0N1oiLCJtb2RpZmllZCI6IjIw + MTctMDMtMTdUMjE6NDk6MDUuNzI0WiIsIm5hbWUiOiJtaXFfYXBfdGluYV90 + ZXN0X25wYl9ucmVzX3Byb3Zpc2lvbiIsImRlc2NyaXB0aW9uIjoiYXBfdGlu + YV90ZXN0X25wYl9ucmVzIiwiam9iX3R5cGUiOiJydW4iLCJpbnZlbnRvcnki + OjEsInByb2plY3QiOjE1NSwicGxheWJvb2siOiJjaGVja192ZXJzaW9uLnlh + bWwiLCJjcmVkZW50aWFsIjpudWxsLCJjbG91ZF9jcmVkZW50aWFsIjoxNiwi + bmV0d29ya19jcmVkZW50aWFsIjo1LCJmb3JrcyI6MCwibGltaXQiOiIiLCJ2 + ZXJib3NpdHkiOjAsImV4dHJhX3ZhcnMiOiJ7XCJudW1iZXJcIjpcIjFcIn0i + LCJqb2JfdGFncyI6IiIsImZvcmNlX2hhbmRsZXJzIjpmYWxzZSwic2tpcF90 + YWdzIjoiIiwic3RhcnRfYXRfdGFzayI6IiIsImxhc3Rfam9iX3J1biI6IjIw + MTctMDMtMTdUMjE6NDk6MzAuODUzOTcwWiIsImxhc3Rfam9iX2ZhaWxlZCI6 + ZmFsc2UsImhhc19zY2hlZHVsZXMiOmZhbHNlLCJuZXh0X2pvYl9ydW4iOm51 + bGwsInN0YXR1cyI6InN1Y2Nlc3NmdWwiLCJob3N0X2NvbmZpZ19rZXkiOiIi + LCJhc2tfdmFyaWFibGVzX29uX2xhdW5jaCI6dHJ1ZSwiYXNrX2xpbWl0X29u + X2xhdW5jaCI6dHJ1ZSwiYXNrX3RhZ3Nfb25fbGF1bmNoIjpmYWxzZSwiYXNr + X2pvYl90eXBlX29uX2xhdW5jaCI6ZmFsc2UsImFza19pbnZlbnRvcnlfb25f + bGF1bmNoIjp0cnVlLCJhc2tfY3JlZGVudGlhbF9vbl9sYXVuY2giOnRydWUs + InN1cnZleV9lbmFibGVkIjpmYWxzZSwiYmVjb21lX2VuYWJsZWQiOmZhbHNl + LCJhbGxvd19zaW11bHRhbmVvdXMiOmZhbHNlfV19 http_version: - recorded_at: Wed, 21 Jun 2017 19:22:57 GMT + recorded_at: Tue, 27 Jun 2017 17:54:56 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/80/survey_spec/ @@ -5542,7 +5459,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:22:57 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -5550,7 +5467,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s + - 0.034s Content-Length: - '2' Content-Type: @@ -5559,7 +5476,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:22:58 GMT + recorded_at: Tue, 27 Jun 2017 17:54:56 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/80/survey_spec/ @@ -5581,7 +5498,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:22:58 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -5589,16 +5506,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.039s - Content-Length: - - '2' + - 0.034s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:22:58 GMT + recorded_at: Tue, 27 Jun 2017 17:54:57 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/81/survey_spec/ @@ -5620,7 +5537,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:22:58 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -5628,7 +5545,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.043s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -5637,7 +5554,7 @@ http_interactions: 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 + recorded_at: Tue, 27 Jun 2017 17:54:57 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/81/survey_spec/ @@ -5659,7 +5576,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:22:58 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -5667,16 +5584,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.038s - Content-Length: - - '375' + - 0.034s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: '{"description":"","spec":[{"index":1,"required":true,"min":null,"default":"","max":null,"question_description":"Survey","choices":"","variable":"test","question_name":"Survey","type":"text"},{"index":0,"question_description":"","min":0,"default":"","max":1024,"required":true,"choices":"","new_question":true,"variable":"why","question_name":"Why?","type":"text"}],"name":""}' http_version: - recorded_at: Wed, 21 Jun 2017 19:22:58 GMT + recorded_at: Tue, 27 Jun 2017 17:54:57 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/30/survey_spec/ @@ -5698,7 +5615,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:22:58 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -5706,7 +5623,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -5715,7 +5632,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:22:58 GMT + recorded_at: Tue, 27 Jun 2017 17:54:57 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/30/survey_spec/ @@ -5737,7 +5654,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:22:58 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -5745,16 +5662,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s - Content-Length: - - '2' + - 0.034s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:22:58 GMT + recorded_at: Tue, 27 Jun 2017 17:54:58 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/189/survey_spec/ @@ -5776,7 +5693,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:22:59 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -5784,16 +5701,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.041s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:22:59 GMT + recorded_at: Tue, 27 Jun 2017 17:54:58 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/189/survey_spec/ @@ -5815,7 +5732,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:22:59 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -5823,7 +5740,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.048s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -5832,7 +5749,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:22:59 GMT + recorded_at: Tue, 27 Jun 2017 17:54:58 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/190/survey_spec/ @@ -5854,7 +5771,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:22:59 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -5862,16 +5779,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Content-Length: - - '2' + - 0.034s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:22:59 GMT + recorded_at: Tue, 27 Jun 2017 17:54:58 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/190/survey_spec/ @@ -5893,7 +5810,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:22:59 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -5901,16 +5818,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Content-Length: - - '2' + - 0.036s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:22:59 GMT + recorded_at: Tue, 27 Jun 2017 17:54:58 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/38/survey_spec/ @@ -5932,7 +5849,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:22:59 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -5940,16 +5857,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:22:59 GMT + recorded_at: Tue, 27 Jun 2017 17:54:58 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/38/survey_spec/ @@ -5971,7 +5888,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:22:59 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -5979,7 +5896,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.053s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -5988,7 +5905,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:00 GMT + recorded_at: Tue, 27 Jun 2017 17:54:59 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/188/survey_spec/ @@ -6010,7 +5927,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:00 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -6018,7 +5935,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.047s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -6027,7 +5944,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:00 GMT + recorded_at: Tue, 27 Jun 2017 17:54:59 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/188/survey_spec/ @@ -6049,7 +5966,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:00 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -6066,10 +5983,10 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:00 GMT + recorded_at: Tue, 27 Jun 2017 17:54:59 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/571/survey_spec/ + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/598/survey_spec/ body: encoding: US-ASCII string: '' @@ -6088,7 +6005,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:00 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -6105,10 +6022,10 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:00 GMT + recorded_at: Tue, 27 Jun 2017 17:54:59 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/571/survey_spec/ + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/598/survey_spec/ body: encoding: US-ASCII string: '' @@ -6127,7 +6044,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:00 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -6144,10 +6061,10 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:00 GMT + recorded_at: Tue, 27 Jun 2017 17:54:59 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/572/survey_spec/ + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/599/survey_spec/ body: encoding: US-ASCII string: '' @@ -6166,7 +6083,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:01 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -6185,10 +6102,10 @@ http_interactions: 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 + recorded_at: Tue, 27 Jun 2017 17:54:59 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/572/survey_spec/ + uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/599/survey_spec/ body: encoding: US-ASCII string: '' @@ -6207,7 +6124,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:01 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -6215,9 +6132,9 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.038s - Transfer-Encoding: - - chunked + - 0.035s + Content-Length: + - '249' Content-Type: - application/json body: @@ -6226,7 +6143,7 @@ http_interactions: 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 + recorded_at: Tue, 27 Jun 2017 17:55:00 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/28/survey_spec/ @@ -6248,7 +6165,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:01 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -6256,16 +6173,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.041s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:01 GMT + recorded_at: Tue, 27 Jun 2017 17:55:00 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/28/survey_spec/ @@ -6287,7 +6204,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:01 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -6295,7 +6212,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -6304,7 +6221,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:01 GMT + recorded_at: Tue, 27 Jun 2017 17:55:00 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/185/survey_spec/ @@ -6326,7 +6243,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:01 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -6334,16 +6251,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.037s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:01 GMT + recorded_at: Tue, 27 Jun 2017 17:55:00 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/185/survey_spec/ @@ -6365,7 +6282,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:01 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -6382,7 +6299,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:01 GMT + recorded_at: Tue, 27 Jun 2017 17:55:00 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/184/survey_spec/ @@ -6404,7 +6321,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:02 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -6413,15 +6330,15 @@ http_interactions: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - 0.035s - Content-Length: - - '2' + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:02 GMT + recorded_at: Tue, 27 Jun 2017 17:55:01 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/184/survey_spec/ @@ -6443,7 +6360,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:02 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -6451,16 +6368,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s - Content-Length: - - '2' + - 0.034s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:02 GMT + recorded_at: Tue, 27 Jun 2017 17:55:01 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/283/survey_spec/ @@ -6482,7 +6399,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:02 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -6490,7 +6407,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.034s Content-Length: - '2' Content-Type: @@ -6499,7 +6416,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:02 GMT + recorded_at: Tue, 27 Jun 2017 17:55:01 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/283/survey_spec/ @@ -6521,7 +6438,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:02 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -6529,7 +6446,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -6538,7 +6455,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:02 GMT + recorded_at: Tue, 27 Jun 2017 17:55:01 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/212/survey_spec/ @@ -6560,7 +6477,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:02 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -6568,16 +6485,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:02 GMT + recorded_at: Tue, 27 Jun 2017 17:55:02 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/212/survey_spec/ @@ -6599,7 +6516,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:02 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -6608,15 +6525,15 @@ http_interactions: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - 0.034s - Transfer-Encoding: - - chunked + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:03 GMT + recorded_at: Tue, 27 Jun 2017 17:55:02 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/176/survey_spec/ @@ -6638,7 +6555,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:03 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -6646,16 +6563,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Content-Length: - - '2' + - 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 + recorded_at: Tue, 27 Jun 2017 17:55:02 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/176/survey_spec/ @@ -6677,7 +6594,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:03 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -6685,7 +6602,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.041s + - 0.038s Content-Length: - '2' Content-Type: @@ -6694,7 +6611,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:03 GMT + recorded_at: Tue, 27 Jun 2017 17:55:02 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/291/survey_spec/ @@ -6716,7 +6633,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:03 GMT + - Tue, 27 Jun 2017 17:54:50 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: @@ -6724,7 +6641,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.130s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -6733,7 +6650,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:03 GMT + recorded_at: Tue, 27 Jun 2017 17:55:03 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/291/survey_spec/ @@ -6755,7 +6672,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:03 GMT + - Tue, 27 Jun 2017 17:54:50 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: @@ -6763,16 +6680,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s - Content-Length: - - '2' + - 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 + recorded_at: Tue, 27 Jun 2017 17:55:03 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/156/survey_spec/ @@ -6794,7 +6711,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:03 GMT + - Tue, 27 Jun 2017 17:54:50 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: @@ -6802,7 +6719,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.038s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -6811,7 +6728,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:03 GMT + recorded_at: Tue, 27 Jun 2017 17:55:03 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/156/survey_spec/ @@ -6833,7 +6750,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:04 GMT + - Tue, 27 Jun 2017 17:54:50 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: @@ -6841,16 +6758,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.053s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:04 GMT + recorded_at: Tue, 27 Jun 2017 17:55:03 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/178/survey_spec/ @@ -6872,7 +6789,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:04 GMT + - Tue, 27 Jun 2017 17:54:50 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: @@ -6880,7 +6797,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.056s + - 0.035s Transfer-Encoding: - chunked Content-Type: @@ -6889,7 +6806,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:04 GMT + recorded_at: Tue, 27 Jun 2017 17:55:03 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/178/survey_spec/ @@ -6911,7 +6828,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:04 GMT + - Tue, 27 Jun 2017 17:54:50 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: @@ -6919,7 +6836,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.057s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -6928,7 +6845,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:04 GMT + recorded_at: Tue, 27 Jun 2017 17:55:03 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/125/survey_spec/ @@ -6950,7 +6867,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:04 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -6958,16 +6875,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:04 GMT + recorded_at: Tue, 27 Jun 2017 17:55:04 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/125/survey_spec/ @@ -6989,7 +6906,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:04 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -6997,16 +6914,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.038s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:05 GMT + recorded_at: Tue, 27 Jun 2017 17:55:04 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/378/survey_spec/ @@ -7028,7 +6945,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:05 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -7036,7 +6953,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -7045,7 +6962,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:05 GMT + recorded_at: Tue, 27 Jun 2017 17:55:04 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/378/survey_spec/ @@ -7067,7 +6984,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:05 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -7075,16 +6992,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.044s - Content-Length: - - '2' + - 0.034s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:05 GMT + recorded_at: Tue, 27 Jun 2017 17:55:04 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/505/survey_spec/ @@ -7106,7 +7023,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:05 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -7114,7 +7031,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.041s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -7123,7 +7040,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:05 GMT + recorded_at: Tue, 27 Jun 2017 17:55:04 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/505/survey_spec/ @@ -7145,7 +7062,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:05 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -7153,16 +7070,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.038s - Content-Length: - - '2' + - 0.034s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:05 GMT + recorded_at: Tue, 27 Jun 2017 17:55:04 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/480/survey_spec/ @@ -7184,7 +7101,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:05 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -7192,7 +7109,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.039s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -7201,7 +7118,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:05 GMT + recorded_at: Tue, 27 Jun 2017 17:55:05 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/480/survey_spec/ @@ -7223,7 +7140,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:06 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -7240,7 +7157,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:06 GMT + recorded_at: Tue, 27 Jun 2017 17:55:05 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/479/survey_spec/ @@ -7262,7 +7179,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:06 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -7270,16 +7187,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Content-Length: - - '2' + - 0.033s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:06 GMT + recorded_at: Tue, 27 Jun 2017 17:55:05 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/479/survey_spec/ @@ -7301,7 +7218,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:06 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -7309,7 +7226,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.037s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -7318,7 +7235,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:06 GMT + recorded_at: Tue, 27 Jun 2017 17:55:05 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/333/survey_spec/ @@ -7340,7 +7257,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:06 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -7349,15 +7266,15 @@ http_interactions: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - 0.034s - Content-Length: - - '2' + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:06 GMT + recorded_at: Tue, 27 Jun 2017 17:55:05 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/333/survey_spec/ @@ -7379,7 +7296,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:06 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -7387,16 +7304,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s - Transfer-Encoding: - - chunked + - 0.033s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:07 GMT + recorded_at: Tue, 27 Jun 2017 17:55:05 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/368/survey_spec/ @@ -7418,7 +7335,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:07 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -7426,7 +7343,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.033s Transfer-Encoding: - chunked Content-Type: @@ -7435,7 +7352,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:07 GMT + recorded_at: Tue, 27 Jun 2017 17:55:06 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/368/survey_spec/ @@ -7457,7 +7374,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:07 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -7465,16 +7382,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Transfer-Encoding: - - chunked + - 0.033s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:07 GMT + recorded_at: Tue, 27 Jun 2017 17:55:06 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/?page=2 @@ -7496,7 +7413,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:07 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -7504,7 +7421,7 @@ http_interactions: Allow: - GET, POST, HEAD, OPTIONS X-Api-Time: - - 0.444s + - 0.336s Transfer-Encoding: - chunked Content-Type: @@ -7675,7 +7592,7 @@ http_interactions: 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 + recorded_at: Tue, 27 Jun 2017 17:55:06 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/371/survey_spec/ @@ -7697,7 +7614,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:08 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -7705,16 +7622,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.034s - Transfer-Encoding: - - chunked + - 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 + recorded_at: Tue, 27 Jun 2017 17:55:07 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/371/survey_spec/ @@ -7736,7 +7653,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:08 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -7744,16 +7661,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Content-Length: - - '2' + - 0.036s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:08 GMT + recorded_at: Tue, 27 Jun 2017 17:55:07 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/372/survey_spec/ @@ -7775,7 +7692,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:08 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -7783,7 +7700,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.037s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -7792,7 +7709,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:08 GMT + recorded_at: Tue, 27 Jun 2017 17:55:07 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/372/survey_spec/ @@ -7814,7 +7731,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:08 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -7822,7 +7739,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.041s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -7831,7 +7748,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:08 GMT + recorded_at: Tue, 27 Jun 2017 17:55:07 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/369/survey_spec/ @@ -7853,7 +7770,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:08 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -7870,7 +7787,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:08 GMT + recorded_at: Tue, 27 Jun 2017 17:55:07 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/369/survey_spec/ @@ -7892,7 +7809,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:09 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -7900,7 +7817,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.034s + - 0.035s Transfer-Encoding: - chunked Content-Type: @@ -7909,7 +7826,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:09 GMT + recorded_at: Tue, 27 Jun 2017 17:55:07 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/370/survey_spec/ @@ -7931,7 +7848,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:09 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -7939,16 +7856,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Content-Length: - - '2' + - 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 + recorded_at: Tue, 27 Jun 2017 17:55:07 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/370/survey_spec/ @@ -7970,7 +7887,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:09 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -7978,7 +7895,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -7987,7 +7904,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:09 GMT + recorded_at: Tue, 27 Jun 2017 17:55:08 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/474/survey_spec/ @@ -8009,7 +7926,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:09 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -8017,7 +7934,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -8026,7 +7943,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:09 GMT + recorded_at: Tue, 27 Jun 2017 17:55:08 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/474/survey_spec/ @@ -8048,7 +7965,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:09 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -8056,16 +7973,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s - Content-Length: - - '2' + - 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 + recorded_at: Tue, 27 Jun 2017 17:55:08 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/504/survey_spec/ @@ -8087,7 +8004,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:09 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -8095,7 +8012,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -8104,7 +8021,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:09 GMT + recorded_at: Tue, 27 Jun 2017 17:55:08 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/504/survey_spec/ @@ -8126,24 +8043,24 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:10 GMT + - Tue, 27 Jun 2017 17:54:55 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Vary: - Accept,Cookie Allow: - - GET, POST, DELETE, HEAD, OPTIONS - X-Api-Time: - - 0.038s - Content-Length: - - '2' + - 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:10 GMT + recorded_at: Tue, 27 Jun 2017 17:55:08 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/481/survey_spec/ @@ -8165,7 +8082,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:10 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -8173,7 +8090,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.037s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -8182,7 +8099,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:10 GMT + recorded_at: Tue, 27 Jun 2017 17:55:09 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/481/survey_spec/ @@ -8204,7 +8121,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:10 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -8212,16 +8129,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Transfer-Encoding: - - chunked + - 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 + recorded_at: Tue, 27 Jun 2017 17:55:09 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/482/survey_spec/ @@ -8243,7 +8160,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:10 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -8252,15 +8169,15 @@ http_interactions: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - 0.034s - Content-Length: - - '2' + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:10 GMT + recorded_at: Tue, 27 Jun 2017 17:55:09 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/482/survey_spec/ @@ -8282,7 +8199,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:10 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -8291,15 +8208,15 @@ http_interactions: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - 0.034s - Content-Length: - - '2' + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:10 GMT + recorded_at: Tue, 27 Jun 2017 17:55:09 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/492/survey_spec/ @@ -8321,7 +8238,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:10 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -8329,16 +8246,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Content-Length: - - '2' + - 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 + recorded_at: Tue, 27 Jun 2017 17:55:09 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/492/survey_spec/ @@ -8360,7 +8277,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:11 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -8377,7 +8294,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:11 GMT + recorded_at: Tue, 27 Jun 2017 17:55:10 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/493/survey_spec/ @@ -8399,7 +8316,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:11 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -8407,16 +8324,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:11 GMT + recorded_at: Tue, 27 Jun 2017 17:55:10 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/493/survey_spec/ @@ -8438,7 +8355,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:11 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -8446,16 +8363,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Content-Length: - - '2' + - 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 + recorded_at: Tue, 27 Jun 2017 17:55:10 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/290/survey_spec/ @@ -8477,7 +8394,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:11 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -8486,15 +8403,15 @@ http_interactions: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - 0.034s - Transfer-Encoding: - - chunked + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:11 GMT + recorded_at: Tue, 27 Jun 2017 17:55:11 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/290/survey_spec/ @@ -8516,7 +8433,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:11 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -8533,7 +8450,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:11 GMT + recorded_at: Tue, 27 Jun 2017 17:55:11 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/443/survey_spec/ @@ -8555,7 +8472,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:11 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -8563,7 +8480,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -8572,7 +8489,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:12 GMT + recorded_at: Tue, 27 Jun 2017 17:55:11 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/443/survey_spec/ @@ -8594,7 +8511,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:12 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -8602,16 +8519,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Content-Length: - - '2' + - 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 + recorded_at: Tue, 27 Jun 2017 17:55:11 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/444/survey_spec/ @@ -8633,7 +8550,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:12 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -8641,7 +8558,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -8650,7 +8567,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:12 GMT + recorded_at: Tue, 27 Jun 2017 17:55:11 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/444/survey_spec/ @@ -8672,7 +8589,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:12 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -8680,16 +8597,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.034s - Transfer-Encoding: - - chunked + - 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 + recorded_at: Tue, 27 Jun 2017 17:55:12 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/503/survey_spec/ @@ -8711,7 +8628,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:12 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -8720,15 +8637,15 @@ http_interactions: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - 0.034s - Transfer-Encoding: - - chunked + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:12 GMT + recorded_at: Tue, 27 Jun 2017 17:55:12 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/503/survey_spec/ @@ -8750,7 +8667,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:12 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -8758,16 +8675,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:12 GMT + recorded_at: Tue, 27 Jun 2017 17:55:12 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/441/survey_spec/ @@ -8789,7 +8706,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:13 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -8797,16 +8714,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.039s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:13 GMT + recorded_at: Tue, 27 Jun 2017 17:55:12 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/441/survey_spec/ @@ -8828,7 +8745,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:13 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -8836,16 +8753,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:13 GMT + recorded_at: Tue, 27 Jun 2017 17:55:12 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/442/survey_spec/ @@ -8867,7 +8784,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:13 GMT + - Tue, 27 Jun 2017 17:54: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: @@ -8875,16 +8792,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.037s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:13 GMT + recorded_at: Tue, 27 Jun 2017 17:55:12 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/442/survey_spec/ @@ -8906,7 +8823,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:13 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -8914,16 +8831,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s - Content-Length: - - '2' + - 0.034s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:13 GMT + recorded_at: Tue, 27 Jun 2017 17:55:13 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/334/survey_spec/ @@ -8945,7 +8862,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:13 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -8953,16 +8870,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.039s - Transfer-Encoding: - - chunked + - 0.035s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:13 GMT + recorded_at: Tue, 27 Jun 2017 17:55:13 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/334/survey_spec/ @@ -8984,7 +8901,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:13 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -8992,16 +8909,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:13 GMT + recorded_at: Tue, 27 Jun 2017 17:55:13 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/167/survey_spec/ @@ -9023,7 +8940,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:14 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -9031,7 +8948,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.038s + - 0.035s Transfer-Encoding: - chunked Content-Type: @@ -9040,7 +8957,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:14 GMT + recorded_at: Tue, 27 Jun 2017 17:55:13 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/167/survey_spec/ @@ -9062,7 +8979,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:14 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -9070,7 +8987,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -9079,7 +8996,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:14 GMT + recorded_at: Tue, 27 Jun 2017 17:55:13 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/403/survey_spec/ @@ -9101,7 +9018,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:14 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -9118,7 +9035,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:14 GMT + recorded_at: Tue, 27 Jun 2017 17:55:13 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/403/survey_spec/ @@ -9140,7 +9057,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:14 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -9149,15 +9066,15 @@ http_interactions: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - 0.034s - Content-Length: - - '2' + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:14 GMT + recorded_at: Tue, 27 Jun 2017 17:55:14 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/402/survey_spec/ @@ -9179,7 +9096,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:14 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -9187,16 +9104,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Content-Length: - - '2' + - 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 + recorded_at: Tue, 27 Jun 2017 17:55:14 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/402/survey_spec/ @@ -9218,7 +9135,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:14 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -9226,7 +9143,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -9235,7 +9152,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:14 GMT + recorded_at: Tue, 27 Jun 2017 17:55:14 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/172/survey_spec/ @@ -9257,7 +9174,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:15 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -9274,7 +9191,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:15 GMT + recorded_at: Tue, 27 Jun 2017 17:55:14 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/172/survey_spec/ @@ -9296,7 +9213,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:15 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -9305,15 +9222,15 @@ http_interactions: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - 0.034s - Content-Length: - - '2' + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:15 GMT + recorded_at: Tue, 27 Jun 2017 17:55:14 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/183/survey_spec/ @@ -9335,7 +9252,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:15 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -9343,7 +9260,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -9352,7 +9269,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:15 GMT + recorded_at: Tue, 27 Jun 2017 17:55:14 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/183/survey_spec/ @@ -9374,7 +9291,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:15 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -9382,7 +9299,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -9391,7 +9308,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:15 GMT + recorded_at: Tue, 27 Jun 2017 17:55:15 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/205/survey_spec/ @@ -9413,7 +9330,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:15 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -9421,16 +9338,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Transfer-Encoding: - - chunked + - 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 + recorded_at: Tue, 27 Jun 2017 17:55:15 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/205/survey_spec/ @@ -9452,7 +9369,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:15 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -9460,16 +9377,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Content-Length: - - '2' + - 0.034s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:15 GMT + recorded_at: Tue, 27 Jun 2017 17:55:15 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/209/survey_spec/ @@ -9491,7 +9408,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:16 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -9499,7 +9416,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.037s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -9508,7 +9425,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:16 GMT + recorded_at: Tue, 27 Jun 2017 17:55:15 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/209/survey_spec/ @@ -9530,7 +9447,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:16 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -9538,16 +9455,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Content-Length: - - '2' + - 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 + recorded_at: Tue, 27 Jun 2017 17:55:16 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/174/survey_spec/ @@ -9569,7 +9486,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:16 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -9577,16 +9494,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Content-Length: - - '2' + - 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 + recorded_at: Tue, 27 Jun 2017 17:55:16 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/174/survey_spec/ @@ -9608,7 +9525,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:16 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -9616,16 +9533,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.034s - Transfer-Encoding: - - chunked + - 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 + recorded_at: Tue, 27 Jun 2017 17:55:16 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/?page=3 @@ -9647,7 +9564,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:16 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -9655,9 +9572,9 @@ http_interactions: Allow: - GET, POST, HEAD, OPTIONS X-Api-Time: - - 0.369s - Transfer-Encoding: - - chunked + - 0.333s + Content-Length: + - '68212' Content-Type: - application/json body: @@ -9772,15 +9689,13 @@ http_interactions: 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 + 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/","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":{"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 + view settings for the job template","id":368,"name":"Read"}},"labels":{"count":0,"results":[]},"can_copy":true,"can_edit":true,"recent_jobs":[]},"created":"2017-02-14T20:14:14.170Z","modified":"2017-02-20T23:06:56.945Z","name":"miq-playbook-demo_provision_hd2g8j13","description":"this is a test","job_type":"run","inventory":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 @@ -9828,7 +9743,7 @@ http_interactions: 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 + recorded_at: Tue, 27 Jun 2017 17:55:17 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/175/survey_spec/ @@ -9850,7 +9765,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:17 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -9858,7 +9773,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.033s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -9867,7 +9782,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:17 GMT + recorded_at: Tue, 27 Jun 2017 17:55:17 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/175/survey_spec/ @@ -9889,7 +9804,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:17 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -9897,16 +9812,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:17 GMT + recorded_at: Tue, 27 Jun 2017 17:55:17 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/182/survey_spec/ @@ -9928,7 +9843,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:17 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -9945,7 +9860,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:17 GMT + recorded_at: Tue, 27 Jun 2017 17:55:17 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/182/survey_spec/ @@ -9967,7 +9882,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:17 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -9976,15 +9891,15 @@ http_interactions: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - 0.034s - Transfer-Encoding: - - chunked + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:18 GMT + recorded_at: Tue, 27 Jun 2017 17:55:17 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/173/survey_spec/ @@ -10006,7 +9921,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:18 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -10014,16 +9929,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Transfer-Encoding: - - chunked + - 0.036s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:18 GMT + recorded_at: Tue, 27 Jun 2017 17:55:17 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/173/survey_spec/ @@ -10045,7 +9960,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:18 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -10054,15 +9969,15 @@ http_interactions: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - 0.034s - Content-Length: - - '2' + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:18 GMT + recorded_at: Tue, 27 Jun 2017 17:55:18 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/470/survey_spec/ @@ -10084,7 +9999,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:18 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -10092,7 +10007,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.034s + - 0.035s Transfer-Encoding: - chunked Content-Type: @@ -10101,7 +10016,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:18 GMT + recorded_at: Tue, 27 Jun 2017 17:55:18 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/470/survey_spec/ @@ -10123,7 +10038,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:18 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -10132,15 +10047,15 @@ http_interactions: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - 0.034s - Content-Length: - - '2' + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:18 GMT + recorded_at: Tue, 27 Jun 2017 17:55:18 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/495/survey_spec/ @@ -10162,7 +10077,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:18 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -10179,7 +10094,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:18 GMT + recorded_at: Tue, 27 Jun 2017 17:55:18 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/495/survey_spec/ @@ -10201,7 +10116,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:19 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -10209,7 +10124,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -10218,7 +10133,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:19 GMT + recorded_at: Tue, 27 Jun 2017 17:55:18 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/496/survey_spec/ @@ -10240,7 +10155,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:19 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -10248,16 +10163,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:19 GMT + recorded_at: Tue, 27 Jun 2017 17:55:18 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/496/survey_spec/ @@ -10279,7 +10194,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:19 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -10287,16 +10202,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:19 GMT + recorded_at: Tue, 27 Jun 2017 17:55:19 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/500/survey_spec/ @@ -10318,7 +10233,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:19 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -10335,7 +10250,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:19 GMT + recorded_at: Tue, 27 Jun 2017 17:55:19 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/500/survey_spec/ @@ -10357,7 +10272,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:19 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -10365,7 +10280,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.034s + - 0.033s Transfer-Encoding: - chunked Content-Type: @@ -10374,7 +10289,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:19 GMT + recorded_at: Tue, 27 Jun 2017 17:55:19 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/502/survey_spec/ @@ -10396,7 +10311,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:19 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -10404,7 +10319,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.033s Transfer-Encoding: - chunked Content-Type: @@ -10413,7 +10328,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:19 GMT + recorded_at: Tue, 27 Jun 2017 17:55:19 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/502/survey_spec/ @@ -10435,7 +10350,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:20 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -10443,16 +10358,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s - Content-Length: - - '2' + - 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 + recorded_at: Tue, 27 Jun 2017 17:55:19 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/412/survey_spec/ @@ -10474,7 +10389,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:20 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -10482,16 +10397,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.038s - Content-Length: - - '2' + - 0.033s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:20 GMT + recorded_at: Tue, 27 Jun 2017 17:55:19 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/412/survey_spec/ @@ -10513,7 +10428,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:20 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -10521,7 +10436,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -10530,7 +10445,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:20 GMT + recorded_at: Tue, 27 Jun 2017 17:55:20 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/164/survey_spec/ @@ -10552,7 +10467,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:20 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -10560,7 +10475,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -10569,7 +10484,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:20 GMT + recorded_at: Tue, 27 Jun 2017 17:55:20 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/164/survey_spec/ @@ -10591,7 +10506,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:20 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -10599,7 +10514,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.034s + - 0.033s Transfer-Encoding: - chunked Content-Type: @@ -10608,7 +10523,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:20 GMT + recorded_at: Tue, 27 Jun 2017 17:55:20 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/162/survey_spec/ @@ -10630,7 +10545,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:20 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -10638,7 +10553,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -10647,7 +10562,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:20 GMT + recorded_at: Tue, 27 Jun 2017 17:55:20 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/162/survey_spec/ @@ -10669,7 +10584,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:21 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -10686,7 +10601,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:21 GMT + recorded_at: Tue, 27 Jun 2017 17:55:20 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/229/survey_spec/ @@ -10708,7 +10623,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:21 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -10716,16 +10631,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s - Content-Length: - - '2' + - 0.033s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:21 GMT + recorded_at: Tue, 27 Jun 2017 17:55:20 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/229/survey_spec/ @@ -10747,7 +10662,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:21 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -10755,7 +10670,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.040s + - 0.035s Transfer-Encoding: - chunked Content-Type: @@ -10764,7 +10679,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:21 GMT + recorded_at: Tue, 27 Jun 2017 17:55:21 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/227/survey_spec/ @@ -10786,7 +10701,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:21 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -10794,7 +10709,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.042s + - 0.033s Transfer-Encoding: - chunked Content-Type: @@ -10803,7 +10718,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:21 GMT + recorded_at: Tue, 27 Jun 2017 17:55:21 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/227/survey_spec/ @@ -10825,7 +10740,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:21 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -10833,16 +10748,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.038s - Transfer-Encoding: - - chunked + - 0.033s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:21 GMT + recorded_at: Tue, 27 Jun 2017 17:55:21 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/475/survey_spec/ @@ -10864,7 +10779,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:21 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -10872,16 +10787,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s - Transfer-Encoding: - - chunked + - 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 + recorded_at: Tue, 27 Jun 2017 17:55:21 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/475/survey_spec/ @@ -10903,7 +10818,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:22 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -10911,16 +10826,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.038s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:22 GMT + recorded_at: Tue, 27 Jun 2017 17:55:21 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/285/survey_spec/ @@ -10942,7 +10857,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:22 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -10950,7 +10865,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s + - 0.033s Content-Length: - '2' Content-Type: @@ -10959,7 +10874,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:22 GMT + recorded_at: Tue, 27 Jun 2017 17:55:21 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/285/survey_spec/ @@ -10981,7 +10896,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:22 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -10998,7 +10913,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:22 GMT + recorded_at: Tue, 27 Jun 2017 17:55:22 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/133/survey_spec/ @@ -11020,7 +10935,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:22 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -11028,16 +10943,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:22 GMT + recorded_at: Tue, 27 Jun 2017 17:55:22 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/133/survey_spec/ @@ -11059,7 +10974,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:22 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -11067,7 +10982,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.033s Transfer-Encoding: - chunked Content-Type: @@ -11076,7 +10991,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:22 GMT + recorded_at: Tue, 27 Jun 2017 17:55:22 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/128/survey_spec/ @@ -11098,7 +11013,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:22 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -11106,7 +11021,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.034s + - 0.035s Transfer-Encoding: - chunked Content-Type: @@ -11115,7 +11030,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:23 GMT + recorded_at: Tue, 27 Jun 2017 17:55:22 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/128/survey_spec/ @@ -11137,7 +11052,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:23 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -11145,7 +11060,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -11154,7 +11069,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:23 GMT + recorded_at: Tue, 27 Jun 2017 17:55:22 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/120/survey_spec/ @@ -11176,7 +11091,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:23 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -11184,16 +11099,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:23 GMT + recorded_at: Tue, 27 Jun 2017 17:55:22 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/120/survey_spec/ @@ -11215,7 +11130,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:23 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -11232,7 +11147,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:23 GMT + recorded_at: Tue, 27 Jun 2017 17:55:23 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/127/survey_spec/ @@ -11254,7 +11169,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:23 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -11262,16 +11177,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.039s - Transfer-Encoding: - - chunked + - 0.035s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:23 GMT + recorded_at: Tue, 27 Jun 2017 17:55:23 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/127/survey_spec/ @@ -11293,7 +11208,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:23 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -11301,16 +11216,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.043s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:23 GMT + recorded_at: Tue, 27 Jun 2017 17:55:23 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/132/survey_spec/ @@ -11332,7 +11247,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:24 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -11340,7 +11255,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.034s + - 0.033s Content-Length: - '2' Content-Type: @@ -11349,7 +11264,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:24 GMT + recorded_at: Tue, 27 Jun 2017 17:55:23 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/132/survey_spec/ @@ -11371,7 +11286,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:24 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -11379,16 +11294,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.037s - Content-Length: - - '2' + - 0.035s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:24 GMT + recorded_at: Tue, 27 Jun 2017 17:55:23 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/488/survey_spec/ @@ -11410,7 +11325,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:24 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -11418,16 +11333,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.038s - Content-Length: - - '2' + - 0.033s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:24 GMT + recorded_at: Tue, 27 Jun 2017 17:55:23 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/488/survey_spec/ @@ -11449,7 +11364,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:24 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -11457,16 +11372,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.037s - Content-Length: - - '2' + - 0.033s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:24 GMT + recorded_at: Tue, 27 Jun 2017 17:55:24 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/486/survey_spec/ @@ -11488,7 +11403,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:24 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -11496,7 +11411,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s + - 0.034s Content-Length: - '2' Content-Type: @@ -11505,7 +11420,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:24 GMT + recorded_at: Tue, 27 Jun 2017 17:55:24 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/486/survey_spec/ @@ -11527,7 +11442,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:24 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -11535,16 +11450,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.037s - Content-Length: - - '2' + - 0.034s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:24 GMT + recorded_at: Tue, 27 Jun 2017 17:55:24 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/487/survey_spec/ @@ -11566,7 +11481,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:25 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -11574,16 +11489,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.041s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:25 GMT + recorded_at: Tue, 27 Jun 2017 17:55:24 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/487/survey_spec/ @@ -11605,7 +11520,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:25 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -11613,16 +11528,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.039s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:25 GMT + recorded_at: Tue, 27 Jun 2017 17:55:24 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/293/survey_spec/ @@ -11644,7 +11559,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:25 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -11652,7 +11567,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s + - 0.033s Content-Length: - '2' Content-Type: @@ -11661,7 +11576,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:25 GMT + recorded_at: Tue, 27 Jun 2017 17:55:24 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/293/survey_spec/ @@ -11683,7 +11598,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:25 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -11691,16 +11606,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.042s - Content-Length: - - '2' + - 0.035s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:25 GMT + recorded_at: Tue, 27 Jun 2017 17:55:25 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/243/survey_spec/ @@ -11722,7 +11637,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:25 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -11730,16 +11645,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.038s - Content-Length: - - '2' + - 0.034s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:25 GMT + recorded_at: Tue, 27 Jun 2017 17:55:25 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/243/survey_spec/ @@ -11761,7 +11676,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:25 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -11769,16 +11684,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.034s - Transfer-Encoding: - - chunked + - 0.033s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:26 GMT + recorded_at: Tue, 27 Jun 2017 17:55:25 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/?page=4 @@ -11800,7 +11715,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:26 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -11808,7 +11723,7 @@ http_interactions: Allow: - GET, POST, HEAD, OPTIONS X-Api-Time: - - 0.358s + - 0.336s Transfer-Encoding: - chunked Content-Type: @@ -11983,7 +11898,7 @@ http_interactions: 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 + recorded_at: Tue, 27 Jun 2017 17:55:25 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/244/survey_spec/ @@ -12005,7 +11920,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:26 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -12013,7 +11928,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.037s + - 0.040s Transfer-Encoding: - chunked Content-Type: @@ -12022,7 +11937,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:27 GMT + recorded_at: Tue, 27 Jun 2017 17:55:26 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/244/survey_spec/ @@ -12044,7 +11959,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:27 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -12052,16 +11967,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:27 GMT + recorded_at: Tue, 27 Jun 2017 17:55:26 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/228/survey_spec/ @@ -12083,7 +11998,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:27 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -12092,15 +12007,15 @@ http_interactions: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - 0.034s - Transfer-Encoding: - - chunked + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:27 GMT + recorded_at: Tue, 27 Jun 2017 17:55:26 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/228/survey_spec/ @@ -12122,7 +12037,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:27 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -12139,7 +12054,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:27 GMT + recorded_at: Tue, 27 Jun 2017 17:55:26 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/292/survey_spec/ @@ -12161,7 +12076,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:27 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -12169,7 +12084,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.033s Transfer-Encoding: - chunked Content-Type: @@ -12178,7 +12093,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:27 GMT + recorded_at: Tue, 27 Jun 2017 17:55:26 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/292/survey_spec/ @@ -12200,7 +12115,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:27 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -12217,7 +12132,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:27 GMT + recorded_at: Tue, 27 Jun 2017 17:55:27 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/180/survey_spec/ @@ -12239,7 +12154,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:27 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -12247,16 +12162,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.037s - Content-Length: - - '2' + - 0.034s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:28 GMT + recorded_at: Tue, 27 Jun 2017 17:55:27 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/180/survey_spec/ @@ -12278,7 +12193,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:28 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -12286,7 +12201,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -12295,7 +12210,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:28 GMT + recorded_at: Tue, 27 Jun 2017 17:55:27 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/410/survey_spec/ @@ -12317,7 +12232,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:28 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -12325,7 +12240,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.034s Content-Length: - '2' Content-Type: @@ -12334,7 +12249,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:28 GMT + recorded_at: Tue, 27 Jun 2017 17:55:27 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/410/survey_spec/ @@ -12356,7 +12271,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:28 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -12364,7 +12279,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.039s + - 0.034s Content-Length: - '2' Content-Type: @@ -12373,7 +12288,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:28 GMT + recorded_at: Tue, 27 Jun 2017 17:55:27 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/497/survey_spec/ @@ -12395,7 +12310,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:28 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -12403,16 +12318,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s - Content-Length: - - '2' + - 0.034s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:28 GMT + recorded_at: Tue, 27 Jun 2017 17:55:28 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/497/survey_spec/ @@ -12434,7 +12349,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:28 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -12442,7 +12357,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -12451,7 +12366,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:28 GMT + recorded_at: Tue, 27 Jun 2017 17:55:28 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/498/survey_spec/ @@ -12473,7 +12388,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:29 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -12481,16 +12396,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Transfer-Encoding: - - chunked + - 0.036s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:29 GMT + recorded_at: Tue, 27 Jun 2017 17:55:30 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/498/survey_spec/ @@ -12512,7 +12427,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:29 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -12529,7 +12444,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:29 GMT + recorded_at: Tue, 27 Jun 2017 17:55:30 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/286/survey_spec/ @@ -12551,7 +12466,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:29 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -12560,15 +12475,15 @@ http_interactions: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - 0.034s - Content-Length: - - '2' + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:29 GMT + recorded_at: Tue, 27 Jun 2017 17:55:30 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/286/survey_spec/ @@ -12590,7 +12505,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:29 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -12599,15 +12514,15 @@ http_interactions: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - 0.034s - Content-Length: - - '2' + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:29 GMT + recorded_at: Tue, 27 Jun 2017 17:55:30 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/287/survey_spec/ @@ -12629,7 +12544,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:29 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -12637,16 +12552,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Transfer-Encoding: - - chunked + - 0.036s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:29 GMT + recorded_at: Tue, 27 Jun 2017 17:55:30 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/287/survey_spec/ @@ -12668,7 +12583,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:29 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -12676,7 +12591,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.040s + - 0.033s Content-Length: - '2' Content-Type: @@ -12685,7 +12600,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:30 GMT + recorded_at: Tue, 27 Jun 2017 17:55:30 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/499/survey_spec/ @@ -12707,7 +12622,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:30 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -12715,7 +12630,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.034s + - 0.033s Transfer-Encoding: - chunked Content-Type: @@ -12724,7 +12639,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:30 GMT + recorded_at: Tue, 27 Jun 2017 17:55:31 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/499/survey_spec/ @@ -12746,7 +12661,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:30 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -12755,15 +12670,15 @@ http_interactions: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - 0.035s - Transfer-Encoding: - - chunked + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:30 GMT + recorded_at: Tue, 27 Jun 2017 17:55:31 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/360/survey_spec/ @@ -12785,7 +12700,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:30 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -12793,7 +12708,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.039s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -12802,7 +12717,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:30 GMT + recorded_at: Tue, 27 Jun 2017 17:55:31 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/360/survey_spec/ @@ -12824,7 +12739,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:30 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -12833,15 +12748,15 @@ http_interactions: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - 0.034s - Transfer-Encoding: - - chunked + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:30 GMT + recorded_at: Tue, 27 Jun 2017 17:55:31 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/343/survey_spec/ @@ -12863,7 +12778,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:31 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -12872,15 +12787,15 @@ http_interactions: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - 0.034s - Content-Length: - - '2' + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:31 GMT + recorded_at: Tue, 27 Jun 2017 17:55:31 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/343/survey_spec/ @@ -12902,7 +12817,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:31 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -12911,15 +12826,15 @@ http_interactions: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - 0.035s - Content-Length: - - '2' + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:31 GMT + recorded_at: Tue, 27 Jun 2017 17:55:31 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/226/survey_spec/ @@ -12941,7 +12856,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:31 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -12950,15 +12865,15 @@ http_interactions: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - 0.034s - Content-Length: - - '2' + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:31 GMT + recorded_at: Tue, 27 Jun 2017 17:55:32 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/226/survey_spec/ @@ -12980,7 +12895,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:31 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -12997,7 +12912,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:31 GMT + recorded_at: Tue, 27 Jun 2017 17:55:32 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/471/survey_spec/ @@ -13019,7 +12934,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:31 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -13036,7 +12951,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:31 GMT + recorded_at: Tue, 27 Jun 2017 17:55:32 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/471/survey_spec/ @@ -13058,7 +12973,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:31 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -13066,16 +12981,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Transfer-Encoding: - - chunked + - 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 + recorded_at: Tue, 27 Jun 2017 17:55:32 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/346/survey_spec/ @@ -13097,7 +13012,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:32 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -13105,7 +13020,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.034s + - 0.033s Transfer-Encoding: - chunked Content-Type: @@ -13114,7 +13029,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:32 GMT + recorded_at: Tue, 27 Jun 2017 17:55:32 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/346/survey_spec/ @@ -13136,7 +13051,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:32 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -13144,7 +13059,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.033s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -13153,7 +13068,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:32 GMT + recorded_at: Tue, 27 Jun 2017 17:55:32 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/436/survey_spec/ @@ -13175,7 +13090,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:32 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -13183,16 +13098,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.033s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:32 GMT + recorded_at: Tue, 27 Jun 2017 17:55:33 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/436/survey_spec/ @@ -13214,7 +13129,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:32 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -13223,15 +13138,15 @@ http_interactions: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - 0.033s - Transfer-Encoding: - - chunked + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:32 GMT + recorded_at: Tue, 27 Jun 2017 17:55:33 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/434/survey_spec/ @@ -13253,7 +13168,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:32 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -13261,7 +13176,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.041s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -13270,7 +13185,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:32 GMT + recorded_at: Tue, 27 Jun 2017 17:55:33 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/434/survey_spec/ @@ -13292,7 +13207,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:33 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -13300,7 +13215,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.040s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -13309,7 +13224,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:33 GMT + recorded_at: Tue, 27 Jun 2017 17:55:33 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/439/survey_spec/ @@ -13331,7 +13246,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:33 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -13348,7 +13263,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:33 GMT + recorded_at: Tue, 27 Jun 2017 17:55:33 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/439/survey_spec/ @@ -13370,7 +13285,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:33 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -13378,16 +13293,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.041s - Transfer-Encoding: - - chunked + - 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 + recorded_at: Tue, 27 Jun 2017 17:55:34 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/288/survey_spec/ @@ -13409,7 +13324,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:33 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -13417,16 +13332,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.038s - Transfer-Encoding: - - chunked + - 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 + recorded_at: Tue, 27 Jun 2017 17:55:34 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/288/survey_spec/ @@ -13448,7 +13363,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:33 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -13456,16 +13371,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.037s - Content-Length: - - '2' + - 0.034s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:33 GMT + recorded_at: Tue, 27 Jun 2017 17:55:34 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/345/survey_spec/ @@ -13487,7 +13402,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:33 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -13495,16 +13410,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.039s - Transfer-Encoding: - - chunked + - 0.033s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:33 GMT + recorded_at: Tue, 27 Jun 2017 17:55:34 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/345/survey_spec/ @@ -13526,7 +13441,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:34 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -13534,16 +13449,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.039s - Transfer-Encoding: - - chunked + - 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 + recorded_at: Tue, 27 Jun 2017 17:55:34 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/289/survey_spec/ @@ -13565,7 +13480,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:34 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -13573,7 +13488,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.034s Content-Length: - '2' Content-Type: @@ -13582,7 +13497,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:34 GMT + recorded_at: Tue, 27 Jun 2017 17:55:34 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/289/survey_spec/ @@ -13604,7 +13519,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:34 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -13612,7 +13527,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.040s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -13621,7 +13536,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:34 GMT + recorded_at: Tue, 27 Jun 2017 17:55:35 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/134/survey_spec/ @@ -13643,7 +13558,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:34 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -13652,15 +13567,15 @@ http_interactions: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - 0.034s - Content-Length: - - '2' + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:34 GMT + recorded_at: Tue, 27 Jun 2017 17:55:35 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/134/survey_spec/ @@ -13682,7 +13597,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:34 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -13690,7 +13605,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.038s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -13699,7 +13614,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:34 GMT + recorded_at: Tue, 27 Jun 2017 17:55:35 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/135/survey_spec/ @@ -13721,7 +13636,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:34 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -13729,16 +13644,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.040s - Transfer-Encoding: - - chunked + - 0.033s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:34 GMT + recorded_at: Tue, 27 Jun 2017 17:55:35 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/135/survey_spec/ @@ -13760,7 +13675,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:35 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -13768,7 +13683,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.033s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -13777,7 +13692,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:35 GMT + recorded_at: Tue, 27 Jun 2017 17:55:35 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/225/survey_spec/ @@ -13799,7 +13714,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:35 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -13807,7 +13722,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.040s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -13816,7 +13731,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:35 GMT + recorded_at: Tue, 27 Jun 2017 17:55:35 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/225/survey_spec/ @@ -13838,7 +13753,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:35 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -13846,16 +13761,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:35 GMT + recorded_at: Tue, 27 Jun 2017 17:55:36 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/303/survey_spec/ @@ -13877,7 +13792,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:35 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -13885,7 +13800,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -13894,7 +13809,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:35 GMT + recorded_at: Tue, 27 Jun 2017 17:55:36 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/303/survey_spec/ @@ -13916,7 +13831,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:35 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -13924,16 +13839,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:35 GMT + recorded_at: Tue, 27 Jun 2017 17:55:36 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/?page=5 @@ -13955,7 +13870,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:35 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -13963,7 +13878,7 @@ http_interactions: Allow: - GET, POST, HEAD, OPTIONS X-Api-Time: - - 0.326s + - 0.310s Transfer-Encoding: - chunked Content-Type: @@ -14103,7 +14018,7 @@ http_interactions: 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 + recorded_at: Tue, 27 Jun 2017 17:55:37 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/224/survey_spec/ @@ -14125,7 +14040,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:36 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -14142,7 +14057,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:36 GMT + recorded_at: Tue, 27 Jun 2017 17:55:37 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/224/survey_spec/ @@ -14164,7 +14079,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:36 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -14172,7 +14087,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.033s Content-Length: - '2' Content-Type: @@ -14181,7 +14096,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:36 GMT + recorded_at: Tue, 27 Jun 2017 17:55:37 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/411/survey_spec/ @@ -14203,7 +14118,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:36 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -14211,16 +14126,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:36 GMT + recorded_at: Tue, 27 Jun 2017 17:55:37 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/411/survey_spec/ @@ -14242,7 +14157,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:37 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -14250,7 +14165,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.034s + - 0.036s Transfer-Encoding: - chunked Content-Type: @@ -14259,7 +14174,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:37 GMT + recorded_at: Tue, 27 Jun 2017 17:55:37 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/501/survey_spec/ @@ -14281,7 +14196,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:37 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -14289,16 +14204,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.038s - Content-Length: - - '2' + - 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 + recorded_at: Tue, 27 Jun 2017 17:55:37 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/501/survey_spec/ @@ -14320,7 +14235,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:37 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -14328,7 +14243,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -14337,7 +14252,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:37 GMT + recorded_at: Tue, 27 Jun 2017 17:55:38 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/354/survey_spec/ @@ -14359,7 +14274,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:37 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -14367,16 +14282,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Content-Length: - - '2' + - 0.033s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:37 GMT + recorded_at: Tue, 27 Jun 2017 17:55:38 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/354/survey_spec/ @@ -14398,7 +14313,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:37 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -14406,7 +14321,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -14415,7 +14330,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:37 GMT + recorded_at: Tue, 27 Jun 2017 17:55:38 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/355/survey_spec/ @@ -14437,7 +14352,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:37 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -14445,16 +14360,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Content-Length: - - '2' + - 0.033s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:37 GMT + recorded_at: Tue, 27 Jun 2017 17:55:38 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/355/survey_spec/ @@ -14476,7 +14391,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:38 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -14493,7 +14408,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:38 GMT + recorded_at: Tue, 27 Jun 2017 17:55:38 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/342/survey_spec/ @@ -14515,7 +14430,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:38 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -14523,7 +14438,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -14532,7 +14447,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:38 GMT + recorded_at: Tue, 27 Jun 2017 17:55:38 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/342/survey_spec/ @@ -14554,7 +14469,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:38 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -14571,7 +14486,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:38 GMT + recorded_at: Tue, 27 Jun 2017 17:55:39 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/446/survey_spec/ @@ -14593,7 +14508,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:38 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -14601,16 +14516,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s - Content-Length: - - '2' + - 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 + recorded_at: Tue, 27 Jun 2017 17:55:39 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/446/survey_spec/ @@ -14632,7 +14547,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:38 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -14641,15 +14556,15 @@ http_interactions: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - 0.034s - Content-Length: - - '2' + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:38 GMT + recorded_at: Tue, 27 Jun 2017 17:55:39 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/447/survey_spec/ @@ -14671,7 +14586,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:38 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -14688,7 +14603,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:38 GMT + recorded_at: Tue, 27 Jun 2017 17:55:39 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/447/survey_spec/ @@ -14710,7 +14625,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:39 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -14727,7 +14642,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:39 GMT + recorded_at: Tue, 27 Jun 2017 17:55:39 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/483/survey_spec/ @@ -14749,7 +14664,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:39 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -14766,7 +14681,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:39 GMT + recorded_at: Tue, 27 Jun 2017 17:55:39 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/483/survey_spec/ @@ -14788,7 +14703,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:39 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -14796,16 +14711,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s - Transfer-Encoding: - - chunked + - 0.033s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:39 GMT + recorded_at: Tue, 27 Jun 2017 17:55:40 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/179/survey_spec/ @@ -14827,7 +14742,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:39 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -14835,7 +14750,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -14844,7 +14759,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:39 GMT + recorded_at: Tue, 27 Jun 2017 17:55:40 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/179/survey_spec/ @@ -14866,7 +14781,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:39 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -14874,7 +14789,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.039s + - 0.035s Transfer-Encoding: - chunked Content-Type: @@ -14883,7 +14798,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:39 GMT + recorded_at: Tue, 27 Jun 2017 17:55:40 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/275/survey_spec/ @@ -14905,7 +14820,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:39 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -14922,7 +14837,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:39 GMT + recorded_at: Tue, 27 Jun 2017 17:55:40 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/275/survey_spec/ @@ -14944,7 +14859,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:40 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -14961,7 +14876,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:40 GMT + recorded_at: Tue, 27 Jun 2017 17:55:40 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/332/survey_spec/ @@ -14983,7 +14898,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:40 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -14991,7 +14906,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.033s Transfer-Encoding: - chunked Content-Type: @@ -15000,7 +14915,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:40 GMT + recorded_at: Tue, 27 Jun 2017 17:55:40 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/332/survey_spec/ @@ -15022,7 +14937,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:40 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -15030,16 +14945,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.041s - Transfer-Encoding: - - chunked + - 0.034s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:40 GMT + recorded_at: Tue, 27 Jun 2017 17:55:40 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/270/survey_spec/ @@ -15061,7 +14976,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:40 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -15069,7 +14984,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -15078,7 +14993,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:40 GMT + recorded_at: Tue, 27 Jun 2017 17:55:41 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/270/survey_spec/ @@ -15100,7 +15015,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:40 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -15108,7 +15023,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -15117,7 +15032,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:40 GMT + recorded_at: Tue, 27 Jun 2017 17:55:41 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/274/survey_spec/ @@ -15139,7 +15054,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:40 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -15147,7 +15062,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.036s + - 0.034s Content-Length: - '2' Content-Type: @@ -15156,7 +15071,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:41 GMT + recorded_at: Tue, 27 Jun 2017 17:55:41 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/274/survey_spec/ @@ -15178,7 +15093,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:41 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -15186,7 +15101,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -15195,7 +15110,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:41 GMT + recorded_at: Tue, 27 Jun 2017 17:55:41 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/131/survey_spec/ @@ -15217,7 +15132,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:41 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -15225,7 +15140,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -15234,7 +15149,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:41 GMT + recorded_at: Tue, 27 Jun 2017 17:55:41 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/131/survey_spec/ @@ -15256,7 +15171,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:41 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -15264,7 +15179,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -15273,7 +15188,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:41 GMT + recorded_at: Tue, 27 Jun 2017 17:55:41 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/41/survey_spec/ @@ -15295,7 +15210,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:41 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -15303,7 +15218,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.034s Content-Length: - '2' Content-Type: @@ -15312,7 +15227,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:41 GMT + recorded_at: Tue, 27 Jun 2017 17:55:42 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/41/survey_spec/ @@ -15334,7 +15249,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:41 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -15351,7 +15266,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:41 GMT + recorded_at: Tue, 27 Jun 2017 17:55:42 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/126/survey_spec/ @@ -15373,7 +15288,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:41 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -15381,7 +15296,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.034s + - 0.033s Content-Length: - '2' Content-Type: @@ -15390,7 +15305,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:42 GMT + recorded_at: Tue, 27 Jun 2017 17:55:42 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/126/survey_spec/ @@ -15412,7 +15327,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:42 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -15420,7 +15335,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.035s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -15429,7 +15344,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:42 GMT + recorded_at: Tue, 27 Jun 2017 17:55:42 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/129/survey_spec/ @@ -15451,7 +15366,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:42 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -15459,7 +15374,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.061s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -15468,7 +15383,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:42 GMT + recorded_at: Tue, 27 Jun 2017 17:55:42 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/129/survey_spec/ @@ -15490,7 +15405,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:42 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -15498,7 +15413,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.049s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -15507,7 +15422,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:42 GMT + recorded_at: Tue, 27 Jun 2017 17:55:42 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/130/survey_spec/ @@ -15529,7 +15444,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:42 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -15537,7 +15452,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.052s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -15546,7 +15461,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:42 GMT + recorded_at: Tue, 27 Jun 2017 17:55:43 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/130/survey_spec/ @@ -15568,7 +15483,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:43 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -15576,7 +15491,7 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.055s + - 0.034s Transfer-Encoding: - chunked Content-Type: @@ -15585,7 +15500,7 @@ http_interactions: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:43 GMT + recorded_at: Tue, 27 Jun 2017 17:55:43 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/452/survey_spec/ @@ -15607,7 +15522,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:43 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -15615,16 +15530,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.034s - Content-Length: - - '2' + - 0.033s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:43 GMT + recorded_at: Tue, 27 Jun 2017 17:55:43 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/job_templates/452/survey_spec/ @@ -15646,7 +15561,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:43 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -15654,16 +15569,16 @@ http_interactions: Allow: - GET, POST, DELETE, HEAD, OPTIONS X-Api-Time: - - 0.034s - Content-Length: - - '2' + - 0.035s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "{}" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:43 GMT + recorded_at: Tue, 27 Jun 2017 17:55:43 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects @@ -15685,7 +15600,7 @@ http_interactions: message: MOVED PERMANENTLY headers: Date: - - Wed, 21 Jun 2017 19:23:43 GMT + - Tue, 27 Jun 2017 17:55:30 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Location: @@ -15698,7 +15613,7 @@ http_interactions: encoding: UTF-8 string: '' http_version: - recorded_at: Wed, 21 Jun 2017 19:23:43 GMT + recorded_at: Tue, 27 Jun 2017 17:55:43 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/ @@ -15720,7 +15635,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:44 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -15728,9 +15643,9 @@ http_interactions: Allow: - GET, POST, HEAD, OPTIONS X-Api-Time: - - 0.388s - Transfer-Encoding: - - chunked + - 0.483s + Content-Length: + - '57523' Content-Type: - application/json body: @@ -15883,7 +15798,7 @@ http_interactions: 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 + recorded_at: Tue, 27 Jun 2017 17:55:44 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/4/playbooks/ @@ -15905,7 +15820,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:44 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -15913,16 +15828,16 @@ http_interactions: Allow: - GET, HEAD, OPTIONS X-Api-Time: - - 0.031s - Content-Length: - - '19' + - 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:44 GMT + recorded_at: Tue, 27 Jun 2017 17:55:44 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/29/playbooks/ @@ -15944,7 +15859,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:44 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -15952,7 +15867,7 @@ http_interactions: Allow: - GET, HEAD, OPTIONS X-Api-Time: - - 0.046s + - 0.044s Transfer-Encoding: - chunked Content-Type: @@ -15961,7 +15876,7 @@ http_interactions: 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 + recorded_at: Tue, 27 Jun 2017 17:55:44 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/35/playbooks/ @@ -15983,7 +15898,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:45 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -15991,7 +15906,7 @@ http_interactions: Allow: - GET, HEAD, OPTIONS X-Api-Time: - - 0.037s + - 0.032s Transfer-Encoding: - chunked Content-Type: @@ -16000,7 +15915,7 @@ http_interactions: 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 + recorded_at: Tue, 27 Jun 2017 17:55:45 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/36/playbooks/ @@ -16022,7 +15937,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:45 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -16030,9 +15945,9 @@ http_interactions: Allow: - GET, HEAD, OPTIONS X-Api-Time: - - 2.959s - Content-Length: - - '22984' + - 1.986s + Transfer-Encoding: + - chunked Content-Type: - application/json body: @@ -16180,7 +16095,7 @@ http_interactions: - 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 + recorded_at: Tue, 27 Jun 2017 17:55:47 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/37/playbooks/ @@ -16202,7 +16117,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:48 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -16219,7 +16134,7 @@ http_interactions: encoding: UTF-8 string: '["hello_world.yml"]' http_version: - recorded_at: Wed, 21 Jun 2017 19:23:48 GMT + recorded_at: Tue, 27 Jun 2017 17:55:47 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/40/playbooks/ @@ -16241,7 +16156,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:48 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -16249,16 +16164,16 @@ http_interactions: Allow: - GET, HEAD, OPTIONS X-Api-Time: - - 0.035s - Content-Length: - - '190' + - 0.034s + Transfer-Encoding: + - chunked 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 + recorded_at: Tue, 27 Jun 2017 17:55:47 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/124/playbooks/ @@ -16280,7 +16195,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:48 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -16288,7 +16203,7 @@ http_interactions: Allow: - GET, HEAD, OPTIONS X-Api-Time: - - 0.034s + - 0.033s Content-Length: - '170' Content-Type: @@ -16297,7 +16212,7 @@ http_interactions: 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 + recorded_at: Tue, 27 Jun 2017 17:55:47 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/155/playbooks/ @@ -16319,7 +16234,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:48 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -16327,7 +16242,7 @@ http_interactions: Allow: - GET, HEAD, OPTIONS X-Api-Time: - - 0.038s + - 0.037s Transfer-Encoding: - chunked Content-Type: @@ -16336,7 +16251,7 @@ http_interactions: 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 + recorded_at: Tue, 27 Jun 2017 17:55:48 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/418/playbooks/ @@ -16358,7 +16273,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:49 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -16366,7 +16281,7 @@ http_interactions: Allow: - GET, HEAD, OPTIONS X-Api-Time: - - 0.032s + - 0.031s Content-Length: - '2' Content-Type: @@ -16375,7 +16290,7 @@ http_interactions: encoding: UTF-8 string: "[]" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:49 GMT + recorded_at: Tue, 27 Jun 2017 17:55:48 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/422/playbooks/ @@ -16397,7 +16312,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:49 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -16405,7 +16320,7 @@ http_interactions: Allow: - GET, HEAD, OPTIONS X-Api-Time: - - 0.151s + - 0.033s Transfer-Encoding: - chunked Content-Type: @@ -16414,7 +16329,7 @@ http_interactions: encoding: UTF-8 string: "[]" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:49 GMT + recorded_at: Tue, 27 Jun 2017 17:55:48 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/428/playbooks/ @@ -16436,7 +16351,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:49 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -16444,16 +16359,16 @@ http_interactions: Allow: - GET, HEAD, OPTIONS X-Api-Time: - - 0.033s - Content-Length: - - '103' + - 0.032s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: '["mk_sample_playbook.yaml","pkg_info.yaml","pkg_info_et_al.yaml","pkg_info_no_sleep.yaml","test1.yaml"]' http_version: - recorded_at: Wed, 21 Jun 2017 19:23:49 GMT + recorded_at: Tue, 27 Jun 2017 17:55:48 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/430/playbooks/ @@ -16475,7 +16390,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:49 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -16483,7 +16398,7 @@ http_interactions: Allow: - GET, HEAD, OPTIONS X-Api-Time: - - 1.136s + - 1.134s Content-Length: - '23207' Content-Type: @@ -16635,7 +16550,7 @@ http_interactions: - 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: Wed, 21 Jun 2017 19:23:51 GMT + recorded_at: Tue, 27 Jun 2017 17:55:50 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/432/playbooks/ @@ -16657,7 +16572,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:51 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -16674,7 +16589,7 @@ http_interactions: encoding: UTF-8 string: "[]" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:51 GMT + recorded_at: Tue, 27 Jun 2017 17:55:50 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/433/playbooks/ @@ -16696,7 +16611,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:51 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -16705,15 +16620,15 @@ http_interactions: - GET, HEAD, OPTIONS X-Api-Time: - 0.031s - Content-Length: - - '2' + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "[]" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:51 GMT + recorded_at: Tue, 27 Jun 2017 17:55:50 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/440/playbooks/ @@ -16735,7 +16650,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:51 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -16743,7 +16658,7 @@ http_interactions: Allow: - GET, HEAD, OPTIONS X-Api-Time: - - 0.032s + - 0.031s Transfer-Encoding: - chunked Content-Type: @@ -16752,7 +16667,7 @@ http_interactions: encoding: UTF-8 string: "[]" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:51 GMT + recorded_at: Tue, 27 Jun 2017 17:55:51 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/448/playbooks/ @@ -16774,7 +16689,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:51 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -16782,7 +16697,7 @@ http_interactions: Allow: - GET, HEAD, OPTIONS X-Api-Time: - - 0.115s + - 0.031s Transfer-Encoding: - chunked Content-Type: @@ -16791,7 +16706,7 @@ http_interactions: encoding: UTF-8 string: "[]" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:51 GMT + recorded_at: Tue, 27 Jun 2017 17:55:51 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/453/playbooks/ @@ -16813,7 +16728,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:51 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -16821,7 +16736,7 @@ http_interactions: Allow: - GET, HEAD, OPTIONS X-Api-Time: - - 0.504s + - 0.446s Transfer-Encoding: - chunked Content-Type: @@ -16973,7 +16888,7 @@ http_interactions: - 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: Wed, 21 Jun 2017 19:23:52 GMT + recorded_at: Tue, 27 Jun 2017 17:55:51 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/454/playbooks/ @@ -16995,7 +16910,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:52 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -17003,7 +16918,7 @@ http_interactions: Allow: - GET, HEAD, OPTIONS X-Api-Time: - - 1.274s + - 1.159s Content-Length: - '23404' Content-Type: @@ -17155,7 +17070,7 @@ http_interactions: - 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: Wed, 21 Jun 2017 19:23:54 GMT + recorded_at: Tue, 27 Jun 2017 17:55:53 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/455/playbooks/ @@ -17177,7 +17092,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:54 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -17185,7 +17100,7 @@ http_interactions: Allow: - GET, HEAD, OPTIONS X-Api-Time: - - 1.187s + - 1.164s Content-Length: - '23404' Content-Type: @@ -17337,7 +17252,7 @@ http_interactions: - 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: Wed, 21 Jun 2017 19:23:55 GMT + recorded_at: Tue, 27 Jun 2017 17:55:54 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/457/playbooks/ @@ -17359,7 +17274,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:55 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -17367,16 +17282,16 @@ http_interactions: Allow: - GET, HEAD, OPTIONS X-Api-Time: - - 0.035s - Transfer-Encoding: - - chunked + - 0.033s + Content-Length: + - '36' Content-Type: - application/json body: encoding: UTF-8 string: '["copy_file_example.yml","main.yml"]' http_version: - recorded_at: Wed, 21 Jun 2017 19:23:55 GMT + recorded_at: Tue, 27 Jun 2017 17:55:54 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/469/playbooks/ @@ -17398,7 +17313,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:55 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -17406,7 +17321,7 @@ http_interactions: Allow: - GET, HEAD, OPTIONS X-Api-Time: - - 0.445s + - 0.442s Transfer-Encoding: - chunked Content-Type: @@ -17558,7 +17473,7 @@ http_interactions: - 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: Wed, 21 Jun 2017 19:23:56 GMT + recorded_at: Tue, 27 Jun 2017 17:55:55 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/472/playbooks/ @@ -17580,7 +17495,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:56 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -17588,16 +17503,16 @@ http_interactions: Allow: - GET, HEAD, OPTIONS X-Api-Time: - - 0.180s - Content-Length: - - '3806' + - 0.174s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 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: Wed, 21 Jun 2017 19:23:56 GMT + recorded_at: Tue, 27 Jun 2017 17:55:55 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/473/playbooks/ @@ -17619,7 +17534,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:56 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -17627,16 +17542,16 @@ http_interactions: Allow: - GET, HEAD, OPTIONS X-Api-Time: - - 0.030s - Transfer-Encoding: - - chunked + - 0.031s + Content-Length: + - '2' Content-Type: - application/json body: encoding: UTF-8 string: "[]" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:56 GMT + recorded_at: Tue, 27 Jun 2017 17:55:55 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/478/playbooks/ @@ -17658,7 +17573,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:56 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -17666,16 +17581,16 @@ http_interactions: Allow: - GET, HEAD, OPTIONS X-Api-Time: - - 0.059s - Content-Length: - - '5490' + - 0.058s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 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: Wed, 21 Jun 2017 19:23:57 GMT + recorded_at: Tue, 27 Jun 2017 17:55:56 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/484/playbooks/ @@ -17697,7 +17612,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:57 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -17705,7 +17620,7 @@ http_interactions: Allow: - GET, HEAD, OPTIONS X-Api-Time: - - 0.047s + - 0.045s Content-Length: - '2050' Content-Type: @@ -17714,7 +17629,7 @@ http_interactions: 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:57 GMT + recorded_at: Tue, 27 Jun 2017 17:55:56 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/?page=2 @@ -17736,7 +17651,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:57 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -17744,9 +17659,9 @@ http_interactions: Allow: - GET, POST, HEAD, OPTIONS X-Api-Time: - - 0.145s - Content-Length: - - '16393' + - 0.144s + Transfer-Encoding: + - chunked Content-Type: - application/json body: @@ -17778,14 +17693,14 @@ http_interactions: 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 + 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":597,"type":"project","url":"/api/v1/projects/597/","related":{"created_by":"/api/v1/users/1/","credential":"/api/v1/credentials/161/","last_job":"/api/v1/project_updates/951/","notification_templates_error":"/api/v1/projects/597/notification_templates_error/","notification_templates_success":"/api/v1/projects/597/notification_templates_success/","object_roles":"/api/v1/projects/597/object_roles/","notification_templates_any":"/api/v1/projects/597/notification_templates_any/","project_updates":"/api/v1/projects/597/project_updates/","update":"/api/v1/projects/597/update/","access_list":"/api/v1/projects/597/access_list/","playbooks":"/api/v1/projects/597/playbooks/","schedules":"/api/v1/projects/597/schedules/","teams":"/api/v1/projects/597/teams/","activity_stream":"/api/v1/projects/597/activity_stream/","organization":"/api/v1/organizations/43/","last_update":"/api/v1/project_updates/951/"},"summary_fields":{"last_job":{"id":951,"name":"hello_repo","description":"","finished":"2017-06-27T17:52:30.622Z","status":"successful","failed":false},"last_update":{"id":951,"name":"hello_repo","description":"","status":"successful","failed":false},"credential":{"id":161,"name":"hello_scm_cred","description":"","kind":"scm","cloud":false},"organization":{"id":43,"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"}]}' + manage all aspects of the project","id":2962,"name":"Admin"},"use_role":{"description":"Can + use the project in a job template","id":2964,"name":"Use"},"update_role":{"description":"May + update project or inventory or group using the configured source update system","id":2965,"name":"Update"},"read_role":{"description":"May + view settings for the project","id":2963,"name":"Read"}}},"created":"2017-06-27T17:52:22.184Z","modified":"2017-06-27T17:52:22.353Z","name":"hello_repo","description":"","local_path":"_597__hello_repo","scm_type":"git","scm_url":"https://github.com/jameswnl/ansible-examples","scm_branch":"","scm_clean":false,"scm_delete_on_update":false,"credential":161,"last_job_run":"2017-06-27T17:52:30.622324Z","last_job_failed":false,"has_schedules":false,"next_job_run":null,"status":"successful","organization":43,"scm_delete_on_next_update":false,"scm_update_on_launch":false,"scm_update_cache_timeout":0,"last_update_failed":false,"last_updated":"2017-06-27T17:52:30.622324Z"}]}' http_version: - recorded_at: Wed, 21 Jun 2017 19:23:57 GMT + recorded_at: Tue, 27 Jun 2017 17:55:56 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/489/playbooks/ @@ -17807,7 +17722,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:57 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -17816,15 +17731,15 @@ http_interactions: - GET, HEAD, OPTIONS X-Api-Time: - 0.031s - Content-Length: - - '2' + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 string: "[]" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:57 GMT + recorded_at: Tue, 27 Jun 2017 17:55:56 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/490/playbooks/ @@ -17846,7 +17761,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:57 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -17854,7 +17769,7 @@ http_interactions: Allow: - GET, HEAD, OPTIONS X-Api-Time: - - 0.046s + - 0.045s Transfer-Encoding: - chunked Content-Type: @@ -17863,7 +17778,7 @@ http_interactions: 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:57 GMT + recorded_at: Tue, 27 Jun 2017 17:55:57 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/491/playbooks/ @@ -17885,7 +17800,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:58 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -17902,7 +17817,7 @@ http_interactions: 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:58 GMT + recorded_at: Tue, 27 Jun 2017 17:55:57 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/506/playbooks/ @@ -17924,7 +17839,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:58 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -17932,7 +17847,7 @@ http_interactions: Allow: - GET, HEAD, OPTIONS X-Api-Time: - - 0.031s + - 0.030s Transfer-Encoding: - chunked Content-Type: @@ -17941,7 +17856,7 @@ http_interactions: encoding: UTF-8 string: "[]" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:58 GMT + recorded_at: Tue, 27 Jun 2017 17:55:57 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/507/playbooks/ @@ -17963,7 +17878,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:58 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -17971,7 +17886,7 @@ http_interactions: Allow: - GET, HEAD, OPTIONS X-Api-Time: - - 0.032s + - 0.031s Transfer-Encoding: - chunked Content-Type: @@ -17980,7 +17895,7 @@ http_interactions: encoding: UTF-8 string: "[]" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:58 GMT + recorded_at: Tue, 27 Jun 2017 17:55:57 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/projects/508/playbooks/ @@ -18002,7 +17917,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:58 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -18010,7 +17925,7 @@ http_interactions: Allow: - GET, HEAD, OPTIONS X-Api-Time: - - 0.031s + - 0.030s Transfer-Encoding: - chunked Content-Type: @@ -18019,10 +17934,10 @@ http_interactions: encoding: UTF-8 string: "[]" http_version: - recorded_at: Wed, 21 Jun 2017 19:23:58 GMT + recorded_at: Tue, 27 Jun 2017 17:55:57 GMT - request: method: get - uri: https://dev-ansible-tower3.example.com/api/v1/projects/570/playbooks/ + uri: https://dev-ansible-tower3.example.com/api/v1/projects/597/playbooks/ body: encoding: US-ASCII string: '' @@ -18041,7 +17956,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:58 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -18049,7 +17964,7 @@ http_interactions: Allow: - GET, HEAD, OPTIONS X-Api-Time: - - 0.045s + - 0.044s Transfer-Encoding: - chunked Content-Type: @@ -18058,7 +17973,7 @@ http_interactions: encoding: UTF-8 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: Wed, 21 Jun 2017 19:23:58 GMT + recorded_at: Tue, 27 Jun 2017 17:55:57 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/credentials @@ -18080,7 +17995,7 @@ http_interactions: message: MOVED PERMANENTLY headers: Date: - - Wed, 21 Jun 2017 19:23:58 GMT + - Tue, 27 Jun 2017 17:55:45 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 Location: @@ -18093,7 +18008,7 @@ http_interactions: encoding: UTF-8 string: '' http_version: - recorded_at: Wed, 21 Jun 2017 19:23:58 GMT + recorded_at: Tue, 27 Jun 2017 17:55:58 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/credentials/ @@ -18115,7 +18030,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:59 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -18123,14 +18038,14 @@ http_interactions: Allow: - GET, POST, HEAD, OPTIONS X-Api-Time: - - 0.340s - Content-Length: - - '37006' + - 0.330s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 - 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 + string: '{"count":54,"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 @@ -18141,11 +18056,11 @@ http_interactions: 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 + 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":164,"type":"credential","url":"/api/v1/credentials/164/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/43/","owner_teams":"/api/v1/credentials/164/owner_teams/","owner_users":"/api/v1/credentials/164/owner_users/","activity_stream":"/api/v1/credentials/164/activity_stream/","access_list":"/api/v1/credentials/164/access_list/","object_roles":"/api/v1/credentials/164/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":43,"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 + manage all aspects of the credential","id":2939,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":2941,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":2940,"name":"Read"}},"owners":[]},"created":"2017-06-27T17:52:04.746Z","modified":"2017-06-27T17:52:04.838Z","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 @@ -18157,15 +18072,27 @@ http_interactions: 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 + ","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":140,"type":"credential","url":"/api/v1/credentials/140/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","owner_teams":"/api/v1/credentials/140/owner_teams/","owner_users":"/api/v1/credentials/140/owner_users/","activity_stream":"/api/v1/credentials/140/activity_stream/","access_list":"/api/v1/credentials/140/access_list/","object_roles":"/api/v1/credentials/140/object_roles/","user":"/api/v1/users/1/"},"summary_fields":{"host":{},"project":{},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":2840,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":2842,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":2841,"name":"Read"}},"owners":[{"url":"/api/v1/users/1/","description":" + ","type":"user","id":1,"name":"admin"}]},"created":"2017-06-23T20:07:18.792Z","modified":"2017-06-23T20:17:50.258Z","name":"azure_cred","description":"","kind":"azure_rm","cloud":true,"host":"","username":"jwong","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"sub_id_jw","tenant":"ten_id_jw","secret":"","client":"cli_id_jw","authorize":false,"authorize_password":""},{"id":168,"type":"credential","url":"/api/v1/credentials/168/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/43/","owner_teams":"/api/v1/credentials/168/owner_teams/","owner_users":"/api/v1/credentials/168/owner_users/","activity_stream":"/api/v1/credentials/168/activity_stream/","access_list":"/api/v1/credentials/168/access_list/","object_roles":"/api/v1/credentials/168/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":43,"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":2951,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":2953,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":2952,"name":"Read"}},"owners":[]},"created":"2017-06-27T17:52:14.032Z","modified":"2017-06-27T17:52:14.137Z","name":"hello_azure_cred","description":"","kind":"azure_rm","cloud":true,"host":"","username":"admin","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"sub_id","tenant":"ten_id","secret":"$encrypted$","client":"cli_id","authorize":false,"authorize_password":""},{"id":166,"type":"credential","url":"/api/v1/credentials/166/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/43/","owner_teams":"/api/v1/credentials/166/owner_teams/","owner_users":"/api/v1/credentials/166/owner_users/","activity_stream":"/api/v1/credentials/166/activity_stream/","access_list":"/api/v1/credentials/166/access_list/","object_roles":"/api/v1/credentials/166/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":43,"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":2945,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":2947,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":2946,"name":"Read"}},"owners":[]},"created":"2017-06-27T17:52:08.377Z","modified":"2017-06-27T17:52:08.480Z","name":"hello_gce_cred","description":"","kind":"gce","cloud":true,"host":"","username":"hello_gce@gce.com","password":"","security_token":"","project":"squeamish-ossifrage-123","domain":"","ssh_key_data":"$encrypted$","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":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 + 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":163,"type":"credential","url":"/api/v1/credentials/163/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/43/","owner_teams":"/api/v1/credentials/163/owner_teams/","owner_users":"/api/v1/credentials/163/owner_users/","activity_stream":"/api/v1/credentials/163/activity_stream/","access_list":"/api/v1/credentials/163/access_list/","object_roles":"/api/v1/credentials/163/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":43,"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":2936,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":2938,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":2937,"name":"Read"}},"owners":[]},"created":"2017-06-27T17:52:03.023Z","modified":"2017-06-27T17:52:03.131Z","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":" @@ -18181,57 +18108,44 @@ http_interactions: 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 + 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":165,"type":"credential","url":"/api/v1/credentials/165/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/43/","owner_teams":"/api/v1/credentials/165/owner_teams/","owner_users":"/api/v1/credentials/165/owner_users/","activity_stream":"/api/v1/credentials/165/activity_stream/","access_list":"/api/v1/credentials/165/access_list/","object_roles":"/api/v1/credentials/165/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":43,"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":2942,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":2944,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":2943,"name":"Read"}},"owners":[]},"created":"2017-06-27T17:52:06.204Z","modified":"2017-06-27T17:52:06.313Z","name":"hello_openstack_cred","description":"","kind":"openstack","cloud":true,"host":"openstack.com","username":"hello_rack","password":"$encrypted$","security_token":"","project":"hello_rack","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":167,"type":"credential","url":"/api/v1/credentials/167/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/43/","owner_teams":"/api/v1/credentials/167/owner_teams/","owner_users":"/api/v1/credentials/167/owner_users/","activity_stream":"/api/v1/credentials/167/activity_stream/","access_list":"/api/v1/credentials/167/access_list/","object_roles":"/api/v1/credentials/167/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":43,"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":2948,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":2950,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":2949,"name":"Read"}},"owners":[]},"created":"2017-06-27T17:52:11.843Z","modified":"2017-06-27T17:52:11.944Z","name":"hello_rax_cred","description":"","kind":"rax","cloud":true,"host":"","username":"admin","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":17,"type":"credential","url":"/api/v1/credentials/17/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","owner_teams":"/api/v1/credentials/17/owner_teams/","owner_users":"/api/v1/credentials/17/owner_users/","activity_stream":"/api/v1/credentials/17/activity_stream/","access_list":"/api/v1/credentials/17/access_list/","object_roles":"/api/v1/credentials/17/object_roles/","user":"/api/v1/users/1/"},"summary_fields":{"host":{},"project":{},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can manage all aspects of the credential","id":1170,"name":"Admin"},"use_role":{"description":"Can use the credential in a job template","id":1172,"name":"Use"},"read_role":{"description":"May view settings for the credential","id":1171,"name":"Read"}},"owners":[{"url":"/api/v1/users/1/","description":" ","type":"user","id":1,"name":"admin"}]},"created":"2017-03-17T14:29:00.374Z","modified":"2017-03-17T14:29:00.450Z","name":"Rakespace - Fake","description":"","kind":"rax","cloud":true,"host":"","username":"no_valid","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":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 + 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":169,"type":"credential","url":"/api/v1/credentials/169/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/43/","owner_teams":"/api/v1/credentials/169/owner_teams/","owner_users":"/api/v1/credentials/169/owner_users/","activity_stream":"/api/v1/credentials/169/activity_stream/","access_list":"/api/v1/credentials/169/access_list/","object_roles":"/api/v1/credentials/169/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":43,"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":2954,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":2956,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":2955,"name":"Read"}},"owners":[]},"created":"2017-06-27T17:52:16.141Z","modified":"2017-06-27T17:52:16.260Z","name":"hello_sat_cred","description":"","kind":"satellite6","cloud":true,"host":"s1.sat.com","username":"admin","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":141,"type":"credential","url":"/api/v1/credentials/141/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","owner_teams":"/api/v1/credentials/141/owner_teams/","owner_users":"/api/v1/credentials/141/owner_users/","activity_stream":"/api/v1/credentials/141/activity_stream/","access_list":"/api/v1/credentials/141/access_list/","object_roles":"/api/v1/credentials/141/object_roles/","user":"/api/v1/users/1/"},"summary_fields":{"host":{},"project":{},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can + manage all aspects of the credential","id":2843,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":2845,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":2844,"name":"Read"}},"owners":[{"url":"/api/v1/users/1/","description":" + ","type":"user","id":1,"name":"admin"}]},"created":"2017-06-23T20:44:51.979Z","modified":"2017-06-23T20:44:52.080Z","name":"sat6_cred","description":"","kind":"satellite6","cloud":true,"host":"sat.example.com","username":"jwong","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":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 + 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":161,"type":"credential","url":"/api/v1/credentials/161/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/43/","owner_teams":"/api/v1/credentials/161/owner_teams/","owner_users":"/api/v1/credentials/161/owner_users/","activity_stream":"/api/v1/credentials/161/activity_stream/","access_list":"/api/v1/credentials/161/access_list/","object_roles":"/api/v1/credentials/161/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":43,"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":2930,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":2932,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":2931,"name":"Read"}},"owners":[]},"created":"2017-06-27T17:52:00.123Z","modified":"2017-06-27T17:52:00.229Z","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":""}]}' + 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":""}]}' http_version: - recorded_at: Wed, 21 Jun 2017 19:23:59 GMT + recorded_at: Tue, 27 Jun 2017 17:55:58 GMT - request: method: get uri: https://dev-ansible-tower3.example.com/api/v1/credentials/?page=2 @@ -18253,7 +18167,7 @@ http_interactions: message: OK headers: Date: - - Wed, 21 Jun 2017 19:23:59 GMT + - Tue, 27 Jun 2017 17:55: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: @@ -18261,14 +18175,43 @@ http_interactions: Allow: - GET, POST, HEAD, OPTIONS X-Api-Time: - - 0.312s - Content-Length: - - '32383' + - 0.333s + Transfer-Encoding: + - chunked Content-Type: - application/json body: encoding: UTF-8 - 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 + string: '{"count":54,"next":"/api/v1/credentials/?page=3","previous":"/api/v1/credentials/?page=1","results":[{"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":162,"type":"credential","url":"/api/v1/credentials/162/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","organization":"/api/v1/organizations/43/","owner_teams":"/api/v1/credentials/162/owner_teams/","owner_users":"/api/v1/credentials/162/owner_users/","activity_stream":"/api/v1/credentials/162/activity_stream/","access_list":"/api/v1/credentials/162/access_list/","object_roles":"/api/v1/credentials/162/object_roles/"},"summary_fields":{"host":{},"project":{},"organization":{"id":43,"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":2933,"name":"Admin"},"use_role":{"description":"Can + use the credential in a job template","id":2935,"name":"Use"},"read_role":{"description":"May + view settings for the credential","id":2934,"name":"Read"}},"owners":[]},"created":"2017-06-27T17:52:01.545Z","modified":"2017-06-27T17:52:01.649Z","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":""},{"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 @@ -18318,26 +18261,65 @@ http_interactions: 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 + ","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":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 + ","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":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":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 + ","type":"user","id":1,"name":"admin"}]},"created":"2016-08-30T22:41:59.056Z","modified":"2016-08-31T16:59:02.652Z","name":"dev-vc60","description":"","kind":"vmware","cloud":true,"host":"dev-vc60.example.com","username":"MiqAnsibleUser@vsphere.local","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""}]}' + http_version: + recorded_at: Tue, 27 Jun 2017 17:55:59 GMT +- request: + method: get + uri: https://dev-ansible-tower3.example.com/api/v1/credentials/?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: + - Tue, 27 Jun 2017 17:55: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.088s + Content-Length: + - '6116' + Content-Type: + - application/json + body: + encoding: UTF-8 + string: '{"count":54,"next":null,"previous":"/api/v1/credentials/?page=2","results":[{"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 + view settings for the credential","id":2097,"name":"Read"}},"owners":[]},"created":"2017-06-19T19:41:29.074Z","modified":"2017-06-19T19:41:29.178Z","name":"jwong-vc","description":"","kind":"vmware","cloud":true,"host":"jwong-vc60.example.com","username":"administrator@vsphere.local","password":"$encrypted$","security_token":"","project":"","domain":"","ssh_key_data":"","ssh_key_unlock":"","become_method":"","become_username":"","become_password":"","vault_password":"","subscription":"","tenant":"","secret":"","client":"","authorize":false,"authorize_password":""},{"id":16,"type":"credential","url":"/api/v1/credentials/16/","related":{"created_by":"/api/v1/users/1/","modified_by":"/api/v1/users/1/","owner_teams":"/api/v1/credentials/16/owner_teams/","owner_users":"/api/v1/credentials/16/owner_users/","activity_stream":"/api/v1/credentials/16/activity_stream/","access_list":"/api/v1/credentials/16/access_list/","object_roles":"/api/v1/credentials/16/object_roles/","user":"/api/v1/users/1/"},"summary_fields":{"host":{},"project":{},"created_by":{"id":1,"username":"admin","first_name":"","last_name":""},"modified_by":{"id":1,"username":"admin","first_name":"","last_name":""},"object_roles":{"admin_role":{"description":"Can manage all aspects of the credential","id":894,"name":"Admin"},"use_role":{"description":"Can use the credential in a job template","id":896,"name":"Use"},"read_role":{"description":"May view settings for the credential","id":895,"name":"Read"}},"owners":[{"url":"/api/v1/users/1/","description":" @@ -18352,5 +18334,5 @@ http_interactions: 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: Wed, 21 Jun 2017 19:24:00 GMT + recorded_at: Tue, 27 Jun 2017 17:55:59 GMT recorded_with: VCR 3.0.3 diff --git a/spec/vcr_cassettes/manageiq/providers/ansible_tower/automation_manager/refresher_v2.yml b/spec/vcr_cassettes/manageiq/providers/ansible_tower/automation_manager/refresher_v2.yml index 9b75de80..fcf91bf9 100644 --- a/spec/vcr_cassettes/manageiq/providers/ansible_tower/automation_manager/refresher_v2.yml +++ b/spec/vcr_cassettes/manageiq/providers/ansible_tower/automation_manager/refresher_v2.yml @@ -9529,7 +9529,7 @@ http_interactions: "", "last_name": ""}}, "created": "2015-12-17T16:55:29.495Z", "modified": "2015-12-17T21:27:48.511Z", "name": "Openstack", "description": "RHOS in NC", "user": 2, "team": null, "kind": "openstack", "cloud": true, "host": "http://10.8.96.4:5000/v2.0", - "username": "admin", "password": "$encrypted$", "security_token": "", "project": + "username": "admin", "password": "$encrypted$", "security_token": "", "domain": "d.com", "project": "admin", "ssh_key_data": "", "ssh_key_unlock": "", "become_method": "", "become_username": "", "become_password": "", "vault_password": ""}, {"id": 3, "type": "credential", "url": "/api/v1/credentials/3/", "related": {"created_by": "/api/v1/users/1/",