Sha256: f6e74af3b8ba87291efae2ac65430b9049a9420e0483a0d93f6c73971a8f56ef
Contents?: true
Size: 883 Bytes
Versions: 96
Compression:
Stored size: 883 Bytes
Contents
module Fog module Compute class VcloudDirector class Real # Retrieve access control information for a catalog. # # @param [String] id Object identifier of the organization. # @param [String] catalog_id Object identifier of the catalog. # @return [Excon::Response] # * body<~Hash>: # # @see http://pubs.vmware.com/vcd-51/topic/com.vmware.vcloud.api.reference.doc_51/doc/operations/GET-ControlAccessParams-vApp.html # @since vCloud API 0.9 def get_control_access_params_catalog(id, catalog_id) request( :expects => 200, :idempotent => true, :method => 'GET', :parser => Fog::ToHashDocument.new, :path => "org/#{id}/catalog/#{catalog_id}/controlAccess" ) end end end end end
Version data entries
96 entries across 94 versions & 8 rubygems