From 7a3873d6f0a1b6d7f16193eb403ab6c4688e8451 Mon Sep 17 00:00:00 2001 From: Rodrigo Estebanez Date: Tue, 20 Aug 2013 13:55:32 +0200 Subject: [PATCH] vm and vapp life cycle tests --- lib/fog/vcloudng/compute.rb | 9 + tests/vcloudng/models/compute/helper.rb | 18 + .../models/compute/vapp_life_cycle_tests.rb | 94 + tests/vcloudng/models/compute/vms_tests.rb | 57 +- tests/vcloudng/models/reduced_vcr_requests.rb | 27 + .../models/tools/reduced_vcr_requests.rb | 27 + .../vapp_life_cycle_tests_rb.yml | 6094 +++++++++++++++++ tests/vcloudng/vcr_cassettes/vms_tests_rb.yml | 824 ++- 8 files changed, 6878 insertions(+), 272 deletions(-) create mode 100644 tests/vcloudng/models/compute/vapp_life_cycle_tests.rb create mode 100755 tests/vcloudng/models/reduced_vcr_requests.rb create mode 100755 tests/vcloudng/models/tools/reduced_vcr_requests.rb create mode 100644 tests/vcloudng/vcr_cassettes/vapp_life_cycle_tests_rb.yml diff --git a/lib/fog/vcloudng/compute.rb b/lib/fog/vcloudng/compute.rb index 70a17556f..4b44fc54b 100644 --- a/lib/fog/vcloudng/compute.rb +++ b/lib/fog/vcloudng/compute.rb @@ -125,6 +125,15 @@ module Fog end end end + + # it adds an attr_loaded? method to know if the value has been loaded yet or not: ie description_loaded? + def make_attr_loaded_method(attr) + self.class.instance_eval do + define_method("#{attr}_loaded?") do + attributes[attr] != NonLoaded + end + end + end def inspect @inspecting = true diff --git a/tests/vcloudng/models/compute/helper.rb b/tests/vcloudng/models/compute/helper.rb index 1881e3985..6770d3761 100644 --- a/tests/vcloudng/models/compute/helper.rb +++ b/tests/vcloudng/models/compute/helper.rb @@ -6,6 +6,10 @@ VCR.configure do |c| c.hook_into :webmock end +def boolean?(item) + [TrueClass, FalseClass].include?(item.class) +end + def vcloudng @vcloudng ||= Fog::Compute::Vcloudng.new(vcloudng_username: "#{ENV['IMEDIDATA_COM_USERNAME']}@devops", vcloudng_password: ENV['IMEDIDATA_COM_PASSWORD'], @@ -48,4 +52,18 @@ end def vapp vapps.detect {|vapp| vapp.vms.size >= 1 } +end + + +def the_network + @network ||= organization.networks.get_by_name(NETWORK_NAME) +end + +def the_catalog + @catalog ||= organization.catalogs.get_by_name(CATALOG_NAME) +end + +def the_catalog_item + return nil unless the_catalog + @catalog_item ||= the_catalog.catalog_items.get_by_name(CATALOG_ITEM_NAME) end \ No newline at end of file diff --git a/tests/vcloudng/models/compute/vapp_life_cycle_tests.rb b/tests/vcloudng/models/compute/vapp_life_cycle_tests.rb new file mode 100644 index 000000000..be38606e1 --- /dev/null +++ b/tests/vcloudng/models/compute/vapp_life_cycle_tests.rb @@ -0,0 +1,94 @@ +VAPP_NAME = "shindo02" +NETWORK_NAME = "DevOps - Dev Network Connection" +NETWORK_MODE = "POOL" +CATALOG_NAME = "Public VM Templates" +CATALOG_ITEM_NAME = "DEVWEB" +TAGS = { company: "acme", environment: "testing" } + + +VCR.use_cassette(File.basename(__FILE__)) do + + Shindo.tests("Compute::Vcloudng | vapp", ['creation']) do + pending if Fog.mocking? + tests("#it creates a vApp from a catalog item").returns(true){ the_catalog_item.instantiate(VAPP_NAME, {network_id: the_network.id, network_name: NETWORK_NAME}) } + vapp = vapps.get_by_name(VAPP_NAME) + tests("#Finds the just created vApp").returns(VAPP_NAME) { vapp.name } + tests("#it has one vm").returns(1) { vapp.vms.size} + tests("Compute::Vcloudng | vm", ['configuration']) do + vm = vapp.vms.first + tests("Compute::Vcloudng | vm", ['network']) do + network = vm.network + network.network = NETWORK_NAME + network.is_connected = true + network.ip_address_allocation_mode = NETWORK_MODE + tests("save network changes").returns(true){ network.save } + network.reload + tests("#network").returns(NETWORK_NAME) { network.network } + tests("#is_connected").returns(true) { network.is_connected } + tests("#ip_address_allocation_mode").returns(NETWORK_MODE) { network.ip_address_allocation_mode } + end + + tests("Compute::Vcloudng | vm", ['customization']) do + customization = vm.customization + customization.script = 'this is the user data' + customization.enabled = true + tests("save customization changes").returns(true){ customization.save } + tests("#script").returns('this is the user data') { customization.script } + tests("#enabled").returns(true) { customization.enabled } + end + + tests("Compute::Vcloudng | vm", ['doble the disk size']) do + disk = vm.disks.get_by_name('Hard disk 1') + tests("#disk_size").returns(Fixnum) { disk.capacity.class} + new_size = disk.capacity * 2 + disk.capacity = new_size + disk.reload + tests("#disk_size is now doubled").returns(new_size) { disk.capacity } + end + + tests("Compute::Vcloudng | vm", ['add a new disk']) do + tests("hard disk 2 doesn't exist").returns(nil) { vm.disks.get_by_name('Hard disk 2') } + tests("#create").returns(true) { vm.disks.create(1024) } + tests("hard disk 2 exists").returns(1024) { vm.disks.get_by_name('Hard disk 2').capacity } + tests("delete disk 2").returns(true) { vm.disks.get_by_name('Hard disk 2').destroy } + tests("hard disk 2 doesn't exist anymore").returns(nil) { vm.disks.get_by_name('Hard disk 2') } + end + + tests("Compute::Vcloudng | vm", ['doble the memory size']) do + tests("#memory").returns(Fixnum) { vm.memory.class} + new_size = vm.memory * 2 + vm.memory = new_size + vm.reload + tests("#memory is now doubled").returns(new_size) { vm.memory } + end + + tests("Compute::Vcloudng | vm", ['doble the cpu size']) do + tests("#cpu").returns(Fixnum) { vm.cpu.class} + new_size = vm.cpu * 2 + vm.cpu = new_size + vm.reload + tests("#memory is now doubled").returns(new_size) { vm.cpu } + end + + tests("Compute::Vcloudng | vm", ['tags']) do + TAGS.each_pair do |k,v| + tests('create tag').returns(true) {vm.tags.create(k, v)} + end + tests('there are two tags').returns(2){ vm.tags.size } + tests('#get_by_name').returns("acme"){ vm.tags.get_by_name('company').value } + tests('#get_by_name').returns("testing"){ vm.tags.get_by_name('environment').value } + tests('delete company').returns(true){ vm.tags.get_by_name('company').destroy } + tests("company doesn't exists anymore").returns(nil){ vm.tags.get_by_name('company') } + tests('there is only one tag').returns(1){ vm.tags.size } + end + + tests("Compute::Vcloudng | vm", ['power on']) do + tests('#vm is off').returns("off"){ vm.status } + tests('#power_on').returns(true){ vm.power_on } + vm.reload + tests('#vm is on').returns("on"){ vm.status } + end + + end + end +end \ No newline at end of file diff --git a/tests/vcloudng/models/compute/vms_tests.rb b/tests/vcloudng/models/compute/vms_tests.rb index de2edb10f..1a69bd2ff 100644 --- a/tests/vcloudng/models/compute/vms_tests.rb +++ b/tests/vcloudng/models/compute/vms_tests.rb @@ -12,6 +12,7 @@ VCR.use_cassette(File.basename(__FILE__)) do vm = vms.first tests("Compute::Vcloudng | vm") do + tests("#model").returns(Fog::Compute::Vcloudng::Vm){vm.class} tests("#id").returns(String){ vm.id.class } tests("#name").returns(String){ vm.name.class } tests("#href").returns(String){ vm.href.class } @@ -25,10 +26,64 @@ VCR.use_cassette(File.basename(__FILE__)) do tests("#hard_disks").returns(Array){ vm.hard_disks.class } end - tests("Compute::Vcloudng | vm", ['get']) do tests("#get_by_name").returns(vm.name) { vms.get_by_name(vm.name).name } tests("#get").returns(vm.id) { vms.get(vm.id).id } end + + tests("Compute::Vcloudng | vm | disks") do + tests("#collection").returns(Fog::Compute::Vcloudng::Disks){ vm.disks.class } + tests("#get_by_name").returns(Fog::Compute::Vcloudng::Disk) { vm.disks.get_by_name("Hard disk 1").class } + + hard_disk = vm.disks.get_by_name("Hard disk 1") + tests("#id").returns(2000){ hard_disk.id } + tests("#name").returns("Hard disk 1"){ hard_disk.name } + tests("#description").returns("Hard disk"){ hard_disk.description } + tests("#resource_type").returns(17){ hard_disk.resource_type } + tests("#address_on_parent").returns(0){ hard_disk.address_on_parent } + tests("#parent").returns(2){ hard_disk.parent } + tests("#capacity").returns(Fixnum){ hard_disk.capacity.class } + tests("#bus_sub_type").returns("lsilogicsas"){ hard_disk.bus_sub_type } + tests("#bus_type").returns(6){ hard_disk.bus_type } + end + + tests("Compute::Vcloudng | vm | customization") do + customization = vm.customization + tests("#model").returns(Fog::Compute::Vcloudng::VmCustomization){customization.class} + tests("#id").returns(String){ customization.id.class } + tests("#href").returns(String){ customization.href.class } + tests("#type").returns("application/vnd.vmware.vcloud.guestCustomizationSection+xml"){ customization.type } + tests("#virtual_machine_id").returns(String){ customization.virtual_machine_id.class } + tests("#computer_name").returns(String){ customization.computer_name.class } + tests("#enabled").returns(true){ boolean? customization.enabled } + tests("#change_sid").returns(true){ boolean? customization.change_sid } + tests("#join_domain_enabled").returns(true){ boolean? customization.join_domain_enabled } + tests("#use_org_settings").returns(true){ boolean? customization.use_org_settings } + tests("#admin_password_enabled").returns(true){ boolean? customization.admin_password_enabled } + tests("#reset_password_required").returns(true){ boolean? customization.reset_password_required } + end + + tests("Compute::Vcloudng | vm | network") do + network = vm.network + tests("#model").returns(Fog::Compute::Vcloudng::VmNetwork){network.class} + tests("#id").returns(String){ network.id.class } + tests("#href").returns(String){ network.href.class } + tests("#type").returns("application/vnd.vmware.vcloud.networkConnectionSection+xml"){ network.type } + tests("#info").returns(String){ network.info.class } + tests("#primary_network_connection_index").returns(Fixnum){ network.primary_network_connection_index.class } + tests("#network").returns(String){ network.network.class } + tests("#network_connection_index").returns(Fixnum){ network.network_connection_index.class } + tests("#mac_address").returns(String){ network.mac_address.class } + tests("#ip_address_allocation_mode").returns(String){ network.ip_address_allocation_mode.class } + tests("#needs_customization").returns(true){ boolean? network.needs_customization } + tests("#is_connected").returns(true){ boolean? network.is_connected } + end + + tests("Compute::Vcloudng | vm | tags") do + tags = vm.tags + tests("#collection").returns(Fog::Compute::Vcloudng::Tags){ tags.class } + end + + end end \ No newline at end of file diff --git a/tests/vcloudng/models/reduced_vcr_requests.rb b/tests/vcloudng/models/reduced_vcr_requests.rb new file mode 100755 index 000000000..98626190f --- /dev/null +++ b/tests/vcloudng/models/reduced_vcr_requests.rb @@ -0,0 +1,27 @@ +#!/usr/local/bin/ruby + +# TO FIX: it reduces the number of requests but it make the tests to faile +require 'yaml' +PATH = ARGV.shift +vcr_cassete = YAML.load_file(PATH) + +@num_request = 0 +@pending_requests = {} + +reduced_requests = vcr_cassete["http_interactions"].reject do |i| + @num_request += 1 + if i["response"]["body"]["string"] =~ /running/ && i["response"]["headers"]["Content-Type"].to_s == 'application/vnd.vmware.vcloud.task+xml;version=1.5' + @pending_requests[@num_request]=true + @pending_requests[@num_request] && @pending_requests[@num_request-1] && @pending_requests[@num_request-2] + else + @pending_requests[@num_request]=false + end +end + +cleaned = vcr_cassete["http_interactions"].size - reduced_requests.size +puts "cleaned: #{cleaned} requests" + +vcr_cassete["http_interactions"] = reduced_requests + +File.open(PATH, 'w') {|f| f.write(vcr_cassete.to_yaml) } + diff --git a/tests/vcloudng/models/tools/reduced_vcr_requests.rb b/tests/vcloudng/models/tools/reduced_vcr_requests.rb new file mode 100755 index 000000000..98626190f --- /dev/null +++ b/tests/vcloudng/models/tools/reduced_vcr_requests.rb @@ -0,0 +1,27 @@ +#!/usr/local/bin/ruby + +# TO FIX: it reduces the number of requests but it make the tests to faile +require 'yaml' +PATH = ARGV.shift +vcr_cassete = YAML.load_file(PATH) + +@num_request = 0 +@pending_requests = {} + +reduced_requests = vcr_cassete["http_interactions"].reject do |i| + @num_request += 1 + if i["response"]["body"]["string"] =~ /running/ && i["response"]["headers"]["Content-Type"].to_s == 'application/vnd.vmware.vcloud.task+xml;version=1.5' + @pending_requests[@num_request]=true + @pending_requests[@num_request] && @pending_requests[@num_request-1] && @pending_requests[@num_request-2] + else + @pending_requests[@num_request]=false + end +end + +cleaned = vcr_cassete["http_interactions"].size - reduced_requests.size +puts "cleaned: #{cleaned} requests" + +vcr_cassete["http_interactions"] = reduced_requests + +File.open(PATH, 'w') {|f| f.write(vcr_cassete.to_yaml) } + diff --git a/tests/vcloudng/vcr_cassettes/vapp_life_cycle_tests_rb.yml b/tests/vcloudng/vcr_cassettes/vapp_life_cycle_tests_rb.yml new file mode 100644 index 000000000..e71125025 --- /dev/null +++ b/tests/vcloudng/vcr_cassettes/vapp_life_cycle_tests_rb.yml @@ -0,0 +1,6094 @@ +--- +http_interactions: +- request: + method: post + uri: https://devlab.mdsol.com/api/sessions + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Authorization: + - Basic cmVzdGViYW5lekBkZXZvcHM6cGFzc3dvcmQqOA== + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:46:04 GMT, Tue, 20 Aug 2013 10:46:04 GMT + X-Vcloud-Authorization: + - 9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c= + Set-Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Content-Type: + - application/vnd.vmware.vcloud.session+xml;version=1.5 + Content-Length: + - '1014' + body: + encoding: US-ASCII + string: ! "\n\n + \ \n \n \n + \ \n \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:48:19 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/org + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:46:05 GMT, Tue, 20 Aug 2013 10:46:05 GMT + Content-Type: + - application/vnd.vmware.vcloud.orglist+xml;version=1.5 + Content-Length: + - '494' + body: + encoding: US-ASCII + string: ! "\n\n \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:48:20 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/org/c6a4c623-c158-41cf-a87a-dbc1637ad55a + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:46:06 GMT, Tue, 20 Aug 2013 10:46:06 GMT + Content-Type: + - application/vnd.vmware.vcloud.org+xml;version=1.5 + Content-Length: + - '2338' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n DevOps\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:48:21 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/catalog/4ee720e5-173a-41ac-824b-6f4908bac975 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:46:07 GMT, Tue, 20 Aug 2013 10:46:07 GMT + Content-Type: + - application/vnd.vmware.vcloud.catalog+xml;version=1.5 + Content-Length: + - '1962' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n \n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n true\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:48:22 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/catalog/4ee720e5-173a-41ac-824b-6f4908bac975 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:46:07 GMT, Tue, 20 Aug 2013 10:46:08 GMT + Content-Type: + - application/vnd.vmware.vcloud.catalog+xml;version=1.5 + Content-Length: + - '1962' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n \n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n true\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:48:23 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/catalogItem/5b3f97f1-13bf-450e-a632-126aac3bb3d9 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:46:08 GMT, Tue, 20 Aug 2013 10:46:08 GMT + Content-Type: + - application/vnd.vmware.vcloud.catalogitem+xml;version=1.5 + Content-Length: + - '1047' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ Windows Server 2008 R2 Web Edition\n \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:48:24 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/org/c6a4c623-c158-41cf-a87a-dbc1637ad55a + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:46:09 GMT, Tue, 20 Aug 2013 10:46:09 GMT + Content-Type: + - application/vnd.vmware.vcloud.org+xml;version=1.5 + Content-Length: + - '2338' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n DevOps\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:48:25 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/network/d5f47bbf-de27-4cf5-aaaa-56772f2ccd17 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:46:10 GMT, Tue, 20 Aug 2013 10:46:11 GMT + Content-Type: + - application/vnd.vmware.vcloud.orgNetwork+xml;version=1.5 + Content-Length: + - '1680' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n \n \n true\n + \ 10.192.0.1\n 255.255.252.0\n + \ 10.192.0.11\n 10.192.0.12\n + \ dev.ad.mdsol.com\n \n + \ \n 10.192.0.100\n + \ 10.192.0.254\n \n + \ \n 10.192.1.32\n + \ 10.192.3.254\n \n + \ \n \n bridged\n + \ false\n + \ \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:48:26 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/org + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:46:11 GMT, Tue, 20 Aug 2013 10:46:11 GMT + Content-Type: + - application/vnd.vmware.vcloud.orglist+xml;version=1.5 + Content-Length: + - '494' + body: + encoding: US-ASCII + string: ! "\n\n \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:48:27 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/org/c6a4c623-c158-41cf-a87a-dbc1637ad55a + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:46:12 GMT, Tue, 20 Aug 2013 10:46:12 GMT + Content-Type: + - application/vnd.vmware.vcloud.org+xml;version=1.5 + Content-Length: + - '2338' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n DevOps\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:48:28 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vdc/9a06a16b-12c6-44dc-aee1-06aa52262ea3 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:46:13 GMT, Tue, 20 Aug 2013 10:46:13 GMT + Content-Type: + - application/vnd.vmware.vcloud.vdc+xml;version=1.5 + Content-Length: + - '6949' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n AllocationVApp\n + \ \n MB\n 1048320\n + \ 1048320\n 672768\n 0\n + \ \n \n \n MHz\n + \ 0\n 0\n 4000\n + \ 0\n \n \n MB\n + \ 0\n 0\n 2560\n + \ 58\n \n \n + \ \n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n \n \n + \ \n \n \n + \ vmx-04\n + \ vmx-07\n + \ vmx-08\n + \ vmx-09\n + \ \n \n 0\n + \ 1024\n 0\n true\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:48:29 GMT +- request: + method: post + uri: https://devlab.mdsol.com/api/vdc/9a06a16b-12c6-44dc-aee1-06aa52262ea3/action/instantiateVAppTemplate + body: + encoding: US-ASCII + string: bridgedtrue + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Content-Type: + - application/vnd.vmware.vcloud.instantiateVAppTemplateParams+xml + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 201 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:46:14 GMT, Tue, 20 Aug 2013 10:46:15 GMT + Location: + - https://devlab.mdsol.com/api/vApp/vapp-b8056468-78a9-457d-a505-6ddd49504dc7 + Content-Type: + - application/vnd.vmware.vcloud.vapp+xml;version=1.5 + Content-Length: + - '2751' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ \n + \ \n \n \n + \ \n + \ \n + \ \n + \ \n + \ 1\n \n \n \n \n + \ \n false\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:48:31 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/f79fa5be-4d5f-412b-957a-edeb485e919a + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:48:40 GMT, Tue, 20 Aug 2013 10:48:40 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1284' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 100\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:50:56 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/f79fa5be-4d5f-412b-957a-edeb485e919a + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:48:42 GMT, Tue, 20 Aug 2013 10:48:42 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1284' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 100\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:50:58 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/f79fa5be-4d5f-412b-957a-edeb485e919a + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:48:44 GMT, Tue, 20 Aug 2013 10:48:44 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1196' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ 100\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:00 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/org/c6a4c623-c158-41cf-a87a-dbc1637ad55a + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:48:45 GMT, Tue, 20 Aug 2013 10:48:45 GMT + Content-Type: + - application/vnd.vmware.vcloud.org+xml;version=1.5 + Content-Length: + - '2338' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n DevOps\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:01 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vdc/9a06a16b-12c6-44dc-aee1-06aa52262ea3 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:48:46 GMT, Tue, 20 Aug 2013 10:48:46 GMT + Content-Type: + - application/vnd.vmware.vcloud.vdc+xml;version=1.5 + Content-Length: + - '7120' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n AllocationVApp\n + \ \n MB\n 1048320\n + \ 1048320\n 708096\n 0\n + \ \n \n \n MHz\n + \ 0\n 0\n 4000\n + \ 0\n \n \n MB\n + \ 0\n 0\n 2560\n + \ 58\n \n \n + \ \n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n \n \n + \ \n \n \n + \ vmx-04\n + \ vmx-07\n + \ vmx-08\n + \ vmx-09\n + \ \n \n 0\n + \ 1024\n 0\n true\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:02 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vapp-b8056468-78a9-457d-a505-6ddd49504dc7 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:48:47 GMT, Tue, 20 Aug 2013 10:48:47 GMT + Content-Type: + - application/vnd.vmware.vcloud.vApp+xml;version=1.5 + Content-Length: + - '21239' + body: + encoding: US-ASCII + string: ! "\n\n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n \n Lease settings section\n + \ \n + \ 0\n 7776000\n + \ 2013-11-18T10:46:15.277Z\n + \ \n \n VApp + startup section\n \n + \ \n + \ \n \n The + list of logical networks\n \n \n \n + \ \n This + is a special place-holder used for disconnected network interfaces.\n + \ \n \n \n The configuration parameters for + logical networks\n \n + \ \n + \ \n + \ \n \n \n + \ true\n 10.192.0.1\n + \ 255.255.252.0\n 10.192.0.11\n + \ 10.192.0.12\n dev.ad.mdsol.com\n + \ \n \n 10.192.1.32\n + \ 10.192.3.254\n \n + \ \n 10.192.0.100\n + \ 10.192.0.254\n \n + \ \n \n \n + \ bridged\n false\n + \ \n false\n + \ \n \n This + is a special place-holder used for disconnected network interfaces.\n + \ \n isolated\n + \ \n false\n + \ \n \n \n + \ \n + \ \n false\n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ Windows Server 2008 R2 Web Edition\n + \ \n + \ Virtual hardware requirements\n \n + \ Virtual Hardware Family\n + \ 0\n DEVWEB\n + \ vmx-08\n + \ \n \n 00:50:56:01:01:6c\n + \ 0\n false\n + \ none\n E1000 + ethernet adapter on \"none\"\n Network + adapter 0\n 1\n + \ E1000\n 10\n + \ \n \n 0\n + \ SCSI Controller\n + \ SCSI Controller 0\n + \ 2\n lsilogicsas\n + \ 6\n \n + \ \n 0\n + \ Hard disk\n Hard + disk 1\n \n 2000\n + \ 2\n 17\n + \ \n \n 0\n + \ IDE Controller\n + \ IDE Controller 0\n + \ 3\n 5\n + \ \n \n 1\n + \ false\n + \ CD/DVD Drive\n CD/DVD + Drive 1\n \n 3002\n + \ 3\n 15\n + \ \n \n 0\n + \ false\n + \ Floppy Drive\n Floppy + Drive 1\n \n 8000\n + \ 14\n \n + \ \n hertz + * 10^6\n Number + of Virtual CPUs\n 2 + virtual CPU(s)\n 4\n + \ 0\n 3\n + \ 2\n 0\n + \ \n + \ \n \n byte + * 2^20\n Memory + Size\n 2560 MB of + memory\n 5\n + \ 0\n 4\n + \ 2560\n 0\n + \ \n + \ \n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n \n + \ Specifies the operating system installed\n + \ Microsoft Windows Server 2008 R2 (64-bit)\n + \ \n + \ \n \n Specifies the available + VM network connections\n 0\n + \ \n + \ 0\n false\n + \ 00:50:56:01:01:6c\n NONE\n + \ \n \n + \ \n \n Specifies Guest OS Customization + Settings\n true\n false\n + \ 1c353cf3-3a46-4b58-90e4-b9fc9088db22\n + \ false\n false\n + \ false\n true\n + \ false\n DEVWEB-001\n + \ \n + \ \n \n + \ Specifies Runtime info\n \n \n DEVWEB\n + \ \n \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:03 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vapp-b8056468-78a9-457d-a505-6ddd49504dc7 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:48:48 GMT, Tue, 20 Aug 2013 10:48:49 GMT + Content-Type: + - application/vnd.vmware.vcloud.vApp+xml;version=1.5 + Content-Length: + - '21239' + body: + encoding: US-ASCII + string: ! "\n\n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n \n Lease settings section\n + \ \n + \ 0\n 7776000\n + \ 2013-11-18T10:46:15.277Z\n + \ \n \n VApp + startup section\n \n + \ \n + \ \n \n The + list of logical networks\n \n \n \n + \ \n This + is a special place-holder used for disconnected network interfaces.\n + \ \n \n \n The configuration parameters for + logical networks\n \n + \ \n + \ \n + \ \n \n \n + \ true\n 10.192.0.1\n + \ 255.255.252.0\n 10.192.0.11\n + \ 10.192.0.12\n dev.ad.mdsol.com\n + \ \n \n 10.192.0.100\n + \ 10.192.0.254\n \n + \ \n 10.192.1.32\n + \ 10.192.3.254\n \n + \ \n \n \n + \ bridged\n false\n + \ \n false\n + \ \n \n This + is a special place-holder used for disconnected network interfaces.\n + \ \n isolated\n + \ \n false\n + \ \n \n \n + \ \n + \ \n false\n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ Windows Server 2008 R2 Web Edition\n + \ \n + \ Virtual hardware requirements\n \n + \ Virtual Hardware Family\n + \ 0\n DEVWEB\n + \ vmx-08\n + \ \n \n 00:50:56:01:01:6c\n + \ 0\n false\n + \ none\n E1000 + ethernet adapter on \"none\"\n Network + adapter 0\n 1\n + \ E1000\n 10\n + \ \n \n 0\n + \ SCSI Controller\n + \ SCSI Controller 0\n + \ 2\n lsilogicsas\n + \ 6\n \n + \ \n 0\n + \ Hard disk\n Hard + disk 1\n \n 2000\n + \ 2\n 17\n + \ \n \n 0\n + \ IDE Controller\n + \ IDE Controller 0\n + \ 3\n 5\n + \ \n \n 1\n + \ false\n + \ CD/DVD Drive\n CD/DVD + Drive 1\n \n 3002\n + \ 3\n 15\n + \ \n \n 0\n + \ false\n + \ Floppy Drive\n Floppy + Drive 1\n \n 8000\n + \ 14\n \n + \ \n hertz + * 10^6\n Number + of Virtual CPUs\n 2 + virtual CPU(s)\n 4\n + \ 0\n 3\n + \ 2\n 0\n + \ \n + \ \n \n byte + * 2^20\n Memory + Size\n 2560 MB of + memory\n 5\n + \ 0\n 4\n + \ 2560\n 0\n + \ \n + \ \n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n \n + \ Specifies the operating system installed\n + \ Microsoft Windows Server 2008 R2 (64-bit)\n + \ \n + \ \n \n Specifies the available + VM network connections\n 0\n + \ \n + \ 0\n false\n + \ 00:50:56:01:01:6c\n NONE\n + \ \n \n + \ \n \n Specifies Guest OS Customization + Settings\n true\n false\n + \ 1c353cf3-3a46-4b58-90e4-b9fc9088db22\n + \ false\n false\n + \ false\n true\n + \ false\n DEVWEB-001\n + \ \n + \ \n \n + \ Specifies Runtime info\n \n \n DEVWEB\n + \ \n \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:05 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vapp-b8056468-78a9-457d-a505-6ddd49504dc7 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:48:50 GMT, Tue, 20 Aug 2013 10:48:50 GMT + Content-Type: + - application/vnd.vmware.vcloud.vApp+xml;version=1.5 + Content-Length: + - '21239' + body: + encoding: US-ASCII + string: ! "\n\n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n \n Lease settings section\n + \ \n + \ 0\n 7776000\n + \ 2013-11-18T10:46:15.277Z\n + \ \n \n VApp + startup section\n \n + \ \n + \ \n \n The + list of logical networks\n \n \n \n + \ \n This + is a special place-holder used for disconnected network interfaces.\n + \ \n \n \n The configuration parameters for + logical networks\n \n + \ \n + \ \n + \ \n \n \n + \ true\n 10.192.0.1\n + \ 255.255.252.0\n 10.192.0.11\n + \ 10.192.0.12\n dev.ad.mdsol.com\n + \ \n \n 10.192.0.100\n + \ 10.192.0.254\n \n + \ \n 10.192.1.32\n + \ 10.192.3.254\n \n + \ \n \n \n + \ bridged\n false\n + \ \n false\n + \ \n \n This + is a special place-holder used for disconnected network interfaces.\n + \ \n isolated\n + \ \n false\n + \ \n \n \n + \ \n + \ \n false\n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ Windows Server 2008 R2 Web Edition\n + \ \n + \ Virtual hardware requirements\n \n + \ Virtual Hardware Family\n + \ 0\n DEVWEB\n + \ vmx-08\n + \ \n \n 00:50:56:01:01:6c\n + \ 0\n false\n + \ none\n E1000 + ethernet adapter on \"none\"\n Network + adapter 0\n 1\n + \ E1000\n 10\n + \ \n \n 0\n + \ SCSI Controller\n + \ SCSI Controller 0\n + \ 2\n lsilogicsas\n + \ 6\n \n + \ \n 0\n + \ Hard disk\n Hard + disk 1\n \n 2000\n + \ 2\n 17\n + \ \n \n 0\n + \ IDE Controller\n + \ IDE Controller 0\n + \ 3\n 5\n + \ \n \n 1\n + \ false\n + \ CD/DVD Drive\n CD/DVD + Drive 1\n \n 3002\n + \ 3\n 15\n + \ \n \n 0\n + \ false\n + \ Floppy Drive\n Floppy + Drive 1\n \n 8000\n + \ 14\n \n + \ \n hertz + * 10^6\n Number + of Virtual CPUs\n 2 + virtual CPU(s)\n 4\n + \ 0\n 3\n + \ 2\n 0\n + \ \n + \ \n \n byte + * 2^20\n Memory + Size\n 2560 MB of + memory\n 5\n + \ 0\n 4\n + \ 2560\n 0\n + \ \n + \ \n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n \n + \ Specifies the operating system installed\n + \ Microsoft Windows Server 2008 R2 (64-bit)\n + \ \n + \ \n \n Specifies the available + VM network connections\n 0\n + \ \n + \ 0\n false\n + \ 00:50:56:01:01:6c\n NONE\n + \ \n \n + \ \n \n Specifies Guest OS Customization + Settings\n true\n false\n + \ 1c353cf3-3a46-4b58-90e4-b9fc9088db22\n + \ false\n false\n + \ false\n true\n + \ false\n DEVWEB-001\n + \ \n + \ \n \n + \ Specifies Runtime info\n \n \n DEVWEB\n + \ \n \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:06 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/networkConnectionSection/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:48:51 GMT, Tue, 20 Aug 2013 10:48:52 GMT + Content-Type: + - application/vnd.vmware.vcloud.networkconnectionsection+xml;version=1.5 + Content-Length: + - '1274' + body: + encoding: US-ASCII + string: ! "\n\n + \ Specifies the available VM network connections\n + \ 0\n \n 0\n + \ false\n 00:50:56:01:01:6c\n + \ NONE\n \n + \ \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:07 GMT +- request: + method: put + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/networkConnectionSection/ + body: + encoding: US-ASCII + string: ! " + \ Specifies the available VM network connections\n + \ 0\n + \ \n + \ 0\n + \ \n true\n + \ 00:50:56:01:01:6c\n POOL\n + \ \n" + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Content-Type: + - application/vnd.vmware.vcloud.networkConnectionSection+xml + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 202 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:48:52 GMT, Tue, 20 Aug 2013 10:48:53 GMT + Location: + - https://devlab.mdsol.com/api/task/925e934b-4dd5-4a92-90b6-46019d6b907a + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:08 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/925e934b-4dd5-4a92-90b6-46019d6b907a + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:48:54 GMT, Tue, 20 Aug 2013 10:48:54 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:09 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/925e934b-4dd5-4a92-90b6-46019d6b907a + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:48:56 GMT, Tue, 20 Aug 2013 10:48:56 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:11 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/925e934b-4dd5-4a92-90b6-46019d6b907a + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:48:58 GMT, Tue, 20 Aug 2013 10:48:58 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:13 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/925e934b-4dd5-4a92-90b6-46019d6b907a + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:48:59 GMT, Tue, 20 Aug 2013 10:48:59 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1176' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:15 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/networkConnectionSection/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:00 GMT, Tue, 20 Aug 2013 10:49:01 GMT + Content-Type: + - application/vnd.vmware.vcloud.networkconnectionsection+xml;version=1.5 + Content-Length: + - '1344' + body: + encoding: US-ASCII + string: ! "\n\n + \ Specifies the available VM network connections\n + \ 0\n \n + \ 0\n 10.192.0.194\n + \ true\n 00:50:56:01:01:6c\n + \ POOL\n \n + \ \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:16 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/guestCustomizationSection + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:01 GMT, Tue, 20 Aug 2013 10:49:01 GMT + Content-Type: + - application/vnd.vmware.vcloud.guestcustomizationsection+xml;version=1.5 + Content-Length: + - '1336' + body: + encoding: US-ASCII + string: ! "\n\n + \ Specifies Guest OS Customization Settings\n true\n + \ false\n 1c353cf3-3a46-4b58-90e4-b9fc9088db22\n + \ false\n false\n + \ false\n true\n + \ false\n DEVWEB-001\n + \ \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:17 GMT +- request: + method: put + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/guestCustomizationSection + body: + encoding: US-ASCII + string: ! "\n + \ Specifies Guest OS Customization Settings\n + \ true\n false\n + \ 1c353cf3-3a46-4b58-90e4-b9fc9088db22\n + \ false\n false\n + \ false\n true\n + \ false\n this + is the user data\n DEVWEB-001" + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Content-Type: + - application/vnd.vmware.vcloud.guestCustomizationSection+xml + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 202 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:02 GMT, Tue, 20 Aug 2013 10:49:03 GMT + Location: + - https://devlab.mdsol.com/api/task/73d01f10-5a3e-4dd1-a2f6-39ea75ebff94 + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:18 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/73d01f10-5a3e-4dd1-a2f6-39ea75ebff94 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:04 GMT, Tue, 20 Aug 2013 10:49:04 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:19 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/73d01f10-5a3e-4dd1-a2f6-39ea75ebff94 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:06 GMT, Tue, 20 Aug 2013 10:49:06 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:21 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/73d01f10-5a3e-4dd1-a2f6-39ea75ebff94 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:07 GMT, Tue, 20 Aug 2013 10:49:07 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:23 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/73d01f10-5a3e-4dd1-a2f6-39ea75ebff94 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:09 GMT, Tue, 20 Aug 2013 10:49:09 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1176' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:25 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/virtualHardwareSection/disks + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:10 GMT, Tue, 20 Aug 2013 10:49:11 GMT + Content-Type: + - application/vnd.vmware.vcloud.rasditemslist+xml;version=1.5 + Content-Length: + - '2008' + body: + encoding: US-ASCII + string: ! "\n\n + \ \n + \ \n 0\n SCSI + Controller\n SCSI Controller 0\n + \ 2\n lsilogicsas\n + \ 6\n \n \n + \ 0\n Hard + disk\n Hard disk 1\n + \ \n + \ 2000\n 2\n + \ 17\n \n \n + \ 0\n IDE Controller\n + \ IDE Controller 0\n 3\n + \ 5\n \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:26 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/virtualHardwareSection/disks + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:11 GMT, Tue, 20 Aug 2013 10:49:12 GMT + Content-Type: + - application/vnd.vmware.vcloud.rasditemslist+xml;version=1.5 + Content-Length: + - '2008' + body: + encoding: US-ASCII + string: ! "\n\n + \ \n + \ \n 0\n SCSI + Controller\n SCSI Controller 0\n + \ 2\n lsilogicsas\n + \ 6\n \n \n + \ 0\n Hard + disk\n Hard disk 1\n + \ \n + \ 2000\n 2\n + \ 17\n \n \n + \ 0\n IDE Controller\n + \ IDE Controller 0\n 3\n + \ 5\n \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:27 GMT +- request: + method: put + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/virtualHardwareSection/disks + body: + encoding: US-ASCII + string: ! "\n + \ 0\n SCSI + Controller\n SCSI Controller + 0\n 2\n + \ lsilogicsas\n 6\n + \ \n 0\n + \ Hard disk \n Hard + disk 1\n \n + \ 2000\n 2\n + \ 17\n \n + \ 0\n IDE + Controller\n IDE Controller + 0\n 3\n + \ 5\n " + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Content-Type: + - application/vnd.vmware.vcloud.rasdItemsList+xml + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 202 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:12 GMT, Tue, 20 Aug 2013 10:49:13 GMT + Location: + - https://devlab.mdsol.com/api/task/fcb2c1dc-9306-4349-aa4d-4e72dc92af3a + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:28 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/fcb2c1dc-9306-4349-aa4d-4e72dc92af3a + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:14 GMT, Tue, 20 Aug 2013 10:49:14 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:29 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/fcb2c1dc-9306-4349-aa4d-4e72dc92af3a + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:16 GMT, Tue, 20 Aug 2013 10:49:16 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:31 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/fcb2c1dc-9306-4349-aa4d-4e72dc92af3a + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:18 GMT, Tue, 20 Aug 2013 10:49:18 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:33 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/fcb2c1dc-9306-4349-aa4d-4e72dc92af3a + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:19 GMT, Tue, 20 Aug 2013 10:49:19 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:35 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/fcb2c1dc-9306-4349-aa4d-4e72dc92af3a + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:21 GMT, Tue, 20 Aug 2013 10:49:21 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1176' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:37 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/virtualHardwareSection/disks + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:22 GMT, Tue, 20 Aug 2013 10:49:22 GMT + Content-Type: + - application/vnd.vmware.vcloud.rasditemslist+xml;version=1.5 + Content-Length: + - '2008' + body: + encoding: US-ASCII + string: ! "\n\n + \ \n + \ \n 0\n SCSI + Controller\n SCSI Controller 0\n + \ 2\n lsilogicsas\n + \ 6\n \n \n + \ 0\n Hard + disk\n Hard disk 1\n + \ \n + \ 2000\n 2\n + \ 17\n \n \n + \ 0\n IDE Controller\n + \ IDE Controller 0\n 3\n + \ 5\n \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:38 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/virtualHardwareSection/disks + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:23 GMT, Tue, 20 Aug 2013 10:49:23 GMT + Content-Type: + - application/vnd.vmware.vcloud.rasditemslist+xml;version=1.5 + Content-Length: + - '2008' + body: + encoding: US-ASCII + string: ! "\n\n + \ \n + \ \n 0\n SCSI + Controller\n SCSI Controller 0\n + \ 2\n lsilogicsas\n + \ 6\n \n \n + \ 0\n Hard + disk\n Hard disk 1\n + \ \n + \ 2000\n 2\n + \ 17\n \n \n + \ 0\n IDE Controller\n + \ IDE Controller 0\n 3\n + \ 5\n \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:39 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/virtualHardwareSection/disks + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:24 GMT, Tue, 20 Aug 2013 10:49:24 GMT + Content-Type: + - application/vnd.vmware.vcloud.rasditemslist+xml;version=1.5 + Content-Length: + - '2008' + body: + encoding: US-ASCII + string: ! "\n\n + \ \n + \ \n 0\n SCSI + Controller\n SCSI Controller 0\n + \ 2\n lsilogicsas\n + \ 6\n \n \n + \ 0\n Hard + disk\n Hard disk 1\n + \ \n + \ 2000\n 2\n + \ 17\n \n \n + \ 0\n IDE Controller\n + \ IDE Controller 0\n 3\n + \ 5\n \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:40 GMT +- request: + method: put + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/virtualHardwareSection/disks + body: + encoding: US-ASCII + string: ! "\n + \ 0\n SCSI + Controller\n SCSI Controller + 0\n 2\n + \ lsilogicsas\n 6\n + \ \n 0\n + \ Hard disk \n Hard + disk 1\n \n + \ 2000\n 2\n + \ 17\n \n + \ 0\n IDE + Controller\n IDE Controller + 0\n 3\n + \ 5\n \n + \ 1\n Hard + disk \n Hard disk 2\n + \ \n 2001\n + \ 2\n 17\n + \ " + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Content-Type: + - application/vnd.vmware.vcloud.rasdItemsList+xml + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 202 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:25 GMT, Tue, 20 Aug 2013 10:49:26 GMT + Location: + - https://devlab.mdsol.com/api/task/c9183012-06ec-4ff4-b162-37f25eb4f5f0 + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:41 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/c9183012-06ec-4ff4-b162-37f25eb4f5f0 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:27 GMT, Tue, 20 Aug 2013 10:49:27 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:42 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/c9183012-06ec-4ff4-b162-37f25eb4f5f0 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:29 GMT, Tue, 20 Aug 2013 10:49:29 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:44 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/c9183012-06ec-4ff4-b162-37f25eb4f5f0 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:31 GMT, Tue, 20 Aug 2013 10:49:31 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:46 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/c9183012-06ec-4ff4-b162-37f25eb4f5f0 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:32 GMT, Tue, 20 Aug 2013 10:49:33 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:48 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/c9183012-06ec-4ff4-b162-37f25eb4f5f0 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:34 GMT, Tue, 20 Aug 2013 10:49:34 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:50 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/c9183012-06ec-4ff4-b162-37f25eb4f5f0 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:36 GMT, Tue, 20 Aug 2013 10:49:36 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1176' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:52 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/virtualHardwareSection/disks + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:37 GMT, Tue, 20 Aug 2013 10:49:37 GMT + Content-Type: + - application/vnd.vmware.vcloud.rasditemslist+xml;version=1.5 + Content-Length: + - '2496' + body: + encoding: US-ASCII + string: ! "\n\n + \ \n + \ \n 0\n SCSI + Controller\n SCSI Controller 0\n + \ 2\n lsilogicsas\n + \ 6\n \n \n + \ 0\n Hard + disk\n Hard disk 1\n + \ \n + \ 2000\n 2\n + \ 17\n \n \n + \ 1\n Hard + disk\n Hard disk 2\n + \ \n + \ 2001\n 2\n + \ 17\n \n \n + \ 0\n IDE Controller\n + \ IDE Controller 0\n 3\n + \ 5\n \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:53 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/virtualHardwareSection/disks + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:38 GMT, Tue, 20 Aug 2013 10:49:38 GMT + Content-Type: + - application/vnd.vmware.vcloud.rasditemslist+xml;version=1.5 + Content-Length: + - '2496' + body: + encoding: US-ASCII + string: ! "\n\n + \ \n + \ \n 0\n SCSI + Controller\n SCSI Controller 0\n + \ 2\n lsilogicsas\n + \ 6\n \n \n + \ 0\n Hard + disk\n Hard disk 1\n + \ \n + \ 2000\n 2\n + \ 17\n \n \n + \ 1\n Hard + disk\n Hard disk 2\n + \ \n + \ 2001\n 2\n + \ 17\n \n \n + \ 0\n IDE Controller\n + \ IDE Controller 0\n 3\n + \ 5\n \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:54 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/virtualHardwareSection/disks + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:39 GMT, Tue, 20 Aug 2013 10:49:39 GMT + Content-Type: + - application/vnd.vmware.vcloud.rasditemslist+xml;version=1.5 + Content-Length: + - '2496' + body: + encoding: US-ASCII + string: ! "\n\n + \ \n + \ \n 0\n SCSI + Controller\n SCSI Controller 0\n + \ 2\n lsilogicsas\n + \ 6\n \n \n + \ 0\n Hard + disk\n Hard disk 1\n + \ \n + \ 2000\n 2\n + \ 17\n \n \n + \ 1\n Hard + disk\n Hard disk 2\n + \ \n + \ 2001\n 2\n + \ 17\n \n \n + \ 0\n IDE Controller\n + \ IDE Controller 0\n 3\n + \ 5\n \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:55 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/virtualHardwareSection/disks + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:40 GMT, Tue, 20 Aug 2013 10:49:40 GMT + Content-Type: + - application/vnd.vmware.vcloud.rasditemslist+xml;version=1.5 + Content-Length: + - '2496' + body: + encoding: US-ASCII + string: ! "\n\n + \ \n + \ \n 0\n SCSI + Controller\n SCSI Controller 0\n + \ 2\n lsilogicsas\n + \ 6\n \n \n + \ 0\n Hard + disk\n Hard disk 1\n + \ \n + \ 2000\n 2\n + \ 17\n \n \n + \ 1\n Hard + disk\n Hard disk 2\n + \ \n + \ 2001\n 2\n + \ 17\n \n \n + \ 0\n IDE Controller\n + \ IDE Controller 0\n 3\n + \ 5\n \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:56 GMT +- request: + method: put + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/virtualHardwareSection/disks + body: + encoding: US-ASCII + string: ! "\n + \ 0\n SCSI + Controller\n SCSI Controller + 0\n 2\n + \ lsilogicsas\n 6\n + \ \n 0\n + \ Hard disk \n Hard + disk 1\n \n + \ 2000\n 2\n + \ 17\n \n + \ 0\n IDE + Controller\n IDE Controller + 0\n 3\n + \ 5\n " + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Content-Type: + - application/vnd.vmware.vcloud.rasdItemsList+xml + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 202 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:41 GMT, Tue, 20 Aug 2013 10:49:42 GMT + Location: + - https://devlab.mdsol.com/api/task/03985435-8aa9-4d8f-ab25-b05edc32001a + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:57 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/03985435-8aa9-4d8f-ab25-b05edc32001a + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:42 GMT, Tue, 20 Aug 2013 10:49:42 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:51:58 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/03985435-8aa9-4d8f-ab25-b05edc32001a + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:44 GMT, Tue, 20 Aug 2013 10:49:44 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:00 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/03985435-8aa9-4d8f-ab25-b05edc32001a + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:46 GMT, Tue, 20 Aug 2013 10:49:46 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:02 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/03985435-8aa9-4d8f-ab25-b05edc32001a + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:48 GMT, Tue, 20 Aug 2013 10:49:48 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:04 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/03985435-8aa9-4d8f-ab25-b05edc32001a + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:50 GMT, Tue, 20 Aug 2013 10:49:50 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:06 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/03985435-8aa9-4d8f-ab25-b05edc32001a + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:52 GMT, Tue, 20 Aug 2013 10:49:52 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1176' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:07 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/virtualHardwareSection/disks + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:53 GMT, Tue, 20 Aug 2013 10:49:53 GMT + Content-Type: + - application/vnd.vmware.vcloud.rasditemslist+xml;version=1.5 + Content-Length: + - '2008' + body: + encoding: US-ASCII + string: ! "\n\n + \ \n + \ \n 0\n SCSI + Controller\n SCSI Controller 0\n + \ 2\n lsilogicsas\n + \ 6\n \n \n + \ 0\n Hard + disk\n Hard disk 1\n + \ \n + \ 2000\n 2\n + \ 17\n \n \n + \ 0\n IDE Controller\n + \ IDE Controller 0\n 3\n + \ 5\n \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:08 GMT +- request: + method: put + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/virtualHardwareSection/memory + body: + encoding: US-ASCII + string: ! " \n + \ byte * 2^20\n Memory + Size\n 5120 MB of memory\n + \ 5\n 0\n + \ 4\n 5120\n + \ 0\n \n + \ \n" + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Content-Type: + - application/vnd.vmware.vcloud.rasdItem+xml + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 202 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:54 GMT, Tue, 20 Aug 2013 10:49:54 GMT + Location: + - https://devlab.mdsol.com/api/task/b75c5488-8432-4fa5-8aff-95992cc275e5 + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:10 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/b75c5488-8432-4fa5-8aff-95992cc275e5 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:55 GMT, Tue, 20 Aug 2013 10:49:55 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:11 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/b75c5488-8432-4fa5-8aff-95992cc275e5 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:57 GMT, Tue, 20 Aug 2013 10:49:57 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:12 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/b75c5488-8432-4fa5-8aff-95992cc275e5 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:49:59 GMT, Tue, 20 Aug 2013 10:49:59 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:14 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/b75c5488-8432-4fa5-8aff-95992cc275e5 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:01 GMT, Tue, 20 Aug 2013 10:50:01 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:16 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/b75c5488-8432-4fa5-8aff-95992cc275e5 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:03 GMT, Tue, 20 Aug 2013 10:50:03 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1176' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:18 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vapp-b8056468-78a9-457d-a505-6ddd49504dc7 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:04 GMT, Tue, 20 Aug 2013 10:50:04 GMT + Content-Type: + - application/vnd.vmware.vcloud.vApp+xml;version=1.5 + Content-Length: + - '20976' + body: + encoding: US-ASCII + string: ! "\n\n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n \n Lease settings section\n + \ \n + \ 0\n 7776000\n + \ 2013-11-18T10:49:59.150Z\n + \ \n \n VApp + startup section\n \n + \ \n + \ \n \n The + list of logical networks\n \n \n \n + \ \n \n The configuration parameters for + logical networks\n \n + \ \n + \ \n + \ \n \n \n + \ true\n 10.192.0.1\n + \ 255.255.252.0\n 10.192.0.11\n + \ 10.192.0.12\n dev.ad.mdsol.com\n + \ \n \n 10.192.1.32\n + \ 10.192.3.254\n \n + \ \n 10.192.0.100\n + \ 10.192.0.254\n \n + \ \n \n \n + \ bridged\n false\n + \ \n false\n + \ \n \n \n + \ \n + \ \n false\n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ Windows Server 2008 R2 Web Edition\n + \ \n + \ Virtual hardware requirements\n \n + \ Virtual Hardware Family\n + \ 0\n DEVWEB\n + \ vmx-08\n + \ \n \n 00:50:56:01:01:6c\n + \ 0\n true\n + \ DevOps - Dev Network Connection\n + \ E1000 ethernet adapter on \"DevOps - + Dev Network Connection\"\n Network + adapter 0\n 1\n + \ E1000\n 10\n + \ \n \n 0\n + \ SCSI Controller\n + \ SCSI Controller 0\n + \ 2\n lsilogicsas\n + \ 6\n \n + \ \n 0\n + \ Hard disk\n Hard + disk 1\n \n 2000\n + \ 2\n 17\n + \ \n \n 0\n + \ IDE Controller\n + \ IDE Controller 0\n + \ 3\n 5\n + \ \n \n 1\n + \ false\n + \ CD/DVD Drive\n CD/DVD + Drive 1\n \n 3002\n + \ 3\n 15\n + \ \n \n 0\n + \ false\n + \ Floppy Drive\n Floppy + Drive 1\n \n 8000\n + \ 14\n \n + \ \n hertz + * 10^6\n Number + of Virtual CPUs\n 2 + virtual CPU(s)\n 4\n + \ 0\n 3\n + \ 2\n 0\n + \ \n + \ \n \n byte + * 2^20\n Memory + Size\n 5120 MB of + memory\n 5\n + \ 0\n 4\n + \ 5120\n 0\n + \ \n + \ \n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n \n + \ Specifies the operating system installed\n + \ Microsoft Windows Server 2008 R2 (64-bit)\n + \ \n + \ \n \n Specifies the available + VM network connections\n 0\n + \ \n 0\n + \ 10.192.0.194\n true\n + \ 00:50:56:01:01:6c\n POOL\n + \ \n \n + \ \n \n Specifies Guest OS Customization + Settings\n true\n false\n + \ 1c353cf3-3a46-4b58-90e4-b9fc9088db22\n + \ false\n false\n + \ false\n true\n + \ false\n this + is the user data\n DEVWEB-001\n + \ \n + \ \n \n + \ Specifies Runtime info\n \n \n DEVWEB\n + \ \n \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:20 GMT +- request: + method: put + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/virtualHardwareSection/cpu + body: + encoding: US-ASCII + string: ! " \n + \ hertz * 10^6\n Number + of Virtual CPUs\n 4 virtual + CPU(s)\n 4\n + \ 0\n 3\n + \ 4\n 0\n + \ \n + \ \n" + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Content-Type: + - application/vnd.vmware.vcloud.rasdItem+xml + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 202 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:05 GMT, Tue, 20 Aug 2013 10:50:05 GMT + Location: + - https://devlab.mdsol.com/api/task/702cb2d8-2925-4235-9fce-a03b94cd1b59 + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:21 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/702cb2d8-2925-4235-9fce-a03b94cd1b59 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:06 GMT, Tue, 20 Aug 2013 10:50:06 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:22 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/702cb2d8-2925-4235-9fce-a03b94cd1b59 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:08 GMT, Tue, 20 Aug 2013 10:50:08 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:24 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/702cb2d8-2925-4235-9fce-a03b94cd1b59 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:10 GMT, Tue, 20 Aug 2013 10:50:10 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:26 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/702cb2d8-2925-4235-9fce-a03b94cd1b59 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:12 GMT, Tue, 20 Aug 2013 10:50:12 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:28 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/702cb2d8-2925-4235-9fce-a03b94cd1b59 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:14 GMT, Tue, 20 Aug 2013 10:50:14 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1264' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:29 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/702cb2d8-2925-4235-9fce-a03b94cd1b59 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:16 GMT, Tue, 20 Aug 2013 10:50:16 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1176' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:31 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vapp-b8056468-78a9-457d-a505-6ddd49504dc7 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:17 GMT, Tue, 20 Aug 2013 10:50:17 GMT + Content-Type: + - application/vnd.vmware.vcloud.vApp+xml;version=1.5 + Content-Length: + - '20976' + body: + encoding: US-ASCII + string: ! "\n\n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n \n Lease settings section\n + \ \n + \ 0\n 7776000\n + \ 2013-11-18T10:50:10.327Z\n + \ \n \n VApp + startup section\n \n + \ \n + \ \n \n The + list of logical networks\n \n \n \n + \ \n \n The configuration parameters for + logical networks\n \n + \ \n + \ \n + \ \n \n \n + \ true\n 10.192.0.1\n + \ 255.255.252.0\n 10.192.0.11\n + \ 10.192.0.12\n dev.ad.mdsol.com\n + \ \n \n 10.192.1.32\n + \ 10.192.3.254\n \n + \ \n 10.192.0.100\n + \ 10.192.0.254\n \n + \ \n \n \n + \ bridged\n false\n + \ \n false\n + \ \n \n \n + \ \n + \ \n false\n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ Windows Server 2008 R2 Web Edition\n + \ \n + \ Virtual hardware requirements\n \n + \ Virtual Hardware Family\n + \ 0\n DEVWEB\n + \ vmx-08\n + \ \n \n 00:50:56:01:01:6c\n + \ 0\n true\n + \ DevOps - Dev Network Connection\n + \ E1000 ethernet adapter on \"DevOps - + Dev Network Connection\"\n Network + adapter 0\n 1\n + \ E1000\n 10\n + \ \n \n 0\n + \ SCSI Controller\n + \ SCSI Controller 0\n + \ 2\n lsilogicsas\n + \ 6\n \n + \ \n 0\n + \ Hard disk\n Hard + disk 1\n \n 2000\n + \ 2\n 17\n + \ \n \n 0\n + \ IDE Controller\n + \ IDE Controller 0\n + \ 3\n 5\n + \ \n \n 1\n + \ false\n + \ CD/DVD Drive\n CD/DVD + Drive 1\n \n 3002\n + \ 3\n 15\n + \ \n \n 0\n + \ false\n + \ Floppy Drive\n Floppy + Drive 1\n \n 8000\n + \ 14\n \n + \ \n hertz + * 10^6\n Number + of Virtual CPUs\n 4 + virtual CPU(s)\n 4\n + \ 0\n 3\n + \ 4\n 0\n + \ \n + \ \n \n byte + * 2^20\n Memory + Size\n 5120 MB of + memory\n 5\n + \ 0\n 4\n + \ 5120\n 0\n + \ \n + \ \n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n \n + \ Specifies the operating system installed\n + \ Microsoft Windows Server 2008 R2 (64-bit)\n + \ \n + \ \n \n Specifies the available + VM network connections\n 0\n + \ \n 0\n + \ 10.192.0.194\n true\n + \ 00:50:56:01:01:6c\n POOL\n + \ \n \n + \ \n \n Specifies Guest OS Customization + Settings\n true\n false\n + \ 1c353cf3-3a46-4b58-90e4-b9fc9088db22\n + \ false\n false\n + \ false\n true\n + \ false\n this + is the user data\n DEVWEB-001\n + \ \n + \ \n \n + \ Specifies Runtime info\n \n \n DEVWEB\n + \ \n \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:33 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/metadata/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:18 GMT, Tue, 20 Aug 2013 10:50:18 GMT + Content-Type: + - application/vnd.vmware.vcloud.metadata+xml;version=1.5 + Content-Length: + - '707' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:34 GMT +- request: + method: post + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/metadata/ + body: + encoding: US-ASCII + string: ! "\n + \ \n company\n + \ acme\n \n" + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Content-Type: + - application/vnd.vmware.vcloud.metadata+xml + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 202 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:19 GMT, Tue, 20 Aug 2013 10:50:19 GMT + Location: + - https://devlab.mdsol.com/api/task/d9781957-afaa-4fb5-8ad8-5cfcf7fdd0fc + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1267' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:35 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/d9781957-afaa-4fb5-8ad8-5cfcf7fdd0fc + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:20 GMT, Tue, 20 Aug 2013 10:50:20 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1179' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:36 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/metadata/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:21 GMT, Tue, 20 Aug 2013 10:50:21 GMT + Content-Type: + - application/vnd.vmware.vcloud.metadata+xml;version=1.5 + Content-Length: + - '1430' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ company\n acme\n \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:37 GMT +- request: + method: post + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/metadata/ + body: + encoding: US-ASCII + string: ! "\n + \ \n company\n + \ acme\n \n \n + \ environment\n testing\n + \ \n" + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Content-Type: + - application/vnd.vmware.vcloud.metadata+xml + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 202 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:22 GMT, Tue, 20 Aug 2013 10:50:22 GMT + Location: + - https://devlab.mdsol.com/api/task/60907969-4922-454d-9d26-5aba2176786f + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1267' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:38 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/60907969-4922-454d-9d26-5aba2176786f + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:23 GMT, Tue, 20 Aug 2013 10:50:23 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1179' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:38 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/metadata/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:24 GMT, Tue, 20 Aug 2013 10:50:24 GMT + Content-Type: + - application/vnd.vmware.vcloud.metadata+xml;version=1.5 + Content-Length: + - '2172' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ company\n acme\n \n + \ \n + \ \n + \ \n + \ \n + \ environment\n testing\n \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:39 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/metadata/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:25 GMT, Tue, 20 Aug 2013 10:50:25 GMT + Content-Type: + - application/vnd.vmware.vcloud.metadata+xml;version=1.5 + Content-Length: + - '2172' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ company\n acme\n \n + \ \n + \ \n + \ \n + \ \n + \ environment\n testing\n \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:40 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/metadata/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:26 GMT, Tue, 20 Aug 2013 10:50:26 GMT + Content-Type: + - application/vnd.vmware.vcloud.metadata+xml;version=1.5 + Content-Length: + - '2172' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ company\n acme\n \n + \ \n + \ \n + \ \n + \ \n + \ environment\n testing\n \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:41 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/metadata/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:27 GMT, Tue, 20 Aug 2013 10:50:27 GMT + Content-Type: + - application/vnd.vmware.vcloud.metadata+xml;version=1.5 + Content-Length: + - '2172' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ company\n acme\n \n + \ \n + \ \n + \ \n + \ \n + \ environment\n testing\n \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:42 GMT +- request: + method: delete + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/metadata/company + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 202 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:28 GMT, Tue, 20 Aug 2013 10:50:28 GMT + Location: + - https://devlab.mdsol.com/api/task/0950cf54-21c4-4cf9-89df-f9e7cd5b2dc6 + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1267' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:43 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/0950cf54-21c4-4cf9-89df-f9e7cd5b2dc6 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:29 GMT, Tue, 20 Aug 2013 10:50:29 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1179' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:44 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/metadata/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:29 GMT, Tue, 20 Aug 2013 10:50:30 GMT + Content-Type: + - application/vnd.vmware.vcloud.metadata+xml;version=1.5 + Content-Length: + - '1449' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ environment\n testing\n \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:45 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/metadata/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:30 GMT, Tue, 20 Aug 2013 10:50:30 GMT + Content-Type: + - application/vnd.vmware.vcloud.metadata+xml;version=1.5 + Content-Length: + - '1449' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ environment\n testing\n \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:46 GMT +- request: + method: post + uri: https://devlab.mdsol.com/api/vApp/vm-1c353cf3-3a46-4b58-90e4-b9fc9088db22/power/action/powerOn + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 202 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:31 GMT, Tue, 20 Aug 2013 10:50:32 GMT + Location: + - https://devlab.mdsol.com/api/task/bfbb7b4e-f9af-46fe-a9b9-dbed73a4dd04 + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1262' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:47 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/bfbb7b4e-f9af-46fe-a9b9-dbed73a4dd04 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:32 GMT, Tue, 20 Aug 2013 10:50:32 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1262' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:48 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/bfbb7b4e-f9af-46fe-a9b9-dbed73a4dd04 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:34 GMT, Tue, 20 Aug 2013 10:50:34 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1262' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:50 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/bfbb7b4e-f9af-46fe-a9b9-dbed73a4dd04 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:36 GMT, Tue, 20 Aug 2013 10:50:36 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1262' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:52 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/bfbb7b4e-f9af-46fe-a9b9-dbed73a4dd04 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:38 GMT, Tue, 20 Aug 2013 10:50:38 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1262' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:54 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/bfbb7b4e-f9af-46fe-a9b9-dbed73a4dd04 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:40 GMT, Tue, 20 Aug 2013 10:50:40 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1262' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:56 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/bfbb7b4e-f9af-46fe-a9b9-dbed73a4dd04 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:42 GMT, Tue, 20 Aug 2013 10:50:42 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1262' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:57 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/bfbb7b4e-f9af-46fe-a9b9-dbed73a4dd04 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:44 GMT, Tue, 20 Aug 2013 10:50:44 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1262' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:52:59 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/bfbb7b4e-f9af-46fe-a9b9-dbed73a4dd04 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:46 GMT, Tue, 20 Aug 2013 10:50:46 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1262' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:53:01 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/bfbb7b4e-f9af-46fe-a9b9-dbed73a4dd04 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:48 GMT, Tue, 20 Aug 2013 10:50:48 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1262' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:53:03 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/bfbb7b4e-f9af-46fe-a9b9-dbed73a4dd04 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:49 GMT, Tue, 20 Aug 2013 10:50:50 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1262' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:53:05 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/task/bfbb7b4e-f9af-46fe-a9b9-dbed73a4dd04 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:51 GMT, Tue, 20 Aug 2013 10:50:51 GMT + Content-Type: + - application/vnd.vmware.vcloud.task+xml;version=1.5 + Content-Length: + - '1174' + body: + encoding: US-ASCII + string: ! "\n\n \n + \ \n + \ \n + \ 0\n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:53:07 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vapp-b8056468-78a9-457d-a505-6ddd49504dc7 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=9QGBZRH/iuBWlSpRfFeRIRAFZvUarv1v/8ZvnhuPe0c=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Tue, 20 Aug 2013 10:50:52 GMT, Tue, 20 Aug 2013 10:50:53 GMT + Content-Type: + - application/vnd.vmware.vcloud.vApp+xml;version=1.5 + Content-Length: + - '24636' + body: + encoding: US-ASCII + string: ! "\n\n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n \n Lease settings section\n + \ \n + \ 0\n 7776000\n + \ \n \n VApp + startup section\n \n + \ \n + \ \n \n The + list of logical networks\n \n \n \n + \ \n \n The configuration parameters for + logical networks\n \n + \ \n + \ \n + \ \n \n \n + \ true\n 10.192.0.1\n + \ 255.255.252.0\n 10.192.0.11\n + \ 10.192.0.12\n dev.ad.mdsol.com\n + \ \n \n 10.192.1.32\n + \ 10.192.3.254\n \n + \ \n 10.192.0.100\n + \ 10.192.0.254\n \n + \ \n \n \n + \ bridged\n false\n + \ \n true\n + \ \n \n \n + \ \n + \ \n false\n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ Windows Server 2008 R2 Web Edition\n + \ \n + \ Virtual hardware requirements\n \n + \ Virtual Hardware Family\n + \ 0\n DEVWEB\n + \ vmx-08\n + \ \n \n 00:50:56:01:01:6c\n + \ 0\n true\n + \ DevOps - Dev Network Connection\n + \ E1000 ethernet adapter on \"DevOps - + Dev Network Connection\"\n Network + adapter 0\n 1\n + \ E1000\n 10\n + \ \n \n 0\n + \ SCSI Controller\n + \ SCSI Controller 0\n + \ 2\n lsilogicsas\n + \ 6\n \n + \ \n 0\n + \ Hard disk\n Hard + disk 1\n \n 2000\n + \ 2\n 17\n + \ \n \n 0\n + \ IDE Controller\n + \ IDE Controller 0\n + \ 3\n 5\n + \ \n \n 1\n + \ false\n + \ CD/DVD Drive\n CD/DVD + Drive 1\n \n 3002\n + \ 3\n 15\n + \ \n \n 0\n + \ false\n + \ Floppy Drive\n Floppy + Drive 1\n \n 8000\n + \ 14\n \n + \ \n hertz + * 10^6\n Number + of Virtual CPUs\n 4 + virtual CPU(s)\n 4\n + \ 0\n 3\n + \ 4\n 0\n + \ \n + \ \n \n byte + * 2^20\n Memory + Size\n 5120 MB of + memory\n 5\n + \ 0\n 4\n + \ 5120\n 0\n + \ \n + \ \n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n \n + \ Specifies the operating system installed\n + \ Microsoft Windows Server 2008 R2 (64-bit)\n + \ \n + \ \n \n Specifies the available + VM network connections\n 0\n + \ \n 0\n + \ 10.192.0.194\n true\n + \ 00:50:56:01:01:6c\n POOL\n + \ \n \n + \ \n \n Specifies Guest OS Customization + Settings\n true\n false\n + \ 1c353cf3-3a46-4b58-90e4-b9fc9088db22\n + \ false\n false\n + \ false\n true\n + \ false\n this + is the user data\n DEVWEB-001\n + \ \n + \ \n \n + \ Specifies Runtime info\n \n \n DEVWEB\n + \ \n \n + \ VMware ESXi\n 5.1.0\n + \ VMware, Inc.\n en\n + \ \n \n + \ \n \n \n \n \n \n \n \n \n \n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n \n \n + \ \n \n \n + \ \n \n\n" + http_version: + recorded_at: Tue, 20 Aug 2013 10:53:08 GMT +recorded_with: VCR 2.5.0 diff --git a/tests/vcloudng/vcr_cassettes/vms_tests_rb.yml b/tests/vcloudng/vcr_cassettes/vms_tests_rb.yml index 3a6d81a83..8b2e0d301 100644 --- a/tests/vcloudng/vcr_cassettes/vms_tests_rb.yml +++ b/tests/vcloudng/vcr_cassettes/vms_tests_rb.yml @@ -19,11 +19,11 @@ http_interactions: message: '' headers: Date: - - Mon, 19 Aug 2013 12:22:17 GMT, Mon, 19 Aug 2013 12:22:17 GMT + - Mon, 19 Aug 2013 14:40:15 GMT, Mon, 19 Aug 2013 14:40:16 GMT X-Vcloud-Authorization: - - pKqmjCmcEjNejI6Hmk5Nh4tkSSz1LacGICm8uz8rwwU= + - wv+cQrNws2WYU/IWL+VY7kIe0dIJdvh8JVaPw785bDc= Set-Cookie: - - vcloud-token=pKqmjCmcEjNejI6Hmk5Nh4tkSSz1LacGICm8uz8rwwU=; Secure; Path=/ + - vcloud-token=wv+cQrNws2WYU/IWL+VY7kIe0dIJdvh8JVaPw785bDc=; Secure; Path=/ Content-Type: - application/vnd.vmware.vcloud.session+xml;version=1.5 Content-Length: @@ -42,7 +42,7 @@ http_interactions: href=\"https://devlab.mdsol.com/api/query\"/>\n \n\n" http_version: - recorded_at: Mon, 19 Aug 2013 12:24:28 GMT + recorded_at: Mon, 19 Aug 2013 14:42:27 GMT - request: method: get uri: https://devlab.mdsol.com/api/org @@ -53,7 +53,7 @@ http_interactions: User-Agent: - fog/1.11.1 Cookie: - - vcloud-token=pKqmjCmcEjNejI6Hmk5Nh4tkSSz1LacGICm8uz8rwwU=; Secure; Path=/ + - vcloud-token=wv+cQrNws2WYU/IWL+VY7kIe0dIJdvh8JVaPw785bDc=; Secure; Path=/ Accept: - application/*+xml;version=1.5 response: @@ -62,7 +62,7 @@ http_interactions: message: '' headers: Date: - - Mon, 19 Aug 2013 12:22:18 GMT, Mon, 19 Aug 2013 12:22:18 GMT + - Mon, 19 Aug 2013 14:40:17 GMT, Mon, 19 Aug 2013 14:40:17 GMT Content-Type: - application/vnd.vmware.vcloud.orglist+xml;version=1.5 Content-Length: @@ -75,7 +75,7 @@ http_interactions: http://10.194.1.65/api/v1.5/schema/master.xsd\">\n \n\n" http_version: - recorded_at: Mon, 19 Aug 2013 12:24:29 GMT + recorded_at: Mon, 19 Aug 2013 14:42:28 GMT - request: method: get uri: https://devlab.mdsol.com/api/org/c6a4c623-c158-41cf-a87a-dbc1637ad55a @@ -86,7 +86,7 @@ http_interactions: User-Agent: - fog/1.11.1 Cookie: - - vcloud-token=pKqmjCmcEjNejI6Hmk5Nh4tkSSz1LacGICm8uz8rwwU=; Secure; Path=/ + - vcloud-token=wv+cQrNws2WYU/IWL+VY7kIe0dIJdvh8JVaPw785bDc=; Secure; Path=/ Accept: - application/*+xml;version=1.5 response: @@ -95,7 +95,7 @@ http_interactions: message: '' headers: Date: - - Mon, 19 Aug 2013 12:22:19 GMT, Mon, 19 Aug 2013 12:22:20 GMT + - Mon, 19 Aug 2013 14:40:18 GMT, Mon, 19 Aug 2013 14:40:18 GMT Content-Type: - application/vnd.vmware.vcloud.org+xml;version=1.5 Content-Length: @@ -127,7 +127,7 @@ http_interactions: href=\"https://devlab.mdsol.com/api/org/c6a4c623-c158-41cf-a87a-dbc1637ad55a/metadata\"/>\n \ \n DevOps\n\n" http_version: - recorded_at: Mon, 19 Aug 2013 12:24:31 GMT + recorded_at: Mon, 19 Aug 2013 14:42:29 GMT - request: method: get uri: https://devlab.mdsol.com/api/vdc/9a06a16b-12c6-44dc-aee1-06aa52262ea3 @@ -138,7 +138,7 @@ http_interactions: User-Agent: - fog/1.11.1 Cookie: - - vcloud-token=pKqmjCmcEjNejI6Hmk5Nh4tkSSz1LacGICm8uz8rwwU=; Secure; Path=/ + - vcloud-token=wv+cQrNws2WYU/IWL+VY7kIe0dIJdvh8JVaPw785bDc=; Secure; Path=/ Accept: - application/*+xml;version=1.5 response: @@ -147,7 +147,7 @@ http_interactions: message: '' headers: Date: - - Mon, 19 Aug 2013 12:22:22 GMT, Mon, 19 Aug 2013 12:22:22 GMT + - Mon, 19 Aug 2013 14:40:19 GMT, Mon, 19 Aug 2013 14:40:19 GMT Content-Type: - application/vnd.vmware.vcloud.vdc+xml;version=1.5 Content-Length: @@ -231,7 +231,7 @@ http_interactions: \ \n \n 0\n \ 1024\n 0\n true\n\n" http_version: - recorded_at: Mon, 19 Aug 2013 12:24:33 GMT + recorded_at: Mon, 19 Aug 2013 14:42:30 GMT - request: method: get uri: https://devlab.mdsol.com/api/vApp/vapp-af4ef7ff-2fd2-4893-b23d-9ea74ff354c9 @@ -242,7 +242,7 @@ http_interactions: User-Agent: - fog/1.11.1 Cookie: - - vcloud-token=pKqmjCmcEjNejI6Hmk5Nh4tkSSz1LacGICm8uz8rwwU=; Secure; Path=/ + - vcloud-token=wv+cQrNws2WYU/IWL+VY7kIe0dIJdvh8JVaPw785bDc=; Secure; Path=/ Accept: - application/*+xml;version=1.5 response: @@ -251,7 +251,7 @@ http_interactions: message: '' headers: Date: - - Mon, 19 Aug 2013 12:22:23 GMT, Mon, 19 Aug 2013 12:22:24 GMT + - Mon, 19 Aug 2013 14:40:20 GMT, Mon, 19 Aug 2013 14:40:20 GMT Content-Type: - application/vnd.vmware.vcloud.vApp+xml;version=1.5 Content-Length: @@ -311,7 +311,7 @@ http_interactions: href=\"https://devlab.mdsol.com/api/admin/user/652059cb-2b0a-4a82-b954-9c39d2c14571\"/>\n \ \n false\n\n" http_version: - recorded_at: Mon, 19 Aug 2013 12:24:35 GMT + recorded_at: Mon, 19 Aug 2013 14:42:32 GMT - request: method: get uri: https://devlab.mdsol.com/api/vApp/vapp-135597a7-b60c-4f0f-a7df-a79deb002cd2 @@ -322,7 +322,7 @@ http_interactions: User-Agent: - fog/1.11.1 Cookie: - - vcloud-token=pKqmjCmcEjNejI6Hmk5Nh4tkSSz1LacGICm8uz8rwwU=; Secure; Path=/ + - vcloud-token=wv+cQrNws2WYU/IWL+VY7kIe0dIJdvh8JVaPw785bDc=; Secure; Path=/ Accept: - application/*+xml;version=1.5 response: @@ -331,7 +331,7 @@ http_interactions: message: '' headers: Date: - - Mon, 19 Aug 2013 12:22:26 GMT, Mon, 19 Aug 2013 12:22:26 GMT + - Mon, 19 Aug 2013 14:40:21 GMT, Mon, 19 Aug 2013 14:40:21 GMT Content-Type: - application/vnd.vmware.vcloud.vApp+xml;version=1.5 Content-Length: @@ -392,7 +392,7 @@ http_interactions: href=\"https://devlab.mdsol.com/api/admin/user/c3ca7b97-ddea-425f-8bdb-1fdb946f7349\"/>\n \ \n false\n\n" http_version: - recorded_at: Mon, 19 Aug 2013 12:24:38 GMT + recorded_at: Mon, 19 Aug 2013 14:42:33 GMT - request: method: get uri: https://devlab.mdsol.com/api/vApp/vapp-4c300067-f34b-4409-80d4-6ac1672d13ae @@ -403,7 +403,7 @@ http_interactions: User-Agent: - fog/1.11.1 Cookie: - - vcloud-token=pKqmjCmcEjNejI6Hmk5Nh4tkSSz1LacGICm8uz8rwwU=; Secure; Path=/ + - vcloud-token=wv+cQrNws2WYU/IWL+VY7kIe0dIJdvh8JVaPw785bDc=; Secure; Path=/ Accept: - application/*+xml;version=1.5 response: @@ -412,7 +412,7 @@ http_interactions: message: '' headers: Date: - - Mon, 19 Aug 2013 12:22:28 GMT, Mon, 19 Aug 2013 12:22:28 GMT + - Mon, 19 Aug 2013 14:40:22 GMT, Mon, 19 Aug 2013 14:40:22 GMT Content-Type: - application/vnd.vmware.vcloud.vApp+xml;version=1.5 Content-Length: @@ -473,7 +473,7 @@ http_interactions: href=\"https://devlab.mdsol.com/api/admin/user/c3ca7b97-ddea-425f-8bdb-1fdb946f7349\"/>\n \ \n false\n\n" http_version: - recorded_at: Mon, 19 Aug 2013 12:24:40 GMT + recorded_at: Mon, 19 Aug 2013 14:42:34 GMT - request: method: get uri: https://devlab.mdsol.com/api/vApp/vapp-26c75241-53e1-450c-ba9d-47176a28c83a @@ -484,7 +484,7 @@ http_interactions: User-Agent: - fog/1.11.1 Cookie: - - vcloud-token=pKqmjCmcEjNejI6Hmk5Nh4tkSSz1LacGICm8uz8rwwU=; Secure; Path=/ + - vcloud-token=wv+cQrNws2WYU/IWL+VY7kIe0dIJdvh8JVaPw785bDc=; Secure; Path=/ Accept: - application/*+xml;version=1.5 response: @@ -493,7 +493,7 @@ http_interactions: message: '' headers: Date: - - Mon, 19 Aug 2013 12:22:31 GMT, Mon, 19 Aug 2013 12:22:31 GMT + - Mon, 19 Aug 2013 14:40:23 GMT, Mon, 19 Aug 2013 14:40:23 GMT Content-Type: - application/vnd.vmware.vcloud.vApp+xml;version=1.5 Content-Length: @@ -539,10 +539,10 @@ http_interactions: \ true\n 10.192.0.1\n \ 255.255.252.0\n 10.192.0.11\n \ 10.192.0.12\n dev.ad.mdsol.com\n - \ \n \n 10.192.0.100\n - \ 10.192.0.254\n \n - \ \n 10.192.1.32\n + \ \n \n 10.192.1.32\n \ 10.192.3.254\n \n + \ \n 10.192.0.100\n + \ 10.192.0.254\n \n \ \n \n \n @@ -553,7 +553,7 @@ http_interactions: href=\"https://devlab.mdsol.com/api/admin/user/c3ca7b97-ddea-425f-8bdb-1fdb946f7349\"/>\n \ \n false\n\n" http_version: - recorded_at: Mon, 19 Aug 2013 12:24:43 GMT + recorded_at: Mon, 19 Aug 2013 14:42:35 GMT - request: method: get uri: https://devlab.mdsol.com/api/vApp/vapp-499a3d4e-7156-4bd7-9c42-9c42d5afe3a1 @@ -564,7 +564,7 @@ http_interactions: User-Agent: - fog/1.11.1 Cookie: - - vcloud-token=pKqmjCmcEjNejI6Hmk5Nh4tkSSz1LacGICm8uz8rwwU=; Secure; Path=/ + - vcloud-token=wv+cQrNws2WYU/IWL+VY7kIe0dIJdvh8JVaPw785bDc=; Secure; Path=/ Accept: - application/*+xml;version=1.5 response: @@ -573,7 +573,7 @@ http_interactions: message: '' headers: Date: - - Mon, 19 Aug 2013 12:22:33 GMT, Mon, 19 Aug 2013 12:22:34 GMT + - Mon, 19 Aug 2013 14:40:24 GMT, Mon, 19 Aug 2013 14:40:24 GMT Content-Type: - application/vnd.vmware.vcloud.vApp+xml;version=1.5 Content-Length: @@ -619,10 +619,10 @@ http_interactions: \ true\n 10.192.0.1\n \ 255.255.252.0\n 10.192.0.11\n \ 10.192.0.12\n dev.ad.mdsol.com\n - \ \n \n 10.192.0.100\n - \ 10.192.0.254\n \n - \ \n 10.192.1.32\n + \ \n \n 10.192.1.32\n \ 10.192.3.254\n \n + \ \n 10.192.0.100\n + \ 10.192.0.254\n \n \ \n \n \n @@ -633,7 +633,7 @@ http_interactions: href=\"https://devlab.mdsol.com/api/admin/user/c3ca7b97-ddea-425f-8bdb-1fdb946f7349\"/>\n \ \n false\n\n" http_version: - recorded_at: Mon, 19 Aug 2013 12:24:45 GMT + recorded_at: Mon, 19 Aug 2013 14:42:36 GMT - request: method: get uri: https://devlab.mdsol.com/api/vApp/vapp-6202aaa7-499f-469e-b178-467c50d6d044 @@ -644,7 +644,7 @@ http_interactions: User-Agent: - fog/1.11.1 Cookie: - - vcloud-token=pKqmjCmcEjNejI6Hmk5Nh4tkSSz1LacGICm8uz8rwwU=; Secure; Path=/ + - vcloud-token=wv+cQrNws2WYU/IWL+VY7kIe0dIJdvh8JVaPw785bDc=; Secure; Path=/ Accept: - application/*+xml;version=1.5 response: @@ -653,7 +653,7 @@ http_interactions: message: '' headers: Date: - - Mon, 19 Aug 2013 12:22:42 GMT, Mon, 19 Aug 2013 12:22:42 GMT + - Mon, 19 Aug 2013 14:40:25 GMT, Mon, 19 Aug 2013 14:40:25 GMT Content-Type: - application/vnd.vmware.vcloud.vApp+xml;version=1.5 Content-Length: @@ -700,10 +700,10 @@ http_interactions: \ true\n 10.192.0.1\n \ 255.255.252.0\n 10.192.0.11\n \ 10.192.0.12\n dev.ad.mdsol.com\n - \ \n \n 10.192.0.100\n - \ 10.192.0.254\n \n - \ \n 10.192.1.32\n + \ \n \n 10.192.1.32\n \ 10.192.3.254\n \n + \ \n 10.192.0.100\n + \ 10.192.0.254\n \n \ \n \n \n @@ -714,7 +714,7 @@ http_interactions: href=\"https://devlab.mdsol.com/api/admin/user/c3ca7b97-ddea-425f-8bdb-1fdb946f7349\"/>\n \ \n false\n\n" http_version: - recorded_at: Mon, 19 Aug 2013 12:24:54 GMT + recorded_at: Mon, 19 Aug 2013 14:42:37 GMT - request: method: get uri: https://devlab.mdsol.com/api/vApp/vapp-b0bee1f6-62f7-4c91-bea6-5fd993e08490 @@ -725,7 +725,7 @@ http_interactions: User-Agent: - fog/1.11.1 Cookie: - - vcloud-token=pKqmjCmcEjNejI6Hmk5Nh4tkSSz1LacGICm8uz8rwwU=; Secure; Path=/ + - vcloud-token=wv+cQrNws2WYU/IWL+VY7kIe0dIJdvh8JVaPw785bDc=; Secure; Path=/ Accept: - application/*+xml;version=1.5 response: @@ -734,7 +734,7 @@ http_interactions: message: '' headers: Date: - - Mon, 19 Aug 2013 12:22:46 GMT, Mon, 19 Aug 2013 12:22:46 GMT + - Mon, 19 Aug 2013 14:40:26 GMT, Mon, 19 Aug 2013 14:40:27 GMT Content-Type: - application/vnd.vmware.vcloud.vApp+xml;version=1.5 Content-Length: @@ -795,7 +795,7 @@ http_interactions: href=\"https://devlab.mdsol.com/api/admin/user/c3ca7b97-ddea-425f-8bdb-1fdb946f7349\"/>\n \ \n false\n\n" http_version: - recorded_at: Mon, 19 Aug 2013 12:24:58 GMT + recorded_at: Mon, 19 Aug 2013 14:42:38 GMT - request: method: get uri: https://devlab.mdsol.com/api/vApp/vapp-83314223-7d36-42b6-b03e-8ef619b9b152 @@ -806,7 +806,7 @@ http_interactions: User-Agent: - fog/1.11.1 Cookie: - - vcloud-token=pKqmjCmcEjNejI6Hmk5Nh4tkSSz1LacGICm8uz8rwwU=; Secure; Path=/ + - vcloud-token=wv+cQrNws2WYU/IWL+VY7kIe0dIJdvh8JVaPw785bDc=; Secure; Path=/ Accept: - application/*+xml;version=1.5 response: @@ -815,7 +815,7 @@ http_interactions: message: '' headers: Date: - - Mon, 19 Aug 2013 12:22:49 GMT, Mon, 19 Aug 2013 12:22:49 GMT + - Mon, 19 Aug 2013 14:40:28 GMT, Mon, 19 Aug 2013 14:40:28 GMT Content-Type: - application/vnd.vmware.vcloud.vApp+xml;version=1.5 Content-Length: @@ -1032,7 +1032,7 @@ http_interactions: version=\"9216\"/>\n \n DEVAPP\n \ \n \n\n" http_version: - recorded_at: Mon, 19 Aug 2013 12:25:02 GMT + recorded_at: Mon, 19 Aug 2013 14:42:40 GMT - request: method: get uri: https://devlab.mdsol.com/api/vApp/vapp-83314223-7d36-42b6-b03e-8ef619b9b152 @@ -1043,7 +1043,7 @@ http_interactions: User-Agent: - fog/1.11.1 Cookie: - - vcloud-token=pKqmjCmcEjNejI6Hmk5Nh4tkSSz1LacGICm8uz8rwwU=; Secure; Path=/ + - vcloud-token=wv+cQrNws2WYU/IWL+VY7kIe0dIJdvh8JVaPw785bDc=; Secure; Path=/ Accept: - application/*+xml;version=1.5 response: @@ -1052,7 +1052,7 @@ http_interactions: message: '' headers: Date: - - Mon, 19 Aug 2013 12:22:52 GMT, Mon, 19 Aug 2013 12:22:52 GMT + - Mon, 19 Aug 2013 14:40:29 GMT, Mon, 19 Aug 2013 14:40:29 GMT Content-Type: - application/vnd.vmware.vcloud.vApp+xml;version=1.5 Content-Length: @@ -1269,7 +1269,7 @@ http_interactions: version=\"9216\"/>\n \n DEVAPP\n \ \n \n\n" http_version: - recorded_at: Mon, 19 Aug 2013 12:25:04 GMT + recorded_at: Mon, 19 Aug 2013 14:42:41 GMT - request: method: get uri: https://devlab.mdsol.com/api/vApp/vapp-83314223-7d36-42b6-b03e-8ef619b9b152 @@ -1280,7 +1280,7 @@ http_interactions: User-Agent: - fog/1.11.1 Cookie: - - vcloud-token=pKqmjCmcEjNejI6Hmk5Nh4tkSSz1LacGICm8uz8rwwU=; Secure; Path=/ + - vcloud-token=wv+cQrNws2WYU/IWL+VY7kIe0dIJdvh8JVaPw785bDc=; Secure; Path=/ Accept: - application/*+xml;version=1.5 response: @@ -1289,7 +1289,244 @@ http_interactions: message: '' headers: Date: - - Mon, 19 Aug 2013 12:22:54 GMT, Mon, 19 Aug 2013 12:22:55 GMT + - Mon, 19 Aug 2013 14:40:31 GMT, Mon, 19 Aug 2013 14:40:31 GMT + Content-Type: + - application/vnd.vmware.vcloud.vApp+xml;version=1.5 + Content-Length: + - '21193' + body: + encoding: US-ASCII + string: ! "\n\n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n \n Lease settings section\n + \ \n + \ 0\n 7776000\n + \ 2013-10-08T08:54:33.277Z\n + \ \n \n VApp + startup section\n \n + \ \n + \ \n \n The + list of logical networks\n \n \n \n + \ \n This + is a special place-holder used for disconnected network interfaces.\n + \ \n \n \n The configuration parameters for + logical networks\n \n + \ \n + \ \n + \ \n \n \n + \ true\n 10.192.0.1\n + \ 255.255.252.0\n 10.192.0.11\n + \ 10.192.0.12\n dev.ad.mdsol.com\n + \ \n \n 10.192.0.100\n + \ 10.192.0.254\n \n + \ \n 10.192.1.32\n + \ 10.192.3.254\n \n + \ \n \n \n + \ bridged\n false\n + \ \n false\n + \ \n \n This + is a special place-holder used for disconnected network interfaces.\n + \ \n isolated\n + \ \n false\n + \ \n \n \n + \ \n + \ \n false\n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n \n + \ Virtual hardware requirements\n \n + \ Virtual Hardware Family\n + \ 0\n DEVAPP\n + \ vmx-08\n + \ \n \n 00:50:56:01:00:f4\n + \ 0\n false\n + \ none\n E1000 + ethernet adapter on \"none\"\n Network + adapter 0\n 1\n + \ E1000\n 10\n + \ \n \n 0\n + \ SCSI Controller\n + \ SCSI Controller 0\n + \ 2\n lsilogicsas\n + \ 6\n \n + \ \n 0\n + \ Hard disk\n Hard + disk 1\n \n 2000\n + \ 2\n 17\n + \ \n \n 0\n + \ IDE Controller\n + \ IDE Controller 0\n + \ 3\n 5\n + \ \n \n 1\n + \ false\n + \ CD/DVD Drive\n CD/DVD + Drive 1\n \n 3002\n + \ 3\n 15\n + \ \n \n 0\n + \ false\n + \ Floppy Drive\n Floppy + Drive 1\n \n 8000\n + \ 14\n \n + \ \n hertz + * 10^6\n Number + of Virtual CPUs\n 2 + virtual CPU(s)\n 4\n + \ 0\n 3\n + \ 2\n 0\n + \ \n + \ \n \n byte + * 2^20\n Memory + Size\n 2560 MB of + memory\n 5\n + \ 0\n 4\n + \ 2560\n 0\n + \ \n + \ \n \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n + \ \n \n + \ Specifies the operating system installed\n + \ Microsoft Windows Server 2008 R2 (64-bit)\n + \ \n + \ \n \n Specifies the available + VM network connections\n 0\n + \ \n + \ 0\n false\n + \ 00:50:56:01:00:f4\n NONE\n + \ \n \n + \ \n \n Specifies Guest OS Customization + Settings\n true\n false\n + \ 4a37a2ea-b0dd-41ae-a879-5f0743b1ff77\n + \ false\n false\n + \ false\n true\n + \ false\n DEVAPP-001\n + \ \n + \ \n \n + \ Specifies Runtime info\n \n \n DEVAPP\n + \ \n \n\n" + http_version: + recorded_at: Mon, 19 Aug 2013 14:42:43 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vapp-83314223-7d36-42b6-b03e-8ef619b9b152 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=wv+cQrNws2WYU/IWL+VY7kIe0dIJdvh8JVaPw785bDc=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Mon, 19 Aug 2013 14:40:32 GMT, Mon, 19 Aug 2013 14:40:33 GMT Content-Type: - application/vnd.vmware.vcloud.vApp+xml;version=1.5 Content-Length: @@ -1506,7 +1743,7 @@ http_interactions: version=\"9216\"/>\n \n DEVAPP\n \ \n \n\n" http_version: - recorded_at: Mon, 19 Aug 2013 12:25:07 GMT + recorded_at: Mon, 19 Aug 2013 14:42:45 GMT - request: method: get uri: https://devlab.mdsol.com/api/vApp/vapp-83314223-7d36-42b6-b03e-8ef619b9b152 @@ -1517,7 +1754,7 @@ http_interactions: User-Agent: - fog/1.11.1 Cookie: - - vcloud-token=pKqmjCmcEjNejI6Hmk5Nh4tkSSz1LacGICm8uz8rwwU=; Secure; Path=/ + - vcloud-token=wv+cQrNws2WYU/IWL+VY7kIe0dIJdvh8JVaPw785bDc=; Secure; Path=/ Accept: - application/*+xml;version=1.5 response: @@ -1526,7 +1763,7 @@ http_interactions: message: '' headers: Date: - - Mon, 19 Aug 2013 12:23:26 GMT, Mon, 19 Aug 2013 12:23:26 GMT + - Mon, 19 Aug 2013 14:40:34 GMT, Mon, 19 Aug 2013 14:40:34 GMT Content-Type: - application/vnd.vmware.vcloud.vApp+xml;version=1.5 Content-Length: @@ -1743,7 +1980,7 @@ http_interactions: version=\"9216\"/>\n \n DEVAPP\n \ \n \n\n" http_version: - recorded_at: Mon, 19 Aug 2013 12:25:38 GMT + recorded_at: Mon, 19 Aug 2013 14:42:46 GMT - request: method: get uri: https://devlab.mdsol.com/api/vApp/vapp-83314223-7d36-42b6-b03e-8ef619b9b152 @@ -1754,7 +1991,7 @@ http_interactions: User-Agent: - fog/1.11.1 Cookie: - - vcloud-token=pKqmjCmcEjNejI6Hmk5Nh4tkSSz1LacGICm8uz8rwwU=; Secure; Path=/ + - vcloud-token=wv+cQrNws2WYU/IWL+VY7kIe0dIJdvh8JVaPw785bDc=; Secure; Path=/ Accept: - application/*+xml;version=1.5 response: @@ -1763,7 +2000,7 @@ http_interactions: message: '' headers: Date: - - Mon, 19 Aug 2013 12:23:33 GMT, Mon, 19 Aug 2013 12:23:33 GMT + - Mon, 19 Aug 2013 14:40:35 GMT, Mon, 19 Aug 2013 14:40:36 GMT Content-Type: - application/vnd.vmware.vcloud.vApp+xml;version=1.5 Content-Length: @@ -1980,10 +2217,10 @@ http_interactions: version=\"9216\"/>\n \n DEVAPP\n \ \n \n\n" http_version: - recorded_at: Mon, 19 Aug 2013 12:25:48 GMT + recorded_at: Mon, 19 Aug 2013 14:42:48 GMT - request: method: get - uri: https://devlab.mdsol.com/api/vApp/vapp-83314223-7d36-42b6-b03e-8ef619b9b152 + uri: https://devlab.mdsol.com/api/vApp/vm-4a37a2ea-b0dd-41ae-a879-5f0743b1ff77/virtualHardwareSection/disks body: encoding: US-ASCII string: '' @@ -1991,7 +2228,7 @@ http_interactions: User-Agent: - fog/1.11.1 Cookie: - - vcloud-token=pKqmjCmcEjNejI6Hmk5Nh4tkSSz1LacGICm8uz8rwwU=; Secure; Path=/ + - vcloud-token=wv+cQrNws2WYU/IWL+VY7kIe0dIJdvh8JVaPw785bDc=; Secure; Path=/ Accept: - application/*+xml;version=1.5 response: @@ -2000,222 +2237,267 @@ http_interactions: message: '' headers: Date: - - Mon, 19 Aug 2013 12:23:38 GMT, Mon, 19 Aug 2013 12:23:38 GMT + - Mon, 19 Aug 2013 14:40:37 GMT, Mon, 19 Aug 2013 14:40:37 GMT Content-Type: - - application/vnd.vmware.vcloud.vApp+xml;version=1.5 + - application/vnd.vmware.vcloud.rasditemslist+xml;version=1.5 Content-Length: - - '21193' + - '2008' body: encoding: US-ASCII - string: ! "\n\n\n - \ \n - \ \n - \ \n - \ \n - \ \n - \ \n - \ \n - \ \n - \ \n - \ \n - \ \n - \ \n \n Lease settings section\n - \ \n - \ 0\n 7776000\n - \ 2013-10-08T08:54:33.277Z\n - \ \n \n VApp - startup section\n \n - \ \n - \ \n \n The - list of logical networks\n \n \n \n - \ \n This - is a special place-holder used for disconnected network interfaces.\n - \ \n \n \n The configuration parameters for - logical networks\n \n - \ \n - \ \n - \ \n \n \n - \ true\n 10.192.0.1\n - \ 255.255.252.0\n 10.192.0.11\n - \ 10.192.0.12\n dev.ad.mdsol.com\n - \ \n \n 10.192.0.100\n - \ 10.192.0.254\n \n - \ \n 10.192.1.32\n - \ 10.192.3.254\n \n - \ \n \n \n - \ bridged\n false\n - \ \n false\n - \ \n \n This - is a special place-holder used for disconnected network interfaces.\n - \ \n isolated\n - \ \n false\n - \ \n \n \n - \ \n - \ \n false\n \n - \ \n - \ \n - \ \n - \ \n - \ \n - \ \n - \ \n - \ \n - \ \n - \ \n - \ \n - \ \n \n - \ Virtual hardware requirements\n \n - \ Virtual Hardware Family\n - \ 0\n DEVAPP\n - \ vmx-08\n - \ \n \n 00:50:56:01:00:f4\n - \ 0\n false\n - \ none\n E1000 - ethernet adapter on \"none\"\n Network - adapter 0\n 1\n - \ E1000\n 10\n - \ \n \n 0\n - \ SCSI Controller\n - \ SCSI Controller 0\n - \ 2\n lsilogicsas\n - \ 6\n \n - \ \n 0\n - \ Hard disk\n Hard - disk 1\n \n 2000\n - \ 2\n 17\n - \ \n \n 0\n - \ IDE Controller\n - \ IDE Controller 0\n - \ 3\n 5\n - \ \n \n 1\n - \ false\n - \ CD/DVD Drive\n CD/DVD - Drive 1\n \n 3002\n - \ 3\n 15\n - \ \n \n 0\n - \ false\n - \ Floppy Drive\n Floppy - Drive 1\n \n 8000\n - \ 14\n \n - \ \n hertz - * 10^6\n Number - of Virtual CPUs\n 2 - virtual CPU(s)\n 4\n - \ 0\n 3\n - \ 2\n 0\n - \ \n - \ \n \n byte - * 2^20\n Memory - Size\n 2560 MB of - memory\n 5\n - \ 0\n 4\n - \ 2560\n 0\n - \ \n - \ \n \n - \ \n - \ \n - \ \n - \ \n - \ \n - \ \n - \ \n - \ \n - \ \n - \ \n - \ \n - \ \n \n - \ Specifies the operating system installed\n - \ Microsoft Windows Server 2008 R2 (64-bit)\n - \ \n - \ \n \n Specifies the available - VM network connections\n 0\n - \ \n - \ 0\n false\n - \ 00:50:56:01:00:f4\n NONE\n - \ \n \n - \ \n \n Specifies Guest OS Customization - Settings\n true\n false\n - \ 4a37a2ea-b0dd-41ae-a879-5f0743b1ff77\n - \ false\n false\n - \ false\n true\n - \ false\n DEVAPP-001\n - \ \n - \ \n \n - \ Specifies Runtime info\n \n \n DEVAPP\n - \ \n \n\n" + \ \n 0\n SCSI + Controller\n SCSI Controller 0\n + \ 2\n lsilogicsas\n + \ 6\n \n \n + \ 0\n Hard + disk\n Hard disk 1\n + \ \n + \ 2000\n 2\n + \ 17\n \n \n + \ 0\n IDE Controller\n + \ IDE Controller 0\n 3\n + \ 5\n \n\n" http_version: - recorded_at: Mon, 19 Aug 2013 12:25:51 GMT + recorded_at: Mon, 19 Aug 2013 14:42:48 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vm-4a37a2ea-b0dd-41ae-a879-5f0743b1ff77/virtualHardwareSection/disks + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=wv+cQrNws2WYU/IWL+VY7kIe0dIJdvh8JVaPw785bDc=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Mon, 19 Aug 2013 14:40:38 GMT, Mon, 19 Aug 2013 14:40:38 GMT + Content-Type: + - application/vnd.vmware.vcloud.rasditemslist+xml;version=1.5 + Content-Length: + - '2008' + body: + encoding: US-ASCII + string: ! "\n\n + \ \n + \ \n 0\n SCSI + Controller\n SCSI Controller 0\n + \ 2\n lsilogicsas\n + \ 6\n \n \n + \ 0\n Hard + disk\n Hard disk 1\n + \ \n + \ 2000\n 2\n + \ 17\n \n \n + \ 0\n IDE Controller\n + \ IDE Controller 0\n 3\n + \ 5\n \n\n" + http_version: + recorded_at: Mon, 19 Aug 2013 14:42:49 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vm-4a37a2ea-b0dd-41ae-a879-5f0743b1ff77/virtualHardwareSection/disks + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=wv+cQrNws2WYU/IWL+VY7kIe0dIJdvh8JVaPw785bDc=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Mon, 19 Aug 2013 14:40:39 GMT, Mon, 19 Aug 2013 14:40:39 GMT + Content-Type: + - application/vnd.vmware.vcloud.rasditemslist+xml;version=1.5 + Content-Length: + - '2008' + body: + encoding: US-ASCII + string: ! "\n\n + \ \n + \ \n 0\n SCSI + Controller\n SCSI Controller 0\n + \ 2\n lsilogicsas\n + \ 6\n \n \n + \ 0\n Hard + disk\n Hard disk 1\n + \ \n + \ 2000\n 2\n + \ 17\n \n \n + \ 0\n IDE Controller\n + \ IDE Controller 0\n 3\n + \ 5\n \n\n" + http_version: + recorded_at: Mon, 19 Aug 2013 14:42:50 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vm-4a37a2ea-b0dd-41ae-a879-5f0743b1ff77/virtualHardwareSection/disks + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=wv+cQrNws2WYU/IWL+VY7kIe0dIJdvh8JVaPw785bDc=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Mon, 19 Aug 2013 14:40:40 GMT, Mon, 19 Aug 2013 14:40:40 GMT + Content-Type: + - application/vnd.vmware.vcloud.rasditemslist+xml;version=1.5 + Content-Length: + - '2008' + body: + encoding: US-ASCII + string: ! "\n\n + \ \n + \ \n 0\n SCSI + Controller\n SCSI Controller 0\n + \ 2\n lsilogicsas\n + \ 6\n \n \n + \ 0\n Hard + disk\n Hard disk 1\n + \ \n + \ 2000\n 2\n + \ 17\n \n \n + \ 0\n IDE Controller\n + \ IDE Controller 0\n 3\n + \ 5\n \n\n" + http_version: + recorded_at: Mon, 19 Aug 2013 14:42:51 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vm-4a37a2ea-b0dd-41ae-a879-5f0743b1ff77/guestCustomizationSection + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=wv+cQrNws2WYU/IWL+VY7kIe0dIJdvh8JVaPw785bDc=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Mon, 19 Aug 2013 14:41:36 GMT, Mon, 19 Aug 2013 14:41:36 GMT + Content-Type: + - application/vnd.vmware.vcloud.guestcustomizationsection+xml;version=1.5 + Content-Length: + - '1336' + body: + encoding: US-ASCII + string: ! "\n\n + \ Specifies Guest OS Customization Settings\n true\n + \ false\n 4a37a2ea-b0dd-41ae-a879-5f0743b1ff77\n + \ false\n false\n + \ false\n true\n + \ false\n DEVAPP-001\n + \ \n\n" + http_version: + recorded_at: Mon, 19 Aug 2013 14:43:48 GMT +- request: + method: get + uri: https://devlab.mdsol.com/api/vApp/vm-4a37a2ea-b0dd-41ae-a879-5f0743b1ff77/networkConnectionSection/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog/1.11.1 + Cookie: + - vcloud-token=wv+cQrNws2WYU/IWL+VY7kIe0dIJdvh8JVaPw785bDc=; Secure; Path=/ + Accept: + - application/*+xml;version=1.5 + response: + status: + code: 200 + message: '' + headers: + Date: + - Mon, 19 Aug 2013 14:41:37 GMT, Mon, 19 Aug 2013 14:41:37 GMT + Content-Type: + - application/vnd.vmware.vcloud.networkconnectionsection+xml;version=1.5 + Content-Length: + - '1274' + body: + encoding: US-ASCII + string: ! "\n\n + \ Specifies the available VM network connections\n + \ 0\n \n 0\n + \ false\n 00:50:56:01:00:f4\n + \ NONE\n \n + \ \n\n" + http_version: + recorded_at: Mon, 19 Aug 2013 14:43:49 GMT recorded_with: VCR 2.5.0