Class: Fog::Compute::GoGrid::Image

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/go_grid/models/compute/image.rb

Instance Attribute Summary

Attributes inherited from Model

#collection, #service

Instance Method Summary collapse

Methods inherited from Model

#initialize, #inspect, #reload, #symbolize_keys, #to_json, #wait_for

Methods included from Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Fog::Core::DeprecatedConnectionAccessors

#connection, #connection=, #prepare_service_value

Methods included from Attributes::InstanceMethods

#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one

Constructor Details

This class inherits a constructor from Fog::Model

Instance Method Details

#destroyObject



36
37
38
39
40
41
# File 'lib/fog/go_grid/models/compute/image.rb', line 36

def destroy
  requires :id

  service.grid_server_delete(id)
  true
end

#ready?Boolean

Returns:

  • (Boolean)


43
44
45
# File 'lib/fog/go_grid/models/compute/image.rb', line 43

def ready?
  status == 'Available'
end

#saveObject

Raises:



47
48
49
50
51
52
53
54
# File 'lib/fog/go_grid/models/compute/image.rb', line 47

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

#server=(new_server) ⇒ Object



30
31
32
33
34
# File 'lib/fog/go_grid/models/compute/image.rb', line 30

def server=(new_server)
  requires :id

  @server_id = new_server.id
end