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



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

def chain
  @chain
end

#private_keyString

Returns The certificate private key.

Returns:

  • (String)

    The certificate private key



7
8
9
# File 'lib/dnsimple/struct/certificate_bundle.rb', line 7

def private_key
  @private_key
end

#rootString Also known as: root_certificate

Returns The root certificate.

Returns:

  • (String)

    The root certificate



14
15
16
# File 'lib/dnsimple/struct/certificate_bundle.rb', line 14

def root
  @root
end

#serverString Also known as: server_certificate

Returns The server certificate.

Returns:

  • (String)

    The server certificate



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

def server
  @server
end