Class: Fog::Compute::GoGrid::Image
- Defined in:
- lib/fog/go_grid/models/compute/image.rb
Instance Attribute Summary
Attributes inherited from Model
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 Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires, #requires_one
Constructor Details
This class inherits a constructor from Fog::Model
Instance Method Details
#destroy ⇒ Object
36 37 38 39 40 41 |
# File 'lib/fog/go_grid/models/compute/image.rb', line 36 def destroy requires :id connection.grid_server_delete(id) true end |
#ready? ⇒ Boolean
43 44 45 |
# File 'lib/fog/go_grid/models/compute/image.rb', line 43 def ready? status == 'Available' end |
#save ⇒ Object
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 identity requires :server_id data = connection.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 |