1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/vcloud_director/requests/compute/get_metadata.rb

28 lines
866 B
Ruby
Raw Normal View History

2013-07-03 07:10:31 -04:00
module Fog
module Compute
2013-08-27 05:19:54 -04:00
class VcloudDirector
2013-07-03 07:10:31 -04:00
class Real
# Retrieve metadata associated with the vApp or VM.
#
# @param [String] vm_id The ID of the vApp or VM.
# @return [Excon::Response]
# * body<~Hash>:
# @see http://pubs.vmware.com/vcd-51/topic/com.vmware.vcloud.api.reference.doc_51/doc/operations/GET-VAppMetadata.html
# vCloud API Documentation
# @since vCloud API version 1.5
2013-08-26 10:57:58 -04:00
def get_metadata(vm_id)
2013-08-27 05:19:54 -04:00
require 'fog/vcloud_director/parsers/compute/metadata'
2013-09-16 13:13:09 -04:00
2013-07-03 07:10:31 -04:00
request(
:expects => 200,
:idempotent => true,
:method => 'GET',
:parser => Fog::Parsers::Compute::VcloudDirector::Metadata.new,
:path => "vApp/#{vm_id}/metadata/"
2013-07-03 07:10:31 -04:00
)
end
end
end
end
end