Sha256: 15458c6ebc87ca61c577b8075c7f59a2b4c351e2b3b80566a91b9ba5dc3ca24f
Contents?: true
Size: 739 Bytes
Versions: 96
Compression:
Stored size: 739 Bytes
Contents
module Fog module Compute class VcloudDirector 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
96 entries across 94 versions & 8 rubygems