Class: Dnsimple::Struct::CertificateBundle
- Defined in:
- lib/dnsimple/struct/certificate_bundle.rb
Instance Attribute Summary collapse
-
#chain ⇒ Array<String>
(also: #intermediate_certificates)
Intermediate certificates.
-
#private_key ⇒ String
The certificate private key.
-
#root ⇒ String
(also: #root_certificate)
The root certificate.
-
#server ⇒ String
(also: #server_certificate)
The server certificate.
Method Summary
Methods inherited from Base
Constructor Details
This class inherits a constructor from Dnsimple::Struct::Base
Instance Attribute Details
#chain ⇒ Array<String> Also known as: intermediate_certificates
Returns Intermediate certificates.
22 23 24 |
# File 'lib/dnsimple/struct/certificate_bundle.rb', line 22 def chain @chain end |
#private_key ⇒ String
Returns The certificate private key.
9 10 11 |
# File 'lib/dnsimple/struct/certificate_bundle.rb', line 9 def private_key @private_key end |
#root ⇒ String Also known as: root_certificate
Returns The root certificate.
17 18 19 |
# File 'lib/dnsimple/struct/certificate_bundle.rb', line 17 def root @root end |
#server ⇒ String Also known as: server_certificate
Returns The server certificate.
12 13 14 |
# File 'lib/dnsimple/struct/certificate_bundle.rb', line 12 def server @server end |