Sha256: 67c9ea140fc67eb37c3b4fa5643060f77077084909673f281391ad83c5753b4c
Contents?: true
Size: 770 Bytes
Versions: 67
Compression:
Stored size: 770 Bytes
Contents
module Actions module Pulp3 module ContentViewVersion class CreateExporter < Pulp3::Abstract input_format do param :smart_proxy_id, Integer param :content_view_version_id, Integer param :destination_server, String end def run cvv = ::Katello::ContentViewVersion.find(input[:content_view_version_id]) output[:exporter_data] = ::Katello::Pulp3::ContentViewVersion::Export.new(smart_proxy: smart_proxy, content_view_version: cvv, destination_server: input[:destination_server]).create_exporter end end end end end
Version data entries
67 entries across 67 versions & 1 rubygems