mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
23 lines
336 B
Ruby
23 lines
336 B
Ruby
![]() |
module Fog
|
||
|
module Compute
|
||
|
class Vsphere
|
||
|
class Real
|
||
|
|
||
|
def find_all_by_uuid(uuid)
|
||
|
@connection.searchIndex.FindAllByUuid(:uuid => uuid, 'vmSearch' => true)
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
class Mock
|
||
|
|
||
|
def find_all_by_uuid(uuid)
|
||
|
Fog::Mock.not_implmented
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|