Class: IControl::Management::CRLDPServer
- Inherits:
-
Base
- Object
- Base
- IControl::Management::CRLDPServer
- Defined in:
- lib/icontrol/management/crldp_server.rb,
lib/icontrol/management.rb
Overview
The CRLDPServer interface enables you to manage CRLDP Server configuration.
Defined Under Namespace
Classes: CRLDPServerDefinition, CRLDPServerDefinitionSequence
Instance Method Summary collapse
-
#base_dn ⇒ String
Gets the base DNs of the CRLDP server.
-
#create ⇒ Object
Creates this CRLDP server.
-
#delete_all_servers ⇒ Object
Deletes all CRLDP server.
-
#delete_server ⇒ Object
Deletes this CRLDP server.
-
#hostname ⇒ String
Gets the hostnames of the CRLDP server.
-
#list ⇒ String
Gets a list of all CRLDP server.
-
#port ⇒ long
Gets the ports of the CRLDP server.
-
#reverse_dn_state ⇒ EnabledState
Gets the states indicating whether to match from head to tail in the case where the DNs are in reversed order.
-
#set_base_dn(opts) ⇒ Object
Sets the base DNs of the CRLDP server.
-
#set_hostname(opts) ⇒ Object
Sets the hostnames of the CRLDP server.
-
#set_port(opts) ⇒ Object
Sets the ports of the CRLDP server.
-
#set_reverse_dn_state(opts) ⇒ Object
Sets the states indicating whether to match from head to tail in the case where the DNs are in reversed order.
-
#version ⇒ String
Gets the version information for this interface.
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class IControl::Base
Instance Method Details
#base_dn ⇒ String
Gets the base DNs of the CRLDP server.
46 47 48 |
# File 'lib/icontrol/management/crldp_server.rb', line 46 def base_dn super end |
#create ⇒ Object
Creates this CRLDP server.
15 16 17 |
# File 'lib/icontrol/management/crldp_server.rb', line 15 def create super end |
#delete_all_servers ⇒ Object
Deletes all CRLDP server.
25 26 27 |
# File 'lib/icontrol/management/crldp_server.rb', line 25 def delete_all_servers super end |
#delete_server ⇒ Object
Deletes this CRLDP server.
35 36 37 |
# File 'lib/icontrol/management/crldp_server.rb', line 35 def delete_server super end |
#hostname ⇒ String
Gets the hostnames of the CRLDP server.
57 58 59 |
# File 'lib/icontrol/management/crldp_server.rb', line 57 def hostname super end |
#list ⇒ String
Gets a list of all CRLDP server.
68 69 70 |
# File 'lib/icontrol/management/crldp_server.rb', line 68 def list super end |
#port ⇒ long
Gets the ports of the CRLDP server.
79 80 81 |
# File 'lib/icontrol/management/crldp_server.rb', line 79 def port super end |
#reverse_dn_state ⇒ EnabledState
Gets the states indicating whether to match from head to tail in the case where the DNs are in reversed order.
91 92 93 |
# File 'lib/icontrol/management/crldp_server.rb', line 91 def reverse_dn_state super end |
#set_base_dn(opts) ⇒ Object
Sets the base DNs of the CRLDP server.
111 112 113 114 |
# File 'lib/icontrol/management/crldp_server.rb', line 111 def set_base_dn(opts) opts = check_params(opts,[:base_dns]) super(opts) end |
#set_hostname(opts) ⇒ Object
Sets the hostnames of the CRLDP server.
124 125 126 127 |
# File 'lib/icontrol/management/crldp_server.rb', line 124 def set_hostname(opts) opts = check_params(opts,[:hostnames]) super(opts) end |
#set_port(opts) ⇒ Object
Sets the ports of the CRLDP server.
137 138 139 140 |
# File 'lib/icontrol/management/crldp_server.rb', line 137 def set_port(opts) opts = check_params(opts,[:ports]) super(opts) end |
#set_reverse_dn_state(opts) ⇒ Object
Sets the states indicating whether to match from head to tail in the case where the DNs are in reversed order.
151 152 153 154 |
# File 'lib/icontrol/management/crldp_server.rb', line 151 def set_reverse_dn_state(opts) opts = check_params(opts,[:states]) super(opts) end |
#version ⇒ String
Gets the version information for this interface.
99 100 101 |
# File 'lib/icontrol/management/crldp_server.rb', line 99 def version super end |