Class: Bolt::PAL::YamlPlan::Step::Plan
Constant Summary
STEP_KEYS
Instance Attribute Summary
#body
Class Method Summary
collapse
create, #evaluate, #initialize, parse_code_string, #transpile, validate, validate_puppet_code, validate_step_keys
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['parameters']
end
|
.option_keys ⇒ Object
12
13
14
|
# File 'lib/bolt/pal/yaml_plan/step/plan.rb', line 12
def self.option_keys
Set['catch_errors', 'run_as']
end
|
.required_keys ⇒ Object
16
17
18
|
# File 'lib/bolt/pal/yaml_plan/step/plan.rb', line 16
def self.required_keys
Set['plan']
end
|