Sha256: 8d16989af8d98067d2278f0f47baf21275c5b20a1837f2b6b3666e08e9abd916
Contents?: true
Size: 890 Bytes
Versions: 96
Compression:
Stored size: 890 Bytes
Contents
module Fog module Compute class VcloudDirector class Real # Delete the specified key and its value from vApp template or VM # metadata. # # @param [String] id Object identifier of the vApp template or VM. # @param [String] key Key of the metadata item. # @return [Excon::Response] # * body<~Hash>: # # @see http://pubs.vmware.com/vcd-51/topic/com.vmware.vcloud.api.reference.doc_51/doc/operations/DELETE-VAppTemplateMetadataItem-metadata.html # @since vCloud API version 1.5 def delete_vapp_template_metadata_item_metadata(id, key) request( :expects => 202, :method => 'DELETE', :parser => Fog::ToHashDocument.new, :path => "vAppTemplate/#{id}/metadata/#{URI.escape(key)}" ) end end end end end
Version data entries
96 entries across 94 versions & 8 rubygems