Sha256: 8c07d17b037c369c7bcdb3aa55d597db63da76cd945311e4f0829c0ec7ded021
Contents?: true
Size: 643 Bytes
Versions: 28
Compression:
Stored size: 643 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Remove an Ldap Configuration # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/deleteLdapConfiguration.html] def delete_ldap_configuration(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'deleteLdapConfiguration') else options.merge!('command' => 'deleteLdapConfiguration', 'hostname' => args[0]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems