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,2038 @@
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="af357b44a0386daa008c292cbb9d325644ff0fcb"; 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:14:01 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:14:01 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="af357b44a0386daa008c292cbb9d325644ff0fcb"; 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:14:01 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:14:01 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>vmFolder</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="af357b44a0386daa008c292cbb9d325644ff0fcb"; 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:14:01 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
+ - '573'
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>vmFolder</name><val type="Folder" xsi:type="ManagedObjectReference">group-v3</val></propSet></returnval></RetrievePropertiesResponse>
164
+ </soapenv:Body>
165
+ </soapenv:Envelope>
166
+ http_version:
167
+ recorded_at: Tue, 16 Apr 2019 14:14:01 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><RetrieveProperties
175
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
176
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>ManagedEntity</type><pathSet>name</pathSet><pathSet>parent</pathSet></propSet><objectSet
177
+ xsi:type="ObjectSpec"><obj type="Folder">group-v3</obj><selectSet xsi:type="TraversalSpec"><name>tsME</name><type>ManagedEntity</type><path>parent</path><skip>0</skip><selectSet
178
+ xsi:type="SelectionSpec"><name>tsME</name></selectSet></selectSet></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
179
+ headers:
180
+ Content-Type:
181
+ - text/xml; charset=utf-8
182
+ Soapaction:
183
+ - urn:vim25/6.7
184
+ Cookie:
185
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
186
+ Secure;
187
+ Accept-Encoding:
188
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
189
+ Accept:
190
+ - "*/*"
191
+ User-Agent:
192
+ - Ruby
193
+ response:
194
+ status:
195
+ code: 200
196
+ message: OK
197
+ headers:
198
+ Date:
199
+ - Tue, 16 Apr 2019 14:14:01 GMT
200
+ Cache-Control:
201
+ - no-cache
202
+ Connection:
203
+ - Keep-Alive
204
+ Content-Type:
205
+ - text/xml; charset=utf-8
206
+ X-Frame-Options:
207
+ - DENY
208
+ Content-Length:
209
+ - '1019'
210
+ body:
211
+ encoding: UTF-8
212
+ string: |-
213
+ <?xml version="1.0" encoding="UTF-8"?>
214
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
215
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
216
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
217
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
218
+ <soapenv:Body>
219
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Folder">group-v3</obj><propSet><name>name</name><val xsi:type="xsd:string">vm</val></propSet><propSet><name>parent</name><val type="Datacenter" xsi:type="ManagedObjectReference">datacenter-2</val></propSet></returnval><returnval><obj type="Datacenter">datacenter-2</obj><propSet><name>name</name><val xsi:type="xsd:string">BRQ</val></propSet><propSet><name>parent</name><val type="Folder" xsi:type="ManagedObjectReference">group-d1</val></propSet></returnval><returnval><obj type="Folder">group-d1</obj><propSet><name>name</name><val xsi:type="xsd:string">Datacenters</val></propSet></returnval></RetrievePropertiesResponse>
220
+ </soapenv:Body>
221
+ </soapenv:Envelope>
222
+ http_version:
223
+ recorded_at: Tue, 16 Apr 2019 14:14:01 GMT
224
+ - request:
225
+ method: post
226
+ uri: https://<%= vsphere_server %>/sdk
227
+ body:
228
+ encoding: UTF-8
229
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
230
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><FindChild
231
+ xmlns="urn:vim25"><_this type="SearchIndex">SearchIndex</_this><entity type="Folder">group-v3</entity><name>TestFolder</name></FindChild></env:Body></env:Envelope>
232
+ headers:
233
+ Content-Type:
234
+ - text/xml; charset=utf-8
235
+ Soapaction:
236
+ - urn:vim25/6.7
237
+ Cookie:
238
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
239
+ Secure;
240
+ Accept-Encoding:
241
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
242
+ Accept:
243
+ - "*/*"
244
+ User-Agent:
245
+ - Ruby
246
+ response:
247
+ status:
248
+ code: 200
249
+ message: OK
250
+ headers:
251
+ Date:
252
+ - Tue, 16 Apr 2019 14:14:01 GMT
253
+ Cache-Control:
254
+ - no-cache
255
+ Connection:
256
+ - Keep-Alive
257
+ Content-Type:
258
+ - text/xml; charset=utf-8
259
+ X-Frame-Options:
260
+ - DENY
261
+ Content-Length:
262
+ - '430'
263
+ body:
264
+ encoding: UTF-8
265
+ string: |-
266
+ <?xml version="1.0" encoding="UTF-8"?>
267
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
268
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
269
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
270
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
271
+ <soapenv:Body>
272
+ <FindChildResponse xmlns="urn:vim25"><returnval type="Folder">group-v45</returnval></FindChildResponse>
273
+ </soapenv:Body>
274
+ </soapenv:Envelope>
275
+ http_version:
276
+ recorded_at: Tue, 16 Apr 2019 14:14:01 GMT
277
+ - request:
278
+ method: post
279
+ uri: https://<%= vsphere_server %>/sdk
280
+ body:
281
+ encoding: UTF-8
282
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
283
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
284
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
285
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>Folder</type><pathSet>name</pathSet></propSet><objectSet
286
+ xsi:type="ObjectSpec"><obj type="Folder">group-v45</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
287
+ headers:
288
+ Content-Type:
289
+ - text/xml; charset=utf-8
290
+ Soapaction:
291
+ - urn:vim25/6.7
292
+ Cookie:
293
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
294
+ Secure;
295
+ Accept-Encoding:
296
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
297
+ Accept:
298
+ - "*/*"
299
+ User-Agent:
300
+ - Ruby
301
+ response:
302
+ status:
303
+ code: 200
304
+ message: OK
305
+ headers:
306
+ Date:
307
+ - Tue, 16 Apr 2019 14:14:01 GMT
308
+ Cache-Control:
309
+ - no-cache
310
+ Connection:
311
+ - Keep-Alive
312
+ Content-Type:
313
+ - text/xml; charset=utf-8
314
+ X-Frame-Options:
315
+ - DENY
316
+ Content-Length:
317
+ - '534'
318
+ body:
319
+ encoding: UTF-8
320
+ string: |-
321
+ <?xml version="1.0" encoding="UTF-8"?>
322
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
323
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
324
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
325
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
326
+ <soapenv:Body>
327
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Folder">group-v45</obj><propSet><name>name</name><val xsi:type="xsd:string">TestFolder</val></propSet></returnval></RetrievePropertiesResponse>
328
+ </soapenv:Body>
329
+ </soapenv:Envelope>
330
+ http_version:
331
+ recorded_at: Tue, 16 Apr 2019 14:14:01 GMT
332
+ - request:
333
+ method: post
334
+ uri: https://<%= vsphere_server %>/sdk
335
+ body:
336
+ encoding: UTF-8
337
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
338
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
339
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
340
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>Folder</type><pathSet>parent</pathSet></propSet><objectSet
341
+ xsi:type="ObjectSpec"><obj type="Folder">group-v45</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
342
+ headers:
343
+ Content-Type:
344
+ - text/xml; charset=utf-8
345
+ Soapaction:
346
+ - urn:vim25/6.7
347
+ Cookie:
348
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
349
+ Secure;
350
+ Accept-Encoding:
351
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
352
+ Accept:
353
+ - "*/*"
354
+ User-Agent:
355
+ - Ruby
356
+ response:
357
+ status:
358
+ code: 200
359
+ message: OK
360
+ headers:
361
+ Date:
362
+ - Tue, 16 Apr 2019 14:14:01 GMT
363
+ Cache-Control:
364
+ - no-cache
365
+ Connection:
366
+ - Keep-Alive
367
+ Content-Type:
368
+ - text/xml; charset=utf-8
369
+ X-Frame-Options:
370
+ - DENY
371
+ Content-Length:
372
+ - '564'
373
+ body:
374
+ encoding: UTF-8
375
+ string: |-
376
+ <?xml version="1.0" encoding="UTF-8"?>
377
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
378
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
379
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
380
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
381
+ <soapenv:Body>
382
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Folder">group-v45</obj><propSet><name>parent</name><val type="Folder" xsi:type="ManagedObjectReference">group-v3</val></propSet></returnval></RetrievePropertiesResponse>
383
+ </soapenv:Body>
384
+ </soapenv:Envelope>
385
+ http_version:
386
+ recorded_at: Tue, 16 Apr 2019 14:14:01 GMT
387
+ - request:
388
+ method: post
389
+ uri: https://<%= vsphere_server %>/sdk
390
+ body:
391
+ encoding: UTF-8
392
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
393
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
394
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
395
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>Folder</type><pathSet>name</pathSet></propSet><objectSet
396
+ xsi:type="ObjectSpec"><obj type="Folder">group-v3</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
397
+ headers:
398
+ Content-Type:
399
+ - text/xml; charset=utf-8
400
+ Soapaction:
401
+ - urn:vim25/6.7
402
+ Cookie:
403
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
404
+ Secure;
405
+ Accept-Encoding:
406
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
407
+ Accept:
408
+ - "*/*"
409
+ User-Agent:
410
+ - Ruby
411
+ response:
412
+ status:
413
+ code: 200
414
+ message: OK
415
+ headers:
416
+ Date:
417
+ - Tue, 16 Apr 2019 14:14:01 GMT
418
+ Cache-Control:
419
+ - no-cache
420
+ Connection:
421
+ - Keep-Alive
422
+ Content-Type:
423
+ - text/xml; charset=utf-8
424
+ X-Frame-Options:
425
+ - DENY
426
+ Content-Length:
427
+ - '529'
428
+ body:
429
+ encoding: UTF-8
430
+ string: |-
431
+ <?xml version="1.0" encoding="UTF-8"?>
432
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
433
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
434
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
435
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
436
+ <soapenv:Body>
437
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Folder">group-v3</obj><propSet><name>name</name><val xsi:type="xsd:string">vm</val></propSet></returnval></RetrievePropertiesResponse>
438
+ </soapenv:Body>
439
+ </soapenv:Envelope>
440
+ http_version:
441
+ recorded_at: Tue, 16 Apr 2019 14:14:01 GMT
442
+ - request:
443
+ method: post
444
+ uri: https://<%= vsphere_server %>/sdk
445
+ body:
446
+ encoding: UTF-8
447
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
448
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
449
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
450
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>Folder</type><pathSet>childType</pathSet></propSet><objectSet
451
+ xsi:type="ObjectSpec"><obj type="Folder">group-v45</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
452
+ headers:
453
+ Content-Type:
454
+ - text/xml; charset=utf-8
455
+ Soapaction:
456
+ - urn:vim25/6.7
457
+ Cookie:
458
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
459
+ Secure;
460
+ Accept-Encoding:
461
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
462
+ Accept:
463
+ - "*/*"
464
+ User-Agent:
465
+ - Ruby
466
+ response:
467
+ status:
468
+ code: 200
469
+ message: OK
470
+ headers:
471
+ Date:
472
+ - Tue, 16 Apr 2019 14:14:01 GMT
473
+ Cache-Control:
474
+ - no-cache
475
+ Connection:
476
+ - Keep-Alive
477
+ Content-Type:
478
+ - text/xml; charset=utf-8
479
+ X-Frame-Options:
480
+ - DENY
481
+ Content-Length:
482
+ - '683'
483
+ body:
484
+ encoding: UTF-8
485
+ string: |-
486
+ <?xml version="1.0" encoding="UTF-8"?>
487
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
488
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
489
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
490
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
491
+ <soapenv:Body>
492
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Folder">group-v45</obj><propSet><name>childType</name><val xsi:type="ArrayOfString"><string xsi:type="xsd:string">Folder</string><string xsi:type="xsd:string">VirtualMachine</string><string xsi:type="xsd:string">VirtualApp</string></val></propSet></returnval></RetrievePropertiesResponse>
493
+ </soapenv:Body>
494
+ </soapenv:Envelope>
495
+ http_version:
496
+ recorded_at: Tue, 16 Apr 2019 14:14:01 GMT
497
+ - request:
498
+ method: post
499
+ uri: https://<%= vsphere_server %>/sdk
500
+ body:
501
+ encoding: UTF-8
502
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
503
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
504
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
505
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>ManagedEntity</type><pathSet>name</pathSet><pathSet>parent</pathSet></propSet><objectSet
506
+ xsi:type="ObjectSpec"><obj type="Folder">group-v45</obj><selectSet xsi:type="TraversalSpec"><name>tsME</name><type>ManagedEntity</type><path>parent</path><skip>0</skip><selectSet
507
+ xsi:type="SelectionSpec"><name>tsME</name></selectSet></selectSet></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
508
+ headers:
509
+ Content-Type:
510
+ - text/xml; charset=utf-8
511
+ Soapaction:
512
+ - urn:vim25/6.7
513
+ Cookie:
514
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
515
+ Secure;
516
+ Accept-Encoding:
517
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
518
+ Accept:
519
+ - "*/*"
520
+ User-Agent:
521
+ - Ruby
522
+ response:
523
+ status:
524
+ code: 200
525
+ message: OK
526
+ headers:
527
+ Date:
528
+ - Tue, 16 Apr 2019 14:14:01 GMT
529
+ Cache-Control:
530
+ - no-cache
531
+ Connection:
532
+ - Keep-Alive
533
+ Content-Type:
534
+ - text/xml; charset=utf-8
535
+ X-Frame-Options:
536
+ - DENY
537
+ Content-Length:
538
+ - '1256'
539
+ body:
540
+ encoding: UTF-8
541
+ string: |-
542
+ <?xml version="1.0" encoding="UTF-8"?>
543
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
544
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
545
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
546
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
547
+ <soapenv:Body>
548
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Folder">group-v45</obj><propSet><name>name</name><val xsi:type="xsd:string">TestFolder</val></propSet><propSet><name>parent</name><val type="Folder" xsi:type="ManagedObjectReference">group-v3</val></propSet></returnval><returnval><obj type="Folder">group-v3</obj><propSet><name>name</name><val xsi:type="xsd:string">vm</val></propSet><propSet><name>parent</name><val type="Datacenter" xsi:type="ManagedObjectReference">datacenter-2</val></propSet></returnval><returnval><obj type="Datacenter">datacenter-2</obj><propSet><name>name</name><val xsi:type="xsd:string">BRQ</val></propSet><propSet><name>parent</name><val type="Folder" xsi:type="ManagedObjectReference">group-d1</val></propSet></returnval><returnval><obj type="Folder">group-d1</obj><propSet><name>name</name><val xsi:type="xsd:string">Datacenters</val></propSet></returnval></RetrievePropertiesResponse>
549
+ </soapenv:Body>
550
+ </soapenv:Envelope>
551
+ http_version:
552
+ recorded_at: Tue, 16 Apr 2019 14:14:01 GMT
553
+ - request:
554
+ method: post
555
+ uri: https://<%= vsphere_server %>/sdk
556
+ body:
557
+ encoding: UTF-8
558
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
559
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
560
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
561
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>Datacenter</type><pathSet>name</pathSet></propSet><objectSet
562
+ xsi:type="ObjectSpec"><obj type="Datacenter">datacenter-2</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
563
+ headers:
564
+ Content-Type:
565
+ - text/xml; charset=utf-8
566
+ Soapaction:
567
+ - urn:vim25/6.7
568
+ Cookie:
569
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
570
+ Secure;
571
+ Accept-Encoding:
572
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
573
+ Accept:
574
+ - "*/*"
575
+ User-Agent:
576
+ - Ruby
577
+ response:
578
+ status:
579
+ code: 200
580
+ message: OK
581
+ headers:
582
+ Date:
583
+ - Tue, 16 Apr 2019 14:14:01 GMT
584
+ Cache-Control:
585
+ - no-cache
586
+ Connection:
587
+ - Keep-Alive
588
+ Content-Type:
589
+ - text/xml; charset=utf-8
590
+ X-Frame-Options:
591
+ - DENY
592
+ Content-Length:
593
+ - '538'
594
+ body:
595
+ encoding: UTF-8
596
+ string: |-
597
+ <?xml version="1.0" encoding="UTF-8"?>
598
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
599
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
600
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
601
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
602
+ <soapenv:Body>
603
+ <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>
604
+ </soapenv:Body>
605
+ </soapenv:Envelope>
606
+ http_version:
607
+ recorded_at: Tue, 16 Apr 2019 14:14:01 GMT
608
+ - request:
609
+ method: post
610
+ uri: https://<%= vsphere_server %>/sdk
611
+ body:
612
+ encoding: UTF-8
613
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
614
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
615
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
616
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>Datacenter</type><pathSet>networkFolder</pathSet></propSet><objectSet
617
+ xsi:type="ObjectSpec"><obj type="Datacenter">datacenter-2</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
618
+ headers:
619
+ Content-Type:
620
+ - text/xml; charset=utf-8
621
+ Soapaction:
622
+ - urn:vim25/6.7
623
+ Cookie:
624
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
625
+ Secure;
626
+ Accept-Encoding:
627
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
628
+ Accept:
629
+ - "*/*"
630
+ User-Agent:
631
+ - Ruby
632
+ response:
633
+ status:
634
+ code: 200
635
+ message: OK
636
+ headers:
637
+ Date:
638
+ - Tue, 16 Apr 2019 14:14:01 GMT
639
+ Cache-Control:
640
+ - no-cache
641
+ Connection:
642
+ - Keep-Alive
643
+ Content-Type:
644
+ - text/xml; charset=utf-8
645
+ X-Frame-Options:
646
+ - DENY
647
+ Content-Length:
648
+ - '578'
649
+ body:
650
+ encoding: UTF-8
651
+ string: |-
652
+ <?xml version="1.0" encoding="UTF-8"?>
653
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
654
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
655
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
656
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
657
+ <soapenv:Body>
658
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Datacenter">datacenter-2</obj><propSet><name>networkFolder</name><val type="Folder" xsi:type="ManagedObjectReference">group-n6</val></propSet></returnval></RetrievePropertiesResponse>
659
+ </soapenv:Body>
660
+ </soapenv:Envelope>
661
+ http_version:
662
+ recorded_at: Tue, 16 Apr 2019 14:14:01 GMT
663
+ - request:
664
+ method: post
665
+ uri: https://<%= vsphere_server %>/sdk
666
+ body:
667
+ encoding: UTF-8
668
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
669
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
670
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
671
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>ManagedEntity</type><pathSet>name</pathSet><pathSet>parent</pathSet></propSet><objectSet
672
+ xsi:type="ObjectSpec"><obj type="Folder">group-n6</obj><selectSet xsi:type="TraversalSpec"><name>tsME</name><type>ManagedEntity</type><path>parent</path><skip>0</skip><selectSet
673
+ xsi:type="SelectionSpec"><name>tsME</name></selectSet></selectSet></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
674
+ headers:
675
+ Content-Type:
676
+ - text/xml; charset=utf-8
677
+ Soapaction:
678
+ - urn:vim25/6.7
679
+ Cookie:
680
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
681
+ Secure;
682
+ Accept-Encoding:
683
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
684
+ Accept:
685
+ - "*/*"
686
+ User-Agent:
687
+ - Ruby
688
+ response:
689
+ status:
690
+ code: 200
691
+ message: OK
692
+ headers:
693
+ Date:
694
+ - Tue, 16 Apr 2019 14:14:01 GMT
695
+ Cache-Control:
696
+ - no-cache
697
+ Connection:
698
+ - Keep-Alive
699
+ Content-Type:
700
+ - text/xml; charset=utf-8
701
+ X-Frame-Options:
702
+ - DENY
703
+ Content-Length:
704
+ - '1024'
705
+ body:
706
+ encoding: UTF-8
707
+ string: |-
708
+ <?xml version="1.0" encoding="UTF-8"?>
709
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
710
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
711
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
712
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
713
+ <soapenv:Body>
714
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Folder">group-n6</obj><propSet><name>name</name><val xsi:type="xsd:string">network</val></propSet><propSet><name>parent</name><val type="Datacenter" xsi:type="ManagedObjectReference">datacenter-2</val></propSet></returnval><returnval><obj type="Datacenter">datacenter-2</obj><propSet><name>name</name><val xsi:type="xsd:string">BRQ</val></propSet><propSet><name>parent</name><val type="Folder" xsi:type="ManagedObjectReference">group-d1</val></propSet></returnval><returnval><obj type="Folder">group-d1</obj><propSet><name>name</name><val xsi:type="xsd:string">Datacenters</val></propSet></returnval></RetrievePropertiesResponse>
715
+ </soapenv:Body>
716
+ </soapenv:Envelope>
717
+ http_version:
718
+ recorded_at: Tue, 16 Apr 2019 14:14:01 GMT
719
+ - request:
720
+ method: post
721
+ uri: https://<%= vsphere_server %>/sdk
722
+ body:
723
+ encoding: UTF-8
724
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
725
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><FindChild
726
+ xmlns="urn:vim25"><_this type="SearchIndex">SearchIndex</_this><entity type="Folder">group-n6</entity><name>TestNwFolder</name></FindChild></env:Body></env:Envelope>
727
+ headers:
728
+ Content-Type:
729
+ - text/xml; charset=utf-8
730
+ Soapaction:
731
+ - urn:vim25/6.7
732
+ Cookie:
733
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
734
+ Secure;
735
+ Accept-Encoding:
736
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
737
+ Accept:
738
+ - "*/*"
739
+ User-Agent:
740
+ - Ruby
741
+ response:
742
+ status:
743
+ code: 200
744
+ message: OK
745
+ headers:
746
+ Date:
747
+ - Tue, 16 Apr 2019 14:14:01 GMT
748
+ Cache-Control:
749
+ - no-cache
750
+ Connection:
751
+ - Keep-Alive
752
+ Content-Type:
753
+ - text/xml; charset=utf-8
754
+ X-Frame-Options:
755
+ - DENY
756
+ Content-Length:
757
+ - '430'
758
+ body:
759
+ encoding: UTF-8
760
+ string: |-
761
+ <?xml version="1.0" encoding="UTF-8"?>
762
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
763
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
764
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
765
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
766
+ <soapenv:Body>
767
+ <FindChildResponse xmlns="urn:vim25"><returnval type="Folder">group-n49</returnval></FindChildResponse>
768
+ </soapenv:Body>
769
+ </soapenv:Envelope>
770
+ http_version:
771
+ recorded_at: Tue, 16 Apr 2019 14:14:01 GMT
772
+ - request:
773
+ method: post
774
+ uri: https://<%= vsphere_server %>/sdk
775
+ body:
776
+ encoding: UTF-8
777
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
778
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
779
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
780
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>Folder</type><pathSet>name</pathSet></propSet><objectSet
781
+ xsi:type="ObjectSpec"><obj type="Folder">group-n49</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
782
+ headers:
783
+ Content-Type:
784
+ - text/xml; charset=utf-8
785
+ Soapaction:
786
+ - urn:vim25/6.7
787
+ Cookie:
788
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
789
+ Secure;
790
+ Accept-Encoding:
791
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
792
+ Accept:
793
+ - "*/*"
794
+ User-Agent:
795
+ - Ruby
796
+ response:
797
+ status:
798
+ code: 200
799
+ message: OK
800
+ headers:
801
+ Date:
802
+ - Tue, 16 Apr 2019 14:14:01 GMT
803
+ Cache-Control:
804
+ - no-cache
805
+ Connection:
806
+ - Keep-Alive
807
+ Content-Type:
808
+ - text/xml; charset=utf-8
809
+ X-Frame-Options:
810
+ - DENY
811
+ Content-Length:
812
+ - '540'
813
+ body:
814
+ encoding: UTF-8
815
+ string: |-
816
+ <?xml version="1.0" encoding="UTF-8"?>
817
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
818
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
819
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
820
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
821
+ <soapenv:Body>
822
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Folder">group-n49</obj><propSet><name>name</name><val xsi:type="xsd:string">TestNwFolder</val></propSet></returnval></RetrievePropertiesResponse>
823
+ </soapenv:Body>
824
+ </soapenv:Envelope>
825
+ http_version:
826
+ recorded_at: Tue, 16 Apr 2019 14:14:02 GMT
827
+ - request:
828
+ method: post
829
+ uri: https://<%= vsphere_server %>/sdk
830
+ body:
831
+ encoding: UTF-8
832
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
833
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
834
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
835
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>Folder</type><pathSet>parent</pathSet></propSet><objectSet
836
+ xsi:type="ObjectSpec"><obj type="Folder">group-n49</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
837
+ headers:
838
+ Content-Type:
839
+ - text/xml; charset=utf-8
840
+ Soapaction:
841
+ - urn:vim25/6.7
842
+ Cookie:
843
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
844
+ Secure;
845
+ Accept-Encoding:
846
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
847
+ Accept:
848
+ - "*/*"
849
+ User-Agent:
850
+ - Ruby
851
+ response:
852
+ status:
853
+ code: 200
854
+ message: OK
855
+ headers:
856
+ Date:
857
+ - Tue, 16 Apr 2019 14:14:01 GMT
858
+ Cache-Control:
859
+ - no-cache
860
+ Connection:
861
+ - Keep-Alive
862
+ Content-Type:
863
+ - text/xml; charset=utf-8
864
+ X-Frame-Options:
865
+ - DENY
866
+ Content-Length:
867
+ - '564'
868
+ body:
869
+ encoding: UTF-8
870
+ string: |-
871
+ <?xml version="1.0" encoding="UTF-8"?>
872
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
873
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
874
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
875
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
876
+ <soapenv:Body>
877
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Folder">group-n49</obj><propSet><name>parent</name><val type="Folder" xsi:type="ManagedObjectReference">group-n6</val></propSet></returnval></RetrievePropertiesResponse>
878
+ </soapenv:Body>
879
+ </soapenv:Envelope>
880
+ http_version:
881
+ recorded_at: Tue, 16 Apr 2019 14:14:02 GMT
882
+ - request:
883
+ method: post
884
+ uri: https://<%= vsphere_server %>/sdk
885
+ body:
886
+ encoding: UTF-8
887
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
888
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
889
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
890
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>Folder</type><pathSet>name</pathSet></propSet><objectSet
891
+ xsi:type="ObjectSpec"><obj type="Folder">group-n6</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
892
+ headers:
893
+ Content-Type:
894
+ - text/xml; charset=utf-8
895
+ Soapaction:
896
+ - urn:vim25/6.7
897
+ Cookie:
898
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
899
+ Secure;
900
+ Accept-Encoding:
901
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
902
+ Accept:
903
+ - "*/*"
904
+ User-Agent:
905
+ - Ruby
906
+ response:
907
+ status:
908
+ code: 200
909
+ message: OK
910
+ headers:
911
+ Date:
912
+ - Tue, 16 Apr 2019 14:14:01 GMT
913
+ Cache-Control:
914
+ - no-cache
915
+ Connection:
916
+ - Keep-Alive
917
+ Content-Type:
918
+ - text/xml; charset=utf-8
919
+ X-Frame-Options:
920
+ - DENY
921
+ Content-Length:
922
+ - '534'
923
+ body:
924
+ encoding: UTF-8
925
+ string: |-
926
+ <?xml version="1.0" encoding="UTF-8"?>
927
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
928
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
929
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
930
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
931
+ <soapenv:Body>
932
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Folder">group-n6</obj><propSet><name>name</name><val xsi:type="xsd:string">network</val></propSet></returnval></RetrievePropertiesResponse>
933
+ </soapenv:Body>
934
+ </soapenv:Envelope>
935
+ http_version:
936
+ recorded_at: Tue, 16 Apr 2019 14:14:02 GMT
937
+ - request:
938
+ method: post
939
+ uri: https://<%= vsphere_server %>/sdk
940
+ body:
941
+ encoding: UTF-8
942
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
943
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
944
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
945
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>Folder</type><pathSet>childType</pathSet></propSet><objectSet
946
+ xsi:type="ObjectSpec"><obj type="Folder">group-n49</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
947
+ headers:
948
+ Content-Type:
949
+ - text/xml; charset=utf-8
950
+ Soapaction:
951
+ - urn:vim25/6.7
952
+ Cookie:
953
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
954
+ Secure;
955
+ Accept-Encoding:
956
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
957
+ Accept:
958
+ - "*/*"
959
+ User-Agent:
960
+ - Ruby
961
+ response:
962
+ status:
963
+ code: 200
964
+ message: OK
965
+ headers:
966
+ Date:
967
+ - Tue, 16 Apr 2019 14:14:01 GMT
968
+ Cache-Control:
969
+ - no-cache
970
+ Connection:
971
+ - Keep-Alive
972
+ Content-Type:
973
+ - text/xml; charset=utf-8
974
+ X-Frame-Options:
975
+ - DENY
976
+ Content-Length:
977
+ - '690'
978
+ body:
979
+ encoding: UTF-8
980
+ string: |-
981
+ <?xml version="1.0" encoding="UTF-8"?>
982
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
983
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
984
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
985
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
986
+ <soapenv:Body>
987
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Folder">group-n49</obj><propSet><name>childType</name><val xsi:type="ArrayOfString"><string xsi:type="xsd:string">Folder</string><string xsi:type="xsd:string">Network</string><string xsi:type="xsd:string">DistributedVirtualSwitch</string></val></propSet></returnval></RetrievePropertiesResponse>
988
+ </soapenv:Body>
989
+ </soapenv:Envelope>
990
+ http_version:
991
+ recorded_at: Tue, 16 Apr 2019 14:14:02 GMT
992
+ - request:
993
+ method: post
994
+ uri: https://<%= vsphere_server %>/sdk
995
+ body:
996
+ encoding: UTF-8
997
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
998
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
999
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
1000
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>ManagedEntity</type><pathSet>name</pathSet><pathSet>parent</pathSet></propSet><objectSet
1001
+ xsi:type="ObjectSpec"><obj type="Folder">group-n49</obj><selectSet xsi:type="TraversalSpec"><name>tsME</name><type>ManagedEntity</type><path>parent</path><skip>0</skip><selectSet
1002
+ xsi:type="SelectionSpec"><name>tsME</name></selectSet></selectSet></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
1003
+ headers:
1004
+ Content-Type:
1005
+ - text/xml; charset=utf-8
1006
+ Soapaction:
1007
+ - urn:vim25/6.7
1008
+ Cookie:
1009
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
1010
+ Secure;
1011
+ Accept-Encoding:
1012
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1013
+ Accept:
1014
+ - "*/*"
1015
+ User-Agent:
1016
+ - Ruby
1017
+ response:
1018
+ status:
1019
+ code: 200
1020
+ message: OK
1021
+ headers:
1022
+ Date:
1023
+ - Tue, 16 Apr 2019 14:14:01 GMT
1024
+ Cache-Control:
1025
+ - no-cache
1026
+ Connection:
1027
+ - Keep-Alive
1028
+ Content-Type:
1029
+ - text/xml; charset=utf-8
1030
+ X-Frame-Options:
1031
+ - DENY
1032
+ Content-Length:
1033
+ - '1267'
1034
+ body:
1035
+ encoding: UTF-8
1036
+ string: |-
1037
+ <?xml version="1.0" encoding="UTF-8"?>
1038
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
1039
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
1040
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1041
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1042
+ <soapenv:Body>
1043
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Folder">group-n49</obj><propSet><name>name</name><val xsi:type="xsd:string">TestNwFolder</val></propSet><propSet><name>parent</name><val type="Folder" xsi:type="ManagedObjectReference">group-n6</val></propSet></returnval><returnval><obj type="Folder">group-n6</obj><propSet><name>name</name><val xsi:type="xsd:string">network</val></propSet><propSet><name>parent</name><val type="Datacenter" xsi:type="ManagedObjectReference">datacenter-2</val></propSet></returnval><returnval><obj type="Datacenter">datacenter-2</obj><propSet><name>name</name><val xsi:type="xsd:string">BRQ</val></propSet><propSet><name>parent</name><val type="Folder" xsi:type="ManagedObjectReference">group-d1</val></propSet></returnval><returnval><obj type="Folder">group-d1</obj><propSet><name>name</name><val xsi:type="xsd:string">Datacenters</val></propSet></returnval></RetrievePropertiesResponse>
1044
+ </soapenv:Body>
1045
+ </soapenv:Envelope>
1046
+ http_version:
1047
+ recorded_at: Tue, 16 Apr 2019 14:14:02 GMT
1048
+ - request:
1049
+ method: post
1050
+ uri: https://<%= vsphere_server %>/sdk
1051
+ body:
1052
+ encoding: UTF-8
1053
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1054
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
1055
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
1056
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>Datacenter</type><pathSet>name</pathSet></propSet><objectSet
1057
+ xsi:type="ObjectSpec"><obj type="Datacenter">datacenter-2</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
1058
+ headers:
1059
+ Content-Type:
1060
+ - text/xml; charset=utf-8
1061
+ Soapaction:
1062
+ - urn:vim25/6.7
1063
+ Cookie:
1064
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
1065
+ Secure;
1066
+ Accept-Encoding:
1067
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1068
+ Accept:
1069
+ - "*/*"
1070
+ User-Agent:
1071
+ - Ruby
1072
+ response:
1073
+ status:
1074
+ code: 200
1075
+ message: OK
1076
+ headers:
1077
+ Date:
1078
+ - Tue, 16 Apr 2019 14:14:01 GMT
1079
+ Cache-Control:
1080
+ - no-cache
1081
+ Connection:
1082
+ - Keep-Alive
1083
+ Content-Type:
1084
+ - text/xml; charset=utf-8
1085
+ X-Frame-Options:
1086
+ - DENY
1087
+ Content-Length:
1088
+ - '538'
1089
+ body:
1090
+ encoding: UTF-8
1091
+ string: |-
1092
+ <?xml version="1.0" encoding="UTF-8"?>
1093
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
1094
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
1095
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1096
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1097
+ <soapenv:Body>
1098
+ <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>
1099
+ </soapenv:Body>
1100
+ </soapenv:Envelope>
1101
+ http_version:
1102
+ recorded_at: Tue, 16 Apr 2019 14:14:02 GMT
1103
+ - request:
1104
+ method: post
1105
+ uri: https://<%= vsphere_server %>/sdk
1106
+ body:
1107
+ encoding: UTF-8
1108
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1109
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
1110
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
1111
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>Datacenter</type><pathSet>hostFolder</pathSet></propSet><objectSet
1112
+ xsi:type="ObjectSpec"><obj type="Datacenter">datacenter-2</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
1113
+ headers:
1114
+ Content-Type:
1115
+ - text/xml; charset=utf-8
1116
+ Soapaction:
1117
+ - urn:vim25/6.7
1118
+ Cookie:
1119
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
1120
+ Secure;
1121
+ Accept-Encoding:
1122
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1123
+ Accept:
1124
+ - "*/*"
1125
+ User-Agent:
1126
+ - Ruby
1127
+ response:
1128
+ status:
1129
+ code: 200
1130
+ message: OK
1131
+ headers:
1132
+ Date:
1133
+ - Tue, 16 Apr 2019 14:14:01 GMT
1134
+ Cache-Control:
1135
+ - no-cache
1136
+ Connection:
1137
+ - Keep-Alive
1138
+ Content-Type:
1139
+ - text/xml; charset=utf-8
1140
+ X-Frame-Options:
1141
+ - DENY
1142
+ Content-Length:
1143
+ - '575'
1144
+ body:
1145
+ encoding: UTF-8
1146
+ string: |-
1147
+ <?xml version="1.0" encoding="UTF-8"?>
1148
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
1149
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
1150
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1151
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1152
+ <soapenv:Body>
1153
+ <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>
1154
+ </soapenv:Body>
1155
+ </soapenv:Envelope>
1156
+ http_version:
1157
+ recorded_at: Tue, 16 Apr 2019 14:14:02 GMT
1158
+ - request:
1159
+ method: post
1160
+ uri: https://<%= vsphere_server %>/sdk
1161
+ body:
1162
+ encoding: UTF-8
1163
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1164
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
1165
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
1166
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>ManagedEntity</type><pathSet>name</pathSet><pathSet>parent</pathSet></propSet><objectSet
1167
+ xsi:type="ObjectSpec"><obj type="Folder">group-h4</obj><selectSet xsi:type="TraversalSpec"><name>tsME</name><type>ManagedEntity</type><path>parent</path><skip>0</skip><selectSet
1168
+ xsi:type="SelectionSpec"><name>tsME</name></selectSet></selectSet></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
1169
+ headers:
1170
+ Content-Type:
1171
+ - text/xml; charset=utf-8
1172
+ Soapaction:
1173
+ - urn:vim25/6.7
1174
+ Cookie:
1175
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
1176
+ Secure;
1177
+ Accept-Encoding:
1178
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1179
+ Accept:
1180
+ - "*/*"
1181
+ User-Agent:
1182
+ - Ruby
1183
+ response:
1184
+ status:
1185
+ code: 200
1186
+ message: OK
1187
+ headers:
1188
+ Date:
1189
+ - Tue, 16 Apr 2019 14:14:01 GMT
1190
+ Cache-Control:
1191
+ - no-cache
1192
+ Connection:
1193
+ - Keep-Alive
1194
+ Content-Type:
1195
+ - text/xml; charset=utf-8
1196
+ X-Frame-Options:
1197
+ - DENY
1198
+ Content-Length:
1199
+ - '1021'
1200
+ body:
1201
+ encoding: UTF-8
1202
+ string: |-
1203
+ <?xml version="1.0" encoding="UTF-8"?>
1204
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
1205
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
1206
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1207
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1208
+ <soapenv:Body>
1209
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Folder">group-h4</obj><propSet><name>name</name><val xsi:type="xsd:string">host</val></propSet><propSet><name>parent</name><val type="Datacenter" xsi:type="ManagedObjectReference">datacenter-2</val></propSet></returnval><returnval><obj type="Datacenter">datacenter-2</obj><propSet><name>name</name><val xsi:type="xsd:string">BRQ</val></propSet><propSet><name>parent</name><val type="Folder" xsi:type="ManagedObjectReference">group-d1</val></propSet></returnval><returnval><obj type="Folder">group-d1</obj><propSet><name>name</name><val xsi:type="xsd:string">Datacenters</val></propSet></returnval></RetrievePropertiesResponse>
1210
+ </soapenv:Body>
1211
+ </soapenv:Envelope>
1212
+ http_version:
1213
+ recorded_at: Tue, 16 Apr 2019 14:14:02 GMT
1214
+ - request:
1215
+ method: post
1216
+ uri: https://<%= vsphere_server %>/sdk
1217
+ body:
1218
+ encoding: UTF-8
1219
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1220
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><FindChild
1221
+ xmlns="urn:vim25"><_this type="SearchIndex">SearchIndex</_this><entity type="Folder">group-h4</entity><name>TestHostFolder</name></FindChild></env:Body></env:Envelope>
1222
+ headers:
1223
+ Content-Type:
1224
+ - text/xml; charset=utf-8
1225
+ Soapaction:
1226
+ - urn:vim25/6.7
1227
+ Cookie:
1228
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
1229
+ Secure;
1230
+ Accept-Encoding:
1231
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1232
+ Accept:
1233
+ - "*/*"
1234
+ User-Agent:
1235
+ - Ruby
1236
+ response:
1237
+ status:
1238
+ code: 200
1239
+ message: OK
1240
+ headers:
1241
+ Date:
1242
+ - Tue, 16 Apr 2019 14:14:01 GMT
1243
+ Cache-Control:
1244
+ - no-cache
1245
+ Connection:
1246
+ - Keep-Alive
1247
+ Content-Type:
1248
+ - text/xml; charset=utf-8
1249
+ X-Frame-Options:
1250
+ - DENY
1251
+ Content-Length:
1252
+ - '430'
1253
+ body:
1254
+ encoding: UTF-8
1255
+ string: |-
1256
+ <?xml version="1.0" encoding="UTF-8"?>
1257
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
1258
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
1259
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1260
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1261
+ <soapenv:Body>
1262
+ <FindChildResponse xmlns="urn:vim25"><returnval type="Folder">group-h50</returnval></FindChildResponse>
1263
+ </soapenv:Body>
1264
+ </soapenv:Envelope>
1265
+ http_version:
1266
+ recorded_at: Tue, 16 Apr 2019 14:14:02 GMT
1267
+ - request:
1268
+ method: post
1269
+ uri: https://<%= vsphere_server %>/sdk
1270
+ body:
1271
+ encoding: UTF-8
1272
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1273
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
1274
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
1275
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>Folder</type><pathSet>name</pathSet></propSet><objectSet
1276
+ xsi:type="ObjectSpec"><obj type="Folder">group-h50</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
1277
+ headers:
1278
+ Content-Type:
1279
+ - text/xml; charset=utf-8
1280
+ Soapaction:
1281
+ - urn:vim25/6.7
1282
+ Cookie:
1283
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
1284
+ Secure;
1285
+ Accept-Encoding:
1286
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1287
+ Accept:
1288
+ - "*/*"
1289
+ User-Agent:
1290
+ - Ruby
1291
+ response:
1292
+ status:
1293
+ code: 200
1294
+ message: OK
1295
+ headers:
1296
+ Date:
1297
+ - Tue, 16 Apr 2019 14:14:01 GMT
1298
+ Cache-Control:
1299
+ - no-cache
1300
+ Connection:
1301
+ - Keep-Alive
1302
+ Content-Type:
1303
+ - text/xml; charset=utf-8
1304
+ X-Frame-Options:
1305
+ - DENY
1306
+ Content-Length:
1307
+ - '542'
1308
+ body:
1309
+ encoding: UTF-8
1310
+ string: |-
1311
+ <?xml version="1.0" encoding="UTF-8"?>
1312
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
1313
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
1314
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1315
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1316
+ <soapenv:Body>
1317
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Folder">group-h50</obj><propSet><name>name</name><val xsi:type="xsd:string">TestHostFolder</val></propSet></returnval></RetrievePropertiesResponse>
1318
+ </soapenv:Body>
1319
+ </soapenv:Envelope>
1320
+ http_version:
1321
+ recorded_at: Tue, 16 Apr 2019 14:14:02 GMT
1322
+ - request:
1323
+ method: post
1324
+ uri: https://<%= vsphere_server %>/sdk
1325
+ body:
1326
+ encoding: UTF-8
1327
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1328
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
1329
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
1330
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>Folder</type><pathSet>parent</pathSet></propSet><objectSet
1331
+ xsi:type="ObjectSpec"><obj type="Folder">group-h50</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
1332
+ headers:
1333
+ Content-Type:
1334
+ - text/xml; charset=utf-8
1335
+ Soapaction:
1336
+ - urn:vim25/6.7
1337
+ Cookie:
1338
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
1339
+ Secure;
1340
+ Accept-Encoding:
1341
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1342
+ Accept:
1343
+ - "*/*"
1344
+ User-Agent:
1345
+ - Ruby
1346
+ response:
1347
+ status:
1348
+ code: 200
1349
+ message: OK
1350
+ headers:
1351
+ Date:
1352
+ - Tue, 16 Apr 2019 14:14:01 GMT
1353
+ Cache-Control:
1354
+ - no-cache
1355
+ Connection:
1356
+ - Keep-Alive
1357
+ Content-Type:
1358
+ - text/xml; charset=utf-8
1359
+ X-Frame-Options:
1360
+ - DENY
1361
+ Content-Length:
1362
+ - '564'
1363
+ body:
1364
+ encoding: UTF-8
1365
+ string: |-
1366
+ <?xml version="1.0" encoding="UTF-8"?>
1367
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
1368
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
1369
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1370
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1371
+ <soapenv:Body>
1372
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Folder">group-h50</obj><propSet><name>parent</name><val type="Folder" xsi:type="ManagedObjectReference">group-h4</val></propSet></returnval></RetrievePropertiesResponse>
1373
+ </soapenv:Body>
1374
+ </soapenv:Envelope>
1375
+ http_version:
1376
+ recorded_at: Tue, 16 Apr 2019 14:14:02 GMT
1377
+ - request:
1378
+ method: post
1379
+ uri: https://<%= vsphere_server %>/sdk
1380
+ body:
1381
+ encoding: UTF-8
1382
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1383
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
1384
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
1385
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>Folder</type><pathSet>name</pathSet></propSet><objectSet
1386
+ xsi:type="ObjectSpec"><obj type="Folder">group-h4</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
1387
+ headers:
1388
+ Content-Type:
1389
+ - text/xml; charset=utf-8
1390
+ Soapaction:
1391
+ - urn:vim25/6.7
1392
+ Cookie:
1393
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
1394
+ Secure;
1395
+ Accept-Encoding:
1396
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1397
+ Accept:
1398
+ - "*/*"
1399
+ User-Agent:
1400
+ - Ruby
1401
+ response:
1402
+ status:
1403
+ code: 200
1404
+ message: OK
1405
+ headers:
1406
+ Date:
1407
+ - Tue, 16 Apr 2019 14:14:01 GMT
1408
+ Cache-Control:
1409
+ - no-cache
1410
+ Connection:
1411
+ - Keep-Alive
1412
+ Content-Type:
1413
+ - text/xml; charset=utf-8
1414
+ X-Frame-Options:
1415
+ - DENY
1416
+ Content-Length:
1417
+ - '531'
1418
+ body:
1419
+ encoding: UTF-8
1420
+ string: |-
1421
+ <?xml version="1.0" encoding="UTF-8"?>
1422
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
1423
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
1424
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1425
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1426
+ <soapenv:Body>
1427
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Folder">group-h4</obj><propSet><name>name</name><val xsi:type="xsd:string">host</val></propSet></returnval></RetrievePropertiesResponse>
1428
+ </soapenv:Body>
1429
+ </soapenv:Envelope>
1430
+ http_version:
1431
+ recorded_at: Tue, 16 Apr 2019 14:14:02 GMT
1432
+ - request:
1433
+ method: post
1434
+ uri: https://<%= vsphere_server %>/sdk
1435
+ body:
1436
+ encoding: UTF-8
1437
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1438
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
1439
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
1440
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>Folder</type><pathSet>childType</pathSet></propSet><objectSet
1441
+ xsi:type="ObjectSpec"><obj type="Folder">group-h50</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
1442
+ headers:
1443
+ Content-Type:
1444
+ - text/xml; charset=utf-8
1445
+ Soapaction:
1446
+ - urn:vim25/6.7
1447
+ Cookie:
1448
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
1449
+ Secure;
1450
+ Accept-Encoding:
1451
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1452
+ Accept:
1453
+ - "*/*"
1454
+ User-Agent:
1455
+ - Ruby
1456
+ response:
1457
+ status:
1458
+ code: 200
1459
+ message: OK
1460
+ headers:
1461
+ Date:
1462
+ - Tue, 16 Apr 2019 14:14:01 GMT
1463
+ Cache-Control:
1464
+ - no-cache
1465
+ Connection:
1466
+ - Keep-Alive
1467
+ Content-Type:
1468
+ - text/xml; charset=utf-8
1469
+ X-Frame-Options:
1470
+ - DENY
1471
+ Content-Length:
1472
+ - '635'
1473
+ body:
1474
+ encoding: UTF-8
1475
+ string: |-
1476
+ <?xml version="1.0" encoding="UTF-8"?>
1477
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
1478
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
1479
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1480
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1481
+ <soapenv:Body>
1482
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Folder">group-h50</obj><propSet><name>childType</name><val xsi:type="ArrayOfString"><string xsi:type="xsd:string">Folder</string><string xsi:type="xsd:string">ComputeResource</string></val></propSet></returnval></RetrievePropertiesResponse>
1483
+ </soapenv:Body>
1484
+ </soapenv:Envelope>
1485
+ http_version:
1486
+ recorded_at: Tue, 16 Apr 2019 14:14:02 GMT
1487
+ - request:
1488
+ method: post
1489
+ uri: https://<%= vsphere_server %>/sdk
1490
+ body:
1491
+ encoding: UTF-8
1492
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1493
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
1494
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
1495
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>ManagedEntity</type><pathSet>name</pathSet><pathSet>parent</pathSet></propSet><objectSet
1496
+ xsi:type="ObjectSpec"><obj type="Folder">group-h50</obj><selectSet xsi:type="TraversalSpec"><name>tsME</name><type>ManagedEntity</type><path>parent</path><skip>0</skip><selectSet
1497
+ xsi:type="SelectionSpec"><name>tsME</name></selectSet></selectSet></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
1498
+ headers:
1499
+ Content-Type:
1500
+ - text/xml; charset=utf-8
1501
+ Soapaction:
1502
+ - urn:vim25/6.7
1503
+ Cookie:
1504
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
1505
+ Secure;
1506
+ Accept-Encoding:
1507
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1508
+ Accept:
1509
+ - "*/*"
1510
+ User-Agent:
1511
+ - Ruby
1512
+ response:
1513
+ status:
1514
+ code: 200
1515
+ message: OK
1516
+ headers:
1517
+ Date:
1518
+ - Tue, 16 Apr 2019 14:14:01 GMT
1519
+ Cache-Control:
1520
+ - no-cache
1521
+ Connection:
1522
+ - Keep-Alive
1523
+ Content-Type:
1524
+ - text/xml; charset=utf-8
1525
+ X-Frame-Options:
1526
+ - DENY
1527
+ Content-Length:
1528
+ - '1266'
1529
+ body:
1530
+ encoding: UTF-8
1531
+ string: |-
1532
+ <?xml version="1.0" encoding="UTF-8"?>
1533
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
1534
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
1535
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1536
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1537
+ <soapenv:Body>
1538
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Folder">group-h50</obj><propSet><name>name</name><val xsi:type="xsd:string">TestHostFolder</val></propSet><propSet><name>parent</name><val type="Folder" xsi:type="ManagedObjectReference">group-h4</val></propSet></returnval><returnval><obj type="Folder">group-h4</obj><propSet><name>name</name><val xsi:type="xsd:string">host</val></propSet><propSet><name>parent</name><val type="Datacenter" xsi:type="ManagedObjectReference">datacenter-2</val></propSet></returnval><returnval><obj type="Datacenter">datacenter-2</obj><propSet><name>name</name><val xsi:type="xsd:string">BRQ</val></propSet><propSet><name>parent</name><val type="Folder" xsi:type="ManagedObjectReference">group-d1</val></propSet></returnval><returnval><obj type="Folder">group-d1</obj><propSet><name>name</name><val xsi:type="xsd:string">Datacenters</val></propSet></returnval></RetrievePropertiesResponse>
1539
+ </soapenv:Body>
1540
+ </soapenv:Envelope>
1541
+ http_version:
1542
+ recorded_at: Tue, 16 Apr 2019 14:14:02 GMT
1543
+ - request:
1544
+ method: post
1545
+ uri: https://<%= vsphere_server %>/sdk
1546
+ body:
1547
+ encoding: UTF-8
1548
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1549
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
1550
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
1551
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>Datacenter</type><pathSet>name</pathSet></propSet><objectSet
1552
+ xsi:type="ObjectSpec"><obj type="Datacenter">datacenter-2</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
1553
+ headers:
1554
+ Content-Type:
1555
+ - text/xml; charset=utf-8
1556
+ Soapaction:
1557
+ - urn:vim25/6.7
1558
+ Cookie:
1559
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
1560
+ Secure;
1561
+ Accept-Encoding:
1562
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1563
+ Accept:
1564
+ - "*/*"
1565
+ User-Agent:
1566
+ - Ruby
1567
+ response:
1568
+ status:
1569
+ code: 200
1570
+ message: OK
1571
+ headers:
1572
+ Date:
1573
+ - Tue, 16 Apr 2019 14:14:01 GMT
1574
+ Cache-Control:
1575
+ - no-cache
1576
+ Connection:
1577
+ - Keep-Alive
1578
+ Content-Type:
1579
+ - text/xml; charset=utf-8
1580
+ X-Frame-Options:
1581
+ - DENY
1582
+ Content-Length:
1583
+ - '538'
1584
+ body:
1585
+ encoding: UTF-8
1586
+ string: |-
1587
+ <?xml version="1.0" encoding="UTF-8"?>
1588
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
1589
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
1590
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1591
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1592
+ <soapenv:Body>
1593
+ <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>
1594
+ </soapenv:Body>
1595
+ </soapenv:Envelope>
1596
+ http_version:
1597
+ recorded_at: Tue, 16 Apr 2019 14:14:02 GMT
1598
+ - request:
1599
+ method: post
1600
+ uri: https://<%= vsphere_server %>/sdk
1601
+ body:
1602
+ encoding: UTF-8
1603
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1604
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
1605
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
1606
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>Datacenter</type><pathSet>datastoreFolder</pathSet></propSet><objectSet
1607
+ xsi:type="ObjectSpec"><obj type="Datacenter">datacenter-2</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
1608
+ headers:
1609
+ Content-Type:
1610
+ - text/xml; charset=utf-8
1611
+ Soapaction:
1612
+ - urn:vim25/6.7
1613
+ Cookie:
1614
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
1615
+ Secure;
1616
+ Accept-Encoding:
1617
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1618
+ Accept:
1619
+ - "*/*"
1620
+ User-Agent:
1621
+ - Ruby
1622
+ response:
1623
+ status:
1624
+ code: 200
1625
+ message: OK
1626
+ headers:
1627
+ Date:
1628
+ - Tue, 16 Apr 2019 14:14:02 GMT
1629
+ Cache-Control:
1630
+ - no-cache
1631
+ Connection:
1632
+ - Keep-Alive
1633
+ Content-Type:
1634
+ - text/xml; charset=utf-8
1635
+ X-Frame-Options:
1636
+ - DENY
1637
+ Content-Length:
1638
+ - '580'
1639
+ body:
1640
+ encoding: UTF-8
1641
+ string: |-
1642
+ <?xml version="1.0" encoding="UTF-8"?>
1643
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
1644
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
1645
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1646
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1647
+ <soapenv:Body>
1648
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Datacenter">datacenter-2</obj><propSet><name>datastoreFolder</name><val type="Folder" xsi:type="ManagedObjectReference">group-s5</val></propSet></returnval></RetrievePropertiesResponse>
1649
+ </soapenv:Body>
1650
+ </soapenv:Envelope>
1651
+ http_version:
1652
+ recorded_at: Tue, 16 Apr 2019 14:14:02 GMT
1653
+ - request:
1654
+ method: post
1655
+ uri: https://<%= vsphere_server %>/sdk
1656
+ body:
1657
+ encoding: UTF-8
1658
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1659
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
1660
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
1661
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>ManagedEntity</type><pathSet>name</pathSet><pathSet>parent</pathSet></propSet><objectSet
1662
+ xsi:type="ObjectSpec"><obj type="Folder">group-s5</obj><selectSet xsi:type="TraversalSpec"><name>tsME</name><type>ManagedEntity</type><path>parent</path><skip>0</skip><selectSet
1663
+ xsi:type="SelectionSpec"><name>tsME</name></selectSet></selectSet></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
1664
+ headers:
1665
+ Content-Type:
1666
+ - text/xml; charset=utf-8
1667
+ Soapaction:
1668
+ - urn:vim25/6.7
1669
+ Cookie:
1670
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
1671
+ Secure;
1672
+ Accept-Encoding:
1673
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1674
+ Accept:
1675
+ - "*/*"
1676
+ User-Agent:
1677
+ - Ruby
1678
+ response:
1679
+ status:
1680
+ code: 200
1681
+ message: OK
1682
+ headers:
1683
+ Date:
1684
+ - Tue, 16 Apr 2019 14:14:02 GMT
1685
+ Cache-Control:
1686
+ - no-cache
1687
+ Connection:
1688
+ - Keep-Alive
1689
+ Content-Type:
1690
+ - text/xml; charset=utf-8
1691
+ X-Frame-Options:
1692
+ - DENY
1693
+ Content-Length:
1694
+ - '1026'
1695
+ body:
1696
+ encoding: UTF-8
1697
+ string: |-
1698
+ <?xml version="1.0" encoding="UTF-8"?>
1699
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
1700
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
1701
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1702
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1703
+ <soapenv:Body>
1704
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Folder">group-s5</obj><propSet><name>name</name><val xsi:type="xsd:string">datastore</val></propSet><propSet><name>parent</name><val type="Datacenter" xsi:type="ManagedObjectReference">datacenter-2</val></propSet></returnval><returnval><obj type="Datacenter">datacenter-2</obj><propSet><name>name</name><val xsi:type="xsd:string">BRQ</val></propSet><propSet><name>parent</name><val type="Folder" xsi:type="ManagedObjectReference">group-d1</val></propSet></returnval><returnval><obj type="Folder">group-d1</obj><propSet><name>name</name><val xsi:type="xsd:string">Datacenters</val></propSet></returnval></RetrievePropertiesResponse>
1705
+ </soapenv:Body>
1706
+ </soapenv:Envelope>
1707
+ http_version:
1708
+ recorded_at: Tue, 16 Apr 2019 14:14:02 GMT
1709
+ - request:
1710
+ method: post
1711
+ uri: https://<%= vsphere_server %>/sdk
1712
+ body:
1713
+ encoding: UTF-8
1714
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1715
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><FindChild
1716
+ xmlns="urn:vim25"><_this type="SearchIndex">SearchIndex</_this><entity type="Folder">group-s5</entity><name>TestDsFolder</name></FindChild></env:Body></env:Envelope>
1717
+ headers:
1718
+ Content-Type:
1719
+ - text/xml; charset=utf-8
1720
+ Soapaction:
1721
+ - urn:vim25/6.7
1722
+ Cookie:
1723
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
1724
+ Secure;
1725
+ Accept-Encoding:
1726
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1727
+ Accept:
1728
+ - "*/*"
1729
+ User-Agent:
1730
+ - Ruby
1731
+ response:
1732
+ status:
1733
+ code: 200
1734
+ message: OK
1735
+ headers:
1736
+ Date:
1737
+ - Tue, 16 Apr 2019 14:14:02 GMT
1738
+ Cache-Control:
1739
+ - no-cache
1740
+ Connection:
1741
+ - Keep-Alive
1742
+ Content-Type:
1743
+ - text/xml; charset=utf-8
1744
+ X-Frame-Options:
1745
+ - DENY
1746
+ Content-Length:
1747
+ - '430'
1748
+ body:
1749
+ encoding: UTF-8
1750
+ string: |-
1751
+ <?xml version="1.0" encoding="UTF-8"?>
1752
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
1753
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
1754
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1755
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1756
+ <soapenv:Body>
1757
+ <FindChildResponse xmlns="urn:vim25"><returnval type="Folder">group-s51</returnval></FindChildResponse>
1758
+ </soapenv:Body>
1759
+ </soapenv:Envelope>
1760
+ http_version:
1761
+ recorded_at: Tue, 16 Apr 2019 14:14:02 GMT
1762
+ - request:
1763
+ method: post
1764
+ uri: https://<%= vsphere_server %>/sdk
1765
+ body:
1766
+ encoding: UTF-8
1767
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1768
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
1769
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
1770
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>Folder</type><pathSet>name</pathSet></propSet><objectSet
1771
+ xsi:type="ObjectSpec"><obj type="Folder">group-s51</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
1772
+ headers:
1773
+ Content-Type:
1774
+ - text/xml; charset=utf-8
1775
+ Soapaction:
1776
+ - urn:vim25/6.7
1777
+ Cookie:
1778
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
1779
+ Secure;
1780
+ Accept-Encoding:
1781
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1782
+ Accept:
1783
+ - "*/*"
1784
+ User-Agent:
1785
+ - Ruby
1786
+ response:
1787
+ status:
1788
+ code: 200
1789
+ message: OK
1790
+ headers:
1791
+ Date:
1792
+ - Tue, 16 Apr 2019 14:14:02 GMT
1793
+ Cache-Control:
1794
+ - no-cache
1795
+ Connection:
1796
+ - Keep-Alive
1797
+ Content-Type:
1798
+ - text/xml; charset=utf-8
1799
+ X-Frame-Options:
1800
+ - DENY
1801
+ Content-Length:
1802
+ - '540'
1803
+ body:
1804
+ encoding: UTF-8
1805
+ string: |-
1806
+ <?xml version="1.0" encoding="UTF-8"?>
1807
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
1808
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
1809
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1810
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1811
+ <soapenv:Body>
1812
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Folder">group-s51</obj><propSet><name>name</name><val xsi:type="xsd:string">TestDsFolder</val></propSet></returnval></RetrievePropertiesResponse>
1813
+ </soapenv:Body>
1814
+ </soapenv:Envelope>
1815
+ http_version:
1816
+ recorded_at: Tue, 16 Apr 2019 14:14:02 GMT
1817
+ - request:
1818
+ method: post
1819
+ uri: https://<%= vsphere_server %>/sdk
1820
+ body:
1821
+ encoding: UTF-8
1822
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1823
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
1824
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
1825
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>Folder</type><pathSet>parent</pathSet></propSet><objectSet
1826
+ xsi:type="ObjectSpec"><obj type="Folder">group-s51</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
1827
+ headers:
1828
+ Content-Type:
1829
+ - text/xml; charset=utf-8
1830
+ Soapaction:
1831
+ - urn:vim25/6.7
1832
+ Cookie:
1833
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
1834
+ Secure;
1835
+ Accept-Encoding:
1836
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1837
+ Accept:
1838
+ - "*/*"
1839
+ User-Agent:
1840
+ - Ruby
1841
+ response:
1842
+ status:
1843
+ code: 200
1844
+ message: OK
1845
+ headers:
1846
+ Date:
1847
+ - Tue, 16 Apr 2019 14:14:02 GMT
1848
+ Cache-Control:
1849
+ - no-cache
1850
+ Connection:
1851
+ - Keep-Alive
1852
+ Content-Type:
1853
+ - text/xml; charset=utf-8
1854
+ X-Frame-Options:
1855
+ - DENY
1856
+ Content-Length:
1857
+ - '564'
1858
+ body:
1859
+ encoding: UTF-8
1860
+ string: |-
1861
+ <?xml version="1.0" encoding="UTF-8"?>
1862
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
1863
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
1864
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1865
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1866
+ <soapenv:Body>
1867
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Folder">group-s51</obj><propSet><name>parent</name><val type="Folder" xsi:type="ManagedObjectReference">group-s5</val></propSet></returnval></RetrievePropertiesResponse>
1868
+ </soapenv:Body>
1869
+ </soapenv:Envelope>
1870
+ http_version:
1871
+ recorded_at: Tue, 16 Apr 2019 14:14:02 GMT
1872
+ - request:
1873
+ method: post
1874
+ uri: https://<%= vsphere_server %>/sdk
1875
+ body:
1876
+ encoding: UTF-8
1877
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1878
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
1879
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
1880
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>Folder</type><pathSet>name</pathSet></propSet><objectSet
1881
+ xsi:type="ObjectSpec"><obj type="Folder">group-s5</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
1882
+ headers:
1883
+ Content-Type:
1884
+ - text/xml; charset=utf-8
1885
+ Soapaction:
1886
+ - urn:vim25/6.7
1887
+ Cookie:
1888
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
1889
+ Secure;
1890
+ Accept-Encoding:
1891
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1892
+ Accept:
1893
+ - "*/*"
1894
+ User-Agent:
1895
+ - Ruby
1896
+ response:
1897
+ status:
1898
+ code: 200
1899
+ message: OK
1900
+ headers:
1901
+ Date:
1902
+ - Tue, 16 Apr 2019 14:14:02 GMT
1903
+ Cache-Control:
1904
+ - no-cache
1905
+ Connection:
1906
+ - Keep-Alive
1907
+ Content-Type:
1908
+ - text/xml; charset=utf-8
1909
+ X-Frame-Options:
1910
+ - DENY
1911
+ Content-Length:
1912
+ - '536'
1913
+ body:
1914
+ encoding: UTF-8
1915
+ string: |-
1916
+ <?xml version="1.0" encoding="UTF-8"?>
1917
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
1918
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
1919
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1920
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1921
+ <soapenv:Body>
1922
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Folder">group-s5</obj><propSet><name>name</name><val xsi:type="xsd:string">datastore</val></propSet></returnval></RetrievePropertiesResponse>
1923
+ </soapenv:Body>
1924
+ </soapenv:Envelope>
1925
+ http_version:
1926
+ recorded_at: Tue, 16 Apr 2019 14:14:02 GMT
1927
+ - request:
1928
+ method: post
1929
+ uri: https://<%= vsphere_server %>/sdk
1930
+ body:
1931
+ encoding: UTF-8
1932
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1933
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
1934
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
1935
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>Folder</type><pathSet>childType</pathSet></propSet><objectSet
1936
+ xsi:type="ObjectSpec"><obj type="Folder">group-s51</obj></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
1937
+ headers:
1938
+ Content-Type:
1939
+ - text/xml; charset=utf-8
1940
+ Soapaction:
1941
+ - urn:vim25/6.7
1942
+ Cookie:
1943
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
1944
+ Secure;
1945
+ Accept-Encoding:
1946
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1947
+ Accept:
1948
+ - "*/*"
1949
+ User-Agent:
1950
+ - Ruby
1951
+ response:
1952
+ status:
1953
+ code: 200
1954
+ message: OK
1955
+ headers:
1956
+ Date:
1957
+ - Tue, 16 Apr 2019 14:14:02 GMT
1958
+ Cache-Control:
1959
+ - no-cache
1960
+ Connection:
1961
+ - Keep-Alive
1962
+ Content-Type:
1963
+ - text/xml; charset=utf-8
1964
+ X-Frame-Options:
1965
+ - DENY
1966
+ Content-Length:
1967
+ - '678'
1968
+ body:
1969
+ encoding: UTF-8
1970
+ string: |-
1971
+ <?xml version="1.0" encoding="UTF-8"?>
1972
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
1973
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
1974
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1975
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1976
+ <soapenv:Body>
1977
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Folder">group-s51</obj><propSet><name>childType</name><val xsi:type="ArrayOfString"><string xsi:type="xsd:string">Folder</string><string xsi:type="xsd:string">Datastore</string><string xsi:type="xsd:string">StoragePod</string></val></propSet></returnval></RetrievePropertiesResponse>
1978
+ </soapenv:Body>
1979
+ </soapenv:Envelope>
1980
+ http_version:
1981
+ recorded_at: Tue, 16 Apr 2019 14:14:02 GMT
1982
+ - request:
1983
+ method: post
1984
+ uri: https://<%= vsphere_server %>/sdk
1985
+ body:
1986
+ encoding: UTF-8
1987
+ string: <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1988
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><RetrieveProperties
1989
+ xmlns="urn:vim25"><_this type="PropertyCollector">propertyCollector</_this><specSet
1990
+ xsi:type="PropertyFilterSpec"><propSet xsi:type="PropertySpec"><type>ManagedEntity</type><pathSet>name</pathSet><pathSet>parent</pathSet></propSet><objectSet
1991
+ xsi:type="ObjectSpec"><obj type="Folder">group-s51</obj><selectSet xsi:type="TraversalSpec"><name>tsME</name><type>ManagedEntity</type><path>parent</path><skip>0</skip><selectSet
1992
+ xsi:type="SelectionSpec"><name>tsME</name></selectSet></selectSet></objectSet></specSet></RetrieveProperties></env:Body></env:Envelope>
1993
+ headers:
1994
+ Content-Type:
1995
+ - text/xml; charset=utf-8
1996
+ Soapaction:
1997
+ - urn:vim25/6.7
1998
+ Cookie:
1999
+ - vmware_soap_session="af357b44a0386daa008c292cbb9d325644ff0fcb"; Path=/; HttpOnly;
2000
+ Secure;
2001
+ Accept-Encoding:
2002
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2003
+ Accept:
2004
+ - "*/*"
2005
+ User-Agent:
2006
+ - Ruby
2007
+ response:
2008
+ status:
2009
+ code: 200
2010
+ message: OK
2011
+ headers:
2012
+ Date:
2013
+ - Tue, 16 Apr 2019 14:14:02 GMT
2014
+ Cache-Control:
2015
+ - no-cache
2016
+ Connection:
2017
+ - Keep-Alive
2018
+ Content-Type:
2019
+ - text/xml; charset=utf-8
2020
+ X-Frame-Options:
2021
+ - DENY
2022
+ Content-Length:
2023
+ - '1269'
2024
+ body:
2025
+ encoding: UTF-8
2026
+ string: |-
2027
+ <?xml version="1.0" encoding="UTF-8"?>
2028
+ <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
2029
+ xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
2030
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
2031
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2032
+ <soapenv:Body>
2033
+ <RetrievePropertiesResponse xmlns="urn:vim25"><returnval><obj type="Folder">group-s51</obj><propSet><name>name</name><val xsi:type="xsd:string">TestDsFolder</val></propSet><propSet><name>parent</name><val type="Folder" xsi:type="ManagedObjectReference">group-s5</val></propSet></returnval><returnval><obj type="Folder">group-s5</obj><propSet><name>name</name><val xsi:type="xsd:string">datastore</val></propSet><propSet><name>parent</name><val type="Datacenter" xsi:type="ManagedObjectReference">datacenter-2</val></propSet></returnval><returnval><obj type="Datacenter">datacenter-2</obj><propSet><name>name</name><val xsi:type="xsd:string">BRQ</val></propSet><propSet><name>parent</name><val type="Folder" xsi:type="ManagedObjectReference">group-d1</val></propSet></returnval><returnval><obj type="Folder">group-d1</obj><propSet><name>name</name><val xsi:type="xsd:string">Datacenters</val></propSet></returnval></RetrievePropertiesResponse>
2034
+ </soapenv:Body>
2035
+ </soapenv:Envelope>
2036
+ http_version:
2037
+ recorded_at: Tue, 16 Apr 2019 14:14:02 GMT
2038
+ recorded_with: VCR 4.0.0