mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
4c2736d0c2
Simplify attachment of boot disk, get_as_boot_disk no longer needed Add missing Disk.get_object method Allow setting deviceName when attaching a disk Add disks mocks
26 lines
555 B
Ruby
26 lines
555 B
Ruby
require 'fog/core/model'
|
|
|
|
module Fog
|
|
module Compute
|
|
class Google
|
|
|
|
class Zone < Fog::Model
|
|
|
|
identity :name
|
|
attribute :description
|
|
attribute :status
|
|
attribute :maintenance_windows, :aliases => 'maintenanceWindows'
|
|
attribute :begin_time, :aliases => 'beginTime'
|
|
attribute :end_time, :aliases => 'endTime'
|
|
attribute :quotas
|
|
attribute :region
|
|
attribute :self_link, :aliases => 'selfLink'
|
|
|
|
def up?
|
|
self.status == "UP"
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|