class Fog::OpenStack::Orchestration::Stacks
Public Instance Methods
adopt(options = {})
click to toggle source
# File lib/fog/openstack/orchestration/models/stacks.rb, line 46 def adopt(options = {}) service.create_stack(options) end
all(options = {})
click to toggle source
# File lib/fog/openstack/orchestration/models/stacks.rb, line 10 def all(options = {}) # 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(options) load_response(data, 'stacks') end
build_info()
click to toggle source
# File lib/fog/openstack/orchestration/models/stacks.rb, line 59 def build_info service.build_info.body end
create(options = {})
click to toggle source
# File lib/fog/openstack/orchestration/models/stacks.rb, line 50 def create(options = {}) service.create_stack(options).body['stack'] end
find_by_id(id)
click to toggle source
# File lib/fog/openstack/orchestration/models/stacks.rb, line 23 def find_by_id(id) data = service.show_stack(id).body['stack'] new(data) rescue Fog::OpenStack::Orchestration::NotFound nil end
get(arg1, arg2 = nil)
click to toggle source
# File lib/fog/openstack/orchestration/models/stacks.rb, line 30 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::OpenStack::Compute::NotFound nil end
preview(options = {})
click to toggle source
# File lib/fog/openstack/orchestration/models/stacks.rb, line 54 def preview(options = {}) data = service.preview_stack(options).body['stack'] new(data) end
summary(options = {})
click to toggle source
# File lib/fog/openstack/orchestration/models/stacks.rb, line 18 def summary(options = {}) data = service.list_stack_data(options) load_response(data, 'stacks') end