Sha256: 998b1d6cb9a93ef73331550fa4b3479e924b651206d2c9b227a3fd44493400ab

Contents?: true

Size: 913 Bytes

Versions: 14

Compression:

Stored size: 913 Bytes

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

  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, :value
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
foreman_remote_execution-1.3.1 app/views/api/v2/job_invocations/main.json.rabl
foreman_remote_execution-1.3.0 app/views/api/v2/job_invocations/main.json.rabl
foreman_remote_execution-1.2.2 app/views/api/v2/job_invocations/main.json.rabl
foreman_remote_execution-1.2.1 app/views/api/v2/job_invocations/main.json.rabl
foreman_remote_execution-1.2.0 app/views/api/v2/job_invocations/main.json.rabl
foreman_remote_execution-1.1.1 app/views/api/v2/job_invocations/main.json.rabl
foreman_remote_execution-1.1.0 app/views/api/v2/job_invocations/main.json.rabl
foreman_remote_execution-1.0.0 app/views/api/v2/job_invocations/main.json.rabl
foreman_remote_execution-0.3.2 app/views/api/v2/job_invocations/main.json.rabl
foreman_remote_execution-0.3.1 app/views/api/v2/job_invocations/main.json.rabl
foreman_remote_execution-0.3.0 app/views/api/v2/job_invocations/main.json.rabl
foreman_remote_execution-0.2.3 app/views/api/v2/job_invocations/main.json.rabl
foreman_remote_execution-0.2.2 app/views/api/v2/job_invocations/main.json.rabl
foreman_remote_execution-0.2.1 app/views/api/v2/job_invocations/main.json.rabl