Sha256: ba5791d3f563e45c2845a3fa2ed5f7674fcc2699a05ea4fd732df3c833dad597
Contents?: true
Size: 610 Bytes
Versions: 96
Compression:
Stored size: 610 Bytes
Contents
module Fog module Compute class VcloudDirector class Real # Delete a catalog item. # # @param [String] id Object identifier of the catalog item. # @return [Excon::Response] # # @see http://pubs.vmware.com/vcd-51/topic/com.vmware.vcloud.api.reference.doc_51/doc/operations/DELETE-CatalogItem.html # @since vCloud API version 0.9 def delete_catalog_item(id) request( :expects => 204, :method => 'DELETE', :path => "catalogItem/#{id}" ) end end end end end
Version data entries
96 entries across 94 versions & 8 rubygems