Sha256: 48b1a24c903c96f891eec778b8e88141f664ff397fd9f4e801fd205497ece654
Contents?: true
Size: 1.42 KB
Versions: 7
Compression:
Stored size: 1.42 KB
Contents
module KatelloApi module Resources class Package < KatelloApi::Base def self.doc @doc ||= KatelloApi.doc['resources']["packages"] end # @param [Hash] params a hash of params to be passed to the service # @option params [String] repository_id environment numeric identifier # # @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 # @option params [String] repository_id environment numeric identifier # @option params [String] search search expression # # @param [Hash] headers additional http headers # @return [Array] First item: parsed data; second item: raw body def search(params = {}, headers = {}) perform_call(__method__, params, headers) end # @param [Hash] params a hash of params to be passed to the service # @option params [String] id package id # @option params [String] repository_id environment numeric identifier # # @param [Hash] headers additional http headers # @return [Array] First item: parsed data; second item: raw body def show(params = {}, headers = {}) perform_call(__method__, params, headers) end end end end
Version data entries
7 entries across 7 versions & 1 rubygems