Sha256: 80cad8ae72d5d0316ad1a92fb049d9a3d71f223a49071282397178fa2a51ea7b
Contents?: true
Size: 681 Bytes
Versions: 1
Compression:
Stored size: 681 Bytes
Contents
module KatelloApi module Resources class Uebercert < KatelloApi::Base def self.doc @doc ||= KatelloApi.doc['resources']["uebercerts"] end # @param [Hash] params a hash of params to be passed to the service # @option params [String] regenerate when set to ‘true’ certificate will be re-issued # # @param [Hash] headers additional http headers def show(params = { }, headers = { }) check_params params, :allowed => true, :method => __method__ url, params = fill_params_in_url "/api/organizations/:organization_id/uebercert", 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/uebercert.rb |