2011-01-28 19:00:29 -05:00
|
|
|
require 'fog/core/model'
|
|
|
|
|
|
|
|
module Fog
|
2011-06-16 19:28:54 -04:00
|
|
|
module Compute
|
|
|
|
class GoGrid
|
2011-01-28 19:00:29 -05:00
|
|
|
|
|
|
|
class Password < Fog::Model
|
|
|
|
|
|
|
|
identity :id
|
|
|
|
|
|
|
|
attribute :server_id
|
|
|
|
attribute :applicationtype
|
2011-01-30 18:11:36 -05:00
|
|
|
attribute :username
|
2011-01-28 19:00:29 -05:00
|
|
|
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
|