Sha256: 080491a849ed9f8cb699b3f3d3b4b98b45eaa61cc89098582a91397187ff88c7

Contents?: true

Size: 806 Bytes

Versions: 13

Compression:

Stored size: 806 Bytes

Contents

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 = connection.get_layout(href).body[:Rows][:Row]
          load(data)
        end

        def get(uri)
          if data = connection.get_row(uri)
            new(data.body)
          end
        rescue Fog::Errors::NotFound
          nil
        end

        def create(options = {})
          options[:uri] = "/cloudapi/ecloud/layoutRows/environments/#{environment_id}/action/createLayoutRow"
          data = connection.rows_create(options).body
          new(data)
        end
 
        def environment_id
          href.scan(/\d+/)[0]
        end
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 7 rubygems

Version Path
fog-nirvanix-1.8.2 lib/fog/ecloud/models/compute/rows.rb
fog-nirvanix-1.8.1 lib/fog/ecloud/models/compute/rows.rb
fog-parser-fix-1.6.1 lib/fog/ecloud/models/compute/rows.rb
fog-test-again-1.6.0 lib/fog/ecloud/models/compute/rows.rb
fog-parser-fix-1.6.0 lib/fog/ecloud/models/compute/rows.rb
ey-vendored-backup-3.0.27 vendor/gems/fog/lib/fog/ecloud/models/compute/rows.rb
fog-sgonyea-1.8.1 lib/fog/ecloud/models/compute/rows.rb
fog-1.8.0 lib/fog/ecloud/models/compute/rows.rb
fog-maestrodev-1.7.0.20121114190951 lib/fog/ecloud/models/compute/rows.rb
fog-1.7.0 lib/fog/ecloud/models/compute/rows.rb
fog-1.6.0 lib/fog/ecloud/models/compute/rows.rb
fog-1.5.0 lib/fog/ecloud/models/compute/rows.rb
fog-1.4.0 lib/fog/ecloud/models/compute/rows.rb