Module: SparkleFormation::SparkleAttribute::Heat
- Included in:
- Rackspace, SparkleFormation::SparkleStruct::Heat
- Defined in:
- lib/sparkle_formation/sparkle_attribute/heat.rb
Overview
Heat specific helper implementations
Class Method Summary collapse
-
.included(klass) ⇒ Object
Set customized struct behavior.
Instance Method Summary collapse
-
#_depends_on(*args) ⇒ Array<String>
(also: #depends_on!)
Resource dependency generator.
-
#_digest(value, algorithm = "sha512") ⇒ Object
(also: #digest!)
digest generator.
-
#_get_attr(logical_id, attribute_name) ⇒ Hash
(also: #_attr, #attr!)
get_attr generator.
-
#_get_file(loc) ⇒ Hash
(also: #_file, #file!)
get_file generator.
- #_get_param(*args) ⇒ Hash (also: #_param, #param!)
-
#_get_resource(r_name) ⇒ Hash
(also: #_resource, #resource!)
get_resource generator.
-
#_list_join(*args, opts = {}) ⇒ Hash
(also: #_join, #join!)
list_join generator.
-
#_map_merge(hash1, hash2, ...) ⇒ Hash
(also: #map_merge!)
map_merge generator.
- #_project_id ⇒ Hash (also: #project_id!)
-
#_resource_facade(type) ⇒ Hash
(also: #_facade, #facade!, #resource_facade!)
resource_facade generator.
- #_stack_id ⇒ Hash (also: #stack_id!)
- #_stack_name ⇒ Hash (also: #stack_name!)
-
#_stack_output(stack_name, output_name) ⇒ Hash
(also: #stack_output!)
Reference output value from nested stack.
-
#_str_replace(template, params) ⇒ Hash
(also: #_replace, #replace!)
str_replace generator.
-
#_str_split(splitter, string, idx = nil) ⇒ Hash
(also: #_split, #split!)
str_split generator.
Class Method Details
.included(klass) ⇒ Object
Set customized struct behavior
12 13 14 15 16 17 |
# File 'lib/sparkle_formation/sparkle_attribute/heat.rb', line 12 def self.included(klass) if klass.const_defined?(:CAMEL_KEYS) klass.send(:remove_const, :CAMEL_KEYS) end klass.const_set(:CAMEL_KEYS, false) end |
Instance Method Details
#_depends_on(resource_name) ⇒ Array<String> #_depends_on(resource_names) ⇒ Array<String> #_depends_on(*resource_names) ⇒ Array<String> Also known as: depends_on!
Note:
this will directly modify the struct at its current context to inject depends on structure
Resource dependency generator
191 192 193 |
# File 'lib/sparkle_formation/sparkle_attribute/heat.rb', line 191 def _depends_on(*args) _set("depends_on", [args].flatten.compact.map { |s| __attribute_key(s) }) end |
#_digest(value, algorithm = "sha512") ⇒ Object Also known as: digest!
digest generator
102 103 104 105 |
# File 'lib/sparkle_formation/sparkle_attribute/heat.rb', line 102 def _digest(value, algorithm = "sha512") __t_stringish(algorithm) {"digest" => [algorithm, value]} end |
#_get_attr(logical_id, attribute_name) ⇒ Hash Also known as: _attr, attr!
24 25 26 27 28 29 30 |
# File 'lib/sparkle_formation/sparkle_attribute/heat.rb', line 24 def _get_attr(*args) __t_stringish(args.first) args = args.map do |thing| __attribute_key(thing) end {"get_attr" => args} end |
#_get_file(loc) ⇒ Hash Also known as: _file, file!
get_file generator
58 59 60 61 |
# File 'lib/sparkle_formation/sparkle_attribute/heat.rb', line 58 def _get_file(loc) __t_stringish(loc) {"get_file" => loc} end |
#_get_param(name) ⇒ Hash #_get_param(name, index1, index2, ...) ⇒ Hash Also known as: _param, param!
75 76 77 78 79 80 81 |
# File 'lib/sparkle_formation/sparkle_attribute/heat.rb', line 75 def _get_param(*args) __t_stringish(args.first) args = args.map do |thing| __attribute_key(thing) end {"get_param" => args.size == 1 ? args.first : args} end |
#_get_resource(r_name) ⇒ Hash Also known as: _resource, resource!
get_resource generator
90 91 92 93 |
# File 'lib/sparkle_formation/sparkle_attribute/heat.rb', line 90 def _get_resource(r_name) __t_stringish(r_name) {"get_resource" => __attribute_key(r_name)} end |
#_list_join(*args, opts = {}) ⇒ Hash Also known as: _join, join!
42 43 44 45 46 47 48 49 |
# File 'lib/sparkle_formation/sparkle_attribute/heat.rb', line 42 def _list_join(*args) = args.detect { |i| i.is_a?(::Hash) && i[:options] } || {:options => {}} args.delete() unless args.size == 1 args = [args] end {"list_join" => [[:options][:delimiter] || "", *args]} end |
#_map_merge(hash1, hash2, ...) ⇒ Hash Also known as: map_merge!
155 156 157 |
# File 'lib/sparkle_formation/sparkle_attribute/heat.rb', line 155 def _map_merge(*args) {"map_merge" => args} end |
#_project_id ⇒ Hash Also known as: project_id!
176 177 178 |
# File 'lib/sparkle_formation/sparkle_attribute/heat.rb', line 176 def _project_id _get_param("OS::project_id") end |
#_resource_facade(type) ⇒ Hash Also known as: _facade, facade!, resource_facade!
resource_facade generator
113 114 115 116 |
# File 'lib/sparkle_formation/sparkle_attribute/heat.rb', line 113 def _resource_facade(type) __t_stringish(type) {"resource_facade" => type} end |
#_stack_id ⇒ Hash Also known as: stack_id!
162 163 164 |
# File 'lib/sparkle_formation/sparkle_attribute/heat.rb', line 162 def _stack_id _get_param("OS::stack_id") end |
#_stack_name ⇒ Hash Also known as: stack_name!
169 170 171 |
# File 'lib/sparkle_formation/sparkle_attribute/heat.rb', line 169 def _stack_name _get_param("OS::stack_name") end |
#_stack_output(stack_name, output_name) ⇒ Hash Also known as: stack_output!
Reference output value from nested stack
202 203 204 205 206 207 |
# File 'lib/sparkle_formation/sparkle_attribute/heat.rb', line 202 def _stack_output(stack_name, output_name) _attr( __attribute_key(stack_name), __attribute_key(output_name) ) end |
#_str_replace(template, params) ⇒ Hash Also known as: _replace, replace!
str_replace generator
127 128 129 130 131 |
# File 'lib/sparkle_formation/sparkle_attribute/heat.rb', line 127 def _str_replace(template, params) __t_stringish(template) __t_hashish(params) {"str_replace" => {"template" => template, "params" => params}} end |
#_str_split(splitter, string, idx = nil) ⇒ Hash Also known as: _split, split!
str_split generator
142 143 144 145 |
# File 'lib/sparkle_formation/sparkle_attribute/heat.rb', line 142 def _str_split(splitter, string, idx = nil) __t_stringish(splitter) unless splitter.is_a?(Hash) {"str_split" => [splitter, string, idx].compact} end |