Sha256: 10391713febc0d30fd16cd359524be66725f056aa56e98440206f5418be749dc
Contents?: true
Size: 743 Bytes
Versions: 14
Compression:
Stored size: 743 Bytes
Contents
require 'fog/openstack/models/collection' require 'fog/planning/openstack/models/plan' module Fog module Openstack class Planning class Plans < Fog::OpenStack::Collection model Fog::Openstack::Planning::Plan def all(options = {}) load_response(service.list_plans(options)) end def find_by_uuid(plan_uuid) new(service.get_plan(plan_uuid).body) end alias get find_by_uuid def method_missing(method_sym, *arguments, &block) if method_sym.to_s =~ /^find_by_(.*)$/ all.find do |plan| plan.send($1) == arguments.first end else super end end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems