Sha256: f1d951ca1d325c1467f2f4d50911987960c03daf17380cdecb8dc66201629554

Contents?: true

Size: 767 Bytes

Versions: 89

Compression:

Stored size: 767 Bytes

Contents

module Actions
  module Candlepin
    module Product
      class ContentCreate < Candlepin::Abstract
        input_format do
          param :name
          param :type
          param :arches
          param :label
          param :content_url
          param :owner
        end

        def run
          output[:response] = ::Katello::Resources::Candlepin::Content.
              create(input[:owner],
                     name: input[:name],
                     contentUrl: input[:content_url],
                     type: input[:type],
                     arches: input[:arches],
                     label: input[:label],
                     metadataExpire: 1,
                     vendor: ::Katello::Provider::CUSTOM)
        end
      end
    end
  end
end

Version data entries

89 entries across 89 versions & 1 rubygems

Version Path
katello-3.17.3 app/lib/actions/candlepin/product/content_create.rb
katello-3.17.2 app/lib/actions/candlepin/product/content_create.rb
katello-3.17.1 app/lib/actions/candlepin/product/content_create.rb
katello-3.16.2 app/lib/actions/candlepin/product/content_create.rb
katello-3.17.0 app/lib/actions/candlepin/product/content_create.rb
katello-3.17.0.rc2.2 app/lib/actions/candlepin/product/content_create.rb
katello-3.17.0.rc2.1 app/lib/actions/candlepin/product/content_create.rb
katello-3.16.1.2 app/lib/actions/candlepin/product/content_create.rb
katello-3.16.1.1 app/lib/actions/candlepin/product/content_create.rb
katello-3.17.0.rc2 app/lib/actions/candlepin/product/content_create.rb
katello-3.16.1 app/lib/actions/candlepin/product/content_create.rb
katello-3.17.0.rc1 app/lib/actions/candlepin/product/content_create.rb
katello-3.16.0 app/lib/actions/candlepin/product/content_create.rb
katello-3.16.0.rc5.1 app/lib/actions/candlepin/product/content_create.rb
katello-3.16.0.rc5 app/lib/actions/candlepin/product/content_create.rb
katello-3.16.0.rc4.1 app/lib/actions/candlepin/product/content_create.rb
katello-3.15.3.1 app/lib/actions/candlepin/product/content_create.rb
katello-3.15.3 app/lib/actions/candlepin/product/content_create.rb
katello-3.16.0.rc4 app/lib/actions/candlepin/product/content_create.rb
katello-3.16.0.rc3.1 app/lib/actions/candlepin/product/content_create.rb