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



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

def chain
  @chain
end

#private_keyString

Returns The certificate private key.

Returns:

  • (String)

    The certificate private key



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

def private_key
  @private_key
end

#rootString Also known as: root_certificate

Returns The root certificate.

Returns:

  • (String)

    The root certificate



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

def root
  @root
end

#serverString Also known as: server_certificate

Returns The server certificate.

Returns:

  • (String)

    The server certificate



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

def server
  @server
end