Sha256: 3b487d7741d200647d924299285ffeac86b047acb1d7959430c7eb9294eb8ac8

Contents?: true

Size: 748 Bytes

Versions: 5

Compression:

Stored size: 748 Bytes

Contents

require 'fog/core/model'

module Fog
  module Brightbox
    class Compute

      class User < Fog::Model

        identity :id

        attribute :url
        attribute :resource_type
        attribute :name
        attribute :email_address
        attribute :email_verified
        attribute :ssh_key

        attribute :account_id, :aliases => "default_account", :squash => "id"
        attribute :accounts

        def save
          requires :identity

          options = {
            :email_address => @email_address,
            :ssh_key => @ssh_key,
            :name => @name
          }

          data = connection.update_user(identity, options)
          merge_attributes(data)
          true
        end

      end

    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fog-0.3.22 lib/fog/brightbox/models/compute/user.rb
fog-0.3.21 lib/fog/brightbox/models/compute/user.rb
fog-0.3.20 lib/fog/brightbox/models/compute/user.rb
fog-0.3.19 lib/fog/brightbox/models/compute/user.rb
fog-0.3.18 lib/fog/brightbox/models/compute/user.rb