Sha256: 78be2766508aed22ea2d05cbaec18ad6aceed3ea3bce81860fc73365d75979a8

Contents?: true

Size: 883 Bytes

Versions: 2

Compression:

Stored size: 883 Bytes

Contents

module Fog
  module VcloudDirector
    class Compute
      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

2 entries across 2 versions & 1 rubygems

Version Path
fog-vcloud-director-0.3.1 lib/fog/vcloud_director/requests/compute/get_control_access_params_catalog.rb
fog-vcloud-director-0.3.0 lib/fog/vcloud_director/requests/compute/get_control_access_params_catalog.rb