Class: Bolt::PAL::YamlPlan::Step::Plan
Constant Summary
COMMON_STEP_KEYS, STEP_KEYS
Instance Attribute Summary
#body, #name, #target, #type
Class Method Summary
collapse
Instance Method Summary
collapse
create, #function_call, parse_code_string, step_error, validate, validate_puppet_code, validate_step_keys
Constructor Details
#initialize(step_body) ⇒ Plan
Returns a new instance of Plan.
16
17
18
19
20
|
# File 'lib/bolt/pal/yaml_plan/step/plan.rb', line 16
def initialize(step_body)
super
@plan = step_body['plan']
@parameters = step_body.fetch('parameters', {})
end
|
Class Method Details
.allowed_keys ⇒ Object
8
9
10
|
# File 'lib/bolt/pal/yaml_plan/step/plan.rb', line 8
def self.allowed_keys
super + Set['plan', 'parameters']
end
|
.required_keys ⇒ Object
12
13
14
|
# File 'lib/bolt/pal/yaml_plan/step/plan.rb', line 12
def self.required_keys
Set.new
end
|
Instance Method Details
#transpile ⇒ Object
22
23
24
25
26
27
28
29
30
31
32
33
|
# File 'lib/bolt/pal/yaml_plan/step/plan.rb', line 22
def transpile
code = String.new(" ")
code << "$#{@name} = " if @name
fn = 'run_plan'
args = [@plan]
args << @parameters unless @parameters.empty?
code << function_call(fn, args)
code << "\n"
end
|