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
|
2012-12-22 18:27:38 -05:00
|
|
|
data = service.get_layout(href).body[:Rows][:Row]
|
2012-06-07 12:50:11 -04:00
|
|
|
load(data)
|
|
|
|
end
|
|
|
|
|
|
|
|
def get(uri)
|
2012-12-22 18:27:38 -05:00
|
|
|
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"
|
2012-12-22 18:27:38 -05:00
|
|
|
data = service.rows_create(options).body
|
2012-06-07 12:50:11 -04:00
|
|
|
new(data)
|
|
|
|
end
|
2012-12-22 18:27:38 -05:00
|
|
|
|
2012-06-07 12:50:11 -04:00
|
|
|
def environment_id
|
|
|
|
href.scan(/\d+/)[0]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|