Class: Actions::ForemanPatch::Invocation::Action::TemplateInvocationInputValue

Inherits:
Object
  • Object
show all
Defined in:
app/lib/actions/foreman_patch/invocation/action.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(invocation, input, value) ⇒ TemplateInvocationInputValue

Returns a new instance of TemplateInvocationInputValue.



10
11
12
13
14
# File 'app/lib/actions/foreman_patch/invocation/action.rb', line 10

def initialize(invocation, input, value)
  @template_invocation = invocation
  @template_input = input
  @value = value
end

Instance Attribute Details

#template_inputObject (readonly)

Returns the value of attribute template_input.



8
9
10
# File 'app/lib/actions/foreman_patch/invocation/action.rb', line 8

def template_input
  @template_input
end

#template_invocationObject (readonly)

Returns the value of attribute template_invocation.



8
9
10
# File 'app/lib/actions/foreman_patch/invocation/action.rb', line 8

def template_invocation
  @template_invocation
end

#valueObject (readonly)

Returns the value of attribute value.



8
9
10
# File 'app/lib/actions/foreman_patch/invocation/action.rb', line 8

def value
  @value
end