Sha256: 09f3221548529366bcdb8a933c1747796f596b1c13bdb9369b78cd3add337f5f
Contents?: true
Size: 802 Bytes
Versions: 5
Compression:
Stored size: 802 Bytes
Contents
module KatelloApi module Resources class Ping < KatelloApi::Base def self.doc @doc ||= KatelloApi.doc['resources']["ping"] 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 server_status(params = {}, headers = {}) perform_call(__method__, params, headers) end end end end
Version data entries
5 entries across 5 versions & 1 rubygems