Sha256: 2782fdfc83995603f46875e201f9dcd70208e9f34938ed9905c35979d8e0216d

Contents?: true

Size: 1.38 KB

Versions: 65

Compression:

Stored size: 1.38 KB

Contents

require 'fog/core/model'

module Fog
  module Compute
    class GoGrid

      class Image < Fog::Model

        identity :id

        attribute :name
        attribute :description
        attribute :friendly_name, :aliases => 'friendlyName'
        attribute :created_at,    :aliases => 'createdTime'
        attribute :updated_at,    :aliases => 'updatedTime'
        attribute :server_id,     :aliases => 'id'
        attribute :state
        attribute :price
        attribute :location
        attribute :billingtokens
        attribute :os
        attribute :architecture
        attribute :type
        attribute :active,        :aliases => 'isActive'
        attribute :public,        :aliases => 'isPublic'
        attribute :object_type,   :aliases => 'object'
        attribute :owner


        def server=(new_server)
          requires :id

          @server_id = new_server.id
        end

        def destroy
          requires :id

          service.grid_server_delete(id)
          true
        end

        def ready?
          status == 'Available'
        end

        def save
          raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if persisted?
          requires :server_id

          data = service.grid_server_add(server_id, 'name' => name)
          merge_attributes(data.body['image'])
          true
        end

      end

    end
  end
end

Version data entries

65 entries across 65 versions & 6 rubygems

Version Path
fog-maestrodev-1.15.0.20130927082724 lib/fog/go_grid/models/compute/image.rb
fog-maestrodev-1.15.0.20130829165835 lib/fog/go_grid/models/compute/image.rb
fog-1.15.0 lib/fog/go_grid/models/compute/image.rb
gapinc-fog-1.14.0 lib/fog/go_grid/models/compute/image.rb
fog-maestrodev-1.14.0.20130806165225 lib/fog/go_grid/models/compute/image.rb
fog-1.14.0 lib/fog/go_grid/models/compute/image.rb
fog-1.13.0 lib/fog/go_grid/models/compute/image.rb
gapinc-fog-1.12.1.2 lib/fog/go_grid/models/compute/image.rb
gapinc-fog-1.12.1.1 lib/fog/go_grid/models/compute/image.rb
gapinc-fog-1.12.1a lib/fog/go_grid/models/compute/image.rb
gapinc-fog-1.12.1 lib/fog/go_grid/models/compute/image.rb
fog-1.12.1 lib/fog/go_grid/models/compute/image.rb
fog-1.12.0 lib/fog/go_grid/models/compute/image.rb
hpfog-0.0.20 lib/fog/go_grid/models/compute/image.rb
vagrant-shell-0.2.6 vendor/bundle/gems/fog-1.10.1/lib/fog/go_grid/models/compute/image.rb
vagrant-shell-0.2.5 vendor/bundle/gems/fog-1.10.1/lib/fog/go_grid/models/compute/image.rb
fog-1.11.1 lib/fog/go_grid/models/compute/image.rb
fog-1.11.0 lib/fog/go_grid/models/compute/image.rb
fog-1.10.1 lib/fog/go_grid/models/compute/image.rb
fog-test-me-1.10.0 lib/fog/go_grid/models/compute/image.rb