fog-vsphere 3.6.5 → 3.6.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (89) hide show
  1. checksums.yaml +4 -4
  2. data/lib/fog/vsphere/compute.rb +12 -0
  3. data/lib/fog/vsphere/models/compute/nvmecontroller.rb +24 -0
  4. data/lib/fog/vsphere/models/compute/scsicontroller.rb +5 -1
  5. data/lib/fog/vsphere/models/compute/server.rb +33 -18
  6. data/lib/fog/vsphere/models/compute/volume.rb +1 -2
  7. data/lib/fog/vsphere/requests/compute/create_vm.rb +11 -4
  8. data/lib/fog/vsphere/requests/compute/get_vm_first_nvme_controller.rb +21 -0
  9. data/lib/fog/vsphere/requests/compute/list_vm_nvme_controllers.rb +29 -0
  10. data/lib/fog/vsphere/requests/compute/vm_clone.rb +1 -1
  11. data/lib/fog/vsphere/version.rb +1 -1
  12. data/tests/class_from_string_tests.rb +33 -0
  13. data/tests/compute_tests.rb +53 -0
  14. data/tests/fixtures/vcr_cassettes/6_7/create_folder.yml +609 -0
  15. data/tests/fixtures/vcr_cassettes/6_7/folder_destroy.yml +823 -0
  16. data/tests/fixtures/vcr_cassettes/6_7/get_cluster.yml +663 -0
  17. data/tests/fixtures/vcr_cassettes/6_7/get_compute_resource.yml +1046 -0
  18. data/tests/fixtures/vcr_cassettes/6_7/get_datacenter.yml +498 -0
  19. data/tests/fixtures/vcr_cassettes/6_7/get_folder.yml +2038 -0
  20. data/tests/fixtures/vcr_cassettes/6_7/get_host.yml +386 -0
  21. data/tests/fixtures/vcr_cassettes/6_7/get_network.yml +932 -0
  22. data/tests/fixtures/vcr_cassettes/6_7/get_storage_pod.yml +225 -0
  23. data/tests/fixtures/vcr_cassettes/6_7/get_template.yml +329 -0
  24. data/tests/fixtures/vcr_cassettes/6_7/get_virtual_machine.yml +329 -0
  25. data/tests/fixtures/vcr_cassettes/6_7/get_vm_first_nvme_controller.yml +105 -0
  26. data/tests/fixtures/vcr_cassettes/6_7/get_vm_first_sata_controller.yml +209 -0
  27. data/tests/fixtures/vcr_cassettes/6_7/get_vm_first_scsi_controller.yml +111 -0
  28. data/tests/fixtures/vcr_cassettes/6_7/shared.yml +164 -0
  29. data/tests/helper.rb +6 -0
  30. data/tests/helpers/mock_helper.rb +9 -0
  31. data/tests/models/compute/cluster_tests.rb +18 -0
  32. data/tests/models/compute/hosts_tests.rb +11 -0
  33. data/tests/models/compute/rules_tests.rb +28 -0
  34. data/tests/models/compute/server_tests.rb +74 -0
  35. data/tests/models/compute/server_unit_tests.rb +13 -0
  36. data/tests/models/compute/servers_tests.rb +14 -0
  37. data/tests/models/compute/ticket_tests.rb +12 -0
  38. data/tests/models/compute/tickets_tests.rb +8 -0
  39. data/tests/requests/compute/create_folder_tests.rb +19 -0
  40. data/tests/requests/compute/current_time_tests.rb +10 -0
  41. data/tests/requests/compute/folder_destroy_tests.rb +39 -0
  42. data/tests/requests/compute/get_cluster_tests.rb +19 -0
  43. data/tests/requests/compute/get_compute_resource_tests.rb +19 -0
  44. data/tests/requests/compute/get_datacenter_tests.rb +19 -0
  45. data/tests/requests/compute/get_folder_tests.rb +28 -0
  46. data/tests/requests/compute/get_host_tests.rb +19 -0
  47. data/tests/requests/compute/get_network_tests.rb +78 -0
  48. data/tests/requests/compute/get_storage_pod_tests.rb +19 -0
  49. data/tests/requests/compute/get_template_tests.rb +19 -0
  50. data/tests/requests/compute/get_virtual_machine_tests.rb +19 -0
  51. data/tests/requests/compute/get_vm_first_nvme_controller_tests.rb +19 -0
  52. data/tests/requests/compute/get_vm_first_sata_controller_tests.rb +19 -0
  53. data/tests/requests/compute/get_vm_first_scsi_controller_tests.rb +19 -0
  54. data/tests/requests/compute/list_child_snapshots_tests.rb +9 -0
  55. data/tests/requests/compute/list_clusters_tests.rb +10 -0
  56. data/tests/requests/compute/list_datastores_tests.rb +17 -0
  57. data/tests/requests/compute/list_hosts_tests.rb +10 -0
  58. data/tests/requests/compute/list_networks_tests.rb +17 -0
  59. data/tests/requests/compute/list_storage_pods_test.rb +9 -0
  60. data/tests/requests/compute/list_virtual_machines_tests.rb +34 -0
  61. data/tests/requests/compute/list_vm_cdroms_tests.rb +9 -0
  62. data/tests/requests/compute/list_vm_snapshots_tests.rb +9 -0
  63. data/tests/requests/compute/modify_vm_cdrom_tests.rb +20 -0
  64. data/tests/requests/compute/revert_to_snapshot_tests.rb +13 -0
  65. data/tests/requests/compute/set_vm_customvalue_tests.rb +18 -0
  66. data/tests/requests/compute/update_vm_tests.rb +13 -0
  67. data/tests/requests/compute/vm_clone_tests.rb +55 -0
  68. data/tests/requests/compute/vm_config_vnc_tests.rb +18 -0
  69. data/tests/requests/compute/vm_destroy_tests.rb +14 -0
  70. data/tests/requests/compute/vm_migrate_tests.rb +15 -0
  71. data/tests/requests/compute/vm_power_off_tests.rb +24 -0
  72. data/tests/requests/compute/vm_power_on_tests.rb +15 -0
  73. data/tests/requests/compute/vm_reboot_tests.rb +24 -0
  74. data/tests/requests/compute/vm_reconfig_cdrom_tests.rb +14 -0
  75. data/tests/requests/compute/vm_reconfig_cpus_tests.rb +17 -0
  76. data/tests/requests/compute/vm_reconfig_hardware_tests.rb +17 -0
  77. data/tests/requests/compute/vm_reconfig_memory_tests.rb +17 -0
  78. data/tests/requests/compute/vm_suspend_tests.rb +23 -0
  79. data/tests/requests/compute/vm_take_snapshot_tests.rb +17 -0
  80. data/tests/test_helper.rb +74 -0
  81. metadata +152 -19
  82. data/.github/workflows/ruby.yml +0 -42
  83. data/.gitignore +0 -25
  84. data/.rubocop.yml +0 -44
  85. data/.rubocop_todo.yml +0 -614
  86. data/CONTRIBUTING.md +0 -55
  87. data/Gemfile +0 -5
  88. data/Jenkinsfile +0 -10
  89. data/fog-vsphere.gemspec +0 -39
@@ -0,0 +1,1046 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://<%= vsphere_server %>/sdk
6
+ body:
7
+ encoding: UTF-8
8
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
9
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
10
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
11
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>Folder</type><pathSet>childEntity</pathSet></propSet><objectSet
12
+ xsi:type="ObjectSpec"><obj type="Folder">group-d1</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
13
+ headers:
14
+ Content-Type:
15
+ - text/xml; charset=utf-8
16
+ Soapaction:
17
+ - urn:vim25/6.7
18
+ Cookie:
19
+ - vmware_soap_session="aa2262351ec6a2f6bd2f6b65ebfa48d0de3dcb3f"; Path=/; HttpOnly;
20
+ Secure;
21
+ Accept-Encoding:
22
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
23
+ Accept:
24
+ - "*/*"
25
+ User-Agent:
26
+ - Ruby
27
+ response:
28
+ status:
29
+ code: 200
30
+ message: OK
31
+ headers:
32
+ Date:
33
+ - Tue, 16 Apr 2019 14:03:52 GMT
34
+ Cache-Control:
35
+ - no-cache
36
+ Connection:
37
+ - Keep-Alive
38
+ Content-Type:
39
+ - text/xml; charset=utf-8
40
+ X-Frame-Options:
41
+ - DENY
42
+ Content-Length:
43
+ - '666'
44
+ body:
45
+ encoding: UTF-8
46
+ string: |-
47
+ <?xml version="1.0" encoding="UTF-8"?>
48
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
49
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
50
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
51
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
52
+ <soapenv:Body>
53
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Folder">group-d1</obj><propSet><name>childEntity</name><val xsi:type="ArrayOfManagedObjectReference"><ManagedObjectReference type="Datacenter" xsi:type="ManagedObjectReference">datacenter-2</ManagedObjectReference></val></propSet></returnval></RetrievePropertiesResponse>
54
+ </soapenv:Body>
55
+ </soapenv:Envelope>
56
+ http_version:
57
+ recorded_at: Tue, 16 Apr 2019 14:03:52 GMT
58
+ - request:
59
+ method: post
60
+ uri: https://<%= vsphere_server %>/sdk
61
+ body:
62
+ encoding: UTF-8
63
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
64
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
65
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
66
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>Datacenter</type><pathSet>name</pathSet></propSet><objectSet
67
+ xsi:type="ObjectSpec"><obj type="Datacenter">datacenter-2</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
68
+ headers:
69
+ Content-Type:
70
+ - text/xml; charset=utf-8
71
+ Soapaction:
72
+ - urn:vim25/6.7
73
+ Cookie:
74
+ - vmware_soap_session="aa2262351ec6a2f6bd2f6b65ebfa48d0de3dcb3f"; Path=/; HttpOnly;
75
+ Secure;
76
+ Accept-Encoding:
77
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
78
+ Accept:
79
+ - "*/*"
80
+ User-Agent:
81
+ - Ruby
82
+ response:
83
+ status:
84
+ code: 200
85
+ message: OK
86
+ headers:
87
+ Date:
88
+ - Tue, 16 Apr 2019 14:03:52 GMT
89
+ Cache-Control:
90
+ - no-cache
91
+ Connection:
92
+ - Keep-Alive
93
+ Content-Type:
94
+ - text/xml; charset=utf-8
95
+ X-Frame-Options:
96
+ - DENY
97
+ Content-Length:
98
+ - '538'
99
+ body:
100
+ encoding: UTF-8
101
+ string: |-
102
+ <?xml version="1.0" encoding="UTF-8"?>
103
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
104
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
105
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
106
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
107
+ <soapenv:Body>
108
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Datacenter">datacenter-2</obj><propSet><name>name</name><val xsi:type="xsd:string">BRQ</val></propSet></returnval></RetrievePropertiesResponse>
109
+ </soapenv:Body>
110
+ </soapenv:Envelope>
111
+ http_version:
112
+ recorded_at: Tue, 16 Apr 2019 14:03:52 GMT
113
+ - request:
114
+ method: post
115
+ uri: https://<%= vsphere_server %>/sdk
116
+ body:
117
+ encoding: UTF-8
118
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
119
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
120
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
121
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>Datacenter</type><pathSet>hostFolder</pathSet></propSet><objectSet
122
+ xsi:type="ObjectSpec"><obj type="Datacenter">datacenter-2</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
123
+ headers:
124
+ Content-Type:
125
+ - text/xml; charset=utf-8
126
+ Soapaction:
127
+ - urn:vim25/6.7
128
+ Cookie:
129
+ - vmware_soap_session="aa2262351ec6a2f6bd2f6b65ebfa48d0de3dcb3f"; Path=/; HttpOnly;
130
+ Secure;
131
+ Accept-Encoding:
132
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
133
+ Accept:
134
+ - "*/*"
135
+ User-Agent:
136
+ - Ruby
137
+ response:
138
+ status:
139
+ code: 200
140
+ message: OK
141
+ headers:
142
+ Date:
143
+ - Tue, 16 Apr 2019 14:03:52 GMT
144
+ Cache-Control:
145
+ - no-cache
146
+ Connection:
147
+ - Keep-Alive
148
+ Content-Type:
149
+ - text/xml; charset=utf-8
150
+ X-Frame-Options:
151
+ - DENY
152
+ Content-Length:
153
+ - '575'
154
+ body:
155
+ encoding: UTF-8
156
+ string: |-
157
+ <?xml version="1.0" encoding="UTF-8"?>
158
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
159
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
160
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
161
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
162
+ <soapenv:Body>
163
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Datacenter">datacenter-2</obj><propSet><name>hostFolder</name><val type="Folder" xsi:type="ManagedObjectReference">group-h4</val></propSet></returnval></RetrievePropertiesResponse>
164
+ </soapenv:Body>
165
+ </soapenv:Envelope>
166
+ http_version:
167
+ recorded_at: Tue, 16 Apr 2019 14:03:52 GMT
168
+ - request:
169
+ method: post
170
+ uri: https://<%= vsphere_server %>/sdk
171
+ body:
172
+ encoding: UTF-8
173
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
174
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><FindChild
175
+ xmlns="urn:vim25"><_this type="SearchIndex">SearchIndex</_this><entity type="Folder">group-h4</entity><name>esxi.example.com</name></FindChild></env:Body></env:Envelope>
176
+ headers:
177
+ Content-Type:
178
+ - text/xml; charset=utf-8
179
+ Soapaction:
180
+ - urn:vim25/6.7
181
+ Cookie:
182
+ - vmware_soap_session="aa2262351ec6a2f6bd2f6b65ebfa48d0de3dcb3f"; Path=/; HttpOnly;
183
+ Secure;
184
+ Accept-Encoding:
185
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
186
+ Accept:
187
+ - "*/*"
188
+ User-Agent:
189
+ - Ruby
190
+ response:
191
+ status:
192
+ code: 200
193
+ message: OK
194
+ headers:
195
+ Date:
196
+ - Tue, 16 Apr 2019 14:03:52 GMT
197
+ Cache-Control:
198
+ - no-cache
199
+ Connection:
200
+ - Keep-Alive
201
+ Content-Type:
202
+ - text/xml; charset=utf-8
203
+ X-Frame-Options:
204
+ - DENY
205
+ Content-Length:
206
+ - '439'
207
+ body:
208
+ encoding: UTF-8
209
+ string: |-
210
+ <?xml version="1.0" encoding="UTF-8"?>
211
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
212
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
213
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
214
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
215
+ <soapenv:Body>
216
+ <FindChildResponse xmlns="urn:vim25"><returnval type="ComputeResource">domain-s7</returnval></FindChildResponse>
217
+ </soapenv:Body>
218
+ </soapenv:Envelope>
219
+ http_version:
220
+ recorded_at: Tue, 16 Apr 2019 14:03:52 GMT
221
+ - request:
222
+ method: post
223
+ uri: https://<%= vsphere_server %>/sdk
224
+ body:
225
+ encoding: UTF-8
226
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
227
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
228
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
229
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>ComputeResource</type><pathSet>host</pathSet></propSet><objectSet
230
+ xsi:type="ObjectSpec"><obj type="ComputeResource">domain-s7</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
231
+ headers:
232
+ Content-Type:
233
+ - text/xml; charset=utf-8
234
+ Soapaction:
235
+ - urn:vim25/6.7
236
+ Cookie:
237
+ - vmware_soap_session="aa2262351ec6a2f6bd2f6b65ebfa48d0de3dcb3f"; Path=/; HttpOnly;
238
+ Secure;
239
+ Accept-Encoding:
240
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
241
+ Accept:
242
+ - "*/*"
243
+ User-Agent:
244
+ - Ruby
245
+ response:
246
+ status:
247
+ code: 200
248
+ message: OK
249
+ headers:
250
+ Date:
251
+ - Tue, 16 Apr 2019 14:03:52 GMT
252
+ Cache-Control:
253
+ - no-cache
254
+ Connection:
255
+ - Keep-Alive
256
+ Content-Type:
257
+ - text/xml; charset=utf-8
258
+ X-Frame-Options:
259
+ - DENY
260
+ Content-Length:
261
+ - '663'
262
+ body:
263
+ encoding: UTF-8
264
+ string: |-
265
+ <?xml version="1.0" encoding="UTF-8"?>
266
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
267
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
268
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
269
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
270
+ <soapenv:Body>
271
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="ComputeResource">domain-s7</obj><propSet><name>host</name><val xsi:type="ArrayOfManagedObjectReference"><ManagedObjectReference type="HostSystem" xsi:type="ManagedObjectReference">host-9</ManagedObjectReference></val></propSet></returnval></RetrievePropertiesResponse>
272
+ </soapenv:Body>
273
+ </soapenv:Envelope>
274
+ http_version:
275
+ recorded_at: Tue, 16 Apr 2019 14:03:52 GMT
276
+ - request:
277
+ method: post
278
+ uri: https://<%= vsphere_server %>/sdk
279
+ body:
280
+ encoding: UTF-8
281
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
282
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
283
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
284
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>HostSystem</type><pathSet>summary</pathSet></propSet><objectSet
285
+ xsi:type="ObjectSpec"><obj type="HostSystem">host-9</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
286
+ headers:
287
+ Content-Type:
288
+ - text/xml; charset=utf-8
289
+ Soapaction:
290
+ - urn:vim25/6.7
291
+ Cookie:
292
+ - vmware_soap_session="aa2262351ec6a2f6bd2f6b65ebfa48d0de3dcb3f"; Path=/; HttpOnly;
293
+ Secure;
294
+ Accept-Encoding:
295
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
296
+ Accept:
297
+ - "*/*"
298
+ User-Agent:
299
+ - Ruby
300
+ response:
301
+ status:
302
+ code: 200
303
+ message: OK
304
+ headers:
305
+ Date:
306
+ - Tue, 16 Apr 2019 14:03:52 GMT
307
+ Cache-Control:
308
+ - no-cache
309
+ Connection:
310
+ - Keep-Alive
311
+ Content-Type:
312
+ - text/xml; charset=utf-8
313
+ X-Frame-Options:
314
+ - DENY
315
+ Content-Length:
316
+ - '4167'
317
+ body:
318
+ encoding: UTF-8
319
+ string: |-
320
+ <?xml version="1.0" encoding="UTF-8"?>
321
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
322
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
323
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
324
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
325
+ <soapenv:Body>
326
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="HostSystem">host-9</obj><propSet><name>summary</name><val xsi:type="HostListSummary"><host type="HostSystem">host-9</host><hardware><vendor>Hewlett-Packard</vendor><model>HP Z420 Workstation</model><uuid>c369ff00-0fe4-11e2-9ef4-b4b52fc3b9b4</uuid><otherIdentifyingInfo><identifierValue>CZC24222JP</identifierValue><identifierType><label>Asset Tag</label><summary>Asset tag of the system</summary><key>AssetTag</key></identifierType></otherIdentifyingInfo><otherIdentifyingInfo><identifierValue>CZC24222JP</identifierValue><identifierType><label>Service tag</label><summary>Service tag of the system</summary><key>ServiceTag</key></identifierType></otherIdentifyingInfo><otherIdentifyingInfo><identifierValue>ABS 70/71 60 61 62 63</identifierValue><identifierType><label>OEM specific string</label><summary>OEM specific string</summary><key>OemSpecificString</key></identifierType></otherIdentifyingInfo><otherIdentifyingInfo><identifierValue>FBYTE#3Q3X3Z3m47676J6Q6b7N7Q7U7W7a8J8h9Y.DR;</identifierValue><identifierType><label>OEM specific string</label><summary>OEM specific string</summary><key>OemSpecificString</key></identifierType></otherIdentifyingInfo><otherIdentifyingInfo><identifierValue>BUILDID#11WWVACW601#SABD#DABD;</identifierValue><identifierType><label>OEM specific string</label><summary>OEM specific string</summary><key>OemSpecificString</key></identifierType></otherIdentifyingInfo><memorySize>17105813504</memorySize><cpuModel>Intel(R) Xeon(R) CPU E5-1620 0 @ 3.60GHz</cpuModel><cpuMhz>3591</cpuMhz><numCpuPkgs>1</numCpuPkgs><numCpuCores>4</numCpuCores><numCpuThreads>8</numCpuThreads><numNics>2</numNics><numHBAs>2</numHBAs></hardware><runtime><connectionState>connected</connectionState><powerState>poweredOn</powerState><standbyMode>none</standbyMode><inMaintenanceMode>false</inMaintenanceMode><inQuarantineMode>false</inQuarantineMode><bootTime>2019-04-09T11:42:27.654069Z</bootTime><healthSystemRuntime><systemHealthInfo></systemHealthInfo><hardwareStatusInfo></hardwareStatusInfo></healthSystemRuntime><vsanRuntimeInfo><accessGenNo>0</accessGenNo></vsanRuntimeInfo><networkRuntimeInfo><netStackInstanceRuntimeInfo><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><state>active</state><vmknicKeys>vmk0</vmknicKeys><maxNumberOfConnections>11000</maxNumberOfConnections><currentIpV6Enabled>true</currentIpV6Enabled></netStackInstanceRuntimeInfo></networkRuntimeInfo><hostMaxVirtualDiskCapacity>68169720922112</hostMaxVirtualDiskCapacity><cryptoState>incapable</cryptoState></runtime><config><name>esxi.example.com</name><port>443</port><sslThumbprint>B3:11:B1:4F:61:3A:EE:67:AC:77:46:5F:7C:F9:AE:BB:B5:3F:C3:9F</sslThumbprint><product><name>VMware ESXi</name><fullName>VMware ESXi 6.7.0 build-8169922</fullName><vendor>VMware, Inc.</vendor><version>6.7.0</version><build>8169922</build><localeVersion>INTL</localeVersion><localeBuild>000</localeBuild><osType>vmnix-x86</osType><productLineId>embeddedEsx</productLineId><apiType>HostAgent</apiType><apiVersion>6.7</apiVersion><licenseProductName>VMware ESX Server</licenseProductName><licenseProductVersion>6.0</licenseProductVersion></product><vmotionEnabled>false</vmotionEnabled><faultToleranceEnabled>false</faultToleranceEnabled></config><quickStats><overallCpuUsage>353</overallCpuUsage><overallMemoryUsage>13903</overallMemoryUsage><distributedCpuFairness>-1</distributedCpuFairness><distributedMemoryFairness>-1</distributedMemoryFairness><availablePMemCapacity>0</availablePMemCapacity><uptime>613233</uptime></quickStats><overallStatus>green</overallStatus><rebootRequired>false</rebootRequired><managementServerIp>10.43.134.89</managementServerIp><maxEVCModeKey>intel-sandybridge</maxEVCModeKey></val></propSet></returnval></RetrievePropertiesResponse>
327
+ </soapenv:Body>
328
+ </soapenv:Envelope>
329
+ http_version:
330
+ recorded_at: Tue, 16 Apr 2019 14:03:52 GMT
331
+ - request:
332
+ method: post
333
+ uri: https://<%= vsphere_server %>/sdk
334
+ body:
335
+ encoding: UTF-8
336
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
337
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
338
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
339
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>HostSystem</type><pathSet>summary</pathSet></propSet><objectSet
340
+ xsi:type="ObjectSpec"><obj type="HostSystem">host-9</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
341
+ headers:
342
+ Content-Type:
343
+ - text/xml; charset=utf-8
344
+ Soapaction:
345
+ - urn:vim25/6.7
346
+ Cookie:
347
+ - vmware_soap_session="aa2262351ec6a2f6bd2f6b65ebfa48d0de3dcb3f"; Path=/; HttpOnly;
348
+ Secure;
349
+ Accept-Encoding:
350
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
351
+ Accept:
352
+ - "*/*"
353
+ User-Agent:
354
+ - Ruby
355
+ response:
356
+ status:
357
+ code: 200
358
+ message: OK
359
+ headers:
360
+ Date:
361
+ - Tue, 16 Apr 2019 14:03:52 GMT
362
+ Cache-Control:
363
+ - no-cache
364
+ Connection:
365
+ - Keep-Alive
366
+ Content-Type:
367
+ - text/xml; charset=utf-8
368
+ X-Frame-Options:
369
+ - DENY
370
+ Content-Length:
371
+ - '4167'
372
+ body:
373
+ encoding: UTF-8
374
+ string: |-
375
+ <?xml version="1.0" encoding="UTF-8"?>
376
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
377
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
378
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
379
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
380
+ <soapenv:Body>
381
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="HostSystem">host-9</obj><propSet><name>summary</name><val xsi:type="HostListSummary"><host type="HostSystem">host-9</host><hardware><vendor>Hewlett-Packard</vendor><model>HP Z420 Workstation</model><uuid>c369ff00-0fe4-11e2-9ef4-b4b52fc3b9b4</uuid><otherIdentifyingInfo><identifierValue>CZC24222JP</identifierValue><identifierType><label>Asset Tag</label><summary>Asset tag of the system</summary><key>AssetTag</key></identifierType></otherIdentifyingInfo><otherIdentifyingInfo><identifierValue>CZC24222JP</identifierValue><identifierType><label>Service tag</label><summary>Service tag of the system</summary><key>ServiceTag</key></identifierType></otherIdentifyingInfo><otherIdentifyingInfo><identifierValue>ABS 70/71 60 61 62 63</identifierValue><identifierType><label>OEM specific string</label><summary>OEM specific string</summary><key>OemSpecificString</key></identifierType></otherIdentifyingInfo><otherIdentifyingInfo><identifierValue>FBYTE#3Q3X3Z3m47676J6Q6b7N7Q7U7W7a8J8h9Y.DR;</identifierValue><identifierType><label>OEM specific string</label><summary>OEM specific string</summary><key>OemSpecificString</key></identifierType></otherIdentifyingInfo><otherIdentifyingInfo><identifierValue>BUILDID#11WWVACW601#SABD#DABD;</identifierValue><identifierType><label>OEM specific string</label><summary>OEM specific string</summary><key>OemSpecificString</key></identifierType></otherIdentifyingInfo><memorySize>17105813504</memorySize><cpuModel>Intel(R) Xeon(R) CPU E5-1620 0 @ 3.60GHz</cpuModel><cpuMhz>3591</cpuMhz><numCpuPkgs>1</numCpuPkgs><numCpuCores>4</numCpuCores><numCpuThreads>8</numCpuThreads><numNics>2</numNics><numHBAs>2</numHBAs></hardware><runtime><connectionState>connected</connectionState><powerState>poweredOn</powerState><standbyMode>none</standbyMode><inMaintenanceMode>false</inMaintenanceMode><inQuarantineMode>false</inQuarantineMode><bootTime>2019-04-09T11:42:27.654069Z</bootTime><healthSystemRuntime><systemHealthInfo></systemHealthInfo><hardwareStatusInfo></hardwareStatusInfo></healthSystemRuntime><vsanRuntimeInfo><accessGenNo>0</accessGenNo></vsanRuntimeInfo><networkRuntimeInfo><netStackInstanceRuntimeInfo><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><state>active</state><vmknicKeys>vmk0</vmknicKeys><maxNumberOfConnections>11000</maxNumberOfConnections><currentIpV6Enabled>true</currentIpV6Enabled></netStackInstanceRuntimeInfo></networkRuntimeInfo><hostMaxVirtualDiskCapacity>68169720922112</hostMaxVirtualDiskCapacity><cryptoState>incapable</cryptoState></runtime><config><name>esxi.example.com</name><port>443</port><sslThumbprint>B3:11:B1:4F:61:3A:EE:67:AC:77:46:5F:7C:F9:AE:BB:B5:3F:C3:9F</sslThumbprint><product><name>VMware ESXi</name><fullName>VMware ESXi 6.7.0 build-8169922</fullName><vendor>VMware, Inc.</vendor><version>6.7.0</version><build>8169922</build><localeVersion>INTL</localeVersion><localeBuild>000</localeBuild><osType>vmnix-x86</osType><productLineId>embeddedEsx</productLineId><apiType>HostAgent</apiType><apiVersion>6.7</apiVersion><licenseProductName>VMware ESX Server</licenseProductName><licenseProductVersion>6.0</licenseProductVersion></product><vmotionEnabled>false</vmotionEnabled><faultToleranceEnabled>false</faultToleranceEnabled></config><quickStats><overallCpuUsage>353</overallCpuUsage><overallMemoryUsage>13903</overallMemoryUsage><distributedCpuFairness>-1</distributedCpuFairness><distributedMemoryFairness>-1</distributedMemoryFairness><availablePMemCapacity>0</availablePMemCapacity><uptime>613233</uptime></quickStats><overallStatus>green</overallStatus><rebootRequired>false</rebootRequired><managementServerIp>10.43.134.89</managementServerIp><maxEVCModeKey>intel-sandybridge</maxEVCModeKey></val></propSet></returnval></RetrievePropertiesResponse>
382
+ </soapenv:Body>
383
+ </soapenv:Envelope>
384
+ http_version:
385
+ recorded_at: Tue, 16 Apr 2019 14:03:52 GMT
386
+ - request:
387
+ method: post
388
+ uri: https://<%= vsphere_server %>/sdk
389
+ body:
390
+ encoding: UTF-8
391
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
392
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
393
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
394
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>ComputeResource</type><pathSet>name</pathSet></propSet><objectSet
395
+ xsi:type="ObjectSpec"><obj type="ComputeResource">domain-s7</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
396
+ headers:
397
+ Content-Type:
398
+ - text/xml; charset=utf-8
399
+ Soapaction:
400
+ - urn:vim25/6.7
401
+ Cookie:
402
+ - vmware_soap_session="aa2262351ec6a2f6bd2f6b65ebfa48d0de3dcb3f"; Path=/; HttpOnly;
403
+ Secure;
404
+ Accept-Encoding:
405
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
406
+ Accept:
407
+ - "*/*"
408
+ User-Agent:
409
+ - Ruby
410
+ response:
411
+ status:
412
+ code: 200
413
+ message: OK
414
+ headers:
415
+ Date:
416
+ - Tue, 16 Apr 2019 14:03:52 GMT
417
+ Cache-Control:
418
+ - no-cache
419
+ Connection:
420
+ - Keep-Alive
421
+ Content-Type:
422
+ - text/xml; charset=utf-8
423
+ X-Frame-Options:
424
+ - DENY
425
+ Content-Length:
426
+ - '576'
427
+ body:
428
+ encoding: UTF-8
429
+ string: |-
430
+ <?xml version="1.0" encoding="UTF-8"?>
431
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
432
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
433
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
434
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
435
+ <soapenv:Body>
436
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="ComputeResource">domain-s7</obj><propSet><name>name</name><val xsi:type="xsd:string">esxi.example.com</val></propSet></returnval></RetrievePropertiesResponse>
437
+ </soapenv:Body>
438
+ </soapenv:Envelope>
439
+ http_version:
440
+ recorded_at: Tue, 16 Apr 2019 14:03:52 GMT
441
+ - request:
442
+ method: post
443
+ uri: https://<%= vsphere_server %>/sdk
444
+ body:
445
+ encoding: UTF-8
446
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
447
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
448
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
449
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>ComputeResource</type><pathSet>summary</pathSet></propSet><objectSet
450
+ xsi:type="ObjectSpec"><obj type="ComputeResource">domain-s7</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
451
+ headers:
452
+ Content-Type:
453
+ - text/xml; charset=utf-8
454
+ Soapaction:
455
+ - urn:vim25/6.7
456
+ Cookie:
457
+ - vmware_soap_session="aa2262351ec6a2f6bd2f6b65ebfa48d0de3dcb3f"; Path=/; HttpOnly;
458
+ Secure;
459
+ Accept-Encoding:
460
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
461
+ Accept:
462
+ - "*/*"
463
+ User-Agent:
464
+ - Ruby
465
+ response:
466
+ status:
467
+ code: 200
468
+ message: OK
469
+ headers:
470
+ Date:
471
+ - Tue, 16 Apr 2019 14:03:52 GMT
472
+ Cache-Control:
473
+ - no-cache
474
+ Connection:
475
+ - Keep-Alive
476
+ Content-Type:
477
+ - text/xml; charset=utf-8
478
+ X-Frame-Options:
479
+ - DENY
480
+ Content-Length:
481
+ - '847'
482
+ body:
483
+ encoding: UTF-8
484
+ string: |-
485
+ <?xml version="1.0" encoding="UTF-8"?>
486
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
487
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
488
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
489
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
490
+ <soapenv:Body>
491
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="ComputeResource">domain-s7</obj><propSet><name>summary</name><val xsi:type="ComputeResourceSummary"><totalCpu>14364</totalCpu><totalMemory>17105813504</totalMemory><numCpuCores>4</numCpuCores><numCpuThreads>8</numCpuThreads><effectiveCpu>10414</effectiveCpu><effectiveMemory>13113</effectiveMemory><numHosts>1</numHosts><numEffectiveHosts>1</numEffectiveHosts><overallStatus>gray</overallStatus></val></propSet></returnval></RetrievePropertiesResponse>
492
+ </soapenv:Body>
493
+ </soapenv:Envelope>
494
+ http_version:
495
+ recorded_at: Tue, 16 Apr 2019 14:03:52 GMT
496
+ - request:
497
+ method: post
498
+ uri: https://<%= vsphere_server %>/sdk
499
+ body:
500
+ encoding: UTF-8
501
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
502
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
503
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
504
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>ComputeResource</type><pathSet>summary</pathSet></propSet><objectSet
505
+ xsi:type="ObjectSpec"><obj type="ComputeResource">domain-s7</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
506
+ headers:
507
+ Content-Type:
508
+ - text/xml; charset=utf-8
509
+ Soapaction:
510
+ - urn:vim25/6.7
511
+ Cookie:
512
+ - vmware_soap_session="aa2262351ec6a2f6bd2f6b65ebfa48d0de3dcb3f"; Path=/; HttpOnly;
513
+ Secure;
514
+ Accept-Encoding:
515
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
516
+ Accept:
517
+ - "*/*"
518
+ User-Agent:
519
+ - Ruby
520
+ response:
521
+ status:
522
+ code: 200
523
+ message: OK
524
+ headers:
525
+ Date:
526
+ - Tue, 16 Apr 2019 14:03:52 GMT
527
+ Cache-Control:
528
+ - no-cache
529
+ Connection:
530
+ - Keep-Alive
531
+ Content-Type:
532
+ - text/xml; charset=utf-8
533
+ X-Frame-Options:
534
+ - DENY
535
+ Content-Length:
536
+ - '847'
537
+ body:
538
+ encoding: UTF-8
539
+ string: |-
540
+ <?xml version="1.0" encoding="UTF-8"?>
541
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
542
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
543
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
544
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
545
+ <soapenv:Body>
546
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="ComputeResource">domain-s7</obj><propSet><name>summary</name><val xsi:type="ComputeResourceSummary"><totalCpu>14364</totalCpu><totalMemory>17105813504</totalMemory><numCpuCores>4</numCpuCores><numCpuThreads>8</numCpuThreads><effectiveCpu>10414</effectiveCpu><effectiveMemory>13113</effectiveMemory><numHosts>1</numHosts><numEffectiveHosts>1</numEffectiveHosts><overallStatus>gray</overallStatus></val></propSet></returnval></RetrievePropertiesResponse>
547
+ </soapenv:Body>
548
+ </soapenv:Envelope>
549
+ http_version:
550
+ recorded_at: Tue, 16 Apr 2019 14:03:52 GMT
551
+ - request:
552
+ method: post
553
+ uri: https://<%= vsphere_server %>/sdk
554
+ body:
555
+ encoding: UTF-8
556
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
557
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
558
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
559
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>ComputeResource</type><pathSet>summary</pathSet></propSet><objectSet
560
+ xsi:type="ObjectSpec"><obj type="ComputeResource">domain-s7</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
561
+ headers:
562
+ Content-Type:
563
+ - text/xml; charset=utf-8
564
+ Soapaction:
565
+ - urn:vim25/6.7
566
+ Cookie:
567
+ - vmware_soap_session="aa2262351ec6a2f6bd2f6b65ebfa48d0de3dcb3f"; Path=/; HttpOnly;
568
+ Secure;
569
+ Accept-Encoding:
570
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
571
+ Accept:
572
+ - "*/*"
573
+ User-Agent:
574
+ - Ruby
575
+ response:
576
+ status:
577
+ code: 200
578
+ message: OK
579
+ headers:
580
+ Date:
581
+ - Tue, 16 Apr 2019 14:03:52 GMT
582
+ Cache-Control:
583
+ - no-cache
584
+ Connection:
585
+ - Keep-Alive
586
+ Content-Type:
587
+ - text/xml; charset=utf-8
588
+ X-Frame-Options:
589
+ - DENY
590
+ Content-Length:
591
+ - '847'
592
+ body:
593
+ encoding: UTF-8
594
+ string: |-
595
+ <?xml version="1.0" encoding="UTF-8"?>
596
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
597
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
598
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
599
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
600
+ <soapenv:Body>
601
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="ComputeResource">domain-s7</obj><propSet><name>summary</name><val xsi:type="ComputeResourceSummary"><totalCpu>14364</totalCpu><totalMemory>17105813504</totalMemory><numCpuCores>4</numCpuCores><numCpuThreads>8</numCpuThreads><effectiveCpu>10414</effectiveCpu><effectiveMemory>13113</effectiveMemory><numHosts>1</numHosts><numEffectiveHosts>1</numEffectiveHosts><overallStatus>gray</overallStatus></val></propSet></returnval></RetrievePropertiesResponse>
602
+ </soapenv:Body>
603
+ </soapenv:Envelope>
604
+ http_version:
605
+ recorded_at: Tue, 16 Apr 2019 14:03:52 GMT
606
+ - request:
607
+ method: post
608
+ uri: https://<%= vsphere_server %>/sdk
609
+ body:
610
+ encoding: UTF-8
611
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
612
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
613
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
614
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>ComputeResource</type><pathSet>summary</pathSet></propSet><objectSet
615
+ xsi:type="ObjectSpec"><obj type="ComputeResource">domain-s7</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
616
+ headers:
617
+ Content-Type:
618
+ - text/xml; charset=utf-8
619
+ Soapaction:
620
+ - urn:vim25/6.7
621
+ Cookie:
622
+ - vmware_soap_session="aa2262351ec6a2f6bd2f6b65ebfa48d0de3dcb3f"; Path=/; HttpOnly;
623
+ Secure;
624
+ Accept-Encoding:
625
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
626
+ Accept:
627
+ - "*/*"
628
+ User-Agent:
629
+ - Ruby
630
+ response:
631
+ status:
632
+ code: 200
633
+ message: OK
634
+ headers:
635
+ Date:
636
+ - Tue, 16 Apr 2019 14:03:52 GMT
637
+ Cache-Control:
638
+ - no-cache
639
+ Connection:
640
+ - Keep-Alive
641
+ Content-Type:
642
+ - text/xml; charset=utf-8
643
+ X-Frame-Options:
644
+ - DENY
645
+ Content-Length:
646
+ - '847'
647
+ body:
648
+ encoding: UTF-8
649
+ string: |-
650
+ <?xml version="1.0" encoding="UTF-8"?>
651
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
652
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
653
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
654
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
655
+ <soapenv:Body>
656
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="ComputeResource">domain-s7</obj><propSet><name>summary</name><val xsi:type="ComputeResourceSummary"><totalCpu>14364</totalCpu><totalMemory>17105813504</totalMemory><numCpuCores>4</numCpuCores><numCpuThreads>8</numCpuThreads><effectiveCpu>10414</effectiveCpu><effectiveMemory>13113</effectiveMemory><numHosts>1</numHosts><numEffectiveHosts>1</numEffectiveHosts><overallStatus>gray</overallStatus></val></propSet></returnval></RetrievePropertiesResponse>
657
+ </soapenv:Body>
658
+ </soapenv:Envelope>
659
+ http_version:
660
+ recorded_at: Tue, 16 Apr 2019 14:03:52 GMT
661
+ - request:
662
+ method: post
663
+ uri: https://<%= vsphere_server %>/sdk
664
+ body:
665
+ encoding: UTF-8
666
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
667
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
668
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
669
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>ComputeResource</type><pathSet>summary</pathSet></propSet><objectSet
670
+ xsi:type="ObjectSpec"><obj type="ComputeResource">domain-s7</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
671
+ headers:
672
+ Content-Type:
673
+ - text/xml; charset=utf-8
674
+ Soapaction:
675
+ - urn:vim25/6.7
676
+ Cookie:
677
+ - vmware_soap_session="aa2262351ec6a2f6bd2f6b65ebfa48d0de3dcb3f"; Path=/; HttpOnly;
678
+ Secure;
679
+ Accept-Encoding:
680
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
681
+ Accept:
682
+ - "*/*"
683
+ User-Agent:
684
+ - Ruby
685
+ response:
686
+ status:
687
+ code: 200
688
+ message: OK
689
+ headers:
690
+ Date:
691
+ - Tue, 16 Apr 2019 14:03:52 GMT
692
+ Cache-Control:
693
+ - no-cache
694
+ Connection:
695
+ - Keep-Alive
696
+ Content-Type:
697
+ - text/xml; charset=utf-8
698
+ X-Frame-Options:
699
+ - DENY
700
+ Content-Length:
701
+ - '847'
702
+ body:
703
+ encoding: UTF-8
704
+ string: |-
705
+ <?xml version="1.0" encoding="UTF-8"?>
706
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
707
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
708
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
709
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
710
+ <soapenv:Body>
711
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="ComputeResource">domain-s7</obj><propSet><name>summary</name><val xsi:type="ComputeResourceSummary"><totalCpu>14364</totalCpu><totalMemory>17105813504</totalMemory><numCpuCores>4</numCpuCores><numCpuThreads>8</numCpuThreads><effectiveCpu>10414</effectiveCpu><effectiveMemory>13113</effectiveMemory><numHosts>1</numHosts><numEffectiveHosts>1</numEffectiveHosts><overallStatus>gray</overallStatus></val></propSet></returnval></RetrievePropertiesResponse>
712
+ </soapenv:Body>
713
+ </soapenv:Envelope>
714
+ http_version:
715
+ recorded_at: Tue, 16 Apr 2019 14:03:52 GMT
716
+ - request:
717
+ method: post
718
+ uri: https://<%= vsphere_server %>/sdk
719
+ body:
720
+ encoding: UTF-8
721
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
722
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
723
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
724
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>ComputeResource</type><pathSet>summary</pathSet></propSet><objectSet
725
+ xsi:type="ObjectSpec"><obj type="ComputeResource">domain-s7</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
726
+ headers:
727
+ Content-Type:
728
+ - text/xml; charset=utf-8
729
+ Soapaction:
730
+ - urn:vim25/6.7
731
+ Cookie:
732
+ - vmware_soap_session="aa2262351ec6a2f6bd2f6b65ebfa48d0de3dcb3f"; Path=/; HttpOnly;
733
+ Secure;
734
+ Accept-Encoding:
735
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
736
+ Accept:
737
+ - "*/*"
738
+ User-Agent:
739
+ - Ruby
740
+ response:
741
+ status:
742
+ code: 200
743
+ message: OK
744
+ headers:
745
+ Date:
746
+ - Tue, 16 Apr 2019 14:03:52 GMT
747
+ Cache-Control:
748
+ - no-cache
749
+ Connection:
750
+ - Keep-Alive
751
+ Content-Type:
752
+ - text/xml; charset=utf-8
753
+ X-Frame-Options:
754
+ - DENY
755
+ Content-Length:
756
+ - '847'
757
+ body:
758
+ encoding: UTF-8
759
+ string: |-
760
+ <?xml version="1.0" encoding="UTF-8"?>
761
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
762
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
763
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
764
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
765
+ <soapenv:Body>
766
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="ComputeResource">domain-s7</obj><propSet><name>summary</name><val xsi:type="ComputeResourceSummary"><totalCpu>14364</totalCpu><totalMemory>17105813504</totalMemory><numCpuCores>4</numCpuCores><numCpuThreads>8</numCpuThreads><effectiveCpu>10414</effectiveCpu><effectiveMemory>13113</effectiveMemory><numHosts>1</numHosts><numEffectiveHosts>1</numEffectiveHosts><overallStatus>gray</overallStatus></val></propSet></returnval></RetrievePropertiesResponse>
767
+ </soapenv:Body>
768
+ </soapenv:Envelope>
769
+ http_version:
770
+ recorded_at: Tue, 16 Apr 2019 14:03:52 GMT
771
+ - request:
772
+ method: post
773
+ uri: https://<%= vsphere_server %>/sdk
774
+ body:
775
+ encoding: UTF-8
776
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
777
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
778
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
779
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>ComputeResource</type><pathSet>summary</pathSet></propSet><objectSet
780
+ xsi:type="ObjectSpec"><obj type="ComputeResource">domain-s7</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
781
+ headers:
782
+ Content-Type:
783
+ - text/xml; charset=utf-8
784
+ Soapaction:
785
+ - urn:vim25/6.7
786
+ Cookie:
787
+ - vmware_soap_session="aa2262351ec6a2f6bd2f6b65ebfa48d0de3dcb3f"; Path=/; HttpOnly;
788
+ Secure;
789
+ Accept-Encoding:
790
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
791
+ Accept:
792
+ - "*/*"
793
+ User-Agent:
794
+ - Ruby
795
+ response:
796
+ status:
797
+ code: 200
798
+ message: OK
799
+ headers:
800
+ Date:
801
+ - Tue, 16 Apr 2019 14:03:52 GMT
802
+ Cache-Control:
803
+ - no-cache
804
+ Connection:
805
+ - Keep-Alive
806
+ Content-Type:
807
+ - text/xml; charset=utf-8
808
+ X-Frame-Options:
809
+ - DENY
810
+ Content-Length:
811
+ - '847'
812
+ body:
813
+ encoding: UTF-8
814
+ string: |-
815
+ <?xml version="1.0" encoding="UTF-8"?>
816
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
817
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
818
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
819
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
820
+ <soapenv:Body>
821
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="ComputeResource">domain-s7</obj><propSet><name>summary</name><val xsi:type="ComputeResourceSummary"><totalCpu>14364</totalCpu><totalMemory>17105813504</totalMemory><numCpuCores>4</numCpuCores><numCpuThreads>8</numCpuThreads><effectiveCpu>10414</effectiveCpu><effectiveMemory>13113</effectiveMemory><numHosts>1</numHosts><numEffectiveHosts>1</numEffectiveHosts><overallStatus>gray</overallStatus></val></propSet></returnval></RetrievePropertiesResponse>
822
+ </soapenv:Body>
823
+ </soapenv:Envelope>
824
+ http_version:
825
+ recorded_at: Tue, 16 Apr 2019 14:03:52 GMT
826
+ - request:
827
+ method: post
828
+ uri: https://<%= vsphere_server %>/sdk
829
+ body:
830
+ encoding: UTF-8
831
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
832
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
833
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
834
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>ComputeResource</type><pathSet>summary</pathSet></propSet><objectSet
835
+ xsi:type="ObjectSpec"><obj type="ComputeResource">domain-s7</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
836
+ headers:
837
+ Content-Type:
838
+ - text/xml; charset=utf-8
839
+ Soapaction:
840
+ - urn:vim25/6.7
841
+ Cookie:
842
+ - vmware_soap_session="aa2262351ec6a2f6bd2f6b65ebfa48d0de3dcb3f"; Path=/; HttpOnly;
843
+ Secure;
844
+ Accept-Encoding:
845
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
846
+ Accept:
847
+ - "*/*"
848
+ User-Agent:
849
+ - Ruby
850
+ response:
851
+ status:
852
+ code: 200
853
+ message: OK
854
+ headers:
855
+ Date:
856
+ - Tue, 16 Apr 2019 14:03:52 GMT
857
+ Cache-Control:
858
+ - no-cache
859
+ Connection:
860
+ - Keep-Alive
861
+ Content-Type:
862
+ - text/xml; charset=utf-8
863
+ X-Frame-Options:
864
+ - DENY
865
+ Content-Length:
866
+ - '847'
867
+ body:
868
+ encoding: UTF-8
869
+ string: |-
870
+ <?xml version="1.0" encoding="UTF-8"?>
871
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
872
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
873
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
874
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
875
+ <soapenv:Body>
876
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="ComputeResource">domain-s7</obj><propSet><name>summary</name><val xsi:type="ComputeResourceSummary"><totalCpu>14364</totalCpu><totalMemory>17105813504</totalMemory><numCpuCores>4</numCpuCores><numCpuThreads>8</numCpuThreads><effectiveCpu>10414</effectiveCpu><effectiveMemory>13113</effectiveMemory><numHosts>1</numHosts><numEffectiveHosts>1</numEffectiveHosts><overallStatus>gray</overallStatus></val></propSet></returnval></RetrievePropertiesResponse>
877
+ </soapenv:Body>
878
+ </soapenv:Envelope>
879
+ http_version:
880
+ recorded_at: Tue, 16 Apr 2019 14:03:52 GMT
881
+ - request:
882
+ method: post
883
+ uri: https://<%= vsphere_server %>/sdk
884
+ body:
885
+ encoding: UTF-8
886
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
887
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
888
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
889
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>ComputeResource</type><pathSet>summary</pathSet></propSet><objectSet
890
+ xsi:type="ObjectSpec"><obj type="ComputeResource">domain-s7</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
891
+ headers:
892
+ Content-Type:
893
+ - text/xml; charset=utf-8
894
+ Soapaction:
895
+ - urn:vim25/6.7
896
+ Cookie:
897
+ - vmware_soap_session="aa2262351ec6a2f6bd2f6b65ebfa48d0de3dcb3f"; Path=/; HttpOnly;
898
+ Secure;
899
+ Accept-Encoding:
900
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
901
+ Accept:
902
+ - "*/*"
903
+ User-Agent:
904
+ - Ruby
905
+ response:
906
+ status:
907
+ code: 200
908
+ message: OK
909
+ headers:
910
+ Date:
911
+ - Tue, 16 Apr 2019 14:03:52 GMT
912
+ Cache-Control:
913
+ - no-cache
914
+ Connection:
915
+ - Keep-Alive
916
+ Content-Type:
917
+ - text/xml; charset=utf-8
918
+ X-Frame-Options:
919
+ - DENY
920
+ Content-Length:
921
+ - '847'
922
+ body:
923
+ encoding: UTF-8
924
+ string: |-
925
+ <?xml version="1.0" encoding="UTF-8"?>
926
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
927
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
928
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
929
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
930
+ <soapenv:Body>
931
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="ComputeResource">domain-s7</obj><propSet><name>summary</name><val xsi:type="ComputeResourceSummary"><totalCpu>14364</totalCpu><totalMemory>17105813504</totalMemory><numCpuCores>4</numCpuCores><numCpuThreads>8</numCpuThreads><effectiveCpu>10414</effectiveCpu><effectiveMemory>13113</effectiveMemory><numHosts>1</numHosts><numEffectiveHosts>1</numEffectiveHosts><overallStatus>gray</overallStatus></val></propSet></returnval></RetrievePropertiesResponse>
932
+ </soapenv:Body>
933
+ </soapenv:Envelope>
934
+ http_version:
935
+ recorded_at: Tue, 16 Apr 2019 14:03:52 GMT
936
+ - request:
937
+ method: post
938
+ uri: https://<%= vsphere_server %>/sdk
939
+ body:
940
+ encoding: UTF-8
941
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
942
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
943
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
944
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>ComputeResource</type><pathSet>summary</pathSet></propSet><objectSet
945
+ xsi:type="ObjectSpec"><obj type="ComputeResource">domain-s7</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
946
+ headers:
947
+ Content-Type:
948
+ - text/xml; charset=utf-8
949
+ Soapaction:
950
+ - urn:vim25/6.7
951
+ Cookie:
952
+ - vmware_soap_session="aa2262351ec6a2f6bd2f6b65ebfa48d0de3dcb3f"; Path=/; HttpOnly;
953
+ Secure;
954
+ Accept-Encoding:
955
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
956
+ Accept:
957
+ - "*/*"
958
+ User-Agent:
959
+ - Ruby
960
+ response:
961
+ status:
962
+ code: 200
963
+ message: OK
964
+ headers:
965
+ Date:
966
+ - Tue, 16 Apr 2019 14:03:52 GMT
967
+ Cache-Control:
968
+ - no-cache
969
+ Connection:
970
+ - Keep-Alive
971
+ Content-Type:
972
+ - text/xml; charset=utf-8
973
+ X-Frame-Options:
974
+ - DENY
975
+ Content-Length:
976
+ - '847'
977
+ body:
978
+ encoding: UTF-8
979
+ string: |-
980
+ <?xml version="1.0" encoding="UTF-8"?>
981
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
982
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
983
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
984
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
985
+ <soapenv:Body>
986
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="ComputeResource">domain-s7</obj><propSet><name>summary</name><val xsi:type="ComputeResourceSummary"><totalCpu>14364</totalCpu><totalMemory>17105813504</totalMemory><numCpuCores>4</numCpuCores><numCpuThreads>8</numCpuThreads><effectiveCpu>10414</effectiveCpu><effectiveMemory>13113</effectiveMemory><numHosts>1</numHosts><numEffectiveHosts>1</numEffectiveHosts><overallStatus>gray</overallStatus></val></propSet></returnval></RetrievePropertiesResponse>
987
+ </soapenv:Body>
988
+ </soapenv:Envelope>
989
+ http_version:
990
+ recorded_at: Tue, 16 Apr 2019 14:03:52 GMT
991
+ - request:
992
+ method: post
993
+ uri: https://<%= vsphere_server %>/sdk
994
+ body:
995
+ encoding: UTF-8
996
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
997
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
998
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
999
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>ComputeResource</type><pathSet>summary</pathSet></propSet><objectSet
1000
+ xsi:type="ObjectSpec"><obj type="ComputeResource">domain-s7</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
1001
+ headers:
1002
+ Content-Type:
1003
+ - text/xml; charset=utf-8
1004
+ Soapaction:
1005
+ - urn:vim25/6.7
1006
+ Cookie:
1007
+ - vmware_soap_session="aa2262351ec6a2f6bd2f6b65ebfa48d0de3dcb3f"; Path=/; HttpOnly;
1008
+ Secure;
1009
+ Accept-Encoding:
1010
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1011
+ Accept:
1012
+ - "*/*"
1013
+ User-Agent:
1014
+ - Ruby
1015
+ response:
1016
+ status:
1017
+ code: 200
1018
+ message: OK
1019
+ headers:
1020
+ Date:
1021
+ - Tue, 16 Apr 2019 14:03:52 GMT
1022
+ Cache-Control:
1023
+ - no-cache
1024
+ Connection:
1025
+ - Keep-Alive
1026
+ Content-Type:
1027
+ - text/xml; charset=utf-8
1028
+ X-Frame-Options:
1029
+ - DENY
1030
+ Content-Length:
1031
+ - '847'
1032
+ body:
1033
+ encoding: UTF-8
1034
+ string: |-
1035
+ <?xml version="1.0" encoding="UTF-8"?>
1036
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
1037
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
1038
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1039
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1040
+ <soapenv:Body>
1041
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="ComputeResource">domain-s7</obj><propSet><name>summary</name><val xsi:type="ComputeResourceSummary"><totalCpu>14364</totalCpu><totalMemory>17105813504</totalMemory><numCpuCores>4</numCpuCores><numCpuThreads>8</numCpuThreads><effectiveCpu>10414</effectiveCpu><effectiveMemory>13113</effectiveMemory><numHosts>1</numHosts><numEffectiveHosts>1</numEffectiveHosts><overallStatus>gray</overallStatus></val></propSet></returnval></RetrievePropertiesResponse>
1042
+ </soapenv:Body>
1043
+ </soapenv:Envelope>
1044
+ http_version:
1045
+ recorded_at: Tue, 16 Apr 2019 14:03:52 GMT
1046
+ recorded_with: VCR 4.0.0