module Fog::Rackspace::Orchestration::Reflectable

Redundant / Redirect requests:

request :adopt_stack => :create_stack request :find_stack => :show_stack_details request :find_stack_events => :list_stack_events request :find_stack_resources => :list_resources

Constants

REFLECTION_REGEX

Public Instance Methods

resource() click to toggle source
# File lib/fog/rackspace/orchestration.rb, line 72
def resource
  @resource ||= service.resources.get(r[3], stack)
end
stack() click to toggle source
# File lib/fog/rackspace/orchestration.rb, line 76
def stack
  @stack ||= service.stacks.get(r[1], r[2])
end

Private Instance Methods

r()
Alias for: reflection
reflection() click to toggle source
# File lib/fog/rackspace/orchestration.rb, line 82
def reflection
  @reflection ||= REFLECTION_REGEX.match(self.links[0]['href'])
end
Also aliased as: r