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/go_grid/models/compute/password.rb

50 lines
974 B
Ruby

require 'fog/core/model'
module Fog
module Compute
class GoGrid
class Password < Fog::Model
identity :id
attribute :server_id
attribute :applicationtype
attribute :username
attribute :password_id, :aliases => 'id'
attribute :password
attribute :server
def initialize(attributes={})
super
end
def destroy
requires :id
connection.grid_server_destroy(id)
true
end
def image
requires :image_id
connection.grid_image_get(image_id)
end
def ready?
@state == 'On'
end
def save
raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if identity
requires :password_id
data = connection.support_password_list()
merge_attributes(data.body)
true
end
end
end
end
end