Sha256: 19a16a2bdd9301f77a60f7f53872202d362896c2aebb61eec89ec123beea648c

Contents?: true

Size: 537 Bytes

Versions: 1

Compression:

Stored size: 537 Bytes

Contents

module KatelloApi
  module Resources
    class Crl < KatelloApi::Base
      def self.doc
        @doc ||= KatelloApi.doc['resources']["crls"]
      end

      # @param [Hash] params a hash of params to be passed to the service
      #
      # @param [Hash] headers additional http headers
      def index(params = { }, headers = { })
        check_params params, :allowed => false, :method => __method__
        url, params = fill_params_in_url "/api/crls", params
        call(:"get", url, params, headers)
      end

    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
katello_api-0.0.1 lib/katello_api/resources/crl.rb