Sha256: f78302bac545c4c6aea94801c50348c8dccca94b437665e886f575fc4c72de68
Contents?: true
Size: 622 Bytes
Versions: 28
Compression:
Stored size: 622 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Retrieves a cloud identifier. # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/getCloudIdentifier.html] def get_cloud_identifier(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'getCloudIdentifier') else options.merge!('command' => 'getCloudIdentifier', 'userid' => args[0]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems