mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
30 lines
948 B
Ruby
30 lines
948 B
Ruby
module Fog
|
|
module Compute
|
|
class VcloudDirector
|
|
class Real
|
|
# Retrieve metadata associated with the vApp or VM.
|
|
#
|
|
# @deprecated Use {#get_vapp_metadata} instead.
|
|
# @todo Log deprecation warning.
|
|
#
|
|
# @param [String] id Object identifier 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
|
|
# @since vCloud API version 1.5
|
|
def get_metadata(id)
|
|
require 'fog/vcloud_director/parsers/compute/metadata'
|
|
|
|
request(
|
|
:expects => 200,
|
|
:idempotent => true,
|
|
:method => 'GET',
|
|
:parser => Fog::Parsers::Compute::VcloudDirector::Metadata.new,
|
|
:path => "vApp/#{id}/metadata/"
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|