Sha256: 5ab452432122d7fda5e0041de777a20bf4742a65f7de8f687a3212ed3c23c17a
Contents?: true
Size: 753 Bytes
Versions: 2
Compression:
Stored size: 753 Bytes
Contents
module Fog module VcloudDirector class Compute class Real # Retrieve the OVF descriptor of a vApp template. # # @param [String] id Object identifier of the vAppTemplate. # @return [Excon::Response] # * body<~String> - the OVF descriptor. # # @see http://pubs.vmware.com/vcd-51/topic/com.vmware.vcloud.api.reference.doc_51/doc/operations/GET-VAppTemplateOvfDescriptor.html # @since vCloud API version 0.9 def get_vapp_template_ovf_descriptor(id) request( :expects => 200, :idempotent => true, :method => 'GET', :path => "vAppTemplate/#{id}/ovf" ) end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems