1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/ecloud/models/compute/rows.rb

41 lines
850 B
Ruby
Raw Normal View History

2012-06-07 12:50:11 -04:00
require 'fog/ecloud/models/compute/row'
module Fog
module Compute
class Ecloud
class Rows < Fog::Ecloud::Collection
identity :href
model Fog::Compute::Ecloud::Row
def all
data = service.get_layout(href).body[:Rows][:Row]
2012-06-07 12:50:11 -04:00
load(data)
end
def get(uri)
data = service.get_row(uri).body
2012-11-27 19:57:16 -05:00
if data == ""
nil
else
new(data)
2012-06-07 12:50:11 -04:00
end
2012-11-27 19:57:16 -05:00
rescue Excon::Errors::NotFound
2012-06-07 12:50:11 -04:00
nil
end
def create(options = {})
options[:uri] = "/cloudapi/ecloud/layoutRows/environments/#{environment_id}/action/createLayoutRow"
data = service.rows_create(options).body
2012-06-07 12:50:11 -04:00
new(data)
end
2012-06-07 12:50:11 -04:00
def environment_id
href.scan(/\d+/)[0]
end
end
end
end
end