module Backends::Ec2::ResourceTpl
Public Instance Methods
resource_tpl_get(term)
click to toggle source
Gets a specific resource_tpl mixin instance as Occi::Core::Mixin. Term given as an argument must match the term inside the returned Occi::Core::Mixin instance.
@example
resource_tpl = resource_tpl_get('65d4f65adfadf-ad2f4ad-daf5ad-f5ad4fad4ffdf') #=> #<Occi::Core::Mixin>
@param term [String] OCCI term of the requested resource_tpl mixin instance @return [Occi::Core::Mixin, nil] a mixin instance or `nil` @effects none: call answered from within the backend
# File lib/backends/ec2/resource_tpl.rb, line 28 def resource_tpl_get(term) resource_tpl_list.to_a.select { |m| m.term == term }.first end
resource_tpl_list()
click to toggle source
Gets platform- or backend-specific `resource_tpl` mixins which should be merged into Occi::Model of the server.
@example
mixins = resource_tpl_list #=> #<Occi::Core::Mixins> mixins.first #=> #<Occi::Core::Mixin>
@return [Occi::Core::Mixins] a collection of mixins @effects none: call answered from within the backend
# File lib/backends/ec2/resource_tpl.rb, line 13 def resource_tpl_list @resource_tpl end
resource_tpl_list_itype_to_term(ec2_itype)
click to toggle source
# File lib/backends/ec2/resource_tpl.rb, line 34 def resource_tpl_list_itype_to_term(ec2_itype) ec2_itype ? ec2_itype.gsub('.', '_') : nil end
resource_tpl_list_term_to_itype(term)
click to toggle source
# File lib/backends/ec2/resource_tpl.rb, line 40 def resource_tpl_list_term_to_itype(term) term ? term.gsub('_', '.') : nil end