Sha256: d74bad45c1f557bb98557c09a78502f35e3256863c9806d048705b19bf495a43

Contents?: true

Size: 1.59 KB

Versions: 4

Compression:

Stored size: 1.59 KB

Contents

object @resource

extends "katello/api/v2/subscriptions/base"

attributes :arch
attributes :description
attributes :support_type

node :provided_products, :if => lambda { |sub| sub && !sub.products.blank? } do |subscription|
  subscription.products.map do |product|
    {id: product[:id], name: product[:name]}
  end
end

node :systems do |subscription|
  subscription.systems.readable.map do |sys|
    facts = sys.facts
    {
      uuid: sys.uuid,
      host_id: sys.host_id,
      name: sys.name,
      environment: { id: sys.environment.id, name: sys.environment.name },
      content_view: { id: sys.content_view.id, name: sys.content_view.name },
      created: sys.created,
      checkin_time: sys.checkin_time,
      entitlement_status: sys.entitlementStatus,
      service_level: sys.serviceLevel,
      autoheal: sys.autoheal,
      facts: {
        memory: {
          memtotal: facts['memory.memtotal']
        },
        cpu: {
          'cpu_socket(s)' => facts['cpu.cpu_socket(s)'],
          'core(s)_per_socket' => facts['cpu.core(s)_per_socket']
        },
        virt: {
          is_guest: facts['virt.is_guest']
        }
      }
    }
  end
end

node :activation_keys do |subscription|
  subscription.activation_keys.readable.map do |key|
    {
      id: key.id,
      name: key.name,
      release_version: key.release_version,
      service_level: key.service_level,
      environment: {
        id: key.environment.try(:id),
        name: key.environment.try(:name)
      },
      content_view: {
        id: key.content_view.try(:id),
        name: key.content_view.try(:name)
      }
    }
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
katello-3.0.0.rc4 app/views/katello/api/v2/subscriptions/show.json.rabl
katello-3.0.0.rc3 app/views/katello/api/v2/subscriptions/show.json.rabl
katello-3.0.0.rc2 app/views/katello/api/v2/subscriptions/show.json.rabl
katello-3.0.0.rc1 app/views/katello/api/v2/subscriptions/show.json.rabl