Sha256: 0c66339c44a5f466ae575ca2e52eb6f5d1aba246dd2942d45ef89d8481b041a5

Contents?: true

Size: 854 Bytes

Versions: 37

Compression:

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

        def get(uri)
          data = service.get_row(uri).body
          if data == ""
            nil
          else
            new(data)
          end
        rescue Excon::Errors::NotFound
          nil
        end

        def create(options = {})
          options[:uri] = "#{service.base_path}/layoutRows/environments/#{environment_id}/action/createLayoutRow"
          data = service.rows_create(options).body
          new(data)
        end

        def environment_id
          href.scan(/\d+/)[0]
        end
      end
    end
  end
end

Version data entries

37 entries across 37 versions & 2 rubygems

Version Path
fog-1.22.0 lib/fog/ecloud/models/compute/rows.rb
fog-1.21.0 lib/fog/ecloud/models/compute/rows.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/ecloud/models/compute/rows.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/ecloud/models/compute/rows.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/ecloud/models/compute/rows.rb
fog-1.20.0 lib/fog/ecloud/models/compute/rows.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/ecloud/models/compute/rows.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/ecloud/models/compute/rows.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/ecloud/models/compute/rows.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/ecloud/models/compute/rows.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/ecloud/models/compute/rows.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/ecloud/models/compute/rows.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/ecloud/models/compute/rows.rb
fog-1.19.0 lib/fog/ecloud/models/compute/rows.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/ecloud/models/compute/rows.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/ecloud/models/compute/rows.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/ecloud/models/compute/rows.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/ecloud/models/compute/rows.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/ecloud/models/compute/rows.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/ecloud/models/compute/rows.rb