Sha256: 3c5e376c15e19cddb0afa3693c877b683796d24e69152c3707d7d1de75339df4
Contents?: true
Size: 739 Bytes
Versions: 2
Compression:
Stored size: 739 Bytes
Contents
module Fog module VcloudDirector class Compute class Real # Enable a vApp template for download. # # @param [String] id Object identifier of the VM. # @return [Excon::Response] # * body<~Hash>: # # @see http://pubs.vmware.com/vcd-51/topic/com.vmware.vcloud.api.reference.doc_51/doc/operations/POST-EnableVAppTemplateDownload.html # @since vCloud API version 0.9 def post_enable_vapp_template_download(id) request( :expects => 202, :method => 'POST', :parser => Fog::ToHashDocument.new, :path => "vAppTemplate/#{id}/action/enableDownload" ) end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems