require 'fog/core/model' module Fog module GoGrid class Compute 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