2013-07-01 19:20:25 -04:00
|
|
|
require 'fog/core/model'
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class Google
|
|
|
|
|
|
|
|
class Disk < Fog::Model
|
|
|
|
|
|
|
|
identity :name
|
|
|
|
|
|
|
|
attribute :kind, :aliases => 'kind'
|
|
|
|
attribute :id, :aliases => 'id'
|
|
|
|
attribute :creation_timestamp, :aliases => 'creationTimestamp'
|
2013-07-01 21:57:32 -04:00
|
|
|
attribute :zone_name, :aliases => 'zone'
|
2013-07-01 19:20:25 -04:00
|
|
|
attribute :status, :aliases => 'status'
|
|
|
|
attribute :description, :aliases => 'description'
|
|
|
|
attribute :size_gb, :aliases => 'sizeGb'
|
|
|
|
attribute :self_link, :aliases => 'selfLink'
|
2013-08-11 19:17:41 -04:00
|
|
|
attribute :source_image, :aliases => 'sourceImage'
|
|
|
|
attribute :source_snapshot, :aliases => 'sourceSnapshot'
|
|
|
|
attribute :source_snapshot_id, :aliases => 'sourceSnapshot'
|
2013-07-01 21:57:32 -04:00
|
|
|
|
|
|
|
def save
|
2013-08-11 19:17:41 -04:00
|
|
|
requires :name
|
|
|
|
requires :zone_name
|
|
|
|
|
|
|
|
options = {}
|
|
|
|
if source_image.nil?
|
|
|
|
options['sourceSnapshot'] = source_snapshot
|
|
|
|
options['sizeGb'] = size_gb
|
|
|
|
end
|
|
|
|
|
|
|
|
data = service.insert_disk(name, zone_name, source_image, options).body
|
2013-07-11 13:30:54 -04:00
|
|
|
data = service.backoff_if_unfound {service.get_disk(name, zone_name).body}
|
2013-07-01 21:57:32 -04:00
|
|
|
service.disks.merge_attributes(data)
|
|
|
|
end
|
2013-07-01 19:20:25 -04:00
|
|
|
|
2013-07-12 17:36:41 -04:00
|
|
|
def destroy
|
2013-08-11 19:17:41 -04:00
|
|
|
requires :name, :zone_name
|
|
|
|
service.delete_disk(name, zone_name)
|
2013-07-12 17:36:41 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def zone
|
|
|
|
if self.zone_name.is_a? String
|
|
|
|
service.get_zone(self.zone_name.split('/')[-1]).body["name"]
|
|
|
|
elsif zone_name.is_a? Excon::Response
|
|
|
|
service.get_zone(zone_name.body["name"]).body["name"]
|
|
|
|
else
|
|
|
|
self.zone_name
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-07-01 19:20:25 -04:00
|
|
|
def get_as_boot_disk(writable=true)
|
|
|
|
mode = writable ? 'READ_WRITE' : 'READ_ONLY'
|
|
|
|
return {
|
|
|
|
'name' => name,
|
|
|
|
'type' => 'PERSISTENT',
|
|
|
|
'boot' => true,
|
|
|
|
'source' => self_link,
|
|
|
|
'mode' => mode
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2013-07-01 21:57:32 -04:00
|
|
|
def ready?
|
|
|
|
data = service.get_disk(self.name, self.zone_name).body
|
|
|
|
data['zone_name'] = self.zone_name
|
|
|
|
self.merge_attributes(data)
|
|
|
|
self.status == RUNNING_STATE
|
|
|
|
end
|
|
|
|
|
|
|
|
def reload
|
|
|
|
requires :identity
|
|
|
|
requires :zone_name
|
|
|
|
|
|
|
|
return unless data = begin
|
|
|
|
collection.get(identity, zone_name)
|
|
|
|
rescue Excon::Errors::SocketError
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
new_attributes = data.attributes
|
|
|
|
merge_attributes(new_attributes)
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
RUNNING_STATE = "READY"
|
|
|
|
|
2013-07-01 19:20:25 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2013-08-11 19:17:41 -04:00
|
|
|
end
|