Sha256: b2107723dc282822c28b84b80cd4fe24328d9dcaf1f42e2055d6df009b83d47d
Contents?: true
Size: 1.93 KB
Versions: 5
Compression:
Stored size: 1.93 KB
Contents
module KatelloApi module Resources class SystemGroupPackage < KatelloApi::Base def self.doc @doc ||= KatelloApi.doc['resources']["system_group_packages"] end # @param [Hash] params a hash of params to be passed to the service # @option params [String] organization_id oranization identifier # @option params [String] system_group_id system_group identifier # @option params [Array] groups list of package group names # @option params [Array] packages list of package names # # @param [Hash] headers additional http headers # @return [Array] First item: parsed data; second item: raw body def create(params = {}, headers = {}) perform_call(__method__, params, headers) end # @param [Hash] params a hash of params to be passed to the service # @option params [String] organization_id oranization identifier # @option params [String] system_group_id system_group identifier # @option params [Array] groups list of package group names # @option params [Array] packages list of package names # # @param [Hash] headers additional http headers # @return [Array] First item: parsed data; second item: raw body def update(params = {}, headers = {}) perform_call(__method__, params, headers) end # @param [Hash] params a hash of params to be passed to the service # @option params [String] organization_id oranization identifier # @option params [String] system_group_id system_group identifier # @option params [Array] groups list of package group names # @option params [Array] packages list of package names # # @param [Hash] headers additional http headers # @return [Array] First item: parsed data; second item: raw body def destroy(params = {}, headers = {}) perform_call(__method__, params, headers) end end end end
Version data entries
5 entries across 5 versions & 1 rubygems