Sha256: 33d3347e4c46631a1deb04918bfc17a4e9df24126747a8a3d211e5365dd7025b
Contents?: true
Size: 974 Bytes
Versions: 45
Compression:
Stored size: 974 Bytes
Contents
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
Version data entries
45 entries across 45 versions & 14 rubygems