diff --git a/app/models/manageiq/providers/vmware/builder.rb b/app/models/manageiq/providers/vmware/builder.rb new file mode 100644 index 000000000..bae0a01fb --- /dev/null +++ b/app/models/manageiq/providers/vmware/builder.rb @@ -0,0 +1,30 @@ +class ManageIQ::Providers::Vmware::Builder + class << self + def build_inventory(ems, target) + cloud_manager_inventory(ems, target) + end + + private + + def cloud_manager_inventory(ems, target) + inventory( + ems, + target, + ManageIQ::Providers::Vmware::Inventory::Collector::CloudManager, + ManageIQ::Providers::Vmware::Inventory::Persister::CloudManager, + [ManageIQ::Providers::Vmware::Inventory::Parser::CloudManager] + ) + end + + def inventory(manager, raw_target, collector_class, persister_class, parsers_classes) + collector = collector_class.new(manager, raw_target) + persister = persister_class.new(manager, raw_target) + + ::ManageIQ::Providers::Vmware::Inventory.new( + persister, + collector, + parsers_classes.map(&:new) + ) + end + end +end diff --git a/app/models/manageiq/providers/vmware/cloud_manager.rb b/app/models/manageiq/providers/vmware/cloud_manager.rb index b518e08da..33180f551 100644 --- a/app/models/manageiq/providers/vmware/cloud_manager.rb +++ b/app/models/manageiq/providers/vmware/cloud_manager.rb @@ -15,6 +15,8 @@ class ManageIQ::Providers::Vmware::CloudManager < ManageIQ::Providers::CloudMana include ManageIQ::Providers::Vmware::CloudManager::ManagerEventsMixin include HasNetworkManagerMixin + has_many :snapshots, :through => :vms_and_templates + before_create :ensure_managers def ensure_network_manager diff --git a/app/models/manageiq/providers/vmware/cloud_manager/refresher.rb b/app/models/manageiq/providers/vmware/cloud_manager/refresher.rb index 96328df92..c00e8a8f7 100644 --- a/app/models/manageiq/providers/vmware/cloud_manager/refresher.rb +++ b/app/models/manageiq/providers/vmware/cloud_manager/refresher.rb @@ -13,4 +13,37 @@ def save_inventory(ems, target, hashes) def post_process_refresh_classes [::Vm] end + + def collect_inventory_for_targets(ems, targets) + log_header = format_ems_for_logging(ems) + targets_with_data = targets.collect do |target| + target_name = target.try(:name) || target.try(:event_type) + + _log.info("#{log_header} Filtering inventory for #{target.class} [#{target_name}] id: [#{target.id}]...") + + if refresher_options.try(:[], :inventory_object_refresh) + inventory = ManageIQ::Providers::Vmware::Builder.build_inventory(ems, target) + end + + _log.info("#{log_header} Filtering inventory...Complete") + [target, inventory] + end + + targets_with_data + end + + def parse_targeted_inventory(ems, _target, inventory) + log_header = format_ems_for_logging(ems) + _log.debug("#{log_header} Parsing inventory...") + hashes, = Benchmark.realtime_block(:parse_inventory) do + if refresher_options.try(:[], :inventory_object_refresh) + inventory.inventory_collections + else + ManageIQ::Providers::Vmware::CloudManager::RefreshParser.ems_inv_to_hashes(ems, refresher_options) + end + end + _log.debug("#{log_header} Parsing inventory...Complete") + + hashes + end end diff --git a/app/models/manageiq/providers/vmware/cloud_manager/snapshot.rb b/app/models/manageiq/providers/vmware/cloud_manager/snapshot.rb new file mode 100644 index 000000000..3c4df2d95 --- /dev/null +++ b/app/models/manageiq/providers/vmware/cloud_manager/snapshot.rb @@ -0,0 +1,2 @@ +class ManageIQ::Providers::Vmware::CloudManager::Snapshot < ::Snapshot +end diff --git a/app/models/manageiq/providers/vmware/inventory.rb b/app/models/manageiq/providers/vmware/inventory.rb new file mode 100644 index 000000000..c78d461c7 --- /dev/null +++ b/app/models/manageiq/providers/vmware/inventory.rb @@ -0,0 +1,5 @@ +class ManageIQ::Providers::Vmware::Inventory < ManagerRefresh::Inventory + require_nested :Collector + require_nested :Parser + require_nested :Persister +end diff --git a/app/models/manageiq/providers/vmware/inventory/collector.rb b/app/models/manageiq/providers/vmware/inventory/collector.rb new file mode 100644 index 000000000..3e822af2f --- /dev/null +++ b/app/models/manageiq/providers/vmware/inventory/collector.rb @@ -0,0 +1,26 @@ +class ManageIQ::Providers::Vmware::Inventory::Collector < ManagerRefresh::Inventory::Collector + require_nested :CloudManager + + def initialize(_manager, _target) + super + + initialize_inventory_sources + end + + def initialize_inventory_sources + @orgs = [] + @vdcs = [] + @vapps = [] + @vms = [] + @vapp_templates = [] + @images = [] + end + + def connection + @connection ||= manager.connect + end + + def public_images? + options.try(:get_public_images) + end +end diff --git a/app/models/manageiq/providers/vmware/inventory/collector/cloud_manager.rb b/app/models/manageiq/providers/vmware/inventory/collector/cloud_manager.rb new file mode 100644 index 000000000..65fffa781 --- /dev/null +++ b/app/models/manageiq/providers/vmware/inventory/collector/cloud_manager.rb @@ -0,0 +1,75 @@ +class ManageIQ::Providers::Vmware::Inventory::Collector::CloudManager < ManageIQ::Providers::Vmware::Inventory::Collector + VAPP_TEMPLATE_STATUS_READY = "8".freeze + + def orgs + return @orgs if @orgs.any? + @orgs = connection.organizations + end + + def vdcs + return @vdcs if @vdcs.any? + @orgs.each do |org| + @vdcs += org.vdcs.all + end + + @vdcs + end + + def vapps + return @vapps if @vapps.any? + @vdcs.each do |vdc| + @vapps += vdc.vapps.all + end + + @vapps + end + + def vms + return @vms if @vms.any? + @vapps.each do |vapp| + # Remove this each loop, once fog api will be updated to send hostname and snapshot together with vms + vapp.vms.each do |vm| + @vms << { + :vm => vm, + :hostname => vm.customization.try(:computer_name), + :snapshot => connection.get_snapshot_section(vm.id).data + } + end + end + + @vms + end + + def vapp_templates + return @vapp_templates if @vapp_templates.any? + @orgs.each do |org| + org.catalogs.each do |catalog| + next if catalog.is_published && !public_images? + + catalog.catalog_items.each do |item| + # Skip all Catalog Items which are not vApp Templates (e.g. Media & Other) + next unless item.vapp_template_id.starts_with?('vappTemplate-') + + if (t = item.vapp_template) && t.status == VAPP_TEMPLATE_STATUS_READY + @vapp_templates << { + :vapp_template => t, + :is_published => catalog.is_published, + :content => connection.get_vapp_template_ovf_descriptor(t.id).body + } + end + end + end + end + + @vapp_templates + end + + def images + return @images if @images.any? + @vapp_templates.each do |template_obj| + @images += template_obj[:vapp_template].vms.map { |image| { :image => image, :is_published => template_obj[:is_published] } } + end + + @images + end +end diff --git a/app/models/manageiq/providers/vmware/inventory/parser.rb b/app/models/manageiq/providers/vmware/inventory/parser.rb new file mode 100644 index 000000000..6d6d0af92 --- /dev/null +++ b/app/models/manageiq/providers/vmware/inventory/parser.rb @@ -0,0 +1,26 @@ +class ManageIQ::Providers::Vmware::Inventory::Parser < ManagerRefresh::Inventory::Parser + require_nested :CloudManager + + # See https://pubs.vmware.com/vcd-80/index.jsp#com.vmware.vcloud.api.sp.doc_90/GUID-E1BA999D-87FA-4E2C-B638-24A211AB8160.html + def controller_description(bus_subtype) + case bus_subtype + when 'buslogic' + 'BusLogic Parallel SCSI controller' + when 'lsilogic' + 'LSI Logic Parallel SCSI controller' + when 'lsilogicsas' + 'LSI Logic SAS SCSI controller' + when 'VirtualSCSI' + 'Paravirtual SCSI controller' + when 'vmware.sata.ahci' + 'SATA controller' + else + 'IDE controller' + end + end + + # See https://pubs.vmware.com/vcd-80/index.jsp#com.vmware.vcloud.api.sp.doc_90/GUID-E1BA999D-87FA-4E2C-B638-24A211AB8160.html + def hdd?(bus_type) + [5, 6, 20].include?(bus_type) + end +end diff --git a/app/models/manageiq/providers/vmware/inventory/parser/cloud_manager.rb b/app/models/manageiq/providers/vmware/inventory/parser/cloud_manager.rb new file mode 100644 index 000000000..7ce9c9261 --- /dev/null +++ b/app/models/manageiq/providers/vmware/inventory/parser/cloud_manager.rb @@ -0,0 +1,119 @@ +class ManageIQ::Providers::Vmware::Inventory::Parser::CloudManager < ManageIQ::Providers::Vmware::Inventory::Parser + def parse + orgs + vdcs + vapps + vms + vapp_templates + images + end + + private + + def orgs + collector.orgs + end + + def vdcs + collector.vdcs.each do |vdc| + persister.availability_zones.find_or_build(vdc.id).assign_attributes( + :ems_ref => vdc.id, + :name => vdc.name + ) + end + end + + def vapps + collector.vapps.each do |vapp| + persister.orchestration_stacks.find_or_build(vapp.id).assign_attributes( + :ems_ref => vapp.id, + :name => vapp.name, + :description => vapp.name, + :status => vapp.human_status, + ) + end + end + + def vms + collector.vms.each do |vm| + parsed_vm = persister.vms.find_or_build(vm[:vm].id).assign_attributes( + :uid_ems => vm[:vm].id, + :ems_ref => vm[:vm].id, + :name => vm[:vm].name, + :hostname => vm[:hostname], + :vendor => 'vmware', + :raw_power_state => vm[:vm].status, + :orchestration_stack => persister.orchestration_stacks.lazy_find(vm[:vm].vapp_id), + ) + + if (snapshot_resp = vm[:snapshot].fetch_path(:body, :Snapshot)) + snapshot = persister.snapshots.find_or_build(parsed_vm).assign_attributes( + :name => "#{vm[:vm].name} (snapshot)", + :vm_or_template_id => parsed_vm.id, + :uid => "#{vm[:vm].id}_#{snapshot_resp[:created]}", + :ems_ref => "#{vm[:vm].id}_#{snapshot_resp[:created]}", + :parent_id => vm[:vm].id, + :parent_uid => vm[:vm].id, + :create_time => snapshot_resp[:created], + :total_size => snapshot_resp[:size] + ) + + parsed_vm.snapshots = [snapshot] + end + + hardware = persister.hardwares.find_or_build(parsed_vm).assign_attributes( + :guest_os => vm[:vm].operating_system, + :guest_os_full_name => vm[:vm].operating_system, + :bitness => vm[:vm].operating_system =~ /64-bit/ ? 64 : 32, + :cpu_sockets => vm[:vm].cpu, + :cpu_cores_per_socket => 1, + :cpu_total_cores => vm[:vm].cpu, + :memory_mb => vm[:vm].memory, + :disk_capacity => vm[:vm].hard_disks.inject(0) { |sum, x| sum + x.values[0] } * 1.megabyte, + ) + + vm[:vm].disks.all.select { |d| hdd? d.bus_type }.map do |disk| + persister.disks.find_or_build_by(:hardware => hardware, :device_name => disk.name).assign_attributes( + :device_type => 'disk', + :controller_type => controller_description(disk.bus_sub_type), + :size => disk.capacity * 1.megabyte, + :location => "#{vm[:vm].id}-#{disk.id}", + :filename => "#{vm[:vm].id}-#{disk.id}", + ) + end + + persister.operating_systems.find_or_build(parsed_vm).assign_attributes( + :product_name => vm[:vm].operating_system, + ) + end + end + + def vapp_templates + collector.vapp_templates.each do |vapp_template| + persister.orchestration_templates.find_or_build(vapp_template[:vapp_template].id).assign_attributes( + :ems_ref => vapp_template[:vapp_template].id, + :name => vapp_template[:vapp_template].name, + :description => vapp_template[:vapp_template].description, + :orderable => true, + :content => "\n#{vapp_template[:content]}", + # By default #save_orchestration_templates_inventory does not set the EMS + # ID because templates are not EMS specific. We are setting the EMS + # explicitly here, because vapps are specific to concrete EMS. + :ems_id => collector.manager.id + ) + end + end + + def images + collector.images.each do |image| + persister.miq_templates.find_or_build(image[:image].id).assign_attributes( + :uid_ems => image[:image].id, + :ems_ref => image[:image].id, + :name => image[:image].name, + :vendor => 'vmware', + :raw_power_state => 'never', + :publicly_available => image[:is_published] + ) + end + end +end diff --git a/app/models/manageiq/providers/vmware/inventory/persister.rb b/app/models/manageiq/providers/vmware/inventory/persister.rb new file mode 100644 index 000000000..93452bcc2 --- /dev/null +++ b/app/models/manageiq/providers/vmware/inventory/persister.rb @@ -0,0 +1,26 @@ +class ManageIQ::Providers::Vmware::Inventory::Persister < ManagerRefresh::Inventory::Persister + require_nested :CloudManager + + protected + + def cloud + ManageIQ::Providers::Vmware::InventoryCollectionDefault::CloudManager + end + + def targeted + false + end + + def strategy + nil + end + + def shared_options + settings_options = options[:inventory_collections].try(:to_hash) || {} + + settings_options.merge( + :strategy => strategy, + :targeted => targeted, + ) + end +end diff --git a/app/models/manageiq/providers/vmware/inventory/persister/cloud_manager.rb b/app/models/manageiq/providers/vmware/inventory/persister/cloud_manager.rb new file mode 100644 index 000000000..36376fd73 --- /dev/null +++ b/app/models/manageiq/providers/vmware/inventory/persister/cloud_manager.rb @@ -0,0 +1,18 @@ +class ManageIQ::Providers::Vmware::Inventory::Persister::CloudManager < ManageIQ::Providers::Vmware::Inventory::Persister + def initialize_inventory_collections + add_inventory_collections( + cloud, + %i( + availability_zones + orchestration_stacks + vms + snapshots + hardwares + disks + operating_systems + orchestration_templates + miq_templates + ) + ) + end +end diff --git a/app/models/manageiq/providers/vmware/inventory_collection_default/cloud_manager.rb b/app/models/manageiq/providers/vmware/inventory_collection_default/cloud_manager.rb new file mode 100644 index 000000000..59c451f7e --- /dev/null +++ b/app/models/manageiq/providers/vmware/inventory_collection_default/cloud_manager.rb @@ -0,0 +1,150 @@ +class ManageIQ::Providers::Vmware::InventoryCollectionDefault::CloudManager < ManagerRefresh::InventoryCollectionDefault::CloudManager + class << self + def availability_zones(extra_attributes = {}) + attributes = { + :model_class => ::ManageIQ::Providers::Vmware::CloudManager::AvailabilityZone, + :inventory_object_attributes => %i( + type + ems_id + ems_ref + name + ) + } + + super(attributes.merge!(extra_attributes)) + end + + def orchestration_stacks(extra_attributes = {}) + attributes = { + :model_class => ::ManageIQ::Providers::Vmware::CloudManager::OrchestrationStack, + :inventory_object_attributes => %i( + type + ems_id + ems_ref + name + description + status + ) + } + + super(attributes.merge!(extra_attributes)) + end + + def vms(extra_attributes = {}) + attributes = { + :model_class => ::ManageIQ::Providers::Vmware::CloudManager::Vm, + :inventory_object_attributes => %i( + type + uid_ems + ems_ref + name + hostname + vendor + raw_power_state + snapshots + hardware + operating_system + orchestration_stack + ) + } + + super(attributes.merge!(extra_attributes)) + end + + def snapshots(extra_attributes = {}) + attributes = { + :model_class => ::ManageIQ::Providers::Vmware::CloudManager::Snapshot, + :association => :snapshots, + :inventory_object_attributes => %i( + type + vm_or_template_id + name + uid + ems_ref + parent_id + parent_uid + create_time + total_size + ) + } + + attributes.merge!(extra_attributes) + end + + def hardwares(extra_attributes = {}) + attributes = { + :inventory_object_attributes => %i( + guest_os + guest_os_full_name + bitness + cpu_sockets + cpu_cores_per_socket + cpu_total_cores + memory_mb + disk_capacity + disks + ) + } + + super(attributes.merge!(extra_attributes)) + end + + def disks(extra_attributes = {}) + attributes = { + :inventory_object_attributes => %i( + device_name + device_type + controller_type + size + location + filename + ) + } + + super(attributes.merge!(extra_attributes)) + end + + def operating_systems(extra_attributes = {}) + attributes = { + :inventory_object_attributes => %i( + product_name + ) + } + + super(attributes.merge!(extra_attributes)) + end + + def orchestration_templates(extra_attributes = {}) + attributes = { + :model_class => ::ManageIQ::Providers::Vmware::CloudManager::OrchestrationTemplate, + :inventory_object_attributes => %i( + type + ems_ref + name + description + orderable + content + ems_id + ) + } + + super(attributes.merge!(extra_attributes)) + end + + def miq_templates(extra_attributes = {}) + attributes = { + :model_class => ::ManageIQ::Providers::Vmware::CloudManager::Template, + :inventory_object_attributes => %i( + uid_ems + ems_ref + name + vendor + raw_power_state + publicly_available + ) + } + + super(attributes.merge!(extra_attributes)) + end + end +end \ No newline at end of file diff --git a/config/settings.yml b/config/settings.yml index 574ca9ee1..1cfc03a05 100644 --- a/config/settings.yml +++ b/config/settings.yml @@ -12,6 +12,7 @@ :critical: :ems_refresh: :vmware_cloud: + :inventory_object_refresh: true :get_public_images: false :http_proxy: :vmware_cloud: diff --git a/spec/models/manageiq/providers/vmware/cloud_manager/refresher_spec.rb b/spec/models/manageiq/providers/vmware/cloud_manager/refresher_spec.rb index 4d9ec36b6..0e3477ca5 100644 --- a/spec/models/manageiq/providers/vmware/cloud_manager/refresher_spec.rb +++ b/spec/models/manageiq/providers/vmware/cloud_manager/refresher_spec.rb @@ -9,9 +9,10 @@ _guid, _server, zone = EvmSpecHelper.create_guid_miq_server_zone @ems = FactoryGirl.create( :ems_vmware_cloud, - :zone => zone, - :hostname => @hostname, - :port => @port + :zone => zone, + :hostname => @hostname, + :port => @port, + :api_version => '5.1' ) @userid = Rails.application.secrets.vmware_cloud.try(:[], 'userid') || 'VMWARE_CLOUD_USERID' @@ -67,27 +68,27 @@ def assert_table_counts expect(AuthPrivateKey.count).to eq(0) expect(CloudNetwork.count).to eq(0) expect(CloudSubnet.count).to eq(0) - expect(OrchestrationTemplate.count).to eq(4) + expect(OrchestrationTemplate.count).to eq(1) expect(OrchestrationStack.count).to eq(3) expect(OrchestrationStackParameter.count).to eq(0) expect(OrchestrationStackOutput.count).to eq(0) expect(OrchestrationStackResource.count).to eq(0) expect(SecurityGroup.count).to eq(0) expect(FirewallRule.count).to eq(0) - expect(VmOrTemplate.count).to eq(8) + expect(VmOrTemplate.count).to eq(4) expect(Vm.count).to eq(3) - expect(MiqTemplate.count).to eq(5) + expect(MiqTemplate.count).to eq(1) expect(CustomAttribute.count).to eq(0) expect(Disk.count).to eq(3) expect(GuestDevice.count).to eq(0) expect(Hardware.count).to eq(3) expect(OperatingSystem.count).to eq(3) - expect(Snapshot.count).to eq(2) + expect(Snapshot.count).to eq(1) expect(SystemService.count).to eq(0) expect(Relationship.count).to eq(0) - expect(MiqQueue.count).to eq(9) + expect(MiqQueue.count).to eq(5) end def assert_ems @@ -102,33 +103,33 @@ def assert_ems expect(@ems.key_pairs.size).to eq(0) expect(@ems.cloud_networks.count).to eq(0) expect(@ems.security_groups.count).to eq(0) - expect(@ems.vms_and_templates.size).to eq(8) + expect(@ems.vms_and_templates.size).to eq(4) expect(@ems.vms.size).to eq(3) - expect(@ems.miq_templates.size).to eq(5) + expect(@ems.miq_templates.size).to eq(1) expect(@ems.orchestration_stacks.size).to eq(3) - expect(@ems.orchestration_templates.size).to eq(4) + expect(@ems.orchestration_templates.size).to eq(1) expect(@ems.direct_orchestration_stacks.size).to eq(3) end def assert_specific_vdc - @vdc = ManageIQ::Providers::Vmware::CloudManager::AvailabilityZone.where(:name => "MIQDev-Default-vCD-DualSiteStorage-PAYG").first + @vdc = ManageIQ::Providers::Vmware::CloudManager::AvailabilityZone.where(:name => "MIQ Devel VDC").first expect(@vdc).to have_attributes( :ems_id => @ems.id, - :name => "MIQDev-Default-vCD-DualSiteStorage-PAYG", - :ems_ref => "89ade969-1dc4-4156-abad-e29f79511676", + :name => "MIQ Devel VDC", + :ems_ref => "0946827a-1a9e-4b9f-8ea3-732b3afe47c6", :type => "ManageIQ::Providers::Vmware::CloudManager::AvailabilityZone" ) end def assert_specific_template - @template = ManageIQ::Providers::Vmware::CloudManager::Template.where(:name => "CentOS7").first + @template = ManageIQ::Providers::Vmware::CloudManager::Template.where(:name => "spec2-vm1").first expect(@template).not_to be_nil expect(@template).to have_attributes( :template => true, - :ems_ref => "vm-857551b6-380c-44d0-ab34-9d144866f0b4", + :ems_ref => "vm-ac90bd58-3bc4-47a5-bc8c-f1c8f5c468b6", :ems_ref_obj => nil, - :uid_ems => "vm-857551b6-380c-44d0-ab34-9d144866f0b4", + :uid_ems => "vm-ac90bd58-3bc4-47a5-bc8c-f1c8f5c468b6", :vendor => "vmware", :power_state => "never", :publicly_available => false, @@ -160,9 +161,9 @@ def assert_specific_vm_powered_on v = ManageIQ::Providers::Vmware::CloudManager::Vm.find_by(:name => "spec1-vm1") expect(v).to have_attributes( :template => false, - :ems_ref => "vm-f9ceb77c-b9d9-400c-8c06-72c785e884af", + :ems_ref => "vm-84faa107-c0b9-4a21-adc5-b17e0c5355a2", :ems_ref_obj => nil, - :uid_ems => "vm-f9ceb77c-b9d9-400c-8c06-72c785e884af", + :uid_ems => "vm-84faa107-c0b9-4a21-adc5-b17e0c5355a2", :vendor => "vmware", :power_state => "on", :location => "unknown", @@ -181,7 +182,7 @@ def assert_specific_vm_powered_on :cpu_limit => nil, :cpu_shares => nil, :cpu_shares_level => nil, - :hostname => 'WebServerVM' + :hostname => 'spec1-vm1' ) expect(v.ext_management_system).to eq(@ems) @@ -194,7 +195,7 @@ def assert_specific_vm_powered_on expect(v.security_groups.size).to eq(0) expect(v.operating_system).to have_attributes( - :product_name => "CentOS 4/5/6/7 (64-bit)", + :product_name => "Microsoft Windows Server 2016 (64-bit)", ) expect(v.custom_attributes.size).to eq(0) expect(v.snapshots.size).to eq(0) @@ -202,14 +203,14 @@ def assert_specific_vm_powered_on expect(v.hardware).to have_attributes( :config_version => nil, :virtual_hw_version => nil, - :guest_os => "CentOS 4/5/6/7 (64-bit)", - :guest_os_full_name => "CentOS 4/5/6/7 (64-bit)", - :cpu_sockets => 2, + :guest_os => "Microsoft Windows Server 2016 (64-bit)", + :guest_os_full_name => "Microsoft Windows Server 2016 (64-bit)", + :cpu_sockets => 1, :bios => nil, :bios_location => nil, :time_sync => nil, :annotation => nil, - :memory_mb => 2048, + :memory_mb => 512, :host_id => nil, :cpu_speed => nil, :cpu_type => nil, @@ -220,10 +221,10 @@ def assert_specific_vm_powered_on :cpu_usage => nil, :memory_usage => nil, :cpu_cores_per_socket => 1, - :cpu_total_cores => 2, + :cpu_total_cores => 1, :vmotion_enabled => nil, :disk_free_space => nil, - :disk_capacity => 17_179_869_184, + :disk_capacity => 10_737_418_240, :memory_console => nil, :bitness => 64, :virtualization_type => nil, @@ -234,8 +235,8 @@ def assert_specific_vm_powered_on expect(v.hardware.disks.first).to have_attributes( :device_name => "Hard disk 1", :device_type => "disk", - :controller_type => "LSI Logic Parallel SCSI controller", - :size => 17_179_869_184, + :controller_type => "LSI Logic SAS SCSI controller", + :size => 10_737_418_240, ) expect(v.hardware.guest_devices.size).to eq(0) expect(v.hardware.nics.size).to eq(0) @@ -245,9 +246,9 @@ def assert_specific_vm_powered_off v = ManageIQ::Providers::Vmware::CloudManager::Vm.find_by(:name => "spec2-vm1") expect(v).to have_attributes( :template => false, - :ems_ref => "vm-a28be0c0-d70d-4047-92f8-fc217bbaa7f6", + :ems_ref => "vm-aaf94123-cbf9-4de9-841c-41dd41ac310e", :ems_ref_obj => nil, - :uid_ems => "vm-a28be0c0-d70d-4047-92f8-fc217bbaa7f6", + :uid_ems => "vm-aaf94123-cbf9-4de9-841c-41dd41ac310e", :vendor => "vmware", :power_state => "off", :location => "unknown", @@ -266,7 +267,7 @@ def assert_specific_vm_powered_off :cpu_limit => nil, :cpu_shares => nil, :cpu_shares_level => nil, - :hostname => 'WebServerVM3' + :hostname => 'spec2-vm1' ) expect(v.ext_management_system).to eq(@ems) @@ -279,7 +280,7 @@ def assert_specific_vm_powered_off expect(v.security_groups.size).to eq(0) expect(v.operating_system).to have_attributes( - :product_name => "CentOS 4/5/6/7 (64-bit)", + :product_name => "VMware Photon OS (64-bit)", ) expect(v.custom_attributes.size).to eq(0) @@ -288,14 +289,14 @@ def assert_specific_vm_powered_off expect(v.hardware).to have_attributes( :config_version => nil, :virtual_hw_version => nil, - :guest_os => "CentOS 4/5/6/7 (64-bit)", - :guest_os_full_name => "CentOS 4/5/6/7 (64-bit)", - :cpu_sockets => 2, + :guest_os => "VMware Photon OS (64-bit)", + :guest_os_full_name => "VMware Photon OS (64-bit)", + :cpu_sockets => 1, :bios => nil, :bios_location => nil, :time_sync => nil, :annotation => nil, - :memory_mb => 2048, + :memory_mb => 256, :host_id => nil, :cpu_speed => nil, :cpu_type => nil, @@ -306,7 +307,7 @@ def assert_specific_vm_powered_off :cpu_usage => nil, :memory_usage => nil, :cpu_cores_per_socket => 1, - :cpu_total_cores => 2, + :cpu_total_cores => 1, :vmotion_enabled => nil, :disk_free_space => nil, :disk_capacity => 17_179_869_184, @@ -320,7 +321,7 @@ def assert_specific_vm_powered_off expect(v.hardware.disks.first).to have_attributes( :device_name => "Hard disk 1", :device_type => "disk", - :controller_type => "LSI Logic Parallel SCSI controller", + :controller_type => "Paravirtual SCSI controller", :size => 17_179_869_184, ) expect(v.hardware.guest_devices.size).to eq(0) @@ -329,9 +330,9 @@ def assert_specific_vm_powered_off def assert_specific_orchestration_stack @orchestration_stack1 = ManageIQ::Providers::Vmware::CloudManager::OrchestrationStack - .find_by(:name => "spec-1") + .find_by(:name => "spec1-vapp") @orchestration_stack2 = ManageIQ::Providers::Vmware::CloudManager::OrchestrationStack - .find_by(:name => "spec2") + .find_by(:name => "spec2-vapp") vm1 = ManageIQ::Providers::Vmware::CloudManager::Vm.find_by(:name => "spec1-vm1") vm2 = ManageIQ::Providers::Vmware::CloudManager::Vm.find_by(:name => "spec2-vm1") @@ -340,16 +341,16 @@ def assert_specific_orchestration_stack end def assert_specific_orchestration_template - @template = ManageIQ::Providers::Vmware::CloudManager::OrchestrationTemplate.where(:name => "vApp_CentOS_and_msWin").first + @template = ManageIQ::Providers::Vmware::CloudManager::OrchestrationTemplate.where(:name => "spec2-vapp-win").first expect(@template).not_to be_nil expect(@template).to have_attributes( - :ems_ref => "vappTemplate-a19bdc8f-88fa-4dd6-8436-486590353ed5", + :ems_ref => "vappTemplate-7d70b225-56a6-4868-8eba-f64a3509c910", :orderable => true, ) expect(@template.ems_id).to eq(@ems.id) expect(@template.content.include?('ovf:Envelope')).to be_truthy - expect(@template.md5).to eq('vappTemplate-a19bdc8f-88fa-4dd6-8436-486590353ed5') + expect(@template.md5).to eq('vappTemplate-7d70b225-56a6-4868-8eba-f64a3509c910') end def assert_specific_vm_with_snapshot @@ -357,12 +358,12 @@ def assert_specific_vm_with_snapshot expect(vm.snapshots.first).not_to be_nil expect(vm.snapshots.first).to have_attributes( - :ems_ref => 'vm-a28be0c0-d70d-4047-92f8-fc217bbaa7f6_2018-02-22T12:22:20.784+01:00', - :uid => 'vm-a28be0c0-d70d-4047-92f8-fc217bbaa7f6_2018-02-22T12:22:20.784+01:00', - :parent_uid => 'vm-a28be0c0-d70d-4047-92f8-fc217bbaa7f6', + :ems_ref => 'vm-aaf94123-cbf9-4de9-841c-41dd41ac310e_2018-03-12T15:43:30.986+01:00', + :uid => 'vm-aaf94123-cbf9-4de9-841c-41dd41ac310e_2018-03-12T15:43:30.986+01:00', + :parent_uid => 'vm-aaf94123-cbf9-4de9-841c-41dd41ac310e', :name => 'spec2-vm1 (snapshot)', - :total_size => 4_294_967_296 + :total_size => 17_179_869_184 ) - expect(vm.snapshots.first.create_time.to_s).to eq('2018-02-22 11:22:20 UTC') + expect(vm.snapshots.first.create_time.to_s).to eq('2018-03-12 14:43:30 UTC') end end diff --git a/spec/vcr_cassettes/manageiq/providers/vmware/cloud_manager/refresher.yml b/spec/vcr_cassettes/manageiq/providers/vmware/cloud_manager/refresher.yml index 80427b97a..cb2d22500 100644 --- a/spec/vcr_cassettes/manageiq/providers/vmware/cloud_manager/refresher.yml +++ b/spec/vcr_cassettes/manageiq/providers/vmware/cloud_manager/refresher.yml @@ -8,7 +8,7 @@ http_interactions: string: '' headers: User-Agent: - - fog-core/1.42.0 + - fog-core/1.45.0 Accept: - application/*+xml;version=5.1 Authorization: @@ -16,37 +16,37 @@ http_interactions: response: status: code: 200 - message: '' + message: OK headers: Date: - - Fri, 16 Sep 2016 08:51:45 GMT + - Wed, 14 Mar 2018 10:54:29 GMT X-Vmware-Vcloud-Request-Id: - - f2446fad-ab18-4c10-87e4-52cb884be531 + - 78dce2f8-e931-4961-b950-3e127e64abc4 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '78' + - vcloud-token=ee9f52dbb4d245048614dba57e182fd3; Secure; Path=/ Content-Type: - application/vnd.vmware.vcloud.session+xml;version=5.1 + X-Vmware-Vcloud-Request-Execution-Time: + - '174' Content-Length: - - '1300' + - '1750' body: encoding: ASCII-8BIT string: | - - + + - + http_version: - recorded_at: Fri, 16 Sep 2016 08:51:46 GMT + recorded_at: Wed, 14 Mar 2018 10:54:29 GMT - request: method: get uri: https://VMWARE_CLOUD_HOST/api/org @@ -55,221 +55,181 @@ http_interactions: string: '' headers: User-Agent: - - fog-core/1.42.0 + - fog-core/1.45.0 Accept: - application/*+xml;version=5.1 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 response: status: code: 200 - message: '' + message: OK headers: Date: - - Fri, 16 Sep 2016 08:51:51 GMT + - Wed, 14 Mar 2018 10:54:29 GMT X-Vmware-Vcloud-Request-Id: - - 2402f385-6a7a-4418-acfa-c516eb59d40b + - 736ffdd9-a391-4fb4-a452-8cb8f4adfdc0 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '80' + - vcloud-token=ee9f52dbb4d245048614dba57e182fd3; Secure; Path=/ Content-Type: - application/vnd.vmware.vcloud.orglist+xml;version=5.1 + X-Vmware-Vcloud-Request-Execution-Time: + - '4' Vary: - Accept-Encoding, User-Agent Content-Length: - - '520' + - '1049' body: encoding: ASCII-8BIT string: | - - - + + + http_version: - recorded_at: Fri, 16 Sep 2016 08:51:51 GMT + recorded_at: Wed, 14 Mar 2018 10:54:29 GMT - request: method: get - uri: https://VMWARE_CLOUD_HOST/api/org/e338a4ac-551b-4b6c-b5c0-aff31b71417f + uri: https://VMWARE_CLOUD_HOST/api/org/6d6733f6-536a-454f-bbc3-efee7f6de081 body: encoding: US-ASCII string: '' headers: User-Agent: - - fog-core/1.42.0 + - fog-core/1.45.0 Accept: - application/*+xml;version=5.1 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 response: status: code: 200 - message: '' + message: OK headers: Date: - - Fri, 16 Sep 2016 08:51:56 GMT + - Wed, 14 Mar 2018 10:54:29 GMT X-Vmware-Vcloud-Request-Id: - - 3522e3c9-1d5e-4728-9348-0fc2622e3c1b + - 7f0f4f42-f231-4c51-97f7-82d3fb63d74a X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '87' + - vcloud-token=ee9f52dbb4d245048614dba57e182fd3; Secure; Path=/ Content-Type: - application/vnd.vmware.vcloud.org+xml;version=5.1 + X-Vmware-Vcloud-Request-Execution-Time: + - '117' Vary: - Accept-Encoding, User-Agent Content-Length: - - '2589' + - '3075' body: encoding: ASCII-8BIT - string: !binary |- - PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPE9yZyB4 - bWxucz0iaHR0cDovL3d3dy52bXdhcmUuY29tL3ZjbG91ZC92MS41IiBuYW1l - PSJNSVFEZXYiIGlkPSJ1cm46dmNsb3VkOm9yZzplMzM4YTRhYy01NTFiLTRi - NmMtYjVjMC1hZmYzMWI3MTQxN2YiIGhyZWY9Imh0dHBzOi8vVk1XQVJFX0NM - T1VEX0hPU1QvYXBpL29yZy9lMzM4YTRhYy01NTFiLTRiNmMtYjVjMC1hZmYz - MWI3MTQxN2YiIHR5cGU9ImFwcGxpY2F0aW9uL3ZuZC52bXdhcmUudmNsb3Vk - Lm9yZyt4bWwiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9Y - TUxTY2hlbWEtaW5zdGFuY2UiIHhzaTpzY2hlbWFMb2NhdGlvbj0iaHR0cDov - L3d3dy52bXdhcmUuY29tL3ZjbG91ZC92MS41IGh0dHA6Ly9WTVdBUkVfQ0xP - VURfSE9TVC9hcGkvdjEuNS9zY2hlbWEvbWFzdGVyLnhzZCI+CiAgICA8TGlu - ayByZWw9ImRvd24iIGhyZWY9Imh0dHBzOi8vVk1XQVJFX0NMT1VEX0hPU1Qv - YXBpL3ZkYy84OWFkZTk2OS0xZGM0LTQxNTYtYWJhZC1lMjlmNzk1MTE2NzYi - IG5hbWU9Ik1JUURldi1EZWZhdWx0LXZDRC1EdWFsU2l0ZVN0b3JhZ2UtUEFZ - RyIgdHlwZT0iYXBwbGljYXRpb24vdm5kLnZtd2FyZS52Y2xvdWQudmRjK3ht - bCIvPgogICAgPExpbmsgcmVsPSJkb3duIiBocmVmPSJodHRwczovL1ZNV0FS - RV9DTE9VRF9IT1NUL2FwaS90YXNrc0xpc3QvZTMzOGE0YWMtNTUxYi00YjZj - LWI1YzAtYWZmMzFiNzE0MTdmIiB0eXBlPSJhcHBsaWNhdGlvbi92bmQudm13 - YXJlLnZjbG91ZC50YXNrc0xpc3QreG1sIi8+CiAgICA8TGluayByZWw9ImRv - d24iIGhyZWY9Imh0dHBzOi8vVk1XQVJFX0NMT1VEX0hPU1QvYXBpL2NhdGFs - b2cvMDQ5MGFkM2ItZjM0My00YjgwLThkNWItZWNiMDM5N2ZkNDEyIiBuYW1l - PSJTaGFyZWQgVGlldG8gQ2F0YWxvZyIgdHlwZT0iYXBwbGljYXRpb24vdm5k - LnZtd2FyZS52Y2xvdWQuY2F0YWxvZyt4bWwiLz4KICAgIDxMaW5rIHJlbD0i - ZG93biIgaHJlZj0iaHR0cHM6Ly9WTVdBUkVfQ0xPVURfSE9TVC9hcGkvY2F0 - YWxvZy8wNDkwYWQzYi1mMzQzLTRiODAtOGQ1Yi1lY2IwMzk3ZmQ0MTIvY29u - dHJvbEFjY2Vzcy8iIHR5cGU9ImFwcGxpY2F0aW9uL3ZuZC52bXdhcmUudmNs - b3VkLmNvbnRyb2xBY2Nlc3MreG1sIi8+CiAgICA8TGluayByZWw9ImRvd24i - IGhyZWY9Imh0dHBzOi8vVk1XQVJFX0NMT1VEX0hPU1QvYXBpL2NhdGFsb2cv - MjYxMDM3YmMtODI5OS00MmMxLTlhYzEtYjhjNGM5NjRkOTlkIiBuYW1lPSJY - VGVzdENhdGFsb2ciIHR5cGU9ImFwcGxpY2F0aW9uL3ZuZC52bXdhcmUudmNs - b3VkLmNhdGFsb2creG1sIi8+CiAgICA8TGluayByZWw9ImRvd24iIGhyZWY9 - Imh0dHBzOi8vVk1XQVJFX0NMT1VEX0hPU1QvYXBpL2NhdGFsb2cvMjYxMDM3 - YmMtODI5OS00MmMxLTlhYzEtYjhjNGM5NjRkOTlkL2NvbnRyb2xBY2Nlc3Mv - IiB0eXBlPSJhcHBsaWNhdGlvbi92bmQudm13YXJlLnZjbG91ZC5jb250cm9s - QWNjZXNzK3htbCIvPgogICAgPExpbmsgcmVsPSJjb250cm9sQWNjZXNzIiBo - cmVmPSJodHRwczovL1ZNV0FSRV9DTE9VRF9IT1NUL2FwaS9jYXRhbG9nLzI2 - MTAzN2JjLTgyOTktNDJjMS05YWMxLWI4YzRjOTY0ZDk5ZC9hY3Rpb24vY29u - dHJvbEFjY2VzcyIgdHlwZT0iYXBwbGljYXRpb24vdm5kLnZtd2FyZS52Y2xv - dWQuY29udHJvbEFjY2Vzcyt4bWwiLz4KICAgIDxMaW5rIHJlbD0iYWRkIiBo - cmVmPSJodHRwczovL1ZNV0FSRV9DTE9VRF9IT1NUL2FwaS9hZG1pbi9vcmcv - ZTMzOGE0YWMtNTUxYi00YjZjLWI1YzAtYWZmMzFiNzE0MTdmL2NhdGFsb2dz - IiB0eXBlPSJhcHBsaWNhdGlvbi92bmQudm13YXJlLmFkbWluLmNhdGFsb2cr - eG1sIi8+CiAgICA8TGluayByZWw9ImRvd24iIGhyZWY9Imh0dHBzOi8vVk1X - QVJFX0NMT1VEX0hPU1QvYXBpL25ldHdvcmsvNWFlODQwZGUtMTk4ZS00YTM0 - LWEzMGEtNmMzNjM3NzQ2MGM2IiBuYW1lPSJJTlRfMTkyLjE2OC4xMC4wbTI0 - IiB0eXBlPSJhcHBsaWNhdGlvbi92bmQudm13YXJlLnZjbG91ZC5vcmdOZXR3 - b3JrK3htbCIvPgogICAgPExpbmsgcmVsPSJkb3duIiBocmVmPSJodHRwczov - L1ZNV0FSRV9DTE9VRF9IT1NUL2FwaS9zdXBwb3J0ZWRTeXN0ZW1zSW5mby8i - IHR5cGU9ImFwcGxpY2F0aW9uL3ZuZC52bXdhcmUudmNsb3VkLnN1cHBvcnRl - ZFN5c3RlbXNJbmZvK3htbCIvPgogICAgPExpbmsgcmVsPSJkb3duIiBocmVm - PSJodHRwczovL1ZNV0FSRV9DTE9VRF9IT1NUL2FwaS9vcmcvZTMzOGE0YWMt - NTUxYi00YjZjLWI1YzAtYWZmMzFiNzE0MTdmL21ldGFkYXRhIiB0eXBlPSJh - cHBsaWNhdGlvbi92bmQudm13YXJlLnZjbG91ZC5tZXRhZGF0YSt4bWwiLz4K - ICAgIDxEZXNjcmlwdGlvbj5Pcmdhbml6YXRpb24gZm9yIFJlZEhhdCBkZXZl - bG9wbWVudCBvZiBNYW5hZ2VJUSB2Q2xvdWQgY29ubmVjdG9yDUNvbnRhY3Qg - RGF2aWQgQmFydG/FoTwvRGVzY3JpcHRpb24+CiAgICA8RnVsbE5hbWU+TWFu - YWdlSVEgRGV2ZWxvcG1lbnQ8L0Z1bGxOYW1lPgo8L09yZz4K + string: | + + + + + + + + + + + + + + + + ManageIQ Development Org + http_version: - recorded_at: Fri, 16 Sep 2016 08:51:57 GMT + recorded_at: Wed, 14 Mar 2018 10:54:29 GMT - request: method: get - uri: https://VMWARE_CLOUD_HOST/api/vdc/89ade969-1dc4-4156-abad-e29f79511676 + uri: https://VMWARE_CLOUD_HOST/api/vdc/0946827a-1a9e-4b9f-8ea3-732b3afe47c6 body: encoding: US-ASCII string: '' headers: User-Agent: - - fog-core/1.42.0 + - fog-core/1.45.0 Accept: - application/*+xml;version=5.1 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 response: status: code: 200 - message: '' + message: OK headers: Date: - - Fri, 16 Sep 2016 08:52:01 GMT + - Wed, 14 Mar 2018 10:54:30 GMT X-Vmware-Vcloud-Request-Id: - - 8ccc9468-db65-4bc5-b4ba-18ee713a0a47 + - c1cd45f3-94b4-4dd9-bb62-984b3494789f X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '54' + - vcloud-token=ee9f52dbb4d245048614dba57e182fd3; Secure; Path=/ Content-Type: - application/vnd.vmware.vcloud.vdc+xml;version=5.1 + X-Vmware-Vcloud-Request-Execution-Time: + - '168' Vary: - Accept-Encoding, User-Agent Content-Length: - - '6272' + - '6561' body: encoding: ASCII-8BIT string: | - - - - - - - - - - - - - - - - - - - - AllocationVApp + + + + + + + + + + + + + + + + + + + Used for ManageIQ development. + AllocationPool MHz - 0 - 0 - 0 - 2000 + 5690 + 5690 + 2845 + 0 0 MB - 0 - 0 - 0 - 2048 - 48 + 23439 + 23439 + 11719 + 6656 + 131 - - - - - - + + + + - + + @@ -278,6 +238,9 @@ http_interactions: vmx-08 vmx-09 vmx-10 + vmx-11 + vmx-12 + vmx-13 0 @@ -286,380 +249,91 @@ http_interactions: 100 true - + http_version: - recorded_at: Fri, 16 Sep 2016 08:52:02 GMT + recorded_at: Wed, 14 Mar 2018 10:54:30 GMT - request: method: get - uri: https://VMWARE_CLOUD_HOST/api/vApp/vapp-0d7614c3-a61d-4d11-a733-aa2a8f6038b4 + uri: https://VMWARE_CLOUD_HOST/api/vApp/vapp-a715dec5-7ab1-487e-993b-82fcd7eb8172 body: encoding: US-ASCII string: '' headers: User-Agent: - - fog-core/1.42.0 + - fog-core/1.45.0 Accept: - application/*+xml;version=5.1 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 response: status: code: 200 - message: '' + message: OK headers: Date: - - Fri, 16 Sep 2016 08:52:07 GMT + - Wed, 14 Mar 2018 10:54:30 GMT X-Vmware-Vcloud-Request-Id: - - 85fecf9b-221a-4dd4-86ec-01908a6cc97c + - edca07c9-328e-4a8a-9648-426fde43ca03 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '231' + - vcloud-token=ee9f52dbb4d245048614dba57e182fd3; Secure; Path=/ Content-Type: - application/vnd.vmware.vcloud.vapp+xml;version=5.1 - Vary: - - Accept-Encoding, User-Agent - body: - encoding: ASCII-8BIT - string: "\n\n - \ \n - \ \n - \ \n - \ \n - \ \n - \ \n \n \n - \ \n \n \n \n \n \n \n \n \n \n - \ \n - \ Lease settings section\n \n 604800\n - \ 2592000\n 2016-09-23T11:46:52.987+03:00\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 - \ \n true\n - \ 192.168.10.1\n 255.255.255.0\n - \ 192.168.10.1\n test.local\n - \ true\n \n - \ \n 192.168.10.100\n - \ 192.168.10.199\n - \ \n \n - \ \n \n \n - \ bridged\n false\n - \ \n true\n - \ \n \n \n - \ Snapshot information section\n \n - \ 2016-09-16T11:45:24.897+03:00\n \n - \ \n - \ \n false\n \n - \ \n \n - \ \n - \ \n - \ \n - \ \n - \ \n \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 spec1-vm1\n - \ vmx-10\n - \ \n \n 00:50:56:01:00:64\n - \ 0\n true\n - \ INT_192.168.10.0m24\n Vmxnet3 - ethernet adapter on \"INT_192.168.10.0m24\"\n Network - adapter 0\n 1\n - \ VMXNET3\n - \ 10\n \n - \ \n 0\n - \ SCSI Controller\n - \ SCSI Controller 0\n - \ 2\n lsilogic\n - \ 6\n \n - \ \n 0\n - \ Hard disk\n Hard - disk 1\n \n 2000\n - \ 2\n 17\n - \ 17179869184\n - \ byte\n - \ \n \n 0\n - \ IDE Controller\n - \ IDE Controller 0\n - \ 3\n 5\n - \ \n \n 0\n - \ false\n - \ CD/DVD Drive\n CD/DVD - Drive 1\n \n 3000\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 2048 MB of - memory\n 5\n - \ 0\n 4\n - \ 2048\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 - \ CentOS 4/5/6/7 (64-bit)\n - \ \n \n - \ \n - \ Specifies the available VM network connections\n - \ 0\n - \ \n - \ 0\n 192.168.10.100\n - \ true\n 00:50:56:01:00:64\n - \ POOL\n - \ \n \n \n - \ \n - \ Specifies Guest OS Customization Settings\n - \ false\n false\n - \ f9ceb77c-b9d9-400c-8c06-72c785e884af\n - \ false\n false\n - \ true\n true\n - \ false\n CentOS7-0\n - \ \n \n - \ \n - \ Specifies Runtime info\n \n \n \n - \ Snapshot information section\n \n - \ 2016-09-16T11:45:30.557+03:00\n 7ff5cc28-e2e0-4466-bf78-e39a3522d539\n - \ \n \n - \ VMware ESXi\n 6.0.0\n - \ VMware, Inc.\n en\n - \ \n \n \n \n \n - \ \n \n \n false\n - \ false\n \n - \ \n - \ \n \n\n" - http_version: - recorded_at: Fri, 16 Sep 2016 08:52:08 GMT -- request: - method: get - uri: https://VMWARE_CLOUD_HOST/api/vApp/vapp-6aa2d7ae-5245-45a0-82e8-4984e759ba5d - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - fog-core/1.42.0 - Accept: - - application/*+xml;version=5.1 - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - response: - status: - code: 200 - message: '' - headers: - Date: - - Fri, 16 Sep 2016 08:52:13 GMT - X-Vmware-Vcloud-Request-Id: - - 61b8690b-d111-4af9-9e4f-f82ae31f670a - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ X-Vmware-Vcloud-Request-Execution-Time: - - '145' - Content-Type: - - application/vnd.vmware.vcloud.vapp+xml;version=5.1 + - '155' Vary: - Accept-Encoding, User-Agent body: encoding: ASCII-8BIT string: | - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + Lease settings section - - 604800 - 2592000 - 2016-10-15T16:56:20.453+03:00 + + 2592000 + 7776000 + 2018-04-12T11:18:05.418+02:00 - + VApp startup section - - + + - + The list of logical networks - - + + - + The configuration parameters for logical networks - - - - + + + + @@ -669,837 +343,840 @@ http_interactions: true - 192.168.2.100 - 192.168.2.199 + 192.168.2.100 + 192.168.2.199 isolated false + + + false + 3600 + 7200 + + - false + true - + Snapshot information section - 2016-09-08T16:48:46.357+03:00 + 2018-03-09T13:36:41.966+01:00 - + false - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + Virtual hardware requirements + + + + + + + + + + + + + Virtual Hardware Family + 0 - CentOS7 - vmx-10 + + + + + + spec1-vm1 + vmx-13 - 00:50:56:01:00:4a + 00:50:56:01:00:d8 0 + true - testnet - Vmxnet3 ethernet adapter on "testnet" + + + + + spec1-network + + E1000s ethernet adapter on "spec1-network" Network adapter 0 + 1 - VMXNET3 + + + + + + + E1000E 10 + + + 0 + + + + + + + + SCSI Controller SCSI Controller 0 + 2 - lsilogic + + + + + + + lsilogicsas 6 + + + + 0 + + + + + + + Hard disk Hard disk 1 - + + 2000 + + + 2 + + + 17 - 17179869184 + 10737418240 byte + 0 + + + + + + + + IDE Controller IDE Controller 0 + 3 + + + + + + + 5 + + + + 0 + false + + + + + CD/DVD Drive CD/DVD Drive 1 - + + 3000 + + + 3 + + + 15 + + + + 0 + false + + + + + Floppy Drive Floppy Drive 1 - + + 8000 + + + + + + + 14 + + + - + + + hertz * 10^6 + + + + + + Number of Virtual CPUs - 2 virtual CPU(s) + 1 virtual CPU(s) + 4 + + + + + 0 + 3 - 2 + 1 + 0 - + - + + + byte * 2^20 + + + + + + Memory Size - 2048 MB of memory + 512 MB of memory + 5 + + + + + 0 + 4 - 2048 + 512 + 0 - + - - - - - - - - - - - - + + + + + + + + + + + + - + Specifies the operating system installed - CentOS 4/5/6/7 (64-bit) - + Microsoft Windows Server 2016 (64-bit) + - + Specifies the available VM network connections 0 - + 0 192.168.2.100 true - 00:50:56:01:00:4a + 00:50:56:01:00:d8 POOL - + - + Specifies Guest OS Customization Settings - true - false - 8df2faf3-fd33-40de-9b26-da34c146f55d + false + true + 84faa107-c0b9-4a21-adc5-b17e0c5355a2 false false true true - nN%9oQTG false - CentOS7-0 - + spec1-vm1 + - + Specifies Runtime info - - + Snapshot information section - 2016-09-08T16:48:57.753+03:00 - 7ff5cc28-e2e0-4466-bf78-e39a3522d539 - - + 2018-03-09T13:36:47.296+01:00 + c209ef9f-25c8-4fe5-a7f4-c522fbd45ea7 + + false false - + http_version: - recorded_at: Fri, 16 Sep 2016 08:52:14 GMT + recorded_at: Wed, 14 Mar 2018 10:54:30 GMT - request: method: get - uri: https://VMWARE_CLOUD_HOST/api/vApp/vapp-f1cc4bb2-b1be-4c11-b5d5-0587c482a7cd + uri: https://VMWARE_CLOUD_HOST/api/vApp/vapp-2c385915-c0c5-4cfe-81ca-ce8f59b21dd1 body: encoding: US-ASCII string: '' headers: User-Agent: - - fog-core/1.42.0 + - fog-core/1.45.0 Accept: - application/*+xml;version=5.1 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 response: status: code: 200 - message: '' + message: OK headers: Date: - - Fri, 16 Sep 2016 08:52:19 GMT + - Wed, 14 Mar 2018 10:54:30 GMT X-Vmware-Vcloud-Request-Id: - - de2c3411-6ab5-4911-b92c-173f829ae43d + - 68c353d1-6ec5-46da-9e3f-58627f6910ba X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '166' + - vcloud-token=ee9f52dbb4d245048614dba57e182fd3; Secure; Path=/ Content-Type: - application/vnd.vmware.vcloud.vapp+xml;version=5.1 + X-Vmware-Vcloud-Request-Execution-Time: + - '189' Vary: - Accept-Encoding, User-Agent body: encoding: ASCII-8BIT string: | - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + Lease settings section - - 604800 - 2592000 - 2016-10-16T11:46:10.463+03:00 + + 2592000 + 7776000 + 2018-03-22T12:27:19.638+01:00 - + VApp startup section - - + + - + The list of logical networks - - + + + + + The VM Network network - + The configuration parameters for logical networks - - - - + + + + true - 192.168.10.1 - 255.255.255.0 - 192.168.10.1 - test.local + 10.12.0.24 + 255.255.0.0 + 10.12.0.13 + redhat.xlab.si true - 192.168.10.100 - 192.168.10.199 + 10.12.6.10 + 10.12.6.100 - + bridged false - false + true + + + + The VM Network network + + + + false + 192.168.254.1 + 255.255.255.0 + true + + + 192.168.254.100 + 192.168.254.199 + + + + + isolated + false + + true - + Snapshot information section - 2016-09-16T11:46:10.347+03:00 + 2018-02-20T12:19:04.030+01:00 - + false - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + Virtual hardware requirements + + + + + + + + + + + + + Virtual Hardware Family + 0 - spec2-vm1 - vmx-10 + + + + + + 93e8f5e5-7b61-40ed-ae94-4193eda19fec + vmx-08 - 00:50:56:01:00:65 + 00:50:56:01:00:66 0 + true - INT_192.168.10.0m24 - Vmxnet3 ethernet adapter on "INT_192.168.10.0m24" + + + + + ManageIQ Dev external network + + E1000 ethernet adapter on "ManageIQ Dev external network" Network adapter 0 + 1 - VMXNET3 + + + + + + + E1000 10 + + + 0 + + + + + + + + SCSI Controller SCSI Controller 0 + 2 + + + + + + lsilogic 6 + + + + 0 + + + + + + + Hard disk Hard disk 1 - + + 2000 + + + 2 + + + 17 - 17179869184 + 70866960384 byte + - - 0 - IDE Controller - IDE Controller 0 - 3 - 5 - - - 0 - false - CD/DVD Drive - CD/DVD Drive 1 - - 3000 - 3 - 15 - - - 0 - false - Floppy Drive - Floppy Drive 1 - - 8000 - 14 - - + + + hertz * 10^6 + + + + + + Number of Virtual CPUs - 2 virtual CPU(s) - 4 + 4 virtual CPU(s) + + 3 + + + + + 0 + 3 - 2 + 4 + 0 - + - + + + byte * 2^20 + + + + + + Memory Size - 2048 MB of memory - 5 + 6144 MB of memory + + 4 + + + + + 0 + 4 - 2048 + 6144 + 0 - + - - - - - - - - - - - - + + + + + + + + + + + + - + Specifies the operating system installed - CentOS 4/5/6/7 (64-bit) - + Red Hat Enterprise Linux 6 (64-bit) + - + Specifies the available VM network connections 0 - + 0 - 192.168.10.101 + 10.12.6.23 true - 00:50:56:01:00:65 - POOL + 00:50:56:01:00:66 + DHCP - + - + Specifies Guest OS Customization Settings false false - a28be0c0-d70d-4047-92f8-fc217bbaa7f6 + 350947aa-c16e-4eb3-98c1-fced9dac6dbc false false true true false - CentOS7-0 - + 93e8f5e5-7b-001 + - + + Information about the installed software + ManageIQ + ManageIQ + gaprindashvili + + Specifies Runtime info - + - + Snapshot information section - 2016-09-16T11:46:14.080+03:00 - 7ff5cc28-e2e0-4466-bf78-e39a3522d539 - - + 2018-02-20T12:19:59.892+01:00 + 93e8f5e5-7b61-40ed-ae94-4193eda19fec + + + VMware ESXi + 6.5.0 + VMware, Inc. + en + + + + + + + false false - + http_version: - recorded_at: Fri, 16 Sep 2016 08:52:19 GMT + recorded_at: Wed, 14 Mar 2018 10:54:30 GMT - request: method: get - uri: https://VMWARE_CLOUD_HOST/api/vApp/vapp-0d7614c3-a61d-4d11-a733-aa2a8f6038b4 + uri: https://VMWARE_CLOUD_HOST/api/vApp/vapp-0e8b6b49-f42f-43c0-9c15-368d01c222c9 body: encoding: US-ASCII string: '' headers: User-Agent: - - fog-core/1.42.0 + - fog-core/1.45.0 Accept: - application/*+xml;version=5.1 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 response: status: code: 200 - message: '' + message: OK headers: Date: - - Fri, 16 Sep 2016 08:52:24 GMT + - Wed, 14 Mar 2018 10:54:30 GMT X-Vmware-Vcloud-Request-Id: - - 49618612-4f80-4e01-bd82-b1c762a59b52 + - 826936e7-4744-4144-8cfd-d5b83cca7ffb X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '202' + - vcloud-token=ee9f52dbb4d245048614dba57e182fd3; Secure; Path=/ Content-Type: - application/vnd.vmware.vcloud.vapp+xml;version=5.1 - Vary: - - Accept-Encoding, User-Agent - body: - encoding: ASCII-8BIT - string: "\n\n - \ \n - \ \n - \ \n - \ \n - \ \n - \ \n \n \n - \ \n \n \n \n \n \n \n \n \n \n - \ \n - \ Lease settings section\n \n 604800\n - \ 2592000\n 2016-09-23T11:46:52.987+03:00\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 - \ \n true\n - \ 192.168.10.1\n 255.255.255.0\n - \ 192.168.10.1\n test.local\n - \ true\n \n - \ \n 192.168.10.100\n - \ 192.168.10.199\n - \ \n \n - \ \n \n \n - \ bridged\n false\n - \ \n true\n - \ \n \n \n - \ Snapshot information section\n \n - \ 2016-09-16T11:45:24.897+03:00\n \n - \ \n - \ \n false\n \n - \ \n \n - \ \n - \ \n - \ \n - \ \n - \ \n \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 spec1-vm1\n - \ vmx-10\n - \ \n \n 00:50:56:01:00:64\n - \ 0\n true\n - \ INT_192.168.10.0m24\n Vmxnet3 - ethernet adapter on \"INT_192.168.10.0m24\"\n Network - adapter 0\n 1\n - \ VMXNET3\n - \ 10\n \n - \ \n 0\n - \ SCSI Controller\n - \ SCSI Controller 0\n - \ 2\n lsilogic\n - \ 6\n \n - \ \n 0\n - \ Hard disk\n Hard - disk 1\n \n 2000\n - \ 2\n 17\n - \ 17179869184\n - \ byte\n - \ \n \n 0\n - \ IDE Controller\n - \ IDE Controller 0\n - \ 3\n 5\n - \ \n \n 0\n - \ false\n - \ CD/DVD Drive\n CD/DVD - Drive 1\n \n 3000\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 2048 MB of - memory\n 5\n - \ 0\n 4\n - \ 2048\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 - \ CentOS 4/5/6/7 (64-bit)\n - \ \n \n - \ \n - \ Specifies the available VM network connections\n - \ 0\n - \ \n - \ 0\n 192.168.10.100\n - \ true\n 00:50:56:01:00:64\n - \ POOL\n - \ \n \n \n - \ \n - \ Specifies Guest OS Customization Settings\n - \ false\n false\n - \ f9ceb77c-b9d9-400c-8c06-72c785e884af\n - \ false\n false\n - \ true\n true\n - \ false\n CentOS7-0\n - \ \n \n - \ \n - \ Specifies Runtime info\n \n \n \n - \ Snapshot information section\n \n - \ 2016-09-16T11:45:30.557+03:00\n 7ff5cc28-e2e0-4466-bf78-e39a3522d539\n - \ \n \n - \ VMware ESXi\n 6.0.0\n - \ VMware, Inc.\n en\n - \ \n \n \n \n \n - \ \n \n \n false\n - \ false\n \n - \ \n - \ \n \n\n" - http_version: - recorded_at: Fri, 16 Sep 2016 08:52:25 GMT -- request: - method: get - uri: https://VMWARE_CLOUD_HOST/api/vApp/vapp-6aa2d7ae-5245-45a0-82e8-4984e759ba5d - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - fog-core/1.42.0 - Accept: - - application/*+xml;version=5.1 - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - response: - status: - code: 200 - message: '' - headers: - Date: - - Fri, 16 Sep 2016 08:52:30 GMT - X-Vmware-Vcloud-Request-Id: - - b8589d88-f899-4e82-a6df-6886e1e71a6b - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ X-Vmware-Vcloud-Request-Execution-Time: - - '275' - Content-Type: - - application/vnd.vmware.vcloud.vapp+xml;version=5.1 + - '109' Vary: - Accept-Encoding, User-Agent body: encoding: ASCII-8BIT string: | - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + Lease settings section - - 604800 - 2592000 - 2016-10-15T16:56:20.453+03:00 + + 2592000 + 7776000 + 2018-06-07T14:54:52.870+02:00 - + VApp startup section - - + + - + The list of logical networks - - + + - + The configuration parameters for logical networks - - - - + + + + @@ -1509,3562 +1186,2628 @@ http_interactions: true - 192.168.2.100 - 192.168.2.199 + 192.168.2.100 + 192.168.2.199 isolated false + + + false + 3600 + 7200 + + false - + Snapshot information section + - 2016-09-08T16:48:46.357+03:00 + 2018-03-09T13:39:00.260+01:00 - + false - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + Virtual hardware requirements + + + + + + + + + + + + + Virtual Hardware Family + 0 - CentOS7 - vmx-10 + + + + + + spec2-vm1 + vmx-13 - 00:50:56:01:00:4a + 00:50:56:01:00:d9 0 + true - testnet - Vmxnet3 ethernet adapter on "testnet" + + + + + spec2-network + + Vmxnet3 ethernet adapter on "spec2-network" Network adapter 0 + 1 + + + + + + VMXNET3 10 + + + 0 + + + + + + + + SCSI Controller SCSI Controller 0 + 2 - lsilogic + + + + + + + VirtualSCSI 6 + + + + 0 + + + + + + + Hard disk Hard disk 1 - + + 2000 + + + 2 + + + 17 17179869184 byte + 0 + + + + + + + + IDE Controller IDE Controller 0 + 3 + + + + + + + 5 + + + + 0 + false + + + + + CD/DVD Drive CD/DVD Drive 1 - + + 3000 + + + 3 + + + 15 + + + + 0 + false + + + + + Floppy Drive Floppy Drive 1 - + + 8000 + + + + + + + 14 + + + - + + + hertz * 10^6 + + + + + + Number of Virtual CPUs - 2 virtual CPU(s) + 1 virtual CPU(s) + 4 + + + + + 0 + 3 - 2 + 1 + 0 - + - + + + byte * 2^20 + + + + + + Memory Size - 2048 MB of memory + 256 MB of memory + 5 + + + + + 0 + 4 - 2048 + 256 + 0 - + - - - - - - - - - - - - + + + + + + + + + + + + - + Specifies the operating system installed - CentOS 4/5/6/7 (64-bit) - + VMware Photon OS (64-bit) + - + Specifies the available VM network connections 0 - + 0 192.168.2.100 true - 00:50:56:01:00:4a + 00:50:56:01:00:d9 POOL - + - + Specifies Guest OS Customization Settings - true + false false - 8df2faf3-fd33-40de-9b26-da34c146f55d + aaf94123-cbf9-4de9-841c-41dd41ac310e false false true true - nN%9oQTG false - CentOS7-0 - + spec2-vm1 + - + Specifies Runtime info - - + Snapshot information section + - 2016-09-08T16:48:57.753+03:00 - 7ff5cc28-e2e0-4466-bf78-e39a3522d539 - - + 2018-03-09T13:39:02.741+01:00 + 0166f57b-6ae3-47fe-a68b-4f7bebb61074 + + false false - + http_version: - recorded_at: Fri, 16 Sep 2016 08:52:31 GMT + recorded_at: Wed, 14 Mar 2018 10:54:30 GMT - request: method: get - uri: https://VMWARE_CLOUD_HOST/api/vApp/vapp-f1cc4bb2-b1be-4c11-b5d5-0587c482a7cd + uri: https://VMWARE_CLOUD_HOST/api/vApp/vapp-a715dec5-7ab1-487e-993b-82fcd7eb8172 body: encoding: US-ASCII string: '' headers: User-Agent: - - fog-core/1.42.0 + - fog-core/1.45.0 Accept: - application/*+xml;version=5.1 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 response: status: code: 200 - message: '' + message: OK headers: Date: - - Fri, 16 Sep 2016 08:52:36 GMT + - Wed, 14 Mar 2018 10:54:30 GMT X-Vmware-Vcloud-Request-Id: - - 077b9e5c-02b4-4a62-9d36-9f1e134fdcd8 + - 0f494886-f7e4-4c19-af3e-520fe58dbf90 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '138' + - vcloud-token=ee9f52dbb4d245048614dba57e182fd3; Secure; Path=/ Content-Type: - application/vnd.vmware.vcloud.vapp+xml;version=5.1 + X-Vmware-Vcloud-Request-Execution-Time: + - '106' Vary: - Accept-Encoding, User-Agent body: encoding: ASCII-8BIT string: | - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + Lease settings section - - 604800 - 2592000 - 2016-10-16T11:46:10.463+03:00 + + 2592000 + 7776000 + 2018-04-12T11:18:05.418+02:00 - + VApp startup section - - + + - + The list of logical networks - - + + - + The configuration parameters for logical networks - - - - + + + + - true - 192.168.10.1 + false + 192.168.2.1 255.255.255.0 - 192.168.10.1 - test.local true - 192.168.10.100 - 192.168.10.199 + 192.168.2.100 + 192.168.2.199 - - bridged + isolated false + + + false + 3600 + 7200 + + - false + true - + Snapshot information section - 2016-09-16T11:46:10.347+03:00 + 2018-03-09T13:36:41.966+01:00 - + false - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + Virtual hardware requirements + + + + + + + + + + + + + Virtual Hardware Family + 0 - spec2-vm1 - vmx-10 + + + + + + spec1-vm1 + vmx-13 - 00:50:56:01:00:65 + 00:50:56:01:00:d8 0 + true - INT_192.168.10.0m24 - Vmxnet3 ethernet adapter on "INT_192.168.10.0m24" + + + + + spec1-network + + E1000s ethernet adapter on "spec1-network" Network adapter 0 + 1 - VMXNET3 + + + + + + + E1000E 10 + + + 0 + + + + + + + + SCSI Controller SCSI Controller 0 + 2 - lsilogic + + + + + + + lsilogicsas 6 + + + + 0 + + + + + + + Hard disk Hard disk 1 - + + 2000 + + + 2 + + + 17 - 17179869184 + 10737418240 byte + 0 + + + + + + + + IDE Controller IDE Controller 0 + 3 + + + + + + + 5 + + + + 0 + false + + + + + CD/DVD Drive CD/DVD Drive 1 - + + 3000 + + + 3 + + + 15 + + + + 0 + false + + + + + Floppy Drive Floppy Drive 1 - + + 8000 + + + + + + + 14 + + + - + + + hertz * 10^6 + + + + + + Number of Virtual CPUs - 2 virtual CPU(s) + 1 virtual CPU(s) + 4 + + + + + 0 + 3 - 2 + 1 + 0 - + - + + + byte * 2^20 + + + + + + Memory Size - 2048 MB of memory + 512 MB of memory + 5 + + + + + 0 + 4 - 2048 + 512 + 0 - + - - - - - - - - - - - - + + + + + + + + + + + + - + Specifies the operating system installed - CentOS 4/5/6/7 (64-bit) - + Microsoft Windows Server 2016 (64-bit) + - + Specifies the available VM network connections 0 - + 0 - 192.168.10.101 + 192.168.2.100 true - 00:50:56:01:00:65 + 00:50:56:01:00:d8 POOL - + - + Specifies Guest OS Customization Settings false - false - a28be0c0-d70d-4047-92f8-fc217bbaa7f6 + true + 84faa107-c0b9-4a21-adc5-b17e0c5355a2 false false true true false - CentOS7-0 - + spec1-vm1 + - + Specifies Runtime info - - + Snapshot information section - 2016-09-16T11:46:14.080+03:00 - 7ff5cc28-e2e0-4466-bf78-e39a3522d539 - - + 2018-03-09T13:36:47.296+01:00 + c209ef9f-25c8-4fe5-a7f4-c522fbd45ea7 + + false false - + http_version: - recorded_at: Fri, 16 Sep 2016 08:52:37 GMT + recorded_at: Wed, 14 Mar 2018 10:54:30 GMT - request: method: get - uri: https://VMWARE_CLOUD_HOST/api/vApp/vm-f9ceb77c-b9d9-400c-8c06-72c785e884af/virtualHardwareSection/disks + uri: https://VMWARE_CLOUD_HOST/api/vApp/vapp-2c385915-c0c5-4cfe-81ca-ce8f59b21dd1 body: encoding: US-ASCII string: '' headers: User-Agent: - - fog-core/1.42.0 + - fog-core/1.45.0 Accept: - application/*+xml;version=5.1 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 response: status: code: 200 - message: '' + message: OK headers: Date: - - Fri, 16 Sep 2016 08:52:42 GMT + - Wed, 14 Mar 2018 10:54:31 GMT X-Vmware-Vcloud-Request-Id: - - a7d426e0-3df1-4e09-b6eb-5936ee702e36 + - 53d10d30-d320-4ee1-bfc6-02eb07353063 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '132' + - vcloud-token=ee9f52dbb4d245048614dba57e182fd3; Secure; Path=/ Content-Type: - - application/vnd.vmware.vcloud.rasditemslist+xml;version=5.1 - Vary: - - Accept-Encoding, User-Agent - Content-Length: - - '2169' - body: - encoding: ASCII-8BIT - string: | - - - - - 0 - SCSI Controller - SCSI Controller 0 - 2 - lsilogic - 6 - - - 0 - Hard disk - Hard disk 1 - - 2000 - 2 - 17 - 17179869184 - byte - - - 0 - IDE Controller - IDE Controller 0 - 3 - 5 - - - http_version: - recorded_at: Fri, 16 Sep 2016 08:52:42 GMT -- request: - method: get - uri: https://VMWARE_CLOUD_HOST/api/vApp/vm-8df2faf3-fd33-40de-9b26-da34c146f55d/virtualHardwareSection/disks - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - fog-core/1.42.0 - Accept: - - application/*+xml;version=5.1 - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - response: - status: - code: 200 - message: '' - headers: - Date: - - Fri, 16 Sep 2016 08:52:47 GMT - X-Vmware-Vcloud-Request-Id: - - 578a96d1-4580-4cba-9bf9-b7056c040f13 - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ + - application/vnd.vmware.vcloud.vapp+xml;version=5.1 X-Vmware-Vcloud-Request-Execution-Time: - - '45' - Content-Type: - - application/vnd.vmware.vcloud.rasditemslist+xml;version=5.1 + - '151' Vary: - Accept-Encoding, User-Agent - Content-Length: - - '2169' body: encoding: ASCII-8BIT string: | - - - - - 0 - SCSI Controller - SCSI Controller 0 - 2 - lsilogic - 6 - - - 0 - Hard disk - Hard disk 1 - - 2000 - 2 - 17 - 17179869184 - byte - - - 0 - IDE Controller - IDE Controller 0 - 3 - 5 - - - http_version: - recorded_at: Fri, 16 Sep 2016 08:52:48 GMT -- request: - method: get - uri: https://VMWARE_CLOUD_HOST/api/vApp/vm-a28be0c0-d70d-4047-92f8-fc217bbaa7f6/virtualHardwareSection/disks - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - fog-core/1.42.0 - Accept: - - application/*+xml;version=5.1 - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - response: - status: - code: 200 - message: '' - headers: - Date: - - Fri, 16 Sep 2016 08:52:52 GMT - X-Vmware-Vcloud-Request-Id: - - 53ee9bf5-f808-49d8-afbe-a7a5f7d2485f - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '42' - Content-Type: - - application/vnd.vmware.vcloud.rasditemslist+xml;version=5.1 - Vary: - - Accept-Encoding, User-Agent - Content-Length: - - '2169' - body: - encoding: ASCII-8BIT - string: | - - - - - 0 - SCSI Controller - SCSI Controller 0 - 2 - lsilogic - 6 - - - 0 - Hard disk - Hard disk 1 - - 2000 - 2 - 17 - 17179869184 - byte - - - 0 - IDE Controller - IDE Controller 0 - 3 - 5 - - + + + + + + + + + + + + + + + + + + + + + + + + Lease settings section + + 2592000 + 7776000 + 2018-03-22T12:27:19.638+01:00 + + + VApp startup section + + + + + The list of logical networks + + The VM Network network + + + + + + + The configuration parameters for logical networks + + + + The VM Network network + + + + false + 192.168.254.1 + 255.255.255.0 + true + + + 192.168.254.100 + 192.168.254.199 + + + + + isolated + false + + true + + + + + + + + true + 10.12.0.24 + 255.255.0.0 + 10.12.0.13 + redhat.xlab.si + true + + + 10.12.6.10 + 10.12.6.100 + + + + + + bridged + false + + true + + + + Snapshot information section + + 2018-02-20T12:19:04.030+01:00 + + + + false + + + + + + + + + + + + + + + + + + + + + + + + Virtual hardware requirements + + + + + + + + + + + + + + + Virtual Hardware Family + + 0 + + + + + + 93e8f5e5-7b61-40ed-ae94-4193eda19fec + vmx-08 + + + 00:50:56:01:00:66 + 0 + + true + + + + + ManageIQ Dev external network + + E1000 ethernet adapter on "ManageIQ Dev external network" + Network adapter 0 + + 1 + + + + + + + E1000 + 10 + + + + + + 0 + + + + + + + + + SCSI Controller + SCSI Controller 0 + + 2 + + + + + + + lsilogic + 6 + + + + + + + 0 + + + + + + + + Hard disk + Hard disk 1 + + + 2000 + + + + 2 + + + + 17 + 70866960384 + byte + + + + + + hertz * 10^6 + + + + + + + Number of Virtual CPUs + 4 virtual CPU(s) + + 3 + + + + + + 0 + + 3 + 4 + + 0 + + + + + + byte * 2^20 + + + + + + + Memory Size + 6144 MB of memory + + 4 + + + + + + 0 + + 4 + 6144 + + 0 + + + + + + + + + + + + + + + + + Specifies the operating system installed + Red Hat Enterprise Linux 6 (64-bit) + + + + Specifies the available VM network connections + 0 + + 0 + 10.12.6.23 + true + 00:50:56:01:00:66 + DHCP + + + + + Specifies Guest OS Customization Settings + false + false + 350947aa-c16e-4eb3-98c1-fced9dac6dbc + false + false + true + true + false + 93e8f5e5-7b-001 + + + + Information about the installed software + ManageIQ + ManageIQ + gaprindashvili + + + Specifies Runtime info + + + + Snapshot information section + + 2018-02-20T12:19:59.892+01:00 + 93e8f5e5-7b61-40ed-ae94-4193eda19fec + + + VMware ESXi + 6.5.0 + VMware, Inc. + en + + + + + + + + false + false + + + + + http_version: - recorded_at: Fri, 16 Sep 2016 08:52:53 GMT + recorded_at: Wed, 14 Mar 2018 10:54:31 GMT - request: method: get - uri: https://VMWARE_CLOUD_HOST/api/org/e338a4ac-551b-4b6c-b5c0-aff31b71417f + uri: https://VMWARE_CLOUD_HOST/api/vApp/vapp-0e8b6b49-f42f-43c0-9c15-368d01c222c9 body: encoding: US-ASCII string: '' headers: User-Agent: - - fog-core/1.42.0 + - fog-core/1.45.0 Accept: - application/*+xml;version=5.1 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 response: status: code: 200 - message: '' + message: OK headers: Date: - - Fri, 16 Sep 2016 08:52:58 GMT + - Wed, 14 Mar 2018 10:54:31 GMT X-Vmware-Vcloud-Request-Id: - - 1f376632-d0db-4d65-b5b1-308fff5bba56 + - 19227904-5206-4513-bcc9-6f7f5e5a8083 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '140' + - vcloud-token=ee9f52dbb4d245048614dba57e182fd3; Secure; Path=/ Content-Type: - - application/vnd.vmware.vcloud.org+xml;version=5.1 - Vary: - - Accept-Encoding, User-Agent - Content-Length: - - '2589' - body: - encoding: ASCII-8BIT - string: !binary |- - PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPE9yZyB4 - bWxucz0iaHR0cDovL3d3dy52bXdhcmUuY29tL3ZjbG91ZC92MS41IiBuYW1l - PSJNSVFEZXYiIGlkPSJ1cm46dmNsb3VkOm9yZzplMzM4YTRhYy01NTFiLTRi - NmMtYjVjMC1hZmYzMWI3MTQxN2YiIGhyZWY9Imh0dHBzOi8vVk1XQVJFX0NM - T1VEX0hPU1QvYXBpL29yZy9lMzM4YTRhYy01NTFiLTRiNmMtYjVjMC1hZmYz - MWI3MTQxN2YiIHR5cGU9ImFwcGxpY2F0aW9uL3ZuZC52bXdhcmUudmNsb3Vk - Lm9yZyt4bWwiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9Y - TUxTY2hlbWEtaW5zdGFuY2UiIHhzaTpzY2hlbWFMb2NhdGlvbj0iaHR0cDov - L3d3dy52bXdhcmUuY29tL3ZjbG91ZC92MS41IGh0dHA6Ly9WTVdBUkVfQ0xP - VURfSE9TVC9hcGkvdjEuNS9zY2hlbWEvbWFzdGVyLnhzZCI+CiAgICA8TGlu - ayByZWw9ImRvd24iIGhyZWY9Imh0dHBzOi8vVk1XQVJFX0NMT1VEX0hPU1Qv - YXBpL3ZkYy84OWFkZTk2OS0xZGM0LTQxNTYtYWJhZC1lMjlmNzk1MTE2NzYi - IG5hbWU9Ik1JUURldi1EZWZhdWx0LXZDRC1EdWFsU2l0ZVN0b3JhZ2UtUEFZ - RyIgdHlwZT0iYXBwbGljYXRpb24vdm5kLnZtd2FyZS52Y2xvdWQudmRjK3ht - bCIvPgogICAgPExpbmsgcmVsPSJkb3duIiBocmVmPSJodHRwczovL1ZNV0FS - RV9DTE9VRF9IT1NUL2FwaS90YXNrc0xpc3QvZTMzOGE0YWMtNTUxYi00YjZj - LWI1YzAtYWZmMzFiNzE0MTdmIiB0eXBlPSJhcHBsaWNhdGlvbi92bmQudm13 - YXJlLnZjbG91ZC50YXNrc0xpc3QreG1sIi8+CiAgICA8TGluayByZWw9ImRv - d24iIGhyZWY9Imh0dHBzOi8vVk1XQVJFX0NMT1VEX0hPU1QvYXBpL2NhdGFs - b2cvMDQ5MGFkM2ItZjM0My00YjgwLThkNWItZWNiMDM5N2ZkNDEyIiBuYW1l - PSJTaGFyZWQgVGlldG8gQ2F0YWxvZyIgdHlwZT0iYXBwbGljYXRpb24vdm5k - LnZtd2FyZS52Y2xvdWQuY2F0YWxvZyt4bWwiLz4KICAgIDxMaW5rIHJlbD0i - ZG93biIgaHJlZj0iaHR0cHM6Ly9WTVdBUkVfQ0xPVURfSE9TVC9hcGkvY2F0 - YWxvZy8wNDkwYWQzYi1mMzQzLTRiODAtOGQ1Yi1lY2IwMzk3ZmQ0MTIvY29u - dHJvbEFjY2Vzcy8iIHR5cGU9ImFwcGxpY2F0aW9uL3ZuZC52bXdhcmUudmNs - b3VkLmNvbnRyb2xBY2Nlc3MreG1sIi8+CiAgICA8TGluayByZWw9ImRvd24i - IGhyZWY9Imh0dHBzOi8vVk1XQVJFX0NMT1VEX0hPU1QvYXBpL2NhdGFsb2cv - MjYxMDM3YmMtODI5OS00MmMxLTlhYzEtYjhjNGM5NjRkOTlkIiBuYW1lPSJY - VGVzdENhdGFsb2ciIHR5cGU9ImFwcGxpY2F0aW9uL3ZuZC52bXdhcmUudmNs - b3VkLmNhdGFsb2creG1sIi8+CiAgICA8TGluayByZWw9ImRvd24iIGhyZWY9 - Imh0dHBzOi8vVk1XQVJFX0NMT1VEX0hPU1QvYXBpL2NhdGFsb2cvMjYxMDM3 - YmMtODI5OS00MmMxLTlhYzEtYjhjNGM5NjRkOTlkL2NvbnRyb2xBY2Nlc3Mv - IiB0eXBlPSJhcHBsaWNhdGlvbi92bmQudm13YXJlLnZjbG91ZC5jb250cm9s - QWNjZXNzK3htbCIvPgogICAgPExpbmsgcmVsPSJjb250cm9sQWNjZXNzIiBo - cmVmPSJodHRwczovL1ZNV0FSRV9DTE9VRF9IT1NUL2FwaS9jYXRhbG9nLzI2 - MTAzN2JjLTgyOTktNDJjMS05YWMxLWI4YzRjOTY0ZDk5ZC9hY3Rpb24vY29u - dHJvbEFjY2VzcyIgdHlwZT0iYXBwbGljYXRpb24vdm5kLnZtd2FyZS52Y2xv - dWQuY29udHJvbEFjY2Vzcyt4bWwiLz4KICAgIDxMaW5rIHJlbD0iYWRkIiBo - cmVmPSJodHRwczovL1ZNV0FSRV9DTE9VRF9IT1NUL2FwaS9hZG1pbi9vcmcv - ZTMzOGE0YWMtNTUxYi00YjZjLWI1YzAtYWZmMzFiNzE0MTdmL2NhdGFsb2dz - IiB0eXBlPSJhcHBsaWNhdGlvbi92bmQudm13YXJlLmFkbWluLmNhdGFsb2cr - eG1sIi8+CiAgICA8TGluayByZWw9ImRvd24iIGhyZWY9Imh0dHBzOi8vVk1X - QVJFX0NMT1VEX0hPU1QvYXBpL25ldHdvcmsvNWFlODQwZGUtMTk4ZS00YTM0 - LWEzMGEtNmMzNjM3NzQ2MGM2IiBuYW1lPSJJTlRfMTkyLjE2OC4xMC4wbTI0 - IiB0eXBlPSJhcHBsaWNhdGlvbi92bmQudm13YXJlLnZjbG91ZC5vcmdOZXR3 - b3JrK3htbCIvPgogICAgPExpbmsgcmVsPSJkb3duIiBocmVmPSJodHRwczov - L1ZNV0FSRV9DTE9VRF9IT1NUL2FwaS9zdXBwb3J0ZWRTeXN0ZW1zSW5mby8i - IHR5cGU9ImFwcGxpY2F0aW9uL3ZuZC52bXdhcmUudmNsb3VkLnN1cHBvcnRl - ZFN5c3RlbXNJbmZvK3htbCIvPgogICAgPExpbmsgcmVsPSJkb3duIiBocmVm - PSJodHRwczovL1ZNV0FSRV9DTE9VRF9IT1NUL2FwaS9vcmcvZTMzOGE0YWMt - NTUxYi00YjZjLWI1YzAtYWZmMzFiNzE0MTdmL21ldGFkYXRhIiB0eXBlPSJh - cHBsaWNhdGlvbi92bmQudm13YXJlLnZjbG91ZC5tZXRhZGF0YSt4bWwiLz4K - ICAgIDxEZXNjcmlwdGlvbj5Pcmdhbml6YXRpb24gZm9yIFJlZEhhdCBkZXZl - bG9wbWVudCBvZiBNYW5hZ2VJUSB2Q2xvdWQgY29ubmVjdG9yDUNvbnRhY3Qg - RGF2aWQgQmFydG/FoTwvRGVzY3JpcHRpb24+CiAgICA8RnVsbE5hbWU+TWFu - YWdlSVEgRGV2ZWxvcG1lbnQ8L0Z1bGxOYW1lPgo8L09yZz4K - http_version: - recorded_at: Fri, 16 Sep 2016 08:52:59 GMT -- request: - method: get - uri: https://VMWARE_CLOUD_HOST/api/catalog/0490ad3b-f343-4b80-8d5b-ecb0397fd412 - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - fog-core/1.42.0 - Accept: - - application/*+xml;version=5.1 - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - response: - status: - code: 200 - message: '' - headers: - Date: - - Fri, 16 Sep 2016 08:53:03 GMT - X-Vmware-Vcloud-Request-Id: - - fd94a0ab-4175-49ae-9961-ba67eb000e13 - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ + - application/vnd.vmware.vcloud.vapp+xml;version=5.1 X-Vmware-Vcloud-Request-Execution-Time: - - '91' - Content-Type: - - application/vnd.vmware.vcloud.catalog+xml;version=5.1 + - '132' Vary: - Accept-Encoding, User-Agent - Content-Length: - - '2211' body: encoding: ASCII-8BIT string: | - - - - - Tieto Shared Catalog - - - - - - - - false - 2016-08-02T11:09:57.957+03:00 - - http_version: - recorded_at: Fri, 16 Sep 2016 08:53:04 GMT -- request: - method: get - uri: https://VMWARE_CLOUD_HOST/api/catalog/0490ad3b-f343-4b80-8d5b-ecb0397fd412 - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - fog-core/1.42.0 - Accept: - - application/*+xml;version=5.1 - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - response: - status: - code: 200 - message: '' - headers: - Date: - - Fri, 16 Sep 2016 08:53:09 GMT - X-Vmware-Vcloud-Request-Id: - - 6b25fe17-0b30-4402-82ec-c3182765f3cc - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '63' - Content-Type: - - application/vnd.vmware.vcloud.catalog+xml;version=5.1 - Vary: - - Accept-Encoding, User-Agent - Content-Length: - - '2211' - body: - encoding: ASCII-8BIT - string: | - - - - - Tieto Shared Catalog - - - - - - - - false - 2016-08-02T11:09:57.957+03:00 - + + + + + + + + + + + + + + + + + + + + + + + Lease settings section + + 2592000 + 7776000 + 2018-06-07T14:54:52.870+02:00 + + + VApp startup section + + + + + The list of logical networks + + + + + + The configuration parameters for logical networks + + + + + + + + false + 192.168.2.1 + 255.255.255.0 + true + + + 192.168.2.100 + 192.168.2.199 + + + + + isolated + false + + + false + 3600 + 7200 + + + + false + + + + Snapshot information section + + + 2018-03-09T13:39:00.260+01:00 + + + + false + + + + + + + + + + + + + + + + + + + + + + Virtual hardware requirements + + + + + + + + + + + + + + + Virtual Hardware Family + + 0 + + + + + + spec2-vm1 + vmx-13 + + + 00:50:56:01:00:d9 + 0 + + true + + + + + spec2-network + + Vmxnet3 ethernet adapter on "spec2-network" + Network adapter 0 + + 1 + + + + + + + VMXNET3 + 10 + + + + + + 0 + + + + + + + + + SCSI Controller + SCSI Controller 0 + + 2 + + + + + + + VirtualSCSI + 6 + + + + + + + 0 + + + + + + + + Hard disk + Hard disk 1 + + + 2000 + + + + 2 + + + + 17 + 17179869184 + byte + + + + 0 + + + + + + + + + IDE Controller + IDE Controller 0 + + 3 + + + + + + + + 5 + + + + + + + 0 + + false + + + + + + CD/DVD Drive + CD/DVD Drive 1 + + + 3000 + + + + 3 + + + + 15 + + + + + + + 0 + + false + + + + + + Floppy Drive + Floppy Drive 1 + + + 8000 + + + + + + + + 14 + + + + + + + + hertz * 10^6 + + + + + + + Number of Virtual CPUs + 1 virtual CPU(s) + + 4 + + + + + + 0 + + 3 + 1 + + 0 + + + + + + byte * 2^20 + + + + + + + Memory Size + 256 MB of memory + + 5 + + + + + + 0 + + 4 + 256 + + 0 + + + + + + + + + + + + + + + + + Specifies the operating system installed + VMware Photon OS (64-bit) + + + + Specifies the available VM network connections + 0 + + 0 + 192.168.2.100 + true + 00:50:56:01:00:d9 + POOL + + + + + Specifies Guest OS Customization Settings + false + false + aaf94123-cbf9-4de9-841c-41dd41ac310e + false + false + true + true + false + spec2-vm1 + + + + Specifies Runtime info + + + Snapshot information section + + + 2018-03-09T13:39:02.741+01:00 + 0166f57b-6ae3-47fe-a68b-4f7bebb61074 + + + false + false + + + + + http_version: - recorded_at: Fri, 16 Sep 2016 08:53:09 GMT + recorded_at: Wed, 14 Mar 2018 10:54:31 GMT - request: method: get - uri: https://VMWARE_CLOUD_HOST/api/catalogItem/23a9d1e6-a80a-4fc8-ad25-664f282d9ac0 + uri: https://VMWARE_CLOUD_HOST/api/vApp/vm-84faa107-c0b9-4a21-adc5-b17e0c5355a2/guestCustomizationSection body: encoding: US-ASCII string: '' headers: User-Agent: - - fog-core/1.42.0 + - fog-core/1.45.0 Accept: - application/*+xml;version=5.1 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 response: status: code: 200 - message: '' + message: OK headers: Date: - - Fri, 16 Sep 2016 08:53:14 GMT + - Wed, 14 Mar 2018 10:54:31 GMT X-Vmware-Vcloud-Request-Id: - - b92fb332-f42a-4548-a6f9-8d33543c5138 + - 6eb71b73-35f4-4117-b627-dc5c9611e768 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '172' + - vcloud-token=ee9f52dbb4d245048614dba57e182fd3; Secure; Path=/ Content-Type: - - application/vnd.vmware.vcloud.catalogitem+xml;version=5.1 + - application/vnd.vmware.vcloud.guestcustomizationsection+xml;version=5.1 + X-Vmware-Vcloud-Request-Execution-Time: + - '52' Vary: - Accept-Encoding, User-Agent Content-Length: - - '1142' + - '1741' body: encoding: ASCII-8BIT string: | - - - - - - - 2016-08-02T16:34:24.980+03:00 - + + + Specifies Guest OS Customization Settings + false + true + 84faa107-c0b9-4a21-adc5-b17e0c5355a2 + false + false + true + true + false + spec1-vm1 + + http_version: - recorded_at: Fri, 16 Sep 2016 08:53:15 GMT + recorded_at: Wed, 14 Mar 2018 10:54:31 GMT - request: method: get - uri: https://VMWARE_CLOUD_HOST/api/vAppTemplate/vappTemplate-ab27a332-2cc3-4ce8-a50f-138036cf7f57 + uri: https://VMWARE_CLOUD_HOST/api/vApp/vm-84faa107-c0b9-4a21-adc5-b17e0c5355a2/virtualHardwareSection/disks body: encoding: US-ASCII string: '' headers: User-Agent: - - fog-core/1.42.0 + - fog-core/1.45.0 Accept: - application/*+xml;version=5.1 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 response: status: code: 200 - message: '' + message: OK headers: Date: - - Fri, 16 Sep 2016 08:53:20 GMT + - Wed, 14 Mar 2018 10:54:31 GMT X-Vmware-Vcloud-Request-Id: - - 52fbe006-bb92-439f-98c7-89b7f4ae90c3 + - 5211df76-040c-43a7-a0a9-bd494a212fc0 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '855' + - vcloud-token=ee9f52dbb4d245048614dba57e182fd3; Secure; Path=/ Content-Type: - - application/vnd.vmware.vcloud.vapptemplate+xml;version=5.1 + - application/vnd.vmware.vcloud.rasditemslist+xml;version=5.1 + X-Vmware-Vcloud-Request-Execution-Time: + - '37' Vary: - Accept-Encoding, User-Agent + Content-Length: + - '7671' body: encoding: ASCII-8BIT string: | - - - - - - - - - - - - - - - - - - - - - - - Specifies the available VM network connections - 0 - - 0 - true - 00:50:56:01:00:2b - POOL - - - - Specifies Guest OS Customization Settings - false - false - 857551b6-380c-44d0-ab34-9d144866f0b4 - false - false - true - true - false - CentOS7 - - d0733827-5a41-4816-b4a9-3cb8deb98583 - 2016-08-02T16:34:25.103+03:00 - - - - The list of logical networks - - - - - - The configuration parameters for logical networks - - - - - - false - 192.168.2.1 - 255.255.255.0 - true - - - 192.168.2.100 - 192.168.2.199 - - - - - isolated - false - - false - - - - Lease settings section - - 7776000 - 2016-12-11T10:12:59.137+02:00 - - - VApp template customization section - true - - 2016-08-02T16:34:25.103+03:00 - + + + + + 0 + + + + + + + + + SCSI Controller + SCSI Controller 0 + + 2 + + + + + + + lsilogicsas + 6 + + + + + + + 0 + + + + + + + + Hard disk + Hard disk 1 + + + 2000 + + + + 2 + + + + 17 + 10737418240 + byte + + + + 0 + + + + + + + + + IDE Controller + IDE Controller 0 + + 3 + + + + + + + + 5 + + + + + http_version: - recorded_at: Fri, 16 Sep 2016 08:53:21 GMT + recorded_at: Wed, 14 Mar 2018 10:54:31 GMT - request: method: get - uri: https://VMWARE_CLOUD_HOST/api/vAppTemplate/vappTemplate-ab27a332-2cc3-4ce8-a50f-138036cf7f57 + uri: https://VMWARE_CLOUD_HOST/api/vApp/vm-84faa107-c0b9-4a21-adc5-b17e0c5355a2/snapshotSection body: encoding: US-ASCII string: '' headers: User-Agent: - - fog-core/1.42.0 + - fog-core/1.45.0 Accept: - application/*+xml;version=5.1 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 response: status: code: 200 - message: '' + message: OK headers: Date: - - Fri, 16 Sep 2016 08:53:26 GMT + - Wed, 14 Mar 2018 10:54:32 GMT X-Vmware-Vcloud-Request-Id: - - 6e55e332-622e-4b78-baeb-5538532232fb + - 852d4954-3eb1-469e-b69d-318d63b5083f X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '244' + - vcloud-token=ee9f52dbb4d245048614dba57e182fd3; Secure; Path=/ Content-Type: - - application/vnd.vmware.vcloud.vapptemplate+xml;version=5.1 + - application/vnd.vmware.vcloud.snapshotsection+xml;version=5.1 + X-Vmware-Vcloud-Request-Execution-Time: + - '109' Vary: - Accept-Encoding, User-Agent + Content-Length: + - '1062' body: encoding: ASCII-8BIT string: | - - - - - - - - - - - - - - - - - - - - - - - Specifies the available VM network connections - 0 - - 0 - true - 00:50:56:01:00:2b - POOL - - - - Specifies Guest OS Customization Settings - false - false - 857551b6-380c-44d0-ab34-9d144866f0b4 - false - false - true - true - false - CentOS7 - - d0733827-5a41-4816-b4a9-3cb8deb98583 - 2016-08-02T16:34:25.103+03:00 - - - - The list of logical networks - - - - - - The configuration parameters for logical networks - - - - - - false - 192.168.2.1 - 255.255.255.0 - true - - - 192.168.2.100 - 192.168.2.199 - - - - - isolated - false - - false - - - - Lease settings section - - 7776000 - 2016-12-11T10:12:59.137+02:00 - - - VApp template customization section - true - - 2016-08-02T16:34:25.103+03:00 - + + + Snapshot information section + http_version: - recorded_at: Fri, 16 Sep 2016 08:53:27 GMT + recorded_at: Wed, 14 Mar 2018 10:54:32 GMT - request: method: get - uri: https://VMWARE_CLOUD_HOST/api/catalogItem/42800327-57ed-433e-8ca4-17a33843cc0a + uri: https://VMWARE_CLOUD_HOST/api/vApp/vm-350947aa-c16e-4eb3-98c1-fced9dac6dbc/guestCustomizationSection body: encoding: US-ASCII string: '' headers: User-Agent: - - fog-core/1.42.0 + - fog-core/1.45.0 Accept: - application/*+xml;version=5.1 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 response: status: code: 200 - message: '' + message: OK headers: Date: - - Fri, 16 Sep 2016 08:53:31 GMT + - Wed, 14 Mar 2018 10:54:32 GMT X-Vmware-Vcloud-Request-Id: - - 3010f569-fc58-4be7-ba22-bd5ba252a35c + - 2848a4be-5709-4906-aa9c-83b19824f281 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '66' + - vcloud-token=ee9f52dbb4d245048614dba57e182fd3; Secure; Path=/ Content-Type: - - application/vnd.vmware.vcloud.catalogitem+xml;version=5.1 + - application/vnd.vmware.vcloud.guestcustomizationsection+xml;version=5.1 + X-Vmware-Vcloud-Request-Execution-Time: + - '30' Vary: - Accept-Encoding, User-Agent Content-Length: - - '1118' + - '1748' body: encoding: ASCII-8BIT string: | - - - - - - - 2016-08-02T16:01:46.560+03:00 - + + + Specifies Guest OS Customization Settings + false + false + 350947aa-c16e-4eb3-98c1-fced9dac6dbc + false + false + true + true + false + 93e8f5e5-7b-001 + + http_version: - recorded_at: Fri, 16 Sep 2016 08:53:32 GMT + recorded_at: Wed, 14 Mar 2018 10:54:32 GMT - request: method: get - uri: https://VMWARE_CLOUD_HOST/api/catalogItem/59d0aebb-aad0-4f01-9fd6-082fca414936 + uri: https://VMWARE_CLOUD_HOST/api/vApp/vm-350947aa-c16e-4eb3-98c1-fced9dac6dbc/virtualHardwareSection/disks body: encoding: US-ASCII string: '' headers: User-Agent: - - fog-core/1.42.0 + - fog-core/1.45.0 Accept: - application/*+xml;version=5.1 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 response: status: code: 200 - message: '' + message: OK headers: Date: - - Fri, 16 Sep 2016 08:53:37 GMT + - Wed, 14 Mar 2018 10:54:32 GMT X-Vmware-Vcloud-Request-Id: - - 20ac7621-c6d1-41b7-ae7b-14b8b2e45686 + - feb06c9b-68e3-48fc-a571-1133bbbf1896 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '124' + - vcloud-token=ee9f52dbb4d245048614dba57e182fd3; Secure; Path=/ Content-Type: - - application/vnd.vmware.vcloud.catalogitem+xml;version=5.1 + - application/vnd.vmware.vcloud.rasditemslist+xml;version=5.1 + X-Vmware-Vcloud-Request-Execution-Time: + - '30' Vary: - Accept-Encoding, User-Agent Content-Length: - - '1095' + - '5501' body: encoding: ASCII-8BIT string: | - - - - - - - 2016-08-02T14:44:53.647+03:00 - + + + + + 0 + + + + + + + + + SCSI Controller + SCSI Controller 0 + + 2 + + + + + + + lsilogic + 6 + + + + + + + 0 + + + + + + + + Hard disk + Hard disk 1 + + + 2000 + + + + 2 + + + + 17 + 70866960384 + byte + + + http_version: - recorded_at: Fri, 16 Sep 2016 08:53:37 GMT + recorded_at: Wed, 14 Mar 2018 10:54:32 GMT - request: method: get - uri: https://VMWARE_CLOUD_HOST/api/catalogItem/6d250e6a-0cfe-4749-af3d-700fe490cb12 + uri: https://VMWARE_CLOUD_HOST/api/vApp/vm-350947aa-c16e-4eb3-98c1-fced9dac6dbc/snapshotSection body: encoding: US-ASCII string: '' headers: User-Agent: - - fog-core/1.42.0 + - fog-core/1.45.0 Accept: - application/*+xml;version=5.1 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 response: status: code: 200 - message: '' + message: OK headers: Date: - - Fri, 16 Sep 2016 08:53:42 GMT + - Wed, 14 Mar 2018 10:54:32 GMT X-Vmware-Vcloud-Request-Id: - - 65712a29-9eea-4a3d-bd3b-899daa64dc47 + - 0e916a86-0cc0-4ea6-ab64-3bc13c90af79 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '63' + - vcloud-token=ee9f52dbb4d245048614dba57e182fd3; Secure; Path=/ Content-Type: - - application/vnd.vmware.vcloud.catalogitem+xml;version=5.1 + - application/vnd.vmware.vcloud.snapshotsection+xml;version=5.1 + X-Vmware-Vcloud-Request-Execution-Time: + - '101' Vary: - Accept-Encoding, User-Agent Content-Length: - - '1098' + - '1062' body: encoding: ASCII-8BIT string: | - - - - - - - 2016-08-02T14:44:23.147+03:00 - + + + Snapshot information section + http_version: - recorded_at: Fri, 16 Sep 2016 08:53:43 GMT + recorded_at: Wed, 14 Mar 2018 10:54:32 GMT - request: method: get - uri: https://VMWARE_CLOUD_HOST/api/catalogItem/e8734bdb-af24-443e-9496-10f367424316 + uri: https://VMWARE_CLOUD_HOST/api/vApp/vm-aaf94123-cbf9-4de9-841c-41dd41ac310e/guestCustomizationSection body: encoding: US-ASCII string: '' headers: User-Agent: - - fog-core/1.42.0 + - fog-core/1.45.0 Accept: - application/*+xml;version=5.1 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 response: status: code: 200 - message: '' + message: OK headers: Date: - - Fri, 16 Sep 2016 08:53:47 GMT + - Wed, 14 Mar 2018 10:54:32 GMT X-Vmware-Vcloud-Request-Id: - - 0902cfbc-8f47-4395-9fa0-5e1e5fb04bdb + - ee27171f-b6dd-4809-9c40-c48002097b7c X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '93' + - vcloud-token=ee9f52dbb4d245048614dba57e182fd3; Secure; Path=/ Content-Type: - - application/vnd.vmware.vcloud.catalogitem+xml;version=5.1 + - application/vnd.vmware.vcloud.guestcustomizationsection+xml;version=5.1 + X-Vmware-Vcloud-Request-Execution-Time: + - '100' Vary: - Accept-Encoding, User-Agent Content-Length: - - '1154' + - '1742' body: encoding: ASCII-8BIT string: | - - - - - - - 2016-08-02T11:11:00.127+03:00 - + + + Specifies Guest OS Customization Settings + false + false + aaf94123-cbf9-4de9-841c-41dd41ac310e + false + false + true + true + false + spec2-vm1 + + http_version: - recorded_at: Fri, 16 Sep 2016 08:53:48 GMT + recorded_at: Wed, 14 Mar 2018 10:54:32 GMT - request: method: get - uri: https://VMWARE_CLOUD_HOST/api/vAppTemplate/vappTemplate-cfff2e62-3746-4007-bcfe-a054fb30c510 + uri: https://VMWARE_CLOUD_HOST/api/vApp/vm-aaf94123-cbf9-4de9-841c-41dd41ac310e/virtualHardwareSection/disks body: encoding: US-ASCII string: '' headers: User-Agent: - - fog-core/1.42.0 + - fog-core/1.45.0 Accept: - application/*+xml;version=5.1 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 response: status: code: 200 - message: '' + message: OK headers: Date: - - Fri, 16 Sep 2016 08:53:53 GMT + - Wed, 14 Mar 2018 10:54:32 GMT X-Vmware-Vcloud-Request-Id: - - 040fdfdd-3a20-4b13-b54b-98e3b68e94a7 + - 1edce235-260e-4f33-85bf-c4265ccc0e2f X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '138' + - vcloud-token=ee9f52dbb4d245048614dba57e182fd3; Secure; Path=/ Content-Type: - - application/vnd.vmware.vcloud.vapptemplate+xml;version=5.1 + - application/vnd.vmware.vcloud.rasditemslist+xml;version=5.1 + X-Vmware-Vcloud-Request-Execution-Time: + - '34' Vary: - Accept-Encoding, User-Agent Content-Length: - - '8142' + - '7671' body: encoding: ASCII-8BIT string: | - - - - - - - - - - - - - - - - - - - - - - - Specifies the available VM network connections - 0 - - 0 - false - 00:50:56:84:02:de - NONE - - - - Specifies Guest OS Customization Settings - true - false - ac5fcf96-2b9d-4e90-9a2f-7792160da1ae - false - false - false - true - false - TietoWindow-001 - - Tieto Windows Server 2012 R2 - 2016-08-02T11:11:07.407+03:00 - - - - The list of logical networks - - This is a special place-holder used for disconnected network interfaces. - - - - The configuration parameters for logical networks - - This is a special place-holder used for disconnected network interfaces. - - - - false - 196.254.254.254 - 255.255.0.0 - 196.254.254.254 - - - isolated - - false - - - - Lease settings section - - 7776000 - 2016-12-08T09:07:24.827+02:00 - - - VApp template customization section - true - - 2016-08-02T11:11:07.407+03:00 - + + + + + 0 + + + + + + + + + SCSI Controller + SCSI Controller 0 + + 2 + + + + + + + VirtualSCSI + 6 + + + + + + + 0 + + + + + + + + Hard disk + Hard disk 1 + + + 2000 + + + + 2 + + + + 17 + 17179869184 + byte + + + + 0 + + + + + + + + + IDE Controller + IDE Controller 0 + + 3 + + + + + + + + 5 + + + + + http_version: - recorded_at: Fri, 16 Sep 2016 08:53:54 GMT + recorded_at: Wed, 14 Mar 2018 10:54:32 GMT - request: method: get - uri: https://VMWARE_CLOUD_HOST/api/vAppTemplate/vappTemplate-cfff2e62-3746-4007-bcfe-a054fb30c510 + uri: https://VMWARE_CLOUD_HOST/api/vApp/vm-aaf94123-cbf9-4de9-841c-41dd41ac310e/snapshotSection body: encoding: US-ASCII string: '' headers: User-Agent: - - fog-core/1.42.0 + - fog-core/1.45.0 Accept: - application/*+xml;version=5.1 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 response: status: code: 200 - message: '' + message: OK headers: Date: - - Fri, 16 Sep 2016 08:53:58 GMT + - Wed, 14 Mar 2018 10:54:32 GMT X-Vmware-Vcloud-Request-Id: - - 287fca52-7906-467c-a42c-b2470fb95330 + - 0c25a5d1-1107-4456-ba5d-b05cd4a3c3dc X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ + - vcloud-token=ee9f52dbb4d245048614dba57e182fd3; Secure; Path=/ + Content-Type: + - application/vnd.vmware.vcloud.snapshotsection+xml;version=5.1 X-Vmware-Vcloud-Request-Execution-Time: - - '132' + - '95' + Vary: + - Accept-Encoding, User-Agent + Content-Length: + - '1155' + body: + encoding: ASCII-8BIT + string: | + + + Snapshot information section + + + http_version: + recorded_at: Wed, 14 Mar 2018 10:54:32 GMT +- request: + method: get + uri: https://VMWARE_CLOUD_HOST/api/org/6d6733f6-536a-454f-bbc3-efee7f6de081 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Accept: + - application/*+xml;version=5.1 + X-Vcloud-Authorization: + - ee9f52dbb4d245048614dba57e182fd3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Wed, 14 Mar 2018 10:54:32 GMT + X-Vmware-Vcloud-Request-Id: + - e2a94d14-5177-40e6-9445-523d6d4b96d2 + X-Vcloud-Authorization: + - ee9f52dbb4d245048614dba57e182fd3 + Set-Cookie: + - vcloud-token=ee9f52dbb4d245048614dba57e182fd3; Secure; Path=/ Content-Type: - - application/vnd.vmware.vcloud.vapptemplate+xml;version=5.1 + - application/vnd.vmware.vcloud.org+xml;version=5.1 + X-Vmware-Vcloud-Request-Execution-Time: + - '73' Vary: - Accept-Encoding, User-Agent Content-Length: - - '8142' + - '3075' body: encoding: ASCII-8BIT string: | - - - - - - - - - - - - - - - - - - - - - - - Specifies the available VM network connections - 0 - - 0 - false - 00:50:56:84:02:de - NONE - - - - Specifies Guest OS Customization Settings - true - false - ac5fcf96-2b9d-4e90-9a2f-7792160da1ae - false - false - false - true - false - TietoWindow-001 - - Tieto Windows Server 2012 R2 - 2016-08-02T11:11:07.407+03:00 - - - - The list of logical networks - - This is a special place-holder used for disconnected network interfaces. - - - - The configuration parameters for logical networks - - This is a special place-holder used for disconnected network interfaces. - - - - false - 196.254.254.254 - 255.255.0.0 - 196.254.254.254 - - - isolated - - false - - - - Lease settings section - - 7776000 - 2016-12-08T09:07:24.827+02:00 - - - VApp template customization section - true - - 2016-08-02T11:11:07.407+03:00 - + + + + + + + + + + + + + + + + ManageIQ Development Org + http_version: - recorded_at: Fri, 16 Sep 2016 08:53:59 GMT + recorded_at: Wed, 14 Mar 2018 10:54:32 GMT - request: method: get - uri: https://VMWARE_CLOUD_HOST/api/catalog/261037bc-8299-42c1-9ac1-b8c4c964d99d + uri: https://VMWARE_CLOUD_HOST/api/catalog/d3e213db-d4fa-49e4-a940-5810ab811648 body: encoding: US-ASCII string: '' headers: User-Agent: - - fog-core/1.42.0 + - fog-core/1.45.0 Accept: - application/*+xml;version=5.1 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 response: status: code: 200 - message: '' + message: OK headers: Date: - - Fri, 16 Sep 2016 08:54:04 GMT + - Wed, 14 Mar 2018 10:54:32 GMT X-Vmware-Vcloud-Request-Id: - - c39d975b-632a-420b-86e8-38274ffee112 + - 4100b1e1-494e-4245-b401-214f0c6162b4 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '36' + - vcloud-token=ee9f52dbb4d245048614dba57e182fd3; Secure; Path=/ Content-Type: - application/vnd.vmware.vcloud.catalog+xml;version=5.1 + X-Vmware-Vcloud-Request-Execution-Time: + - '23' Vary: - Accept-Encoding, User-Agent Content-Length: - - '2221' + - '1984' body: encoding: ASCII-8BIT string: | - - - - - - - - + + + + + - - - + + - false - 2016-08-11T15:14:05.377+03:00 + true + 2018-03-02T13:21:51.753+01:00 http_version: - recorded_at: Fri, 16 Sep 2016 08:54:04 GMT + recorded_at: Wed, 14 Mar 2018 10:54:32 GMT - request: method: get - uri: https://VMWARE_CLOUD_HOST/api/catalog/261037bc-8299-42c1-9ac1-b8c4c964d99d + uri: https://VMWARE_CLOUD_HOST/api/catalog/8fac6233-474c-44b4-a45b-87e488102170 body: encoding: US-ASCII string: '' headers: User-Agent: - - fog-core/1.42.0 + - fog-core/1.45.0 Accept: - application/*+xml;version=5.1 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 response: status: code: 200 - message: '' + message: OK headers: Date: - - Fri, 16 Sep 2016 08:54:09 GMT + - Wed, 14 Mar 2018 10:54:32 GMT X-Vmware-Vcloud-Request-Id: - - 6876d973-576a-4674-9c52-1548d26ff07c + - 4a5d76ff-41f7-4137-8b07-f298deb4b166 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '30' + - vcloud-token=ee9f52dbb4d245048614dba57e182fd3; Secure; Path=/ Content-Type: - application/vnd.vmware.vcloud.catalog+xml;version=5.1 + X-Vmware-Vcloud-Request-Execution-Time: + - '17' Vary: - Accept-Encoding, User-Agent Content-Length: - - '2221' + - '2228' body: encoding: ASCII-8BIT string: | - - - - - - - - + + + + + + + + - - - + false - 2016-08-11T15:14:05.377+03:00 + 2018-02-19T14:05:38.657+01:00 http_version: - recorded_at: Fri, 16 Sep 2016 08:54:10 GMT -- request: - method: get - uri: https://VMWARE_CLOUD_HOST/api/catalogItem/77519250-ce5a-45d5-939d-fbe79704e18d - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - fog-core/1.42.0 - Accept: - - application/*+xml;version=5.1 - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - response: - status: - code: 200 - message: '' - headers: - Date: - - Fri, 16 Sep 2016 08:54:14 GMT - X-Vmware-Vcloud-Request-Id: - - 89494e8c-3023-41b7-831b-61f42610094e - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '132' - Content-Type: - - application/vnd.vmware.vcloud.catalogitem+xml;version=5.1 - Vary: - - Accept-Encoding, User-Agent - Content-Length: - - '1427' - body: - encoding: ASCII-8BIT - string: | - - - - - - - - - 2016-08-11T15:15:51.703+03:00 - - http_version: - recorded_at: Fri, 16 Sep 2016 08:54:15 GMT -- request: - method: get - uri: https://VMWARE_CLOUD_HOST/api/vAppTemplate/vappTemplate-5c0dfa2f-35e3-4fa3-8bd7-863e8c5f4c31 - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - fog-core/1.42.0 - Accept: - - application/*+xml;version=5.1 - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - response: - status: - code: 200 - message: '' - headers: - Date: - - Fri, 16 Sep 2016 08:54:21 GMT - X-Vmware-Vcloud-Request-Id: - - 0634bbd5-2b90-4dd5-ac1d-18e4833a9ea9 - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '1516' - Content-Type: - - application/vnd.vmware.vcloud.vapptemplate+xml;version=5.1 - Vary: - - Accept-Encoding, User-Agent - body: - encoding: ASCII-8BIT - string: | - - - - - - - - - - - - - - - - - - - - - - - - - - Specifies the available VM network connections - 0 - - 0 - true - 00:50:56:01:00:2d - POOL - - - - Specifies Guest OS Customization Settings - false - false - 3c6fd87c-d8f1-4add-827f-c35982f3e5b1 - false - false - true - true - false - CentOS7-0 - - 7ff5cc28-e2e0-4466-bf78-e39a3522d539 - 2016-08-11T15:15:51.933+03:00 - - - - The list of logical networks - - - - - - The configuration parameters for logical networks - - - - - - true - 192.168.10.1 - 255.255.255.0 - 192.168.10.1 - test.local - true - - - 192.168.10.100 - 192.168.10.199 - - - - - - bridged - false - - false - - - - Lease settings section - - 7776000 - 2016-12-15T10:46:33.057+02:00 - - - VApp template customization section - true - - 2016-08-11T15:15:51.933+03:00 - - http_version: - recorded_at: Fri, 16 Sep 2016 08:54:22 GMT + recorded_at: Wed, 14 Mar 2018 10:54:32 GMT - request: method: get - uri: https://VMWARE_CLOUD_HOST/api/vAppTemplate/vappTemplate-5c0dfa2f-35e3-4fa3-8bd7-863e8c5f4c31 + uri: https://VMWARE_CLOUD_HOST/api/catalog/8fac6233-474c-44b4-a45b-87e488102170 body: encoding: US-ASCII string: '' headers: User-Agent: - - fog-core/1.42.0 + - fog-core/1.45.0 Accept: - application/*+xml;version=5.1 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 response: status: code: 200 - message: '' + message: OK headers: Date: - - Fri, 16 Sep 2016 08:54:27 GMT + - Wed, 14 Mar 2018 10:54:32 GMT X-Vmware-Vcloud-Request-Id: - - 7d2aaaf8-2ad6-4ed7-845c-4035d1b191bf + - 59473160-b94d-4c4b-8856-e9b46ef9fa15 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '215' + - vcloud-token=ee9f52dbb4d245048614dba57e182fd3; Secure; Path=/ Content-Type: - - application/vnd.vmware.vcloud.vapptemplate+xml;version=5.1 - Vary: - - Accept-Encoding, User-Agent - body: - encoding: ASCII-8BIT - string: | - - - - - - - - - - - - - - - - - - - - - - - - - - Specifies the available VM network connections - 0 - - 0 - true - 00:50:56:01:00:2d - POOL - - - - Specifies Guest OS Customization Settings - false - false - 3c6fd87c-d8f1-4add-827f-c35982f3e5b1 - false - false - true - true - false - CentOS7-0 - - 7ff5cc28-e2e0-4466-bf78-e39a3522d539 - 2016-08-11T15:15:51.933+03:00 - - - - The list of logical networks - - - - - - The configuration parameters for logical networks - - - - - - true - 192.168.10.1 - 255.255.255.0 - 192.168.10.1 - test.local - true - - - 192.168.10.100 - 192.168.10.199 - - - - - - bridged - false - - false - - - - Lease settings section - - 7776000 - 2016-12-15T10:46:33.057+02:00 - - - VApp template customization section - true - - 2016-08-11T15:15:51.933+03:00 - - http_version: - recorded_at: Fri, 16 Sep 2016 08:54:28 GMT -- request: - method: get - uri: https://VMWARE_CLOUD_HOST/api/catalogItem/8b6cbea1-9608-4fc4-a9ee-e67a0849ef6d - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - fog-core/1.42.0 - Accept: - - application/*+xml;version=5.1 - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - response: - status: - code: 200 - message: '' - headers: - Date: - - Fri, 16 Sep 2016 08:54:32 GMT - X-Vmware-Vcloud-Request-Id: - - a9977575-f0a7-4f85-8259-339636807f73 - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ + - application/vnd.vmware.vcloud.catalog+xml;version=5.1 X-Vmware-Vcloud-Request-Execution-Time: - - '228' - Content-Type: - - application/vnd.vmware.vcloud.catalogitem+xml;version=5.1 + - '13' Vary: - Accept-Encoding, User-Agent Content-Length: - - '1425' + - '2228' body: encoding: ASCII-8BIT string: | - - - - - - - - - 2016-09-09T10:08:37.550+03:00 - - http_version: - recorded_at: Fri, 16 Sep 2016 08:54:33 GMT -- request: - method: get - uri: https://VMWARE_CLOUD_HOST/api/vAppTemplate/vappTemplate-a19bdc8f-88fa-4dd6-8436-486590353ed5 - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - fog-core/1.42.0 - Accept: - - application/*+xml;version=5.1 - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - response: - status: - code: 200 - message: '' - headers: - Date: - - Fri, 16 Sep 2016 08:54:38 GMT - X-Vmware-Vcloud-Request-Id: - - 49c3fdb5-0920-4ad3-9896-2c87fb8167e4 - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '317' - Content-Type: - - application/vnd.vmware.vcloud.vapptemplate+xml;version=5.1 - Vary: - - Accept-Encoding, User-Agent - body: - encoding: ASCII-8BIT - string: | - - - - - - - - - - - - - - - - - - - - - - - - - - Specifies the available VM network connections - 0 - - 0 - false - 00:50:56:01:00:4d - NONE - - - - Specifies Guest OS Customization Settings - false - false - e9b55b85-640b-462c-9e7a-d18c47a7a5f3 - false - false - true - true - false - CentOS7-0-0 - - 926f501b-c7ea-4b9d-a155-6695c3345150 - 2016-09-09T10:08:38.767+03:00 - - - - - - - - - Specifies the available VM network connections - 0 - - 0 - false - 00:50:56:01:00:4c - NONE - - - - Specifies Guest OS Customization Settings - true - false - 04f85cca-3f8d-43b4-8473-7aa099f95c1b - false - false - false - true - false - TietoWindow-0 - - 2e9ee64a-2368-40fc-94ee-0473373f0f4c - 2016-09-09T10:08:38.767+03:00 - - - - The list of logical networks - - This is a special place-holder used for disconnected network interfaces. - - - - The configuration parameters for logical networks - - This is a special place-holder used for disconnected network interfaces. - - - - false - 196.254.254.254 - 255.255.0.0 - 196.254.254.254 - - - isolated - - false - - - - Lease settings section - - 7776000 - 2016-12-11T14:22:25.960+02:00 - - - VApp template customization section - true - - 2016-09-09T10:08:38.767+03:00 - - http_version: - recorded_at: Fri, 16 Sep 2016 08:54:39 GMT -- request: - method: get - uri: https://VMWARE_CLOUD_HOST/api/vAppTemplate/vappTemplate-a19bdc8f-88fa-4dd6-8436-486590353ed5 - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - fog-core/1.42.0 - Accept: - - application/*+xml;version=5.1 - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - response: - status: - code: 200 - message: '' - headers: - Date: - - Fri, 16 Sep 2016 08:54:44 GMT - X-Vmware-Vcloud-Request-Id: - - 7abe8560-d20c-46e0-818d-dd8fba08989b - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '308' - Content-Type: - - application/vnd.vmware.vcloud.vapptemplate+xml;version=5.1 - Vary: - - Accept-Encoding, User-Agent - body: - encoding: ASCII-8BIT - string: | - - - - - - - - - - - - - - - - - - - - - - - - - - Specifies the available VM network connections - 0 - - 0 - false - 00:50:56:01:00:4d - NONE - - - - Specifies Guest OS Customization Settings - false - false - e9b55b85-640b-462c-9e7a-d18c47a7a5f3 - false - false - true - true - false - CentOS7-0-0 - - 926f501b-c7ea-4b9d-a155-6695c3345150 - 2016-09-09T10:08:38.767+03:00 - - - - - - - - - Specifies the available VM network connections - 0 - - 0 - false - 00:50:56:01:00:4c - NONE - - - - Specifies Guest OS Customization Settings - true - false - 04f85cca-3f8d-43b4-8473-7aa099f95c1b - false - false - false - true - false - TietoWindow-0 - - 2e9ee64a-2368-40fc-94ee-0473373f0f4c - 2016-09-09T10:08:38.767+03:00 - - - - The list of logical networks - - This is a special place-holder used for disconnected network interfaces. - - - - The configuration parameters for logical networks - - This is a special place-holder used for disconnected network interfaces. - - - - false - 196.254.254.254 - 255.255.0.0 - 196.254.254.254 - - - isolated - - false - - - - Lease settings section - - 7776000 - 2016-12-11T14:22:25.960+02:00 - - - VApp template customization section - true - - 2016-09-09T10:08:38.767+03:00 - - http_version: - recorded_at: Fri, 16 Sep 2016 08:54:45 GMT -- request: - method: get - uri: https://VMWARE_CLOUD_HOST/api/catalogItem/fd9c3a97-14bd-499b-bd52-054a1602ae89 - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - fog-core/1.42.0 - Accept: - - application/*+xml;version=5.1 - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - response: - status: - code: 200 - message: '' - headers: - Date: - - Fri, 16 Sep 2016 08:54:49 GMT - X-Vmware-Vcloud-Request-Id: - - 53e3db9b-cbd0-4660-a5b6-cbb11125e2b8 - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '55' - Content-Type: - - application/vnd.vmware.vcloud.catalogitem+xml;version=5.1 - Vary: - - Accept-Encoding, User-Agent - Content-Length: - - '1380' - body: - encoding: ASCII-8BIT - string: | - - - - - - - - - 2016-08-11T15:56:57.053+03:00 - - http_version: - recorded_at: Fri, 16 Sep 2016 08:54:50 GMT -- request: - method: get - uri: https://VMWARE_CLOUD_HOST/api/vAppTemplate/vappTemplate-ab27a332-2cc3-4ce8-a50f-138036cf7f57/ovf - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - fog-core/1.42.0 - Accept: - - application/*+xml;version=5.1 - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - response: - status: - code: 200 - message: '' - headers: - Date: - - Fri, 16 Sep 2016 08:54:55 GMT - X-Vmware-Vcloud-Request-Id: - - e11ebd6b-8b8e-48b4-b9aa-4985519e11f1 - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '519' - Content-Type: - - application/*+xml;version=5.1 - Vary: - - Accept-Encoding, User-Agent - body: - encoding: ASCII-8BIT - string: | - - - - - The list of logical networks - - - - - - VApp template customization section - true - - - The configuration parameters for logical networks - - - - - - false - 192.168.2.1 - 255.255.255.0 - true - - - 192.168.2.100 - 192.168.2.199 - - - - - isolated - false - - false - - - - Lease settings section - 7776000 - 2016-12-11T10:12:59.137+02:00 - - - A collection of virtual machines - Tieto Linux CentOS 7.0 - - VApp startup section - - - - A virtual machine - CentOS7 - - Specifies the operating system installed - CentOS 4/5/6/7 (64-bit) - - - Virtual hardware requirements - - Virtual Hardware Family - 0 - CentOS7 - vmx-10 - - - 00:50:56:01:00:2b - 0 - true - internal - Vmxnet3 ethernet adapter on "internal" - Network adapter 0 - 1 - VMXNET3 - 10 - - - - 0 - SCSI Controller - SCSI Controller 0 - 2 - lsilogic - 6 - - - 0 - Hard disk - Hard disk 1 - - 2000 - 2 - 17 - 17179869184 - byte - - - - 0 - IDE Controller - IDE Controller 0 - 3 - 5 - - - 0 - false - Floppy Drive - Floppy Drive 1 - - 8000 - 14 - - - hertz * 10^6 - Number of Virtual CPUs - 2 virtual CPU(s) - 4 - 0 - 3 - 2 - 0 - - - byte * 2^20 - Memory Size - 2048 MB of memory - 5 - 0 - 4 - 2048 - 0 - - - 0 - false - CD/DVD Drive - CD/DVD Drive 1 - - 3000 - 3 - 15 - - - - - - - - - - - - - - - - - - - - - - Specifies Guest OS Customization Settings - false - false - 857551b6-380c-44d0-ab34-9d144866f0b4 - false - false - true - true - false - CentOS7 - - - Specifies the available VM network connections - 0 - - 0 - true - 00:50:56:01:00:2b - POOL - - - - - - http_version: - recorded_at: Fri, 16 Sep 2016 08:54:56 GMT -- request: - method: get - uri: https://VMWARE_CLOUD_HOST/api/vAppTemplate/vappTemplate-cfff2e62-3746-4007-bcfe-a054fb30c510/ovf - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - fog-core/1.42.0 - Accept: - - application/*+xml;version=5.1 - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - response: - status: - code: 200 - message: '' - headers: - Date: - - Fri, 16 Sep 2016 08:55:01 GMT - X-Vmware-Vcloud-Request-Id: - - 42f16231-6625-4ec3-963b-a3858b88d570 - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '385' - Content-Type: - - application/*+xml;version=5.1 - Vary: - - Accept-Encoding, User-Agent - body: - encoding: ASCII-8BIT - string: | - - - - - The list of logical networks - - This is a special place-holder used for disconnected network interfaces. - - - - VApp template customization section - true - - - The configuration parameters for logical networks - - This is a special place-holder used for disconnected network interfaces. - - - - false - 196.254.254.254 - 255.255.0.0 - 196.254.254.254 - - - isolated - - false - - - - Lease settings section - 7776000 - 2016-12-08T09:07:24.827+02:00 - - - A collection of virtual machines - Tieto Windows Server 2012 R2 - - VApp startup section - - - - A virtual machine - Tieto Windows Server 2012 R2 - - Specifies the operating system installed - Microsoft Windows Server 2012 (64-bit) - - - Virtual hardware requirements - - Virtual Hardware Family - 0 - Tieto Windows Server 2012 R2 - vmx-10 - - - 00:50:56:84:02:de - 0 - false - none - Vmxnet3 ethernet adapter on "none" - Network adapter 0 - 1 - VMXNET3 - 10 - - - - 0 - SCSI Controller - SCSI Controller 0 - 2 - lsilogicsas - 6 - - - 0 - Hard disk - Hard disk 1 - - 2000 - 2 - 17 - 42949672960 - byte - - - - 0 - SATA Controller - SATA Controller 0 - 3 - vmware.sata.ahci - 20 - - - 0 - false - CD/DVD Drive - CD/DVD Drive 1 - - 16000 - 3 - 15 - - - 0 - false - Floppy Drive - Floppy Drive 1 - - 8000 - 14 - - - hertz * 10^6 - Number of Virtual CPUs - 2 virtual CPU(s) - 4 - 0 - 3 - 2 - 0 - - - byte * 2^20 - Memory Size - 4096 MB of memory - 5 - 0 - 4 - 4096 - 0 - - - - - - - - - - - - - - - - - - - - - - Specifies Guest OS Customization Settings - true - false - ac5fcf96-2b9d-4e90-9a2f-7792160da1ae - false - false - false - true - false - TietoWindow-001 - - - Specifies the available VM network connections - 0 - - 0 - false - 00:50:56:84:02:de - NONE - - - - - - http_version: - recorded_at: Fri, 16 Sep 2016 08:55:02 GMT -- request: - method: get - uri: https://VMWARE_CLOUD_HOST/api/vAppTemplate/vappTemplate-5c0dfa2f-35e3-4fa3-8bd7-863e8c5f4c31/ovf - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - fog-core/1.42.0 - Accept: - - application/*+xml;version=5.1 - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - response: - status: - code: 200 - message: '' - headers: - Date: - - Fri, 16 Sep 2016 08:55:07 GMT - X-Vmware-Vcloud-Request-Id: - - 408b91ef-c857-43dd-9dce-2dd720c26725 - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '437' - Content-Type: - - application/*+xml;version=5.1 - Vary: - - Accept-Encoding, User-Agent - body: - encoding: ASCII-8BIT - string: | - - - - - The list of logical networks - - - - - - VApp template customization section - true - - - The configuration parameters for logical networks - - - - - - true - 192.168.10.1 - 255.255.255.0 - 192.168.10.1 - test.local - true - - - 192.168.10.100 - 192.168.10.199 - - - - - - bridged - false - - false - - - - Lease settings section - 7776000 - 2016-12-15T10:46:33.057+02:00 - - - A collection of virtual machines - vApp_cankamat_remote_1 - - VApp startup section - - - - A virtual machine - CentOS7 - - Specifies the operating system installed - CentOS 4/5/6/7 (64-bit) - - - Virtual hardware requirements - - Virtual Hardware Family - 0 - CentOS7 - vmx-10 - - - 00:50:56:01:00:2d - 0 - true - INT_192.168.10.0m24 - Vmxnet3 ethernet adapter on "INT_192.168.10.0m24" - Network adapter 0 - 1 - VMXNET3 - 10 - - - - 0 - SCSI Controller - SCSI Controller 0 - 2 - lsilogic - 6 - - - 0 - Hard disk - Hard disk 1 - - 2000 - 2 - 17 - 17179869184 - byte - - - - 0 - IDE Controller - IDE Controller 0 - 3 - 5 - - - 0 - false - Floppy Drive - Floppy Drive 1 - - 8000 - 14 - - - hertz * 10^6 - Number of Virtual CPUs - 2 virtual CPU(s) - 4 - 0 - 3 - 2 - 0 - - - byte * 2^20 - Memory Size - 2048 MB of memory - 5 - 0 - 4 - 2048 - 0 - - - 0 - false - CD/DVD Drive - CD/DVD Drive 1 - - 3000 - 3 - 15 - - - - - - - - - - - - - - - - - - - - - - Specifies Guest OS Customization Settings - false - false - 3c6fd87c-d8f1-4add-827f-c35982f3e5b1 - false - false - true - true - false - CentOS7-0 - - - Specifies the available VM network connections - 0 - - 0 - true - 00:50:56:01:00:2d - POOL - - - - - - http_version: - recorded_at: Fri, 16 Sep 2016 08:55:08 GMT -- request: - method: get - uri: https://VMWARE_CLOUD_HOST/api/vAppTemplate/vappTemplate-a19bdc8f-88fa-4dd6-8436-486590353ed5/ovf - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - fog-core/1.42.0 - Accept: - - application/*+xml;version=5.1 - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - response: - status: - code: 200 - message: '' - headers: - Date: - - Fri, 16 Sep 2016 08:55:13 GMT - X-Vmware-Vcloud-Request-Id: - - 2b6e6fcf-e19e-4851-be1d-382e39b8472b - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '799' - Content-Type: - - application/*+xml;version=5.1 - Vary: - - Accept-Encoding, User-Agent - body: - encoding: ASCII-8BIT - string: | - - - - - The list of logical networks - - This is a special place-holder used for disconnected network interfaces. - - - - VApp template customization section - true - - - The configuration parameters for logical networks - - This is a special place-holder used for disconnected network interfaces. - - - - false - 196.254.254.254 - 255.255.0.0 - 196.254.254.254 - - - isolated - - false - - - - Lease settings section - 7776000 - 2016-12-11T14:22:25.960+02:00 - - - A collection of virtual machines - vApp_CentOS_and_msWin - - VApp startup section - - - - - A virtual machine - Tieto Windows Server 2012 R2 - - Specifies the operating system installed - Microsoft Windows Server 2012 (64-bit) - - - Virtual hardware requirements - - Virtual Hardware Family - 0 - Tieto Windows Server 2012 R2 - vmx-10 - - - 00:50:56:01:00:4c - 0 - false - none - Vmxnet3 ethernet adapter on "none" - Network adapter 0 - 1 - VMXNET3 - 10 - - - - - 0 - SCSI Controller - SCSI Controller 0 - 2 - lsilogicsas - 6 - - - - 0 - Hard disk - Hard disk 1 - - 2000 - 2 - 17 - 42949672960 - byte - - - - 0 - SATA Controller - SATA Controller 0 - 3 - vmware.sata.ahci - 20 - - - - 0 - false - CD/DVD Drive - CD/DVD Drive 1 - - 16000 - 3 - 15 - - - 0 - false - Floppy Drive - Floppy Drive 1 - - 8000 - 14 - - - hertz * 10^6 - Number of Virtual CPUs - 2 virtual CPU(s) - 4 - 0 - 3 - 2 - 0 - - - byte * 2^20 - Memory Size - 4096 MB of memory - 5 - 0 - 4 - 4096 - 0 - - - - - - - - - - - - - - - - - - - - - - Specifies Guest OS Customization Settings - true - false - 04f85cca-3f8d-43b4-8473-7aa099f95c1b - false - false - false - true - false - TietoWindow-0 - - - Specifies the available VM network connections - 0 - - 0 - false - 00:50:56:01:00:4c - NONE - - - - - A virtual machine - CentOS7 - - Specifies the operating system installed - CentOS 4/5/6/7 (64-bit) - - - Virtual hardware requirements - - Virtual Hardware Family - 0 - CentOS7 - vmx-10 - - - 00:50:56:01:00:4d - 0 - false - none - Vmxnet3 ethernet adapter on "none" - Network adapter 0 - 1 - VMXNET3 - 10 - - - - - 0 - SCSI Controller - SCSI Controller 0 - 2 - lsilogic - 6 - - - - 0 - Hard disk - Hard disk 1 - - 2000 - 2 - 17 - 17179869184 - byte - - - - 0 - IDE Controller - IDE Controller 0 - 3 - 5 - - - 0 - false - Floppy Drive - Floppy Drive 1 - - 8000 - 14 - - - hertz * 10^6 - Number of Virtual CPUs - 2 virtual CPU(s) - 4 - 0 - 3 - 2 - 0 - - - byte * 2^20 - Memory Size - 2048 MB of memory - 5 - 0 - 4 - 2048 - 0 - - - 0 - false - CD/DVD Drive - CD/DVD Drive 1 - - 3000 - 3 - 15 - - - - - - - - - - - - - - - - - - - - - - Specifies Guest OS Customization Settings - false - false - e9b55b85-640b-462c-9e7a-d18c47a7a5f3 - false - false - true - true - false - CentOS7-0-0 - - - Specifies the available VM network connections - 0 - - 0 - false - 00:50:56:01:00:4d - NONE - - - - - + + + + + + + + + + + + false + 2018-02-19T14:05:38.657+01:00 + http_version: - recorded_at: Fri, 16 Sep 2016 08:55:14 GMT + recorded_at: Wed, 14 Mar 2018 10:54:32 GMT - request: method: get - uri: https://VMWARE_CLOUD_HOST/api/vAppTemplate/vappTemplate-ab27a332-2cc3-4ce8-a50f-138036cf7f57 + uri: https://VMWARE_CLOUD_HOST/api/catalogItem/f098a296-1633-4e68-a904-3cf7f577ad56 body: encoding: US-ASCII string: '' headers: User-Agent: - - fog-core/1.42.0 + - fog-core/1.45.0 Accept: - application/*+xml;version=5.1 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 response: status: code: 200 - message: '' + message: OK headers: Date: - - Fri, 16 Sep 2016 08:55:19 GMT + - Wed, 14 Mar 2018 10:54:33 GMT X-Vmware-Vcloud-Request-Id: - - 491d6303-09cb-418a-9ad0-68882938436c + - 60c4c121-dbd6-41f4-9721-abd4c0b77b13 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ + - vcloud-token=ee9f52dbb4d245048614dba57e182fd3; Secure; Path=/ + Content-Type: + - application/vnd.vmware.vcloud.catalogitem+xml;version=5.1 X-Vmware-Vcloud-Request-Execution-Time: - - '258' + - '175' + Vary: + - Accept-Encoding, User-Agent + Content-Length: + - '1900' + body: + encoding: ASCII-8BIT + string: | + + + + + + + + + 2018-03-09T16:18:29.989+01:00 + + http_version: + recorded_at: Wed, 14 Mar 2018 10:54:33 GMT +- request: + method: get + uri: https://VMWARE_CLOUD_HOST/api/vAppTemplate/vappTemplate-7d70b225-56a6-4868-8eba-f64a3509c910 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Accept: + - application/*+xml;version=5.1 + X-Vcloud-Authorization: + - ee9f52dbb4d245048614dba57e182fd3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Wed, 14 Mar 2018 10:54:33 GMT + X-Vmware-Vcloud-Request-Id: + - 34071dc6-4589-4281-9fa9-f726de18aebf + X-Vcloud-Authorization: + - ee9f52dbb4d245048614dba57e182fd3 + Set-Cookie: + - vcloud-token=ee9f52dbb4d245048614dba57e182fd3; Secure; Path=/ Content-Type: - application/vnd.vmware.vcloud.vapptemplate+xml;version=5.1 + X-Vmware-Vcloud-Request-Execution-Time: + - '146' Vary: - Accept-Encoding, User-Agent body: encoding: ASCII-8BIT string: | - - - - - - - - - - - + + + + + + + + + + + + + + - + - - - - - - - + + + + + + + Specifies the available VM network connections 0 - + 0 true - 00:50:56:01:00:2b + 00:50:56:01:00:d9 POOL - + Specifies Guest OS Customization Settings false false - 857551b6-380c-44d0-ab34-9d144866f0b4 + ac90bd58-3bc4-47a5-bc8c-f1c8f5c468b6 false false true true false - CentOS7 + spec2-vm1 - d0733827-5a41-4816-b4a9-3cb8deb98583 - 2016-08-02T16:34:25.103+03:00 + 0166f57b-6ae3-47fe-a68b-4f7bebb61074 + 2018-03-09T16:18:30.150+01:00 - + The list of logical networks - - + + - + The configuration parameters for logical networks - - + + @@ -5074,8 +3817,8 @@ http_interactions: true - 192.168.2.100 - 192.168.2.199 + 192.168.2.100 + 192.168.2.199 @@ -5086,717 +3829,503 @@ http_interactions: false - + Lease settings section - + 7776000 - 2016-12-11T10:12:59.137+02:00 + 2018-06-07T17:18:30.150+02:00 - + VApp template customization section true - 2016-08-02T16:34:25.103+03:00 + 2018-03-09T16:18:30.150+01:00 http_version: - recorded_at: Fri, 16 Sep 2016 08:55:19 GMT + recorded_at: Wed, 14 Mar 2018 10:54:33 GMT - request: method: get - uri: https://VMWARE_CLOUD_HOST/api/vAppTemplate/vappTemplate-cfff2e62-3746-4007-bcfe-a054fb30c510 + uri: https://VMWARE_CLOUD_HOST/api/vAppTemplate/vappTemplate-7d70b225-56a6-4868-8eba-f64a3509c910 body: encoding: US-ASCII string: '' headers: User-Agent: - - fog-core/1.42.0 + - fog-core/1.45.0 Accept: - application/*+xml;version=5.1 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 response: status: code: 200 - message: '' + message: OK headers: Date: - - Fri, 16 Sep 2016 08:55:24 GMT + - Wed, 14 Mar 2018 10:54:33 GMT X-Vmware-Vcloud-Request-Id: - - d0bf0543-3426-4eff-807c-a8ba3399165a + - beed756d-32c4-41ab-8e67-55cd0698a72f X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '130' + - vcloud-token=ee9f52dbb4d245048614dba57e182fd3; Secure; Path=/ Content-Type: - application/vnd.vmware.vcloud.vapptemplate+xml;version=5.1 + X-Vmware-Vcloud-Request-Execution-Time: + - '121' Vary: - Accept-Encoding, User-Agent - Content-Length: - - '8142' body: encoding: ASCII-8BIT string: | - - - - - - - - - - - + + + + + + + + + + + + + + - + - - - - - - - + + + + + + + Specifies the available VM network connections 0 - + 0 - false - 00:50:56:84:02:de - NONE + true + 00:50:56:01:00:d9 + POOL - + Specifies Guest OS Customization Settings - true + false false - ac5fcf96-2b9d-4e90-9a2f-7792160da1ae + ac90bd58-3bc4-47a5-bc8c-f1c8f5c468b6 false false - false + true true false - TietoWindow-001 + spec2-vm1 - Tieto Windows Server 2012 R2 - 2016-08-02T11:11:07.407+03:00 + 0166f57b-6ae3-47fe-a68b-4f7bebb61074 + 2018-03-09T16:18:30.150+01:00 - + The list of logical networks - - This is a special place-holder used for disconnected network interfaces. + + - + The configuration parameters for logical networks - - This is a special place-holder used for disconnected network interfaces. + + false - 196.254.254.254 - 255.255.0.0 - 196.254.254.254 + 192.168.2.1 + 255.255.255.0 + true + + + 192.168.2.100 + 192.168.2.199 + + isolated + false false - + Lease settings section - + 7776000 - 2016-12-08T09:07:24.827+02:00 + 2018-06-07T17:18:30.150+02:00 - + VApp template customization section true - 2016-08-02T11:11:07.407+03:00 + 2018-03-09T16:18:30.150+01:00 http_version: - recorded_at: Fri, 16 Sep 2016 08:55:25 GMT + recorded_at: Wed, 14 Mar 2018 10:54:33 GMT - request: method: get - uri: https://VMWARE_CLOUD_HOST/api/vAppTemplate/vappTemplate-5c0dfa2f-35e3-4fa3-8bd7-863e8c5f4c31 + uri: https://VMWARE_CLOUD_HOST/api/vAppTemplate/vappTemplate-7d70b225-56a6-4868-8eba-f64a3509c910/ovf body: encoding: US-ASCII string: '' headers: User-Agent: - - fog-core/1.42.0 + - fog-core/1.45.0 Accept: - application/*+xml;version=5.1 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 response: status: code: 200 - message: '' + message: OK headers: Date: - - Fri, 16 Sep 2016 08:55:30 GMT + - Wed, 14 Mar 2018 10:54:33 GMT X-Vmware-Vcloud-Request-Id: - - 2a6150f9-4a9d-4853-bbee-6bdddd4cb018 + - 8abb276c-daf8-430d-8004-1ff58f178337 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '202' + - vcloud-token=ee9f52dbb4d245048614dba57e182fd3; Secure; Path=/ Content-Type: - - application/vnd.vmware.vcloud.vapptemplate+xml;version=5.1 + - application/*+xml;version=5.1 + X-Vmware-Vcloud-Request-Execution-Time: + - '237' Vary: - Accept-Encoding, User-Agent body: encoding: ASCII-8BIT string: | - - - - - - - - - - - - - - - - - - - - - - - - - Specifies the available VM network connections - 0 - - 0 - true - 00:50:56:01:00:2d - POOL - - - - Specifies Guest OS Customization Settings - false - false - 3c6fd87c-d8f1-4add-827f-c35982f3e5b1 - false - false - true - true - false - CentOS7-0 - - 7ff5cc28-e2e0-4466-bf78-e39a3522d539 - 2016-08-11T15:15:51.933+03:00 - - - + + + The list of logical networks - + - + + VApp template customization section + true + + The configuration parameters for logical networks - - - - - - true - 192.168.10.1 - 255.255.255.0 - 192.168.10.1 - test.local - true - - - 192.168.10.100 - 192.168.10.199 - - - - - - bridged - false - - false - - - + + + + + + false + 192.168.2.1 + 255.255.255.0 + true + + + 192.168.2.100 + 192.168.2.199 + + + + + isolated + false + + false + + + Lease settings section - - 7776000 - 2016-12-15T10:46:33.057+02:00 - - - VApp template customization section - true - - 2016-08-11T15:15:51.933+03:00 - + 7776000 + 2018-06-07T17:18:30.150+02:00 + + + A collection of virtual machines + spec2-vapp-win + + VApp startup section + + + + A virtual machine + spec2-vm1 + + Specifies the operating system installed + VMware Photon OS (64-bit) + + + Virtual hardware requirements + + Virtual Hardware Family + 0 + spec2-vm1 + vmx-13 + + + 00:50:56:01:00:d9 + 0 + true + spec2-network + Vmxnet3 ethernet adapter on "spec2-network" + Network adapter 0 + 1 + VMXNET3 + 10 + + + + 0 + SCSI Controller + SCSI Controller 0 + 2 + VirtualSCSI + 6 + + + 0 + Hard disk + Hard disk 1 + + 2000 + 2 + 17 + 17179869184 + byte + + + + 0 + IDE Controller + IDE Controller 0 + 3 + 5 + + + 0 + false + Floppy Drive + Floppy Drive 1 + + 8000 + 14 + + + hertz * 10^6 + Number of Virtual CPUs + 1 virtual CPU(s) + 4 + 0 + 3 + 1 + 0 + + + byte * 2^20 + Memory Size + 256 MB of memory + 5 + 0 + 4 + 256 + 0 + + + 0 + false + CD/DVD Drive + CD/DVD Drive 1 + + 3000 + 3 + 15 + + + + + + + + + + + + + + + + + + + + + + + Specifies Guest OS Customization Settings + false + false + ac90bd58-3bc4-47a5-bc8c-f1c8f5c468b6 + false + false + true + true + false + spec2-vm1 + + + Specifies the available VM network connections + 0 + + 0 + true + 00:50:56:01:00:d9 + POOL + + + + + http_version: - recorded_at: Fri, 16 Sep 2016 08:55:30 GMT + recorded_at: Wed, 14 Mar 2018 10:54:33 GMT - request: method: get - uri: https://VMWARE_CLOUD_HOST/api/vAppTemplate/vappTemplate-a19bdc8f-88fa-4dd6-8436-486590353ed5 + uri: https://VMWARE_CLOUD_HOST/api/vAppTemplate/vappTemplate-7d70b225-56a6-4868-8eba-f64a3509c910 body: encoding: US-ASCII string: '' headers: User-Agent: - - fog-core/1.42.0 + - fog-core/1.45.0 Accept: - application/*+xml;version=5.1 X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 response: status: code: 200 - message: '' + message: OK headers: Date: - - Fri, 16 Sep 2016 08:55:35 GMT + - Wed, 14 Mar 2018 10:54:33 GMT X-Vmware-Vcloud-Request-Id: - - 79aa1829-0574-4a9c-b806-4afe0b1a521e + - d115e6da-b8e7-4d0e-bf82-e8f117b4237e X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf + - ee9f52dbb4d245048614dba57e182fd3 Set-Cookie: - - vcloud-token=5654e38c198f4265bc768fea28d3b1bf; Secure; Path=/ - X-Vmware-Vcloud-Request-Execution-Time: - - '326' + - vcloud-token=ee9f52dbb4d245048614dba57e182fd3; Secure; Path=/ Content-Type: - application/vnd.vmware.vcloud.vapptemplate+xml;version=5.1 + X-Vmware-Vcloud-Request-Execution-Time: + - '123' Vary: - Accept-Encoding, User-Agent body: encoding: ASCII-8BIT string: | - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - - - - - - - + + + + + + + Specifies the available VM network connections 0 - + 0 - false - 00:50:56:01:00:4c - NONE - - - - Specifies Guest OS Customization Settings - true - false - 04f85cca-3f8d-43b4-8473-7aa099f95c1b - false - false - false - true - false - TietoWindow-0 - - 2e9ee64a-2368-40fc-94ee-0473373f0f4c - 2016-09-09T10:08:38.767+03:00 - - - - - - - - - Specifies the available VM network connections - 0 - - 0 - false - 00:50:56:01:00:4d - NONE + true + 00:50:56:01:00:d9 + POOL - + Specifies Guest OS Customization Settings false false - e9b55b85-640b-462c-9e7a-d18c47a7a5f3 + ac90bd58-3bc4-47a5-bc8c-f1c8f5c468b6 false false true true false - CentOS7-0-0 + spec2-vm1 - 926f501b-c7ea-4b9d-a155-6695c3345150 - 2016-09-09T10:08:38.767+03:00 + 0166f57b-6ae3-47fe-a68b-4f7bebb61074 + 2018-03-09T16:18:30.150+01:00 - + The list of logical networks - - This is a special place-holder used for disconnected network interfaces. + + - + The configuration parameters for logical networks - - This is a special place-holder used for disconnected network interfaces. + + false - 196.254.254.254 - 255.255.0.0 - 196.254.254.254 + 192.168.2.1 + 255.255.255.0 + true + + + 192.168.2.100 + 192.168.2.199 + + isolated + false false - + Lease settings section - + 7776000 - 2016-12-11T14:22:25.960+02:00 + 2018-06-07T17:18:30.150+02:00 - + VApp template customization section true - 2016-09-09T10:08:38.767+03:00 + 2018-03-09T16:18:30.150+01:00 http_version: - recorded_at: Fri, 16 Sep 2016 08:55:36 GMT -- request: - method: get - uri: https://VMWARE_CLOUD_HOST/api/vApp/vm-f9ceb77c-b9d9-400c-8c06-72c785e884af/snapshotSection - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - fog-core/1.45.0 - Accept: - - application/*+xml;version=5.1 - X-Vcloud-Authorization: - - c52a60a15bd3434096cb4d4cc1ccea15 - response: - status: - code: 200 - message: OK - headers: - Date: - - Fri, 23 Feb 2018 12:50:19 GMT - X-Vmware-Vcloud-Request-Id: - - 5c9eda34-c719-4e5f-b2ad-3639a9d9be6e - X-Vcloud-Authorization: - - c52a60a15bd3434096cb4d4cc1ccea15 - Set-Cookie: - - vcloud-token=c52a60a15bd3434096cb4d4cc1ccea15; Secure; Path=/ - Content-Type: - - application/vnd.vmware.vcloud.snapshotsection+xml;version=5.1 - X-Vmware-Vcloud-Request-Execution-Time: - - '62' - Vary: - - Accept-Encoding, User-Agent - Content-Length: - - '1062' - body: - encoding: ASCII-8BIT - string: | - - - Snapshot information section - - http_version: - recorded_at: Fri, 23 Feb 2018 12:50:19 GMT -- request: - method: get - uri: https://VMWARE_CLOUD_HOST/api/vApp/vm-8df2faf3-fd33-40de-9b26-da34c146f55d/snapshotSection - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - fog-core/1.45.0 - Accept: - - application/*+xml;version=5.1 - X-Vcloud-Authorization: - - c52a60a15bd3434096cb4d4cc1ccea15 - response: - status: - code: 200 - message: OK - headers: - Date: - - Fri, 23 Feb 2018 12:50:20 GMT - X-Vmware-Vcloud-Request-Id: - - 26083f04-68e1-4347-85b6-920148fbc41e - X-Vcloud-Authorization: - - c52a60a15bd3434096cb4d4cc1ccea15 - Set-Cookie: - - vcloud-token=c52a60a15bd3434096cb4d4cc1ccea15; Secure; Path=/ - Content-Type: - - application/vnd.vmware.vcloud.snapshotsection+xml;version=5.1 - X-Vmware-Vcloud-Request-Execution-Time: - - '109' - Vary: - - Accept-Encoding, User-Agent - Content-Length: - - '1154' - body: - encoding: ASCII-8BIT - string: | - - - Snapshot information section - - - http_version: - recorded_at: Fri, 23 Feb 2018 12:50:20 GMT -- request: - method: get - uri: https://VMWARE_CLOUD_HOST/api/vApp/vm-a28be0c0-d70d-4047-92f8-fc217bbaa7f6/snapshotSection - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - fog-core/1.45.0 - Accept: - - application/*+xml;version=5.1 - X-Vcloud-Authorization: - - c52a60a15bd3434096cb4d4cc1ccea15 - response: - status: - code: 200 - message: OK - headers: - Date: - - Fri, 23 Feb 2018 12:50:20 GMT - X-Vmware-Vcloud-Request-Id: - - 26083f04-68e1-4347-85b6-920148fbc41e - X-Vcloud-Authorization: - - c52a60a15bd3434096cb4d4cc1ccea15 - Set-Cookie: - - vcloud-token=c52a60a15bd3434096cb4d4cc1ccea15; Secure; Path=/ - Content-Type: - - application/vnd.vmware.vcloud.snapshotsection+xml;version=5.1 - X-Vmware-Vcloud-Request-Execution-Time: - - '109' - Vary: - - Accept-Encoding, User-Agent - Content-Length: - - '1154' - body: - encoding: ASCII-8BIT - string: | - - - Snapshot information section - - - http_version: - recorded_at: Fri, 23 Feb 2018 12:50:20 GMT -- request: - method: get - uri: https://VMWARE_CLOUD_HOST/api/vApp/vm-f9ceb77c-b9d9-400c-8c06-72c785e884af/guestCustomizationSection - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - fog-core/1.45.0 - Accept: - - application/*+xml;version=5.1 - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - response: - status: - code: 200 - message: OK - headers: - Date: - - Tue, 27 Feb 2018 13:47:04 GMT - X-Vmware-Vcloud-Request-Id: - - 847868c4-6cce-4d35-9b90-bfdeea747cfd - X-Vcloud-Authorization: - - eb22e4808d8a463ab6d72dd293d4cc0a - Set-Cookie: - - vcloud-token=eb22e4808d8a463ab6d72dd293d4cc0a; Secure; Path=/ - Content-Type: - - application/vnd.vmware.vcloud.guestcustomizationsection+xml;version=5.1 - X-Vmware-Vcloud-Request-Execution-Time: - - '26' - Vary: - - Accept-Encoding, User-Agent - Content-Length: - - '1743' - body: - encoding: ASCII-8BIT - string: | - - - Specifies Guest OS Customization Settings - false - true - 352c29cb-43a9-42e3-8726-c2d38b99f78f - false - false - true - true - false - WebServerVM - - - http_version: - recorded_at: Tue, 27 Feb 2018 13:47:04 GMT -- request: - method: get - uri: https://VMWARE_CLOUD_HOST/api/vApp/vm-8df2faf3-fd33-40de-9b26-da34c146f55d/guestCustomizationSection - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - fog-core/1.45.0 - Accept: - - application/*+xml;version=5.1 - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - response: - status: - code: 200 - message: OK - headers: - Date: - - Tue, 27 Feb 2018 13:47:04 GMT - X-Vmware-Vcloud-Request-Id: - - 847868c4-6cce-4d35-9b90-bfdeea747cfd - X-Vcloud-Authorization: - - eb22e4808d8a463ab6d72dd293d4cc0a - Set-Cookie: - - vcloud-token=eb22e4808d8a463ab6d72dd293d4cc0a; Secure; Path=/ - Content-Type: - - application/vnd.vmware.vcloud.guestcustomizationsection+xml;version=5.1 - X-Vmware-Vcloud-Request-Execution-Time: - - '26' - Vary: - - Accept-Encoding, User-Agent - Content-Length: - - '1743' - body: - encoding: ASCII-8BIT - string: | - - - Specifies Guest OS Customization Settings - false - true - 352c29cb-43a9-42e3-8726-c2d38b99f78f - false - false - true - true - false - WebServerVM2 - - - http_version: - recorded_at: Tue, 27 Feb 2018 13:47:04 GMT -- request: - method: get - uri: https://VMWARE_CLOUD_HOST/api/vApp/vm-a28be0c0-d70d-4047-92f8-fc217bbaa7f6/guestCustomizationSection - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - fog-core/1.45.0 - Accept: - - application/*+xml;version=5.1 - X-Vcloud-Authorization: - - 5654e38c198f4265bc768fea28d3b1bf - response: - status: - code: 200 - message: OK - headers: - Date: - - Tue, 27 Feb 2018 13:47:04 GMT - X-Vmware-Vcloud-Request-Id: - - 847868c4-6cce-4d35-9b90-bfdeea747cfd - X-Vcloud-Authorization: - - eb22e4808d8a463ab6d72dd293d4cc0a - Set-Cookie: - - vcloud-token=eb22e4808d8a463ab6d72dd293d4cc0a; Secure; Path=/ - Content-Type: - - application/vnd.vmware.vcloud.guestcustomizationsection+xml;version=5.1 - X-Vmware-Vcloud-Request-Execution-Time: - - '26' - Vary: - - Accept-Encoding, User-Agent - Content-Length: - - '1743' - body: - encoding: ASCII-8BIT - string: | - - - Specifies Guest OS Customization Settings - false - true - 352c29cb-43a9-42e3-8726-c2d38b99f78f - false - false - true - true - false - WebServerVM3 - - - http_version: - recorded_at: Tue, 27 Feb 2018 13:47:04 GMT + recorded_at: Wed, 14 Mar 2018 10:54:33 GMT recorded_with: VCR 3.0.3