Sha256: 06f3d02f3efc60ec3686593ce6d1c7697e97b305efc1c2bb717261c81589e756

Contents?: true

Size: 1.38 KB

Versions: 30

Compression:

Stored size: 1.38 KB

Contents

require 'fog/core/model'

module Fog
  module GoGrid
    class Compute

      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

          connection.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 identity
          requires :server_id

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

      end

    end
  end
end

Version data entries

30 entries across 30 versions & 3 rubygems

Version Path
fog-0.8.2 lib/fog/compute/models/go_grid/image.rb
fog-0.8.1 lib/fog/compute/models/go_grid/image.rb
fog-0.8.0 lib/fog/compute/models/go_grid/image.rb
fog-0.7.2 lib/fog/compute/models/go_grid/image.rb
fog-0.7.1 lib/fog/compute/models/go_grid/image.rb
fog-0.7.0 lib/fog/compute/models/go_grid/image.rb
fog-0.6.0 lib/fog/compute/models/go_grid/image.rb
fog-0.5.3 lib/fog/compute/models/go_grid/image.rb
fog-0.5.2 lib/fog/compute/models/go_grid/image.rb
fog-0.5.1 lib/fog/compute/models/go_grid/image.rb
fog-0.5.0 lib/fog/compute/models/go_grid/image.rb
phpfog-fog-0.4.1.3 lib/fog/compute/models/go_grid/image.rb
phpfog-fog-0.4.1.2 lib/fog/compute/models/go_grid/image.rb
phpfog-fog-0.4.1.1 lib/fog/compute/models/go_grid/image.rb
phpfog-fog-0.4.1 lib/fog/compute/models/go_grid/image.rb
fog-0.4.1 lib/fog/compute/models/go_grid/image.rb
fog-0.4.0 lib/fog/go_grid/models/compute/image.rb
fog-0.3.34 lib/fog/go_grid/models/compute/image.rb
fog-0.3.33 lib/fog/go_grid/models/compute/image.rb
fog-0.3.32 lib/fog/go_grid/models/compute/image.rb