Sha256: 3e96f3086fd9244782959d89d738c4ea2f427759d95505c8fb69b3c22685c94a
Contents?: true
Size: 795 Bytes
Versions: 10
Compression:
Stored size: 795 Bytes
Contents
module ForemanApi module Resources class Home < ForemanApi::Base def self.doc @doc ||= ForemanApi.doc['resources']["home"] end # @param [Hash] params a hash of params to be passed to the service # # @param [Hash] headers additional http headers # @return [Array] First item: parsed data; second item: raw body def index(params = {}, headers = {}) perform_call(__method__, params, headers) end # @param [Hash] params a hash of params to be passed to the service # # @param [Hash] headers additional http headers # @return [Array] First item: parsed data; second item: raw body def status(params = {}, headers = {}) perform_call(__method__, params, headers) end end end end
Version data entries
10 entries across 10 versions & 1 rubygems