1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/google/models/compute/disk.rb

127 lines
3.9 KiB
Ruby
Raw Normal View History

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'
attribute :zone_name, :aliases => 'zone'
attribute :status, :aliases => 'status'
attribute :description, :aliases => 'description'
attribute :size_gb, :aliases => 'sizeGb'
attribute :self_link, :aliases => 'selfLink'
attribute :source_image, :aliases => 'sourceImage'
attribute :source_snapshot, :aliases => 'sourceSnapshot'
attribute :source_snapshot_id, :aliases => 'sourceSnapshot'
def save
requires :name
requires :zone_name
options = {}
if source_image.nil? && !source_snapshot.nil?
options['sourceSnapshot'] = source_snapshot
end
options['sizeGb'] = size_gb
data = service.insert_disk(name, zone_name, source_image, options).body
data = service.backoff_if_unfound {service.get_disk(name, zone_name).body}
service.disks.merge_attributes(data)
end
def destroy
requires :name, :zone_name
operation = service.delete_disk(name, zone_name)
# wait until "RUNNING" or "DONE" to ensure the operation doesn't fail, raises exception on error
Fog.wait_for do
operation = service.get_zone_operation(zone_name, operation.body["name"])
operation.body["status"] != "PENDING"
end
operation
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
# auto_delete can only be applied to disks created before instance creation.
# auto_delete = true will automatically delete disk upon instance termination.
def get_object(writable=true, boot=false, device_name=nil, auto_delete=false)
mode = writable ? 'READ_WRITE' : 'READ_ONLY'
value = {
'autoDelete' => auto_delete,
'boot' => boot,
'source' => self_link,
'mode' => mode,
2013-12-19 13:39:15 -05:00
'deviceName' => device_name,
'type' => 'PERSISTENT'
}.select { |k, v| !v.nil? }
return Hash[value]
end
def get_as_boot_disk(writable=true, auto_delete=false)
get_object(writable, true, nil, auto_delete)
end
def ready?
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
2013-10-27 11:00:25 -04:00
def create_snapshot(snapshot_name, snapshot_description="")
2013-08-14 21:47:06 -04:00
requires :name
requires :zone_name
if snapshot_name.nil? or snapshot_name.empty?
2013-08-14 21:47:06 -04:00
raise ArgumentError, 'Invalid snapshot name'
end
options = {
2013-10-27 11:00:25 -04:00
'name' => snapshot_name,
'description' => snapshot_description,
2013-08-14 21:47:06 -04:00
}
service.insert_snapshot(name, self.zone, service.project, options)
data = service.backoff_if_unfound {
2013-10-27 11:00:25 -04:00
service.get_snapshot(snapshot_name, service.project).body
2013-08-14 21:47:06 -04:00
}
service.snapshots.merge_attributes(data)
# Try to return the representation of the snapshot we created
2013-10-27 11:00:25 -04:00
service.snapshots.get(snapshot_name)
2013-08-14 21:47:06 -04:00
end
RUNNING_STATE = "READY"
end
end
end
end