Sha256: dcefc439903bbe29033dd97ff7bd0ca6ea22de3a6f8287e4c732d122beb0a60f

Contents?: true

Size: 1.68 KB

Versions: 36

Compression:

Stored size: 1.68 KB

Contents

module ForemanPuppet
  module Extensions
    module ApiV2HostsController
      extend ActiveSupport::Concern

      included do
        prepend PatchMethods

        method_desc = Apipie.get_method_description(self, :index)
        method_desc.apis << Apipie::MethodDescription::Api.new(:GET, '/environments/:environment_id/hosts', N_('List hosts per environment'), {})

        apipie_update_methods([:index]) do
          param :environment_id, String, desc: N_('ID of puppet environment')
        end

        apipie_update_methods(%i[create update]) do
          param :host, Hash do
            param :environment_id, String, desc: N_('Deprecated in favor of host/puppet_attributes/environment_id')
            param :puppetclass_ids, Array, desc: N_('Deprecated in favor of host/puppet_attributes/puppetclass_ids')
            param :config_group_ids, Array, desc: N_('Deprecated in favor of host/puppet_attributes/config_group_ids')

            param :puppet_attributes, Hash do
              param :environment_id, String, desc: N_('ID of associated puppet Environment')
              param :puppetclass_ids, Array, desc: N_('IDs of associated Puppetclasses')
              param :config_group_ids, Array, desc: N_('IDs of associated ConfigGroups')
            end
          end
        end
      end

      module PatchMethods
        def resource_name(*attrs)
          return 'foreman_puppet/environment' if attrs.first.is_a?(String) &&
                                                 attrs.first.start_with?('environment')
          super(*attrs)
        end

        def allowed_nested_id
          ids = super
          ids << 'environment_id'
          ids.uniq
        end
      end
    end
  end
end

Version data entries

36 entries across 36 versions & 1 rubygems

Version Path
foreman_puppet-8.0.0 app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb
foreman_puppet-6.4.0 app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb
foreman_puppet-7.0.0 app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb
foreman_puppet-6.3.0 app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb
foreman_puppet-6.2.0 app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb
foreman_puppet-6.1.1 app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb
foreman_puppet-5.1.3 app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb
foreman_puppet-6.1.0 app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb
foreman_puppet-6.0.1 app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb
foreman_puppet-6.0.0 app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb
foreman_puppet-5.1.2 app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb
foreman_puppet-4.1.1 app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb
foreman_puppet-5.1.1 app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb
foreman_puppet-5.1.0 app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb
foreman_puppet-4.1.0 app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb
foreman_puppet-4.0.4 app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb
foreman_puppet-5.0.0 app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb
foreman_puppet-4.0.3 app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb
foreman_puppet-4.0.2 app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb
foreman_puppet-3.0.7 app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb