Class: Dnsimple::Struct::CertificateBundle

Inherits:
Base
  • Object
show all
Defined in:
lib/dnsimple/struct/certificate_bundle.rb

Instance Attribute Summary collapse

Method Summary

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from Dnsimple::Struct::Base

Instance Attribute Details

#chainArray<String> Also known as: intermediate_certificates

Returns Intermediate certificates.

Returns:

  • (Array<String>)

    Intermediate certificates



22
23
24
# File 'lib/dnsimple/struct/certificate_bundle.rb', line 22

def chain
  @chain
end

#private_keyString

Returns The certificate private key.

Returns:

  • (String)

    The certificate private key



9
10
11
# File 'lib/dnsimple/struct/certificate_bundle.rb', line 9

def private_key
  @private_key
end

#rootString Also known as: root_certificate

Returns The root certificate.

Returns:

  • (String)

    The root certificate



17
18
19
# File 'lib/dnsimple/struct/certificate_bundle.rb', line 17

def root
  @root
end

#serverString Also known as: server_certificate

Returns The server certificate.

Returns:

  • (String)

    The server certificate



12
13
14
# File 'lib/dnsimple/struct/certificate_bundle.rb', line 12

def server
  @server
end