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/compute/requests/cloudstack/enable_user.rb

21 lines
437 B
Ruby
Raw Normal View History

module Fog
module Compute
class Cloudstack
class Real
# Creates a user for an account that already exists
#
# {CloudStack API Reference}[http://download.cloud.com/releases/2.2.0/api_2.2.4/global_admin/disableUser.html]
def enable_user(options={})
options.merge!(
'command' => 'enableUser'
)
request(options)
end
end
end
end
end