fog-vcloud-director 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,10 +3,17 @@ require './spec/spec_helper.rb'
3
3
  describe Fog::Generators::Compute::VcloudDirector::ReconfigureVm do
4
4
  let(:current) { Nokogiri::XML(File.read('./spec/fixtures/vm.xml')) }
5
5
  let(:hardware) { {} }
6
- let(:input) { hardware ? { :hardware => hardware } : {} }
6
+ let(:networks) { nic_conf.empty? ? [] : [nic_conf] }
7
+ let(:nic_conf) { {} }
7
8
  let(:output) { Nokogiri::XML(Fog::Generators::Compute::VcloudDirector::ReconfigureVm.generate_xml(current, input)) }
9
+ let(:input) do
10
+ input = {}
11
+ input[:hardware] = hardware unless hardware.empty?
12
+ input[:networks] = networks unless networks.empty?
13
+ input
14
+ end
8
15
 
9
- describe 'reconfigure' do
16
+ describe 'reconfigure hardware' do
10
17
  describe 'name' do
11
18
  let(:input) { { :name => 'new name' } }
12
19
 
@@ -114,4 +121,270 @@ describe Fog::Generators::Compute::VcloudDirector::ReconfigureVm do
114
121
  end
115
122
  end
116
123
  end
124
+
125
+ describe 'reconfigure NICs' do
126
+ describe 'update NIC' do
127
+ describe 'update NIC - truthful values' do
128
+ let(:nic_conf) do
129
+ {
130
+ :idx => 0,
131
+ :name => 'vApp net name',
132
+ :mac => '11:22:33:44:55:66',
133
+ :needs => true,
134
+ :ip => '1.2.3.4',
135
+ :connected => true,
136
+ :mode => 'MANUAL',
137
+ :type => 'adapter type'
138
+ }
139
+ end
140
+
141
+ it 'update NIC' do
142
+ assert_nic_count(output, 2)
143
+ assert_nic(
144
+ output,
145
+ 0,
146
+ :name => 'vApp net name',
147
+ :mac => '11:22:33:44:55:66',
148
+ :needs => true,
149
+ :ip => '1.2.3.4',
150
+ :connected => true,
151
+ :mode => 'MANUAL',
152
+ :type => 'adapter type'
153
+ )
154
+ end
155
+ end
156
+
157
+ describe 'update NIC - falseful values' do
158
+ let(:nic_conf) do
159
+ {
160
+ :idx => 0,
161
+ :name => 'vApp net name',
162
+ :mac => '11:22:33:44:55:66',
163
+ :needs => false,
164
+ :ip => '',
165
+ :connected => false,
166
+ :mode => 'MANUAL',
167
+ :type => 'adapter type'
168
+ }
169
+ end
170
+
171
+ it 'update NIC - falseful values' do
172
+ assert_nic_count(output, 2)
173
+ assert_nic(
174
+ output,
175
+ 0,
176
+ :name => 'vApp net name',
177
+ :mac => '11:22:33:44:55:66',
178
+ :needs => false,
179
+ :ip => '',
180
+ :connected => false,
181
+ :mode => 'MANUAL',
182
+ :type => 'adapter type'
183
+ )
184
+ end
185
+ end
186
+ end
187
+
188
+ describe 'remove NIC' do
189
+ let(:nic_conf) { { :idx => 1, :new_idx => -1 } }
190
+
191
+ it 'remove NIC' do
192
+ assert_nic_count(output, 1)
193
+ output.xpath("//xmlns:NetworkConnection[xmlns:NetworkConnectionIndex = '1']").must_be_empty
194
+ end
195
+ end
196
+
197
+ describe 'add NIC' do
198
+ describe 'add NIC - truthful values' do
199
+ let(:nic_conf) do
200
+ {
201
+ :idx => nil,
202
+ :new_idx => '5',
203
+ :name => 'vApp net name',
204
+ :mac => '11:22:33:44:55:66',
205
+ :needs => true,
206
+ :ip => '1.2.3.4',
207
+ :connected => true,
208
+ :mode => 'MANUAL',
209
+ :type => 'adapter type'
210
+ }
211
+ end
212
+
213
+ it 'add NIC' do
214
+ assert_nic_count(output, 3)
215
+ assert_nic(
216
+ output,
217
+ 5,
218
+ :name => 'vApp net name',
219
+ :mac => '11:22:33:44:55:66',
220
+ :needs => true,
221
+ :ip => '1.2.3.4',
222
+ :connected => true,
223
+ :mode => 'MANUAL',
224
+ :type => 'adapter type'
225
+ )
226
+ end
227
+ end
228
+
229
+ describe 'add NIC - falseful values' do
230
+ let(:nic_conf) do
231
+ {
232
+ :idx => nil,
233
+ :new_idx => '5',
234
+ :name => 'vApp net name',
235
+ :mac => '11:22:33:44:55:66',
236
+ :needs => false,
237
+ :ip => '',
238
+ :connected => false,
239
+ :mode => 'MANUAL',
240
+ :type => 'adapter type'
241
+ }
242
+ end
243
+
244
+ it 'add NIC - falseful values' do
245
+ assert_nic_count(output, 3)
246
+ assert_nic(
247
+ output,
248
+ 5,
249
+ :name => 'vApp net name',
250
+ :mac => '11:22:33:44:55:66',
251
+ :needs => false,
252
+ :ip => '',
253
+ :connected => false,
254
+ :mode => 'MANUAL',
255
+ :type => 'adapter type'
256
+ )
257
+ end
258
+ end
259
+
260
+ describe 'add first NIC' do
261
+ let(:networks) do
262
+ [
263
+ {
264
+ :idx => 0,
265
+ :new_idx => -1
266
+ },
267
+ {
268
+ :idx => 1,
269
+ :new_idx => -1
270
+ },
271
+ {
272
+ :idx => nil,
273
+ :new_idx => 2
274
+ }
275
+ ]
276
+ end
277
+
278
+ it 'add first NIC' do
279
+ assert_nic_count(output, 1)
280
+ end
281
+ end
282
+ end
283
+
284
+ describe 'set primary NIC' do
285
+ describe 'regular' do
286
+ let(:nic_conf) { { :idx => 1, :primary => true } }
287
+
288
+ it 'set primary NIC - regular' do
289
+ output.xpath("//xmlns:NetworkConnectionSection/xmlns:PrimaryNetworkConnectionIndex").text.must_equal '1'
290
+ end
291
+ end
292
+
293
+ describe 'when updating idx' do
294
+ let(:nic_conf) { { :idx => 1, :new_idx => 5, :primary => true } }
295
+
296
+ it 'set primary NIC - when updating idx' do
297
+ assert_nic_count(output, 2)
298
+ output.xpath("//xmlns:NetworkConnectionSection/xmlns:PrimaryNetworkConnectionIndex").text.must_equal '5'
299
+ end
300
+ end
301
+
302
+ describe 'new NIC' do
303
+ let(:nic_conf) { { :idx => nil, :new_idx => 3, :primary => true } }
304
+
305
+ it 'set primary NIC - new NIC' do
306
+ assert_nic_count(output, 3)
307
+ output.xpath("//xmlns:NetworkConnectionSection/xmlns:PrimaryNetworkConnectionIndex").text.must_equal '3'
308
+ end
309
+ end
310
+ end
311
+
312
+ describe 'when VM has no NICs yet' do
313
+ let(:current) { Nokogiri::XML(File.read('./spec/fixtures/empty_vm.xml')) }
314
+
315
+ describe 'when VM has no NICs yet - add NIC' do
316
+ let(:nic_conf) do
317
+ {
318
+ :idx => nil,
319
+ :new_idx => '5',
320
+ :name => 'vApp net name',
321
+ :mac => '11:22:33:44:55:66',
322
+ :needs => true,
323
+ :ip => '1.2.3.4',
324
+ :connected => true,
325
+ :mode => 'MANUAL',
326
+ :type => 'adapter type'
327
+ }
328
+ end
329
+
330
+ it 'when VM has no NICs yet - add NIC' do
331
+ assert_nic_count(output, 1)
332
+ assert_nic(
333
+ output,
334
+ 5,
335
+ :name => 'vApp net name',
336
+ :mac => '11:22:33:44:55:66',
337
+ :needs => true,
338
+ :ip => '1.2.3.4',
339
+ :connected => true,
340
+ :mode => 'MANUAL',
341
+ :type => 'adapter type'
342
+ )
343
+ end
344
+ end
345
+
346
+ describe 'set primary NIC' do
347
+ let(:nic_conf) { { :idx => nil, :new_idx => 3, :primary => true } }
348
+
349
+ it 'set primary NIC - new NIC' do
350
+ assert_nic_count(output, 1)
351
+ output.xpath("//xmlns:NetworkConnectionSection/xmlns:PrimaryNetworkConnectionIndex").text.must_equal '3'
352
+ end
353
+ end
354
+ end
355
+
356
+ def assert_nic_count(xml, n)
357
+ xml.xpath("//xmlns:NetworkConnection/xmlns:NetworkConnectionIndex").size.must_equal n
358
+ asset_network_connection_section_ordered(xml, :num_nic => n)
359
+ end
360
+
361
+ def assert_nic(xml, idx, name: nil, mac: nil, ip: nil, connected: nil, mode: nil, type: nil, needs: nil)
362
+ nic = xml.xpath("//xmlns:NetworkConnection[xmlns:NetworkConnectionIndex = '#{idx}']")
363
+ nic.xpath('./@network').first.value.must_equal name
364
+ nic.xpath('./@needsCustomization').first.value.must_equal needs.to_s
365
+ nic.xpath('./xmlns:MACAddress').text.must_equal mac
366
+ nic.xpath('./xmlns:IpAddress').text.must_equal ip
367
+ nic.xpath('./xmlns:IsConnected').text.must_equal connected.to_s
368
+ nic.xpath('./xmlns:NetworkAdapterType').text.must_equal type
369
+ nic.xpath('./xmlns:IpAddressAllocationMode').text.must_equal mode
370
+
371
+ asset_network_connection_ordered(nic)
372
+ end
373
+
374
+ def asset_network_connection_section_ordered(xml, num_nic: 2)
375
+ children = xml.xpath('//xmlns:NetworkConnectionSection').children.select(&:element?).map(&:name)
376
+ order = (%w(Info PrimaryNetworkConnectionIndex) + Array.new(num_nic, 'NetworkConnection') + %w(Link)).select do |el|
377
+ children.include?(el)
378
+ end
379
+ children.must_equal order
380
+ end
381
+
382
+ def asset_network_connection_ordered(xml)
383
+ children = xml.children.select(&:element?).map(&:name)
384
+ order = %w(NetworkConnectionIndex IpAddress ExternalIpAddress IsConnected MACAddress IpAddressAllocationMode NetworkAdapterType).select do |el|
385
+ children.include?(el)
386
+ end
387
+ children.must_equal order
388
+ end
389
+ end
117
390
  end
@@ -5,27 +5,53 @@ describe Fog::Compute::VcloudDirector::Vms do
5
5
  let(:vapp_id) { 'vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e' }
6
6
  let(:vapp) { Object.new.tap { |vapp| vapp.stubs(:id).returns(vapp_id) } }
7
7
  let(:vm_id) { 'vm-314172f1-1835-4598-b049-5c1d4dce39ad' }
8
+ let(:vm2_id) { 'vm-8dc9990c-a55a-418e-8e21-5942a20b93ef' }
8
9
 
9
- it '.all' do
10
- VCR.use_cassette('get_vapp') do
11
- vms = subject.all
12
- vms.size.must_equal 2
13
- expect_vm(
14
- vms.to_a.detect { |vm| vm.id == vm_id },
15
- :vapp_id => vapp_id,
16
- :name => 'Web Server VM',
17
- :status => 'off',
18
- :deployed => false,
19
- :os => 'Microsoft Windows Server 2016 (64-bit)',
20
- :ip => '',
21
- :cpu => 4,
22
- :cores_per_socket => 2,
23
- :cpu_hot => false,
24
- :mem => 1024,
25
- :mem_hot => false,
26
- :num_hdds => 1,
27
- :num_nics => 2
28
- )
10
+ describe '.all' do
11
+ it 'regular' do
12
+ VCR.use_cassette('get_vapp') do
13
+ vms = subject.all
14
+ vms.size.must_equal 2
15
+ expect_vm(
16
+ vms.to_a.detect { |vm| vm.id == vm_id },
17
+ :vapp_id => vapp_id,
18
+ :name => 'Web Server VM',
19
+ :status => 'off',
20
+ :deployed => false,
21
+ :os => 'Microsoft Windows Server 2016 (64-bit)',
22
+ :ip => '',
23
+ :cpu => 4,
24
+ :cores_per_socket => 2,
25
+ :cpu_hot => false,
26
+ :mem => 1024,
27
+ :mem_hot => false,
28
+ :num_hdds => 1,
29
+ :num_nics => 2
30
+ )
31
+ end
32
+ end
33
+
34
+ it 'when vm has no disks and nics' do
35
+ VCR.use_cassette('get_vapp-emptyvm') do
36
+ vms = subject.all
37
+ vms.size.must_equal 2
38
+ expect_vm(
39
+ vms.to_a.detect { |vm| vm.id == vm2_id },
40
+ :vapp_id => vapp_id,
41
+ :name => 'Databasy Machiny',
42
+ :status => 'off',
43
+ :deployed => false,
44
+ :os => 'Microsoft Windows Server 2016 (64-bit)',
45
+ :ip => '',
46
+ :cpu => 2,
47
+ :cores_per_socket => 1,
48
+ :cpu_hot => false,
49
+ :mem => 1024,
50
+ :mem_hot => false,
51
+ :num_hdds => 0,
52
+ :num_nics => 0
53
+ )
54
+ end
29
55
  end
30
56
  end
31
57
 
@@ -0,0 +1,806 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://VMWARE_CLOUD_HOST/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - fog-core/2.1.0
12
+ Accept:
13
+ - application/*+xml;version=9.0
14
+ X-Vcloud-Authorization:
15
+ - 4a47e67414d44be28f60fe35c094f98c
16
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Date:
22
+ - Tue, 22 May 2018 12:13:45 GMT
23
+ X-Vmware-Vcloud-Request-Id:
24
+ - e6ef1898-c5b3-44ff-8b40-74821f51d3c9
25
+ X-Vcloud-Authorization:
26
+ - 4a47e67414d44be28f60fe35c094f98c
27
+ Content-Type:
28
+ - application/vnd.vmware.vcloud.vapp+xml;version=9.0
29
+ X-Vmware-Vcloud-Request-Execution-Time:
30
+ - '402'
31
+ Vary:
32
+ - Accept-Encoding, User-Agent
33
+ body:
34
+ encoding: ASCII-8BIT
35
+ string: |
36
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
37
+ <VApp xmlns="http://www.vmware.com/vcloud/v1.5" xmlns:ovf="http://schemas.dmtf.org/ovf/envelope/1" xmlns:vssd="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_VirtualSystemSettingData" xmlns:common="http://schemas.dmtf.org/wbem/wscim/1/common" xmlns:rasd="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ResourceAllocationSettingData" xmlns:vmw="http://www.vmware.com/schema/ovf" xmlns:ovfenv="http://schemas.dmtf.org/ovf/environment/1" xmlns:vmext="http://www.vmware.com/vcloud/extension/v1.5" xmlns:ns9="http://www.vmware.com/vcloud/networkservice/1.0" xmlns:ns10="http://www.vmware.com/vcloud/networkservice/common/1.0" xmlns:ns11="http://www.vmware.com/vcloud/networkservice/ipam/1.0" xmlns:ns12="http://www.vmware.com/vcloud/versions" ovfDescriptorUploaded="true" deployed="false" status="8" name="cfme-vapp" id="urn:vcloud:vapp:fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e" href="https://VMWARE_CLOUD_HOST/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e" type="application/vnd.vmware.vcloud.vApp+xml">
38
+ <Link rel="power:powerOn" href="https://VMWARE_CLOUD_HOST/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e/power/action/powerOn"/>
39
+ <Link rel="deploy" href="https://VMWARE_CLOUD_HOST/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e/action/deploy" type="application/vnd.vmware.vcloud.deployVAppParams+xml"/>
40
+ <Link rel="down" href="https://VMWARE_CLOUD_HOST/api/network/90541d25-98ec-4a5d-851b-62bdbd639c70" name="Local vApp Network" type="application/vnd.vmware.vcloud.vAppNetwork+xml"/>
41
+ <Link rel="down" href="https://VMWARE_CLOUD_HOST/api/network/dfb96f2a-89a0-4879-9d63-6021f5ae4ce8" name="Localhost" type="application/vnd.vmware.vcloud.vAppNetwork+xml"/>
42
+ <Link rel="down" href="https://VMWARE_CLOUD_HOST/api/network/5813d95e-7ed5-4e26-8775-0877fc9b662f" name="RedHat Private network 43" type="application/vnd.vmware.vcloud.vAppNetwork+xml"/>
43
+ <Link rel="down" href="https://VMWARE_CLOUD_HOST/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e/controlAccess/" type="application/vnd.vmware.vcloud.controlAccess+xml"/>
44
+ <Link rel="controlAccess" href="https://VMWARE_CLOUD_HOST/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e/action/controlAccess" type="application/vnd.vmware.vcloud.controlAccess+xml"/>
45
+ <Link rel="recompose" href="https://VMWARE_CLOUD_HOST/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e/action/recomposeVApp" type="application/vnd.vmware.vcloud.recomposeVAppParams+xml"/>
46
+ <Link rel="up" href="https://VMWARE_CLOUD_HOST/api/vdc/cf6ea964-a67f-4ba1-b69e-3dd5d6cb0c89" type="application/vnd.vmware.vcloud.vdc+xml"/>
47
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e" type="application/vnd.vmware.vcloud.vApp+xml"/>
48
+ <Link rel="remove" href="https://VMWARE_CLOUD_HOST/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e"/>
49
+ <Link rel="enable" href="https://VMWARE_CLOUD_HOST/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e/action/enableDownload"/>
50
+ <Link rel="disable" href="https://VMWARE_CLOUD_HOST/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e/action/disableDownload"/>
51
+ <Link rel="down" href="https://VMWARE_CLOUD_HOST/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e/owner" type="application/vnd.vmware.vcloud.owner+xml"/>
52
+ <Link rel="down" href="https://VMWARE_CLOUD_HOST/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e/metadata" type="application/vnd.vmware.vcloud.metadata+xml"/>
53
+ <Link rel="ovf" href="https://VMWARE_CLOUD_HOST/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e/ovf" type="text/xml"/>
54
+ <Link rel="down" href="https://VMWARE_CLOUD_HOST/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e/productSections/" type="application/vnd.vmware.vcloud.productSections+xml"/>
55
+ <Link rel="snapshot:create" href="https://VMWARE_CLOUD_HOST/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e/action/createSnapshot" type="application/vnd.vmware.vcloud.createSnapshotParams+xml"/>
56
+ <Link rel="snapshot:revertToCurrent" href="https://VMWARE_CLOUD_HOST/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e/action/revertToCurrentSnapshot"/>
57
+ <Link rel="snapshot:removeAll" href="https://VMWARE_CLOUD_HOST/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e/action/removeAllSnapshots"/>
58
+ <LeaseSettingsSection href="https://VMWARE_CLOUD_HOST/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e/leaseSettingsSection/" type="application/vnd.vmware.vcloud.leaseSettingsSection+xml" ovf:required="false">
59
+ <ovf:Info>Lease settings section</ovf:Info>
60
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e/leaseSettingsSection/" type="application/vnd.vmware.vcloud.leaseSettingsSection+xml"/>
61
+ <DeploymentLeaseInSeconds>604800</DeploymentLeaseInSeconds>
62
+ <StorageLeaseInSeconds>2592000</StorageLeaseInSeconds>
63
+ <StorageLeaseExpiration>2018-06-21T13:16:35.178+02:00</StorageLeaseExpiration>
64
+ </LeaseSettingsSection>
65
+ <ovf:StartupSection xmlns:ns13="http://www.vmware.com/vcloud/v1.5" ns13:type="application/vnd.vmware.vcloud.startupSection+xml" ns13:href="https://VMWARE_CLOUD_HOST/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e/startupSection/">
66
+ <ovf:Info>VApp startup section</ovf:Info>
67
+ <ovf:Item ovf:id="Web Server VM" ovf:order="0" ovf:startAction="powerOn" ovf:startDelay="0" ovf:stopAction="powerOff" ovf:stopDelay="0"/>
68
+ <ovf:Item ovf:id="Databasy Machiny" ovf:order="0" ovf:startAction="powerOn" ovf:startDelay="0" ovf:stopAction="powerOff" ovf:stopDelay="0"/>
69
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e/startupSection/" type="application/vnd.vmware.vcloud.startupSection+xml"/>
70
+ </ovf:StartupSection>
71
+ <ovf:NetworkSection xmlns:ns13="http://www.vmware.com/vcloud/v1.5" ns13:type="application/vnd.vmware.vcloud.networkSection+xml" ns13:href="https://VMWARE_CLOUD_HOST/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e/networkSection/">
72
+ <ovf:Info>The list of logical networks</ovf:Info>
73
+ <ovf:Network ovf:name="Local vApp Network">
74
+ <ovf:Description></ovf:Description>
75
+ </ovf:Network>
76
+ <ovf:Network ovf:name="Localhost">
77
+ <ovf:Description>Localhost</ovf:Description>
78
+ </ovf:Network>
79
+ <ovf:Network ovf:name="RedHat Private network 43">
80
+ <ovf:Description>RedHat Private network 43</ovf:Description>
81
+ </ovf:Network>
82
+ </ovf:NetworkSection>
83
+ <NetworkConfigSection href="https://VMWARE_CLOUD_HOST/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e/networkConfigSection/" type="application/vnd.vmware.vcloud.networkConfigSection+xml" ovf:required="false">
84
+ <ovf:Info>The configuration parameters for logical networks</ovf:Info>
85
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e/networkConfigSection/" type="application/vnd.vmware.vcloud.networkConfigSection+xml"/>
86
+ <NetworkConfig networkName="Local vApp Network">
87
+ <Link rel="repair" href="https://VMWARE_CLOUD_HOST/api/admin/network/90541d25-98ec-4a5d-851b-62bdbd639c70/action/reset"/>
88
+ <Link rel="syncSyslogSettings" href="https://VMWARE_CLOUD_HOST/api/admin/network/90541d25-98ec-4a5d-851b-62bdbd639c70/action/syncSyslogServerSettings" type="application/vnd.vmware.vcloud.task+xml"/>
89
+ <Description></Description>
90
+ <Configuration>
91
+ <IpScopes>
92
+ <IpScope>
93
+ <IsInherited>false</IsInherited>
94
+ <Gateway>192.168.2.1</Gateway>
95
+ <Netmask>255.255.255.0</Netmask>
96
+ <IsEnabled>true</IsEnabled>
97
+ <IpRanges>
98
+ <IpRange>
99
+ <StartAddress>192.168.2.100</StartAddress>
100
+ <EndAddress>192.168.2.199</EndAddress>
101
+ </IpRange>
102
+ </IpRanges>
103
+ </IpScope>
104
+ </IpScopes>
105
+ <ParentNetwork href="https://VMWARE_CLOUD_HOST/api/admin/network/146c97bb-0304-4484-8bd6-7237be034592" id="146c97bb-0304-4484-8bd6-7237be034592" name="RedHat Private network 42"/>
106
+ <FenceMode>natRouted</FenceMode>
107
+ <RetainNetInfoAcrossDeployments>false</RetainNetInfoAcrossDeployments>
108
+ <Features>
109
+ <DhcpService>
110
+ <IsEnabled>false</IsEnabled>
111
+ <DefaultLeaseTime>3600</DefaultLeaseTime>
112
+ <MaxLeaseTime>7200</MaxLeaseTime>
113
+ </DhcpService>
114
+ <FirewallService>
115
+ <IsEnabled>true</IsEnabled>
116
+ <DefaultAction>drop</DefaultAction>
117
+ <LogDefaultAction>false</LogDefaultAction>
118
+ <FirewallRule>
119
+ <IsEnabled>true</IsEnabled>
120
+ <MatchOnTranslate>false</MatchOnTranslate>
121
+ <Description>Allow all outbound traffic</Description>
122
+ <Policy>allow</Policy>
123
+ <Protocols>
124
+ <Any>true</Any>
125
+ </Protocols>
126
+ <Port>-1</Port>
127
+ <DestinationPortRange>Any</DestinationPortRange>
128
+ <DestinationIp>external</DestinationIp>
129
+ <SourcePort>-1</SourcePort>
130
+ <SourcePortRange>Any</SourcePortRange>
131
+ <SourceIp>internal</SourceIp>
132
+ <EnableLogging>false</EnableLogging>
133
+ </FirewallRule>
134
+ </FirewallService>
135
+ <NatService>
136
+ <IsEnabled>true</IsEnabled>
137
+ <NatType>ipTranslation</NatType>
138
+ <Policy>allowTrafficIn</Policy>
139
+ </NatService>
140
+ </Features>
141
+ <SyslogServerSettings/>
142
+ </Configuration>
143
+ <IsDeployed>false</IsDeployed>
144
+ </NetworkConfig>
145
+ <NetworkConfig networkName="Localhost">
146
+ <Link rel="repair" href="https://VMWARE_CLOUD_HOST/api/admin/network/dfb96f2a-89a0-4879-9d63-6021f5ae4ce8/action/reset"/>
147
+ <Description>Localhost</Description>
148
+ <Configuration>
149
+ <IpScopes>
150
+ <IpScope>
151
+ <IsInherited>false</IsInherited>
152
+ <Gateway>192.168.2.1</Gateway>
153
+ <Netmask>255.255.255.0</Netmask>
154
+ <Dns1>1.2.3.4</Dns1>
155
+ <Dns2>4.3.2.1</Dns2>
156
+ <IsEnabled>true</IsEnabled>
157
+ </IpScope>
158
+ </IpScopes>
159
+ <FenceMode>isolated</FenceMode>
160
+ <RetainNetInfoAcrossDeployments>false</RetainNetInfoAcrossDeployments>
161
+ </Configuration>
162
+ <IsDeployed>false</IsDeployed>
163
+ </NetworkConfig>
164
+ <NetworkConfig networkName="RedHat Private network 43">
165
+ <Link rel="repair" href="https://VMWARE_CLOUD_HOST/api/admin/network/5813d95e-7ed5-4e26-8775-0877fc9b662f/action/reset"/>
166
+ <Description>RedHat Private network 43</Description>
167
+ <Configuration>
168
+ <IpScopes>
169
+ <IpScope>
170
+ <IsInherited>true</IsInherited>
171
+ <Gateway>192.168.43.1</Gateway>
172
+ <Netmask>255.255.255.0</Netmask>
173
+ <Dns1>192.168.43.1</Dns1>
174
+ <IsEnabled>true</IsEnabled>
175
+ <IpRanges>
176
+ <IpRange>
177
+ <StartAddress>192.168.43.2</StartAddress>
178
+ <EndAddress>192.168.43.99</EndAddress>
179
+ </IpRange>
180
+ </IpRanges>
181
+ </IpScope>
182
+ </IpScopes>
183
+ <ParentNetwork href="https://VMWARE_CLOUD_HOST/api/admin/network/b915be99-1471-4e51-bcde-da2da791b98f" id="b915be99-1471-4e51-bcde-da2da791b98f" name="RedHat Private network 43"/>
184
+ <FenceMode>bridged</FenceMode>
185
+ <RetainNetInfoAcrossDeployments>false</RetainNetInfoAcrossDeployments>
186
+ </Configuration>
187
+ <IsDeployed>false</IsDeployed>
188
+ </NetworkConfig>
189
+ </NetworkConfigSection>
190
+ <SnapshotSection href="https://VMWARE_CLOUD_HOST/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e/snapshotSection" type="application/vnd.vmware.vcloud.snapshotSection+xml" ovf:required="false">
191
+ <ovf:Info>Snapshot information section</ovf:Info>
192
+ <Snapshot created="2018-04-16T09:36:59.459+02:00" poweredOn="false" size="4294967296"/>
193
+ </SnapshotSection>
194
+ <DateCreated>2018-04-16T09:13:17.007+02:00</DateCreated>
195
+ <Owner type="application/vnd.vmware.vcloud.owner+xml">
196
+ <User href="https://VMWARE_CLOUD_HOST/api/admin/user/e0d6e74d-efde-49fe-b19f-ace7e55b68dd" name="redhat" type="application/vnd.vmware.admin.user+xml"/>
197
+ </Owner>
198
+ <InMaintenanceMode>false</InMaintenanceMode>
199
+ <Children>
200
+ <Vm needsCustomization="true" nestedHypervisorEnabled="false" deployed="false" status="8" name="Databasy Machiny" id="urn:vcloud:vm:8dc9990c-a55a-418e-8e21-5942a20b93ef" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef" type="application/vnd.vmware.vcloud.vm+xml">
201
+ <Link rel="power:powerOn" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/power/action/powerOn"/>
202
+ <Link rel="deploy" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/action/deploy" type="application/vnd.vmware.vcloud.deployVAppParams+xml"/>
203
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef" type="application/vnd.vmware.vcloud.vm+xml"/>
204
+ <Link rel="remove" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef"/>
205
+ <Link rel="down" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/metadata" type="application/vnd.vmware.vcloud.metadata+xml"/>
206
+ <Link rel="down" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/productSections/" type="application/vnd.vmware.vcloud.productSections+xml"/>
207
+ <Link rel="down" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/metrics/historic" type="application/vnd.vmware.vcloud.metrics.historicUsageSpec+xml"/>
208
+ <Link rel="metrics" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/metrics/historic" type="application/vnd.vmware.vcloud.metrics.historicUsageSpec+xml"/>
209
+ <Link rel="screen:thumbnail" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/screen"/>
210
+ <Link rel="media:insertMedia" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/media/action/insertMedia" type="application/vnd.vmware.vcloud.mediaInsertOrEjectParams+xml"/>
211
+ <Link rel="media:ejectMedia" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/media/action/ejectMedia" type="application/vnd.vmware.vcloud.mediaInsertOrEjectParams+xml"/>
212
+ <Link rel="disk:attach" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/disk/action/attach" type="application/vnd.vmware.vcloud.diskAttachOrDetachParams+xml"/>
213
+ <Link rel="disk:detach" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/disk/action/detach" type="application/vnd.vmware.vcloud.diskAttachOrDetachParams+xml"/>
214
+ <Link rel="enable" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/action/enableNestedHypervisor"/>
215
+ <Link rel="customizeAtNextPowerOn" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/action/customizeAtNextPowerOn"/>
216
+ <Link rel="snapshot:create" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/action/createSnapshot" type="application/vnd.vmware.vcloud.createSnapshotParams+xml"/>
217
+ <Link rel="reconfigureVm" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/action/reconfigureVm" name="Databasy Machiny" type="application/vnd.vmware.vcloud.vm+xml"/>
218
+ <Link rel="up" href="https://VMWARE_CLOUD_HOST/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e" type="application/vnd.vmware.vcloud.vApp+xml"/>
219
+ <Description>DB Description</Description>
220
+ <Tasks>
221
+ <Task cancelRequested="false" endTime="2018-05-21T15:31:14.265+02:00" expiryTime="2018-08-19T15:31:12.287+02:00" operation="Updated Virtual Machine Databasy Machiny(8dc9990c-a55a-418e-8e21-5942a20b93ef)" operationName="vappUpdateVm" serviceNamespace="com.vmware.vcloud" startTime="2018-05-21T15:31:12.287+02:00" status="error" name="task" id="urn:vcloud:task:b867159a-f0cd-4aec-8994-d59cc4110b6e" href="https://VMWARE_CLOUD_HOST/api/task/b867159a-f0cd-4aec-8994-d59cc4110b6e" type="application/vnd.vmware.vcloud.task+xml">
222
+ <Owner href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef" name="Databasy Machiny" type="application/vnd.vmware.vcloud.vm+xml"/>
223
+ <Error majorErrorCode="400" message="[ 9c3afab2-07d4-440b-98ae-52824014c259 ] The VCD entity network &quot;RedHat Private network 42 3&quot; does not exist." minorErrorCode="BAD_REQUEST"/>
224
+ <User href="https://VMWARE_CLOUD_HOST/api/admin/user/e0d6e74d-efde-49fe-b19f-ace7e55b68dd" name="redhat" type="application/vnd.vmware.admin.user+xml"/>
225
+ <Organization href="https://VMWARE_CLOUD_HOST/api/org/8f03aa58-b618-4c32-836b-dc6b612ed3a4" name="RedHat" type="application/vnd.vmware.vcloud.org+xml"/>
226
+ <Details> [ 9c3afab2-07d4-440b-98ae-52824014c259 ] The VCD entity network "RedHat Private network 42 3" does n...</Details>
227
+ </Task>
228
+ </Tasks>
229
+ <ovf:VirtualHardwareSection xmlns:ns13="http://www.vmware.com/vcloud/v1.5" ovf:transport="" ns13:type="application/vnd.vmware.vcloud.virtualHardwareSection+xml" ns13:href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/">
230
+ <ovf:Info>Virtual hardware requirements</ovf:Info>
231
+ <ovf:System>
232
+ <vssd:AutomaticRecoveryAction xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
233
+ <vssd:AutomaticShutdownAction xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
234
+ <vssd:AutomaticStartupAction xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
235
+ <vssd:AutomaticStartupActionDelay xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
236
+ <vssd:AutomaticStartupActionSequenceNumber xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
237
+ <vssd:Caption xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
238
+ <vssd:ChangeableType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
239
+ <vssd:ConfigurationDataRoot xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
240
+ <vssd:ConfigurationFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
241
+ <vssd:ConfigurationID xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
242
+ <vssd:ConfigurationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
243
+ <vssd:CreationTime xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
244
+ <vssd:Description xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
245
+ <vssd:ElementName>Virtual Hardware Family</vssd:ElementName>
246
+ <vssd:Generation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
247
+ <vssd:InstanceID>0</vssd:InstanceID>
248
+ <vssd:LogDataRoot xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
249
+ <vssd:RecoveryFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
250
+ <vssd:SnapshotDataRoot xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
251
+ <vssd:SuspendDataRoot xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
252
+ <vssd:SwapFileDataRoot xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
253
+ <vssd:VirtualSystemIdentifier>Databasy Machiny</vssd:VirtualSystemIdentifier>
254
+ <vssd:VirtualSystemType>vmx-13</vssd:VirtualSystemType>
255
+ </ovf:System>
256
+ <ovf:Item>
257
+ <rasd:Address>0</rasd:Address>
258
+ <rasd:AddressOnParent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
259
+ <rasd:AllocationUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
260
+ <rasd:AutomaticAllocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
261
+ <rasd:AutomaticDeallocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
262
+ <rasd:Caption xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
263
+ <rasd:ChangeableType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
264
+ <rasd:ConfigurationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
265
+ <rasd:ConsumerVisibility xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
266
+ <rasd:Description>IDE Controller</rasd:Description>
267
+ <rasd:ElementName>IDE Controller 0</rasd:ElementName>
268
+ <rasd:Generation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
269
+ <rasd:InstanceID>1</rasd:InstanceID>
270
+ <rasd:Limit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
271
+ <rasd:MappingBehavior xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
272
+ <rasd:OtherResourceType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
273
+ <rasd:Parent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
274
+ <rasd:PoolID xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
275
+ <rasd:Reservation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
276
+ <rasd:ResourceSubType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
277
+ <rasd:ResourceType>5</rasd:ResourceType>
278
+ <rasd:VirtualQuantity xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
279
+ <rasd:VirtualQuantityUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
280
+ <rasd:Weight xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
281
+ </ovf:Item>
282
+ <ovf:Item>
283
+ <rasd:Address xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
284
+ <rasd:AddressOnParent>0</rasd:AddressOnParent>
285
+ <rasd:AllocationUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
286
+ <rasd:AutomaticAllocation>false</rasd:AutomaticAllocation>
287
+ <rasd:AutomaticDeallocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
288
+ <rasd:Caption xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
289
+ <rasd:ChangeableType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
290
+ <rasd:ConfigurationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
291
+ <rasd:ConsumerVisibility xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
292
+ <rasd:Description>CD/DVD Drive</rasd:Description>
293
+ <rasd:ElementName>CD/DVD Drive 1</rasd:ElementName>
294
+ <rasd:Generation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
295
+ <rasd:HostResource></rasd:HostResource>
296
+ <rasd:InstanceID>3000</rasd:InstanceID>
297
+ <rasd:Limit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
298
+ <rasd:MappingBehavior xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
299
+ <rasd:OtherResourceType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
300
+ <rasd:Parent>1</rasd:Parent>
301
+ <rasd:PoolID xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
302
+ <rasd:Reservation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
303
+ <rasd:ResourceSubType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
304
+ <rasd:ResourceType>15</rasd:ResourceType>
305
+ <rasd:VirtualQuantity xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
306
+ <rasd:VirtualQuantityUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
307
+ <rasd:Weight xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
308
+ </ovf:Item>
309
+ <ovf:Item>
310
+ <rasd:Address xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
311
+ <rasd:AddressOnParent>0</rasd:AddressOnParent>
312
+ <rasd:AllocationUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
313
+ <rasd:AutomaticAllocation>false</rasd:AutomaticAllocation>
314
+ <rasd:AutomaticDeallocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
315
+ <rasd:Caption xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
316
+ <rasd:ChangeableType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
317
+ <rasd:ConfigurationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
318
+ <rasd:ConsumerVisibility xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
319
+ <rasd:Description>Floppy Drive</rasd:Description>
320
+ <rasd:ElementName>Floppy Drive 1</rasd:ElementName>
321
+ <rasd:Generation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
322
+ <rasd:HostResource></rasd:HostResource>
323
+ <rasd:InstanceID>8000</rasd:InstanceID>
324
+ <rasd:Limit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
325
+ <rasd:MappingBehavior xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
326
+ <rasd:OtherResourceType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
327
+ <rasd:Parent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
328
+ <rasd:PoolID xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
329
+ <rasd:Reservation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
330
+ <rasd:ResourceSubType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
331
+ <rasd:ResourceType>14</rasd:ResourceType>
332
+ <rasd:VirtualQuantity xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
333
+ <rasd:VirtualQuantityUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
334
+ <rasd:Weight xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
335
+ </ovf:Item>
336
+ <ovf:Item ns13:type="application/vnd.vmware.vcloud.rasdItem+xml" ns13:href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/cpu">
337
+ <rasd:Address xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
338
+ <rasd:AddressOnParent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
339
+ <rasd:AllocationUnits>hertz * 10^6</rasd:AllocationUnits>
340
+ <rasd:AutomaticAllocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
341
+ <rasd:AutomaticDeallocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
342
+ <rasd:Caption xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
343
+ <rasd:ChangeableType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
344
+ <rasd:ConfigurationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
345
+ <rasd:ConsumerVisibility xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
346
+ <rasd:Description>Number of Virtual CPUs</rasd:Description>
347
+ <rasd:ElementName>2 virtual CPU(s)</rasd:ElementName>
348
+ <rasd:Generation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
349
+ <rasd:InstanceID>2</rasd:InstanceID>
350
+ <rasd:Limit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
351
+ <rasd:MappingBehavior xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
352
+ <rasd:OtherResourceType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
353
+ <rasd:Parent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
354
+ <rasd:PoolID xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
355
+ <rasd:Reservation>0</rasd:Reservation>
356
+ <rasd:ResourceSubType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
357
+ <rasd:ResourceType>3</rasd:ResourceType>
358
+ <rasd:VirtualQuantity>2</rasd:VirtualQuantity>
359
+ <rasd:VirtualQuantityUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
360
+ <rasd:Weight>0</rasd:Weight>
361
+ <vmw:CoresPerSocket ovf:required="false">1</vmw:CoresPerSocket>
362
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/cpu" type="application/vnd.vmware.vcloud.rasdItem+xml"/>
363
+ </ovf:Item>
364
+ <ovf:Item ns13:type="application/vnd.vmware.vcloud.rasdItem+xml" ns13:href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/memory">
365
+ <rasd:Address xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
366
+ <rasd:AddressOnParent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
367
+ <rasd:AllocationUnits>byte * 2^20</rasd:AllocationUnits>
368
+ <rasd:AutomaticAllocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
369
+ <rasd:AutomaticDeallocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
370
+ <rasd:Caption xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
371
+ <rasd:ChangeableType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
372
+ <rasd:ConfigurationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
373
+ <rasd:ConsumerVisibility xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
374
+ <rasd:Description>Memory Size</rasd:Description>
375
+ <rasd:ElementName>1024 MB of memory</rasd:ElementName>
376
+ <rasd:Generation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
377
+ <rasd:InstanceID>3</rasd:InstanceID>
378
+ <rasd:Limit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
379
+ <rasd:MappingBehavior xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
380
+ <rasd:OtherResourceType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
381
+ <rasd:Parent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
382
+ <rasd:PoolID xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
383
+ <rasd:Reservation>0</rasd:Reservation>
384
+ <rasd:ResourceSubType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
385
+ <rasd:ResourceType>4</rasd:ResourceType>
386
+ <rasd:VirtualQuantity>1024</rasd:VirtualQuantity>
387
+ <rasd:VirtualQuantityUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
388
+ <rasd:Weight>0</rasd:Weight>
389
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/memory" type="application/vnd.vmware.vcloud.rasdItem+xml"/>
390
+ </ovf:Item>
391
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/" type="application/vnd.vmware.vcloud.virtualHardwareSection+xml"/>
392
+ <Link rel="down" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/cpu" type="application/vnd.vmware.vcloud.rasdItem+xml"/>
393
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/cpu" type="application/vnd.vmware.vcloud.rasdItem+xml"/>
394
+ <Link rel="down" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/memory" type="application/vnd.vmware.vcloud.rasdItem+xml"/>
395
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/memory" type="application/vnd.vmware.vcloud.rasdItem+xml"/>
396
+ <Link rel="down" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/disks" type="application/vnd.vmware.vcloud.rasdItemsList+xml"/>
397
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/disks" type="application/vnd.vmware.vcloud.rasdItemsList+xml"/>
398
+ <Link rel="down" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/media" type="application/vnd.vmware.vcloud.rasdItemsList+xml"/>
399
+ <Link rel="down" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/networkCards" type="application/vnd.vmware.vcloud.rasdItemsList+xml"/>
400
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/networkCards" type="application/vnd.vmware.vcloud.rasdItemsList+xml"/>
401
+ <Link rel="down" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/serialPorts" type="application/vnd.vmware.vcloud.rasdItemsList+xml"/>
402
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/virtualHardwareSection/serialPorts" type="application/vnd.vmware.vcloud.rasdItemsList+xml"/>
403
+ </ovf:VirtualHardwareSection>
404
+ <ovf:OperatingSystemSection xmlns:ns13="http://www.vmware.com/vcloud/v1.5" ovf:id="102" ns13:type="application/vnd.vmware.vcloud.operatingSystemSection+xml" vmw:osType="windows9Server64Guest" ns13:href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/operatingSystemSection/">
405
+ <ovf:Info>Specifies the operating system installed</ovf:Info>
406
+ <ovf:Description>Microsoft Windows Server 2016 (64-bit)</ovf:Description>
407
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/operatingSystemSection/" type="application/vnd.vmware.vcloud.operatingSystemSection+xml"/>
408
+ </ovf:OperatingSystemSection>
409
+ <NetworkConnectionSection href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/networkConnectionSection/" type="application/vnd.vmware.vcloud.networkConnectionSection+xml" ovf:required="false">
410
+ <ovf:Info>Specifies the available VM network connections</ovf:Info>
411
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/networkConnectionSection/" type="application/vnd.vmware.vcloud.networkConnectionSection+xml"/>
412
+ </NetworkConnectionSection>
413
+ <GuestCustomizationSection href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/guestCustomizationSection/" type="application/vnd.vmware.vcloud.guestCustomizationSection+xml" ovf:required="false">
414
+ <ovf:Info>Specifies Guest OS Customization Settings</ovf:Info>
415
+ <Enabled>false</Enabled>
416
+ <ChangeSid>true</ChangeSid>
417
+ <VirtualMachineId>8dc9990c-a55a-418e-8e21-5942a20b93ef</VirtualMachineId>
418
+ <JoinDomainEnabled>false</JoinDomainEnabled>
419
+ <UseOrgSettings>false</UseOrgSettings>
420
+ <AdminPasswordEnabled>true</AdminPasswordEnabled>
421
+ <AdminPasswordAuto>true</AdminPasswordAuto>
422
+ <AdminAutoLogonEnabled>false</AdminAutoLogonEnabled>
423
+ <AdminAutoLogonCount>0</AdminAutoLogonCount>
424
+ <ResetPasswordRequired>false</ResetPasswordRequired>
425
+ <ComputerName>DatabseVM</ComputerName>
426
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/guestCustomizationSection/" type="application/vnd.vmware.vcloud.guestCustomizationSection+xml"/>
427
+ </GuestCustomizationSection>
428
+ <RuntimeInfoSection xmlns:ns13="http://www.vmware.com/vcloud/v1.5" ns13:type="application/vnd.vmware.vcloud.virtualHardwareSection+xml" ns13:href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/runtimeInfoSection">
429
+ <ovf:Info>Specifies Runtime info</ovf:Info>
430
+ </RuntimeInfoSection>
431
+ <SnapshotSection href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/snapshotSection" type="application/vnd.vmware.vcloud.snapshotSection+xml" ovf:required="false">
432
+ <ovf:Info>Snapshot information section</ovf:Info>
433
+ </SnapshotSection>
434
+ <DateCreated>2018-04-16T09:13:25.402+02:00</DateCreated>
435
+ <VAppScopedLocalId>af445e42-234d-41b2-9654-b36ac45ad71c</VAppScopedLocalId>
436
+ <VmCapabilities href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/vmCapabilities/" type="application/vnd.vmware.vcloud.vmCapabilitiesSection+xml">
437
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-8dc9990c-a55a-418e-8e21-5942a20b93ef/vmCapabilities/" type="application/vnd.vmware.vcloud.vmCapabilitiesSection+xml"/>
438
+ <MemoryHotAddEnabled>false</MemoryHotAddEnabled>
439
+ <CpuHotAddEnabled>false</CpuHotAddEnabled>
440
+ </VmCapabilities>
441
+ <StorageProfile href="https://VMWARE_CLOUD_HOST/api/vdcStorageProfile/c87b2a7c-fcab-4f8a-bef3-3ece59366c38" name="*" type="application/vnd.vmware.vcloud.vdcStorageProfile+xml"/>
442
+ </Vm>
443
+ <Vm needsCustomization="false" nestedHypervisorEnabled="false" deployed="false" status="8" name="Web Server VM" id="urn:vcloud:vm:314172f1-1835-4598-b049-5c1d4dce39ad" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad" type="application/vnd.vmware.vcloud.vm+xml">
444
+ <Link rel="power:powerOn" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/power/action/powerOn"/>
445
+ <Link rel="deploy" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/action/deploy" type="application/vnd.vmware.vcloud.deployVAppParams+xml"/>
446
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad" type="application/vnd.vmware.vcloud.vm+xml"/>
447
+ <Link rel="remove" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad"/>
448
+ <Link rel="down" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/metadata" type="application/vnd.vmware.vcloud.metadata+xml"/>
449
+ <Link rel="down" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/productSections/" type="application/vnd.vmware.vcloud.productSections+xml"/>
450
+ <Link rel="down" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/metrics/historic" type="application/vnd.vmware.vcloud.metrics.historicUsageSpec+xml"/>
451
+ <Link rel="metrics" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/metrics/historic" type="application/vnd.vmware.vcloud.metrics.historicUsageSpec+xml"/>
452
+ <Link rel="screen:thumbnail" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/screen"/>
453
+ <Link rel="media:insertMedia" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/media/action/insertMedia" type="application/vnd.vmware.vcloud.mediaInsertOrEjectParams+xml"/>
454
+ <Link rel="media:ejectMedia" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/media/action/ejectMedia" type="application/vnd.vmware.vcloud.mediaInsertOrEjectParams+xml"/>
455
+ <Link rel="disk:attach" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/disk/action/attach" type="application/vnd.vmware.vcloud.diskAttachOrDetachParams+xml"/>
456
+ <Link rel="disk:detach" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/disk/action/detach" type="application/vnd.vmware.vcloud.diskAttachOrDetachParams+xml"/>
457
+ <Link rel="enable" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/action/enableNestedHypervisor"/>
458
+ <Link rel="customizeAtNextPowerOn" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/action/customizeAtNextPowerOn"/>
459
+ <Link rel="snapshot:create" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/action/createSnapshot" type="application/vnd.vmware.vcloud.createSnapshotParams+xml"/>
460
+ <Link rel="snapshot:revertToCurrent" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/action/revertToCurrentSnapshot"/>
461
+ <Link rel="snapshot:removeAll" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/action/removeAllSnapshots"/>
462
+ <Link rel="reconfigureVm" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/action/reconfigureVm" name="Web Server VM" type="application/vnd.vmware.vcloud.vm+xml"/>
463
+ <Link rel="up" href="https://VMWARE_CLOUD_HOST/api/vApp/vapp-fe8d013d-dd2f-4ac6-9e8a-3a4a18e0a62e" type="application/vnd.vmware.vcloud.vApp+xml"/>
464
+ <Description></Description>
465
+ <ovf:VirtualHardwareSection xmlns:ns13="http://www.vmware.com/vcloud/v1.5" ovf:transport="" ns13:type="application/vnd.vmware.vcloud.virtualHardwareSection+xml" ns13:href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/virtualHardwareSection/">
466
+ <ovf:Info>Virtual hardware requirements</ovf:Info>
467
+ <ovf:System>
468
+ <vssd:AutomaticRecoveryAction xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
469
+ <vssd:AutomaticShutdownAction xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
470
+ <vssd:AutomaticStartupAction xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
471
+ <vssd:AutomaticStartupActionDelay xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
472
+ <vssd:AutomaticStartupActionSequenceNumber xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
473
+ <vssd:Caption xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
474
+ <vssd:ChangeableType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
475
+ <vssd:ConfigurationDataRoot xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
476
+ <vssd:ConfigurationFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
477
+ <vssd:ConfigurationID xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
478
+ <vssd:ConfigurationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
479
+ <vssd:CreationTime xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
480
+ <vssd:Description xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
481
+ <vssd:ElementName>Virtual Hardware Family</vssd:ElementName>
482
+ <vssd:Generation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
483
+ <vssd:InstanceID>0</vssd:InstanceID>
484
+ <vssd:LogDataRoot xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
485
+ <vssd:RecoveryFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
486
+ <vssd:SnapshotDataRoot xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
487
+ <vssd:SuspendDataRoot xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
488
+ <vssd:SwapFileDataRoot xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
489
+ <vssd:VirtualSystemIdentifier>Web Server VM</vssd:VirtualSystemIdentifier>
490
+ <vssd:VirtualSystemType>vmx-13</vssd:VirtualSystemType>
491
+ </ovf:System>
492
+ <ovf:Item>
493
+ <rasd:Address>00:50:56:01:01:2a</rasd:Address>
494
+ <rasd:AddressOnParent>0</rasd:AddressOnParent>
495
+ <rasd:AllocationUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
496
+ <rasd:AutomaticAllocation>true</rasd:AutomaticAllocation>
497
+ <rasd:AutomaticDeallocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
498
+ <rasd:Caption xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
499
+ <rasd:ChangeableType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
500
+ <rasd:ConfigurationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
501
+ <rasd:Connection ns13:ipAddressingMode="DHCP" ns13:primaryNetworkConnection="true">RedHat Private network 43</rasd:Connection>
502
+ <rasd:ConsumerVisibility xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
503
+ <rasd:Description>PCNet32 ethernet adapter on "RedHat Private network 43"</rasd:Description>
504
+ <rasd:ElementName>Network adapter 0</rasd:ElementName>
505
+ <rasd:Generation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
506
+ <rasd:InstanceID>1</rasd:InstanceID>
507
+ <rasd:Limit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
508
+ <rasd:MappingBehavior xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
509
+ <rasd:OtherResourceType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
510
+ <rasd:Parent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
511
+ <rasd:PoolID xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
512
+ <rasd:Reservation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
513
+ <rasd:ResourceSubType>PCNet32</rasd:ResourceSubType>
514
+ <rasd:ResourceType>10</rasd:ResourceType>
515
+ <rasd:VirtualQuantity xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
516
+ <rasd:VirtualQuantityUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
517
+ <rasd:Weight xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
518
+ </ovf:Item>
519
+ <ovf:Item>
520
+ <rasd:Address>00:50:56:01:01:2b</rasd:Address>
521
+ <rasd:AddressOnParent>1</rasd:AddressOnParent>
522
+ <rasd:AllocationUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
523
+ <rasd:AutomaticAllocation>true</rasd:AutomaticAllocation>
524
+ <rasd:AutomaticDeallocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
525
+ <rasd:Caption xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
526
+ <rasd:ChangeableType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
527
+ <rasd:ConfigurationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
528
+ <rasd:Connection ns13:ipAddressingMode="DHCP" ns13:primaryNetworkConnection="false">Localhost</rasd:Connection>
529
+ <rasd:ConsumerVisibility xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
530
+ <rasd:Description>PCNet32 ethernet adapter on "Localhost"</rasd:Description>
531
+ <rasd:ElementName>Network adapter 1</rasd:ElementName>
532
+ <rasd:Generation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
533
+ <rasd:InstanceID>2</rasd:InstanceID>
534
+ <rasd:Limit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
535
+ <rasd:MappingBehavior xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
536
+ <rasd:OtherResourceType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
537
+ <rasd:Parent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
538
+ <rasd:PoolID xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
539
+ <rasd:Reservation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
540
+ <rasd:ResourceSubType>PCNet32</rasd:ResourceSubType>
541
+ <rasd:ResourceType>10</rasd:ResourceType>
542
+ <rasd:VirtualQuantity xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
543
+ <rasd:VirtualQuantityUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
544
+ <rasd:Weight xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
545
+ </ovf:Item>
546
+ <ovf:Item>
547
+ <rasd:Address>0</rasd:Address>
548
+ <rasd:AddressOnParent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
549
+ <rasd:AllocationUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
550
+ <rasd:AutomaticAllocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
551
+ <rasd:AutomaticDeallocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
552
+ <rasd:Caption xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
553
+ <rasd:ChangeableType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
554
+ <rasd:ConfigurationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
555
+ <rasd:ConsumerVisibility xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
556
+ <rasd:Description>SCSI Controller</rasd:Description>
557
+ <rasd:ElementName>SCSI Controller 0</rasd:ElementName>
558
+ <rasd:Generation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
559
+ <rasd:InstanceID>3</rasd:InstanceID>
560
+ <rasd:Limit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
561
+ <rasd:MappingBehavior xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
562
+ <rasd:OtherResourceType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
563
+ <rasd:Parent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
564
+ <rasd:PoolID xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
565
+ <rasd:Reservation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
566
+ <rasd:ResourceSubType>lsilogicsas</rasd:ResourceSubType>
567
+ <rasd:ResourceType>6</rasd:ResourceType>
568
+ <rasd:VirtualQuantity xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
569
+ <rasd:VirtualQuantityUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
570
+ <rasd:Weight xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
571
+ </ovf:Item>
572
+ <ovf:Item>
573
+ <rasd:Address xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
574
+ <rasd:AddressOnParent>0</rasd:AddressOnParent>
575
+ <rasd:AllocationUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
576
+ <rasd:AutomaticAllocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
577
+ <rasd:AutomaticDeallocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
578
+ <rasd:Caption xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
579
+ <rasd:ChangeableType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
580
+ <rasd:ConfigurationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
581
+ <rasd:ConsumerVisibility xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
582
+ <rasd:Description>Hard disk</rasd:Description>
583
+ <rasd:ElementName>Hard disk 1</rasd:ElementName>
584
+ <rasd:Generation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
585
+ <rasd:HostResource ns13:storageProfileHref="https://VMWARE_CLOUD_HOST/api/vdcStorageProfile/c87b2a7c-fcab-4f8a-bef3-3ece59366c38" ns13:busType="6" ns13:busSubType="lsilogicsas" ns13:capacity="2048" ns13:iops="0" ns13:storageProfileOverrideVmDefault="false"></rasd:HostResource>
586
+ <rasd:InstanceID>2000</rasd:InstanceID>
587
+ <rasd:Limit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
588
+ <rasd:MappingBehavior xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
589
+ <rasd:OtherResourceType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
590
+ <rasd:Parent>3</rasd:Parent>
591
+ <rasd:PoolID xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
592
+ <rasd:Reservation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
593
+ <rasd:ResourceSubType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
594
+ <rasd:ResourceType>17</rasd:ResourceType>
595
+ <rasd:VirtualQuantity>2147483648</rasd:VirtualQuantity>
596
+ <rasd:VirtualQuantityUnits>byte</rasd:VirtualQuantityUnits>
597
+ <rasd:Weight xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
598
+ </ovf:Item>
599
+ <ovf:Item>
600
+ <rasd:Address>0</rasd:Address>
601
+ <rasd:AddressOnParent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
602
+ <rasd:AllocationUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
603
+ <rasd:AutomaticAllocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
604
+ <rasd:AutomaticDeallocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
605
+ <rasd:Caption xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
606
+ <rasd:ChangeableType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
607
+ <rasd:ConfigurationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
608
+ <rasd:ConsumerVisibility xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
609
+ <rasd:Description>IDE Controller</rasd:Description>
610
+ <rasd:ElementName>IDE Controller 0</rasd:ElementName>
611
+ <rasd:Generation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
612
+ <rasd:InstanceID>4</rasd:InstanceID>
613
+ <rasd:Limit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
614
+ <rasd:MappingBehavior xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
615
+ <rasd:OtherResourceType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
616
+ <rasd:Parent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
617
+ <rasd:PoolID xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
618
+ <rasd:Reservation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
619
+ <rasd:ResourceSubType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
620
+ <rasd:ResourceType>5</rasd:ResourceType>
621
+ <rasd:VirtualQuantity xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
622
+ <rasd:VirtualQuantityUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
623
+ <rasd:Weight xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
624
+ </ovf:Item>
625
+ <ovf:Item>
626
+ <rasd:Address xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
627
+ <rasd:AddressOnParent>0</rasd:AddressOnParent>
628
+ <rasd:AllocationUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
629
+ <rasd:AutomaticAllocation>false</rasd:AutomaticAllocation>
630
+ <rasd:AutomaticDeallocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
631
+ <rasd:Caption xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
632
+ <rasd:ChangeableType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
633
+ <rasd:ConfigurationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
634
+ <rasd:ConsumerVisibility xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
635
+ <rasd:Description>CD/DVD Drive</rasd:Description>
636
+ <rasd:ElementName>CD/DVD Drive 1</rasd:ElementName>
637
+ <rasd:Generation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
638
+ <rasd:HostResource></rasd:HostResource>
639
+ <rasd:InstanceID>3000</rasd:InstanceID>
640
+ <rasd:Limit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
641
+ <rasd:MappingBehavior xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
642
+ <rasd:OtherResourceType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
643
+ <rasd:Parent>4</rasd:Parent>
644
+ <rasd:PoolID xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
645
+ <rasd:Reservation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
646
+ <rasd:ResourceSubType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
647
+ <rasd:ResourceType>15</rasd:ResourceType>
648
+ <rasd:VirtualQuantity xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
649
+ <rasd:VirtualQuantityUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
650
+ <rasd:Weight xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
651
+ </ovf:Item>
652
+ <ovf:Item>
653
+ <rasd:Address xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
654
+ <rasd:AddressOnParent>0</rasd:AddressOnParent>
655
+ <rasd:AllocationUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
656
+ <rasd:AutomaticAllocation>false</rasd:AutomaticAllocation>
657
+ <rasd:AutomaticDeallocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
658
+ <rasd:Caption xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
659
+ <rasd:ChangeableType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
660
+ <rasd:ConfigurationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
661
+ <rasd:ConsumerVisibility xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
662
+ <rasd:Description>Floppy Drive</rasd:Description>
663
+ <rasd:ElementName>Floppy Drive 1</rasd:ElementName>
664
+ <rasd:Generation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
665
+ <rasd:HostResource></rasd:HostResource>
666
+ <rasd:InstanceID>8000</rasd:InstanceID>
667
+ <rasd:Limit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
668
+ <rasd:MappingBehavior xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
669
+ <rasd:OtherResourceType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
670
+ <rasd:Parent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
671
+ <rasd:PoolID xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
672
+ <rasd:Reservation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
673
+ <rasd:ResourceSubType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
674
+ <rasd:ResourceType>14</rasd:ResourceType>
675
+ <rasd:VirtualQuantity xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
676
+ <rasd:VirtualQuantityUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
677
+ <rasd:Weight xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
678
+ </ovf:Item>
679
+ <ovf:Item ns13:type="application/vnd.vmware.vcloud.rasdItem+xml" ns13:href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/virtualHardwareSection/cpu">
680
+ <rasd:Address xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
681
+ <rasd:AddressOnParent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
682
+ <rasd:AllocationUnits>hertz * 10^6</rasd:AllocationUnits>
683
+ <rasd:AutomaticAllocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
684
+ <rasd:AutomaticDeallocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
685
+ <rasd:Caption xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
686
+ <rasd:ChangeableType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
687
+ <rasd:ConfigurationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
688
+ <rasd:ConsumerVisibility xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
689
+ <rasd:Description>Number of Virtual CPUs</rasd:Description>
690
+ <rasd:ElementName>4 virtual CPU(s)</rasd:ElementName>
691
+ <rasd:Generation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
692
+ <rasd:InstanceID>5</rasd:InstanceID>
693
+ <rasd:Limit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
694
+ <rasd:MappingBehavior xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
695
+ <rasd:OtherResourceType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
696
+ <rasd:Parent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
697
+ <rasd:PoolID xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
698
+ <rasd:Reservation>0</rasd:Reservation>
699
+ <rasd:ResourceSubType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
700
+ <rasd:ResourceType>3</rasd:ResourceType>
701
+ <rasd:VirtualQuantity>4</rasd:VirtualQuantity>
702
+ <rasd:VirtualQuantityUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
703
+ <rasd:Weight>0</rasd:Weight>
704
+ <vmw:CoresPerSocket ovf:required="false">2</vmw:CoresPerSocket>
705
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/virtualHardwareSection/cpu" type="application/vnd.vmware.vcloud.rasdItem+xml"/>
706
+ </ovf:Item>
707
+ <ovf:Item ns13:type="application/vnd.vmware.vcloud.rasdItem+xml" ns13:href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/virtualHardwareSection/memory">
708
+ <rasd:Address xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
709
+ <rasd:AddressOnParent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
710
+ <rasd:AllocationUnits>byte * 2^20</rasd:AllocationUnits>
711
+ <rasd:AutomaticAllocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
712
+ <rasd:AutomaticDeallocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
713
+ <rasd:Caption xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
714
+ <rasd:ChangeableType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
715
+ <rasd:ConfigurationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
716
+ <rasd:ConsumerVisibility xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
717
+ <rasd:Description>Memory Size</rasd:Description>
718
+ <rasd:ElementName>1024 MB of memory</rasd:ElementName>
719
+ <rasd:Generation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
720
+ <rasd:InstanceID>6</rasd:InstanceID>
721
+ <rasd:Limit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
722
+ <rasd:MappingBehavior xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
723
+ <rasd:OtherResourceType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
724
+ <rasd:Parent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
725
+ <rasd:PoolID xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
726
+ <rasd:Reservation>0</rasd:Reservation>
727
+ <rasd:ResourceSubType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
728
+ <rasd:ResourceType>4</rasd:ResourceType>
729
+ <rasd:VirtualQuantity>1024</rasd:VirtualQuantity>
730
+ <rasd:VirtualQuantityUnits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
731
+ <rasd:Weight>0</rasd:Weight>
732
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/virtualHardwareSection/memory" type="application/vnd.vmware.vcloud.rasdItem+xml"/>
733
+ </ovf:Item>
734
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/virtualHardwareSection/" type="application/vnd.vmware.vcloud.virtualHardwareSection+xml"/>
735
+ <Link rel="down" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/virtualHardwareSection/cpu" type="application/vnd.vmware.vcloud.rasdItem+xml"/>
736
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/virtualHardwareSection/cpu" type="application/vnd.vmware.vcloud.rasdItem+xml"/>
737
+ <Link rel="down" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/virtualHardwareSection/memory" type="application/vnd.vmware.vcloud.rasdItem+xml"/>
738
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/virtualHardwareSection/memory" type="application/vnd.vmware.vcloud.rasdItem+xml"/>
739
+ <Link rel="down" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/virtualHardwareSection/disks" type="application/vnd.vmware.vcloud.rasdItemsList+xml"/>
740
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/virtualHardwareSection/disks" type="application/vnd.vmware.vcloud.rasdItemsList+xml"/>
741
+ <Link rel="down" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/virtualHardwareSection/media" type="application/vnd.vmware.vcloud.rasdItemsList+xml"/>
742
+ <Link rel="down" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/virtualHardwareSection/networkCards" type="application/vnd.vmware.vcloud.rasdItemsList+xml"/>
743
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/virtualHardwareSection/networkCards" type="application/vnd.vmware.vcloud.rasdItemsList+xml"/>
744
+ <Link rel="down" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/virtualHardwareSection/serialPorts" type="application/vnd.vmware.vcloud.rasdItemsList+xml"/>
745
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/virtualHardwareSection/serialPorts" type="application/vnd.vmware.vcloud.rasdItemsList+xml"/>
746
+ </ovf:VirtualHardwareSection>
747
+ <ovf:OperatingSystemSection xmlns:ns13="http://www.vmware.com/vcloud/v1.5" ovf:id="102" ns13:type="application/vnd.vmware.vcloud.operatingSystemSection+xml" vmw:osType="windows9Server64Guest" ns13:href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/operatingSystemSection/">
748
+ <ovf:Info>Specifies the operating system installed</ovf:Info>
749
+ <ovf:Description>Microsoft Windows Server 2016 (64-bit)</ovf:Description>
750
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/operatingSystemSection/" type="application/vnd.vmware.vcloud.operatingSystemSection+xml"/>
751
+ </ovf:OperatingSystemSection>
752
+ <NetworkConnectionSection href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/networkConnectionSection/" type="application/vnd.vmware.vcloud.networkConnectionSection+xml" ovf:required="false">
753
+ <ovf:Info>Specifies the available VM network connections</ovf:Info>
754
+ <PrimaryNetworkConnectionIndex>0</PrimaryNetworkConnectionIndex>
755
+ <NetworkConnection needsCustomization="false" network="RedHat Private network 43">
756
+ <NetworkConnectionIndex>0</NetworkConnectionIndex>
757
+ <IsConnected>true</IsConnected>
758
+ <MACAddress>00:50:56:01:01:2a</MACAddress>
759
+ <IpAddressAllocationMode>DHCP</IpAddressAllocationMode>
760
+ <NetworkAdapterType>PCNet32</NetworkAdapterType>
761
+ </NetworkConnection>
762
+ <NetworkConnection needsCustomization="false" network="Localhost">
763
+ <NetworkConnectionIndex>1</NetworkConnectionIndex>
764
+ <IsConnected>true</IsConnected>
765
+ <MACAddress>00:50:56:01:01:2b</MACAddress>
766
+ <IpAddressAllocationMode>DHCP</IpAddressAllocationMode>
767
+ <NetworkAdapterType>PCNet32</NetworkAdapterType>
768
+ </NetworkConnection>
769
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/networkConnectionSection/" type="application/vnd.vmware.vcloud.networkConnectionSection+xml"/>
770
+ </NetworkConnectionSection>
771
+ <GuestCustomizationSection href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/guestCustomizationSection/" type="application/vnd.vmware.vcloud.guestCustomizationSection+xml" ovf:required="false">
772
+ <ovf:Info>Specifies Guest OS Customization Settings</ovf:Info>
773
+ <Enabled>false</Enabled>
774
+ <ChangeSid>true</ChangeSid>
775
+ <VirtualMachineId>314172f1-1835-4598-b049-5c1d4dce39ad</VirtualMachineId>
776
+ <JoinDomainEnabled>false</JoinDomainEnabled>
777
+ <UseOrgSettings>false</UseOrgSettings>
778
+ <AdminPasswordEnabled>true</AdminPasswordEnabled>
779
+ <AdminPasswordAuto>true</AdminPasswordAuto>
780
+ <AdminAutoLogonEnabled>false</AdminAutoLogonEnabled>
781
+ <AdminAutoLogonCount>0</AdminAutoLogonCount>
782
+ <ResetPasswordRequired>false</ResetPasswordRequired>
783
+ <ComputerName>web-vm</ComputerName>
784
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/guestCustomizationSection/" type="application/vnd.vmware.vcloud.guestCustomizationSection+xml"/>
785
+ </GuestCustomizationSection>
786
+ <RuntimeInfoSection xmlns:ns13="http://www.vmware.com/vcloud/v1.5" ns13:type="application/vnd.vmware.vcloud.virtualHardwareSection+xml" ns13:href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/runtimeInfoSection">
787
+ <ovf:Info>Specifies Runtime info</ovf:Info>
788
+ </RuntimeInfoSection>
789
+ <SnapshotSection href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/snapshotSection" type="application/vnd.vmware.vcloud.snapshotSection+xml" ovf:required="false">
790
+ <ovf:Info>Snapshot information section</ovf:Info>
791
+ <Snapshot created="2018-04-16T09:36:59.459+02:00" poweredOn="false" size="4294967296"/>
792
+ </SnapshotSection>
793
+ <DateCreated>2018-04-16T09:13:25.431+02:00</DateCreated>
794
+ <VAppScopedLocalId>64dfd25a-1414-455f-8506-9d8e4fe86eb4</VAppScopedLocalId>
795
+ <VmCapabilities href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/vmCapabilities/" type="application/vnd.vmware.vcloud.vmCapabilitiesSection+xml">
796
+ <Link rel="edit" href="https://VMWARE_CLOUD_HOST/api/vApp/vm-314172f1-1835-4598-b049-5c1d4dce39ad/vmCapabilities/" type="application/vnd.vmware.vcloud.vmCapabilitiesSection+xml"/>
797
+ <MemoryHotAddEnabled>false</MemoryHotAddEnabled>
798
+ <CpuHotAddEnabled>false</CpuHotAddEnabled>
799
+ </VmCapabilities>
800
+ <StorageProfile href="https://VMWARE_CLOUD_HOST/api/vdcStorageProfile/c87b2a7c-fcab-4f8a-bef3-3ece59366c38" name="*" type="application/vnd.vmware.vcloud.vdcStorageProfile+xml"/>
801
+ </Vm>
802
+ </Children>
803
+ </VApp>
804
+ http_version:
805
+ recorded_at: Tue, 22 May 2018 12:13:45 GMT
806
+ recorded_with: VCR 4.0.0