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.
21 22 23 |
# File 'lib/dnsimple/struct/certificate_bundle.rb', line 21 def chain @chain end |
#private_key ⇒ String
Returns The certificate private key.
8 9 10 |
# File 'lib/dnsimple/struct/certificate_bundle.rb', line 8 def private_key @private_key end |
#root ⇒ String Also known as: root_certificate
Returns The root certificate.
16 17 18 |
# File 'lib/dnsimple/struct/certificate_bundle.rb', line 16 def root @root end |
#server ⇒ String Also known as: server_certificate
Returns The server certificate.
11 12 13 |
# File 'lib/dnsimple/struct/certificate_bundle.rb', line 11 def server @server end |