Sha256: fac4f437609b60a7393293a06468e371d6e61bb409885cf1747f12c855e619f1

Contents?: true

Size: 1.04 KB

Versions: 5

Compression:

Stored size: 1.04 KB

Contents

object @job_invocation

extends 'api/v2/job_invocations/base'

node do |invocation|
  if invocation.triggering
    case invocation.triggering.mode
    when :recurring
      {:mode => :recurring, :recurrence => partial('foreman_tasks/api/recurring_logics/base', :object => invocation.triggering.recurring_logic)}
    when :future
      {:mode => :future, :scheduling => {:start_at => invocation.triggering.start_at, :start_before => invocation.triggering.start_before }}
    end
  else
    {:mode => :immediate}
  end
end

child :targeting do
  attributes :bookmark_id, :search_query, :targeting_type, :user_id, :status, :status_label,
    :randomized_ordering

  child :hosts do
    extends 'api/v2/hosts/base'
  end
end

child :task do
  attributes :id, :state
end

child :template_invocations do
  attributes :template_id, :template_name
  child :input_values do
    attributes :template_input_name, :template_input_id
    node :value do |iv|
      iv.template_input.respond_to?(:hidden_value) && iv.template_input.hidden_value? ? '*' * 5 : iv.value
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
foreman_remote_execution-3.3.1 app/views/api/v2/job_invocations/main.json.rabl
foreman_remote_execution-3.3.0 app/views/api/v2/job_invocations/main.json.rabl
foreman_remote_execution-3.2.1 app/views/api/v2/job_invocations/main.json.rabl
foreman_remote_execution-3.2.0 app/views/api/v2/job_invocations/main.json.rabl
foreman_remote_execution-3.1.0 app/views/api/v2/job_invocations/main.json.rabl