Sha256: ecd96e548ef7f452f2ef2c65dba613c1be96026472ff1a6e2eadc6dbb10bee80

Contents?: true

Size: 551 Bytes

Versions: 1

Compression:

Stored size: 551 Bytes

Contents

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

      # @param [Hash] params a hash of params to be passed to the service
      #
      # @param [Hash] headers additional http headers
      def memory(params = { }, headers = { })
        check_params params, :allowed => false, :method => __method__
        url, params = fill_params_in_url "/api/status/memory", 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/statu.rb