Sha256: 5337d0c0770a392e7c75d61ef883d01e9b246eac5ff4b8cc2aab805392601c3b
Contents?: true
Size: 1005 Bytes
Versions: 24
Compression:
Stored size: 1005 Bytes
Contents
require 'fog/rackspace/models/orchestration/resource' module Fog module Rackspace class Orchestration class Resources < Fog::Collection model Fog::Rackspace::Orchestration::Resource def types service.list_resource_types.body['resource_types'].sort end def all(stack, options={}) data = service.list_resources(stack, options).body['resources'] load(data) end def get(resource_name, stack=nil) stack = self.first.stack if stack.nil? data = service.show_resource_data(stack.stack_name, stack.id, resource_name).body['resource'] new(data) rescue Fog::Rackspace::Orchestration::NotFound nil end def metadata(stack_name, stack_id, resource_name) service.show_resource_metadata(stack_name, stack_id, resource_name).body['resource'] rescue Fog::Rackspace::Orchestration::NotFound nil end end end end end
Version data entries
24 entries across 22 versions & 4 rubygems