Class: IControl::Management::OCSPConfiguration
- Inherits:
-
Base
- Object
- Base
- IControl::Management::OCSPConfiguration
- Defined in:
- lib/icontrol/management/ocsp_configuration.rb,
lib/icontrol/management.rb
Overview
The OCSPConfiguration interface enables you to manage OCSP PAM configuration.
Instance Method Summary (collapse)
-
- (Object) add_responder(opts)
Adds/associates responders to this OCSP configurations.
-
- (Object) create(opts)
Creates this OCSP configurations.
-
- (Object) delete_all_configurations
Deletes all OCSP configurations.
-
- (Object) delete_configuration
Deletes this OCSP configurations.
-
- (String) list
Gets a list of all OCSP configurations.
-
- (Object) remove_all_responders
Removes all responders from this OCSP configurations.
-
- (Object) remove_responder(opts)
Removes responders from this OCSP configurations.
-
- (String[]) responder
Gets the lists of responders this OCSP configurations are associated with.
-
- (String) version
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
- (Object) add_responder(opts)
Adds/associates responders to this OCSP configurations.
16 17 18 19 |
# File 'lib/icontrol/management/ocsp_configuration.rb', line 16 def add_responder(opts) check_params(opts,[:responders]) super end |
- (Object) create(opts)
Creates this OCSP configurations.
29 30 31 32 |
# File 'lib/icontrol/management/ocsp_configuration.rb', line 29 def create(opts) check_params(opts,[:responders]) super end |
- (Object) delete_all_configurations
Deletes all OCSP configurations.
40 41 42 |
# File 'lib/icontrol/management/ocsp_configuration.rb', line 40 def delete_all_configurations super end |
- (Object) delete_configuration
Deletes this OCSP configurations.
50 51 52 |
# File 'lib/icontrol/management/ocsp_configuration.rb', line 50 def delete_configuration super end |
- (String) list
Gets a list of all OCSP configurations.
61 62 63 |
# File 'lib/icontrol/management/ocsp_configuration.rb', line 61 def list super end |
- (Object) remove_all_responders
Removes all responders from this OCSP configurations.
90 91 92 |
# File 'lib/icontrol/management/ocsp_configuration.rb', line 90 def remove_all_responders super end |
- (Object) remove_responder(opts)
Removes responders from this OCSP configurations.
102 103 104 105 |
# File 'lib/icontrol/management/ocsp_configuration.rb', line 102 def remove_responder(opts) check_params(opts,[:responders]) super end |
- (String[]) responder
Gets the lists of responders this OCSP configurations are associated with.
72 73 74 |
# File 'lib/icontrol/management/ocsp_configuration.rb', line 72 def responder super end |
- (String) version
Gets the version information for this interface.
80 81 82 |
# File 'lib/icontrol/management/ocsp_configuration.rb', line 80 def version super end |