Class: Fog::Orchestration::OpenStack::Stacks
- Inherits:
-
Fog::OpenStack::Collection
- Object
- Collection
- Fog::OpenStack::Collection
- Fog::Orchestration::OpenStack::Stacks
- Defined in:
- lib/fog/openstack/models/orchestration/stacks.rb
Instance Attribute Summary
Attributes inherited from Fog::OpenStack::Collection
Instance Method Summary collapse
- #adopt(options = {}) ⇒ Object
- #all(options = {}) ⇒ Object
- #build_info ⇒ Object
- #create(options = {}) ⇒ Object
-
#find_by_id(id) ⇒ Object
Deprecated.
- #get(arg1, arg2 = nil) ⇒ Object
- #preview(options = {}) ⇒ Object
- #summary(options = {}) ⇒ Object
Methods inherited from Fog::OpenStack::Collection
Instance Method Details
#adopt(options = {}) ⇒ Object
45 46 47 |
# File 'lib/fog/openstack/models/orchestration/stacks.rb', line 45 def adopt(={}) service.create_stack() end |
#all(options = {}) ⇒ Object
10 11 12 13 14 15 16 |
# File 'lib/fog/openstack/models/orchestration/stacks.rb', line 10 def all( = {}) # TODO(lsmola) we can uncomment this when https://bugs.launchpad.net/heat/+bug/1468318 is fixed, till then # we will use non detailed list # data = service.list_stack_data_detailed(options).body['stacks'] data = service.list_stack_data() load_response(data, 'stacks') end |
#build_info ⇒ Object
58 59 60 |
# File 'lib/fog/openstack/models/orchestration/stacks.rb', line 58 def build_info service.build_info.body end |
#create(options = {}) ⇒ Object
49 50 51 |
# File 'lib/fog/openstack/models/orchestration/stacks.rb', line 49 def create(={}) service.create_stack().body['stack'] end |
#find_by_id(id) ⇒ Object
Deprecated
24 25 26 27 |
# File 'lib/fog/openstack/models/orchestration/stacks.rb', line 24 def find_by_id(id) Fog::Logger.deprecation("#find_by_id(id) is deprecated, use #get(name, id) instead [light_black](#{caller.first})[/]") self.find {|stack| stack.id == id} end |
#get(arg1, arg2 = nil) ⇒ Object
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/fog/openstack/models/orchestration/stacks.rb', line 29 def get(arg1, arg2 = nil) if arg2.nil? # Deprecated: get(id) Fog::Logger.deprecation("#get(id) is deprecated, use #get(name, id) instead [light_black](#{caller.first})[/]") return find_by_id(arg1) end # Normal use: get(name, id) name = arg1 id = arg2 data = service.show_stack_details(name, id).body['stack'] new(data) rescue Fog::Compute::OpenStack::NotFound nil end |
#preview(options = {}) ⇒ Object
53 54 55 56 |
# File 'lib/fog/openstack/models/orchestration/stacks.rb', line 53 def preview(={}) data = service.preview_stack().body['stack'] new(data) end |
#summary(options = {}) ⇒ Object
18 19 20 21 |
# File 'lib/fog/openstack/models/orchestration/stacks.rb', line 18 def summary( = {}) data = service.list_stack_data() load_response(data, 'stacks') end |