Module: Fog::Orchestration::OpenStack::Reflectable
Constant Summary collapse
- REFLECTION_REGEX =
/\/stacks\/(\w+)\/([\w|-]+)\/resources\/(\w+)/
Instance Method Summary collapse
Instance Method Details
#resource ⇒ Object
61 62 63 |
# File 'lib/fog/openstack/orchestration.rb', line 61 def resource @resource ||= service.resources.get(r[3], stack) end |
#stack ⇒ Object
65 66 67 |
# File 'lib/fog/openstack/orchestration.rb', line 65 def stack @stack ||= service.stacks.get(r[1], r[2]) end |