Sha256: 95c1bc18383d37bf0c33eaeeca5b62228a4c4204363ec8888539874b3060c6e6
Contents?: true
Size: 1.01 KB
Versions: 23
Compression:
Stored size: 1.01 KB
Contents
module Actions module Candlepin module Product class ContentUpdate < Candlepin::Abstract input_format do param :content_id param :name param :type param :arches param :os_versions param :label param :content_url param :gpg_key_url param :owner end def run output[:response] = ::Katello::Resources::Candlepin::Content. update(input[:owner], id: input[:content_id], name: input[:name], contentUrl: input[:content_url], gpgUrl: input[:gpg_key_url] || '', #candlepin ignores nil type: input[:type], arches: input[:arches], requiredTags: input[:os_versions], label: input[:label], metadataExpire: 1, vendor: ::Katello::Provider::CUSTOM) end end end end end
Version data entries
23 entries across 23 versions & 1 rubygems