Class: GeneratorLabs::Cert
- Inherits:
-
Object
- Object
- GeneratorLabs::Cert
- Defined in:
- lib/generatorlabs/cert.rb
Overview
Certificate monitoring API namespace
Instance Method Summary collapse
-
#errors ⇒ CertErrors
Access certificate error operations.
-
#initialize(handler) ⇒ Cert
constructor
A new instance of Cert.
-
#monitors ⇒ CertMonitors
Access certificate monitor management operations.
-
#profiles ⇒ CertProfiles
Access certificate profile management operations.
Constructor Details
#initialize(handler) ⇒ Cert
Returns a new instance of Cert.
15 16 17 |
# File 'lib/generatorlabs/cert.rb', line 15 def initialize(handler) @handler = handler end |
Instance Method Details
#errors ⇒ CertErrors
Access certificate error operations
21 22 23 |
# File 'lib/generatorlabs/cert.rb', line 21 def errors @errors ||= CertErrors.new(@handler) end |
#monitors ⇒ CertMonitors
Access certificate monitor management operations
27 28 29 |
# File 'lib/generatorlabs/cert.rb', line 27 def monitors @monitors ||= CertMonitors.new(@handler) end |
#profiles ⇒ CertProfiles
Access certificate profile management operations
33 34 35 |
# File 'lib/generatorlabs/cert.rb', line 33 def profiles @profiles ||= CertProfiles.new(@handler) end |