Sha256: 8c2c8db07d8a3bd5f2fc4882b7f736352e09b3c564946443cb08bf37b4dd52a8
Contents?: true
Size: 1.01 KB
Versions: 60
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
60 entries across 60 versions & 1 rubygems