Class: Dnsimple::Struct::Certificate

Inherits:
Base
  • Object
show all
Defined in:
lib/dnsimple/struct/certificate.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

#alternate_namesArray<String>

Returns The certificate alternate names.

Returns:

  • (Array<String>)

    The certificate alternate names.



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

def alternate_names
  @alternate_names
end

#authority_identifierString

Returns The Certificate Authority (CA) that issued the certificate.

Returns:

  • (String)

    The Certificate Authority (CA) that issued the certificate.



30
31
32
# File 'lib/dnsimple/struct/certificate.rb', line 30

def authority_identifier
  @authority_identifier
end

#auto_renewBoolean

Returns True if the certificate is set to auto-renew on expiration.

Returns:

  • (Boolean)

    True if the certificate is set to auto-renew on expiration.



33
34
35
# File 'lib/dnsimple/struct/certificate.rb', line 33

def auto_renew
  @auto_renew
end

#common_nameString

Returns The certificate common name.

Returns:

  • (String)

    The certificate common name.



15
16
17
# File 'lib/dnsimple/struct/certificate.rb', line 15

def common_name
  @common_name
end

#contact_idInteger

Returns The associated contact ID.

Returns:

  • (Integer)

    The associated contact ID.



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

def contact_id
  @contact_id
end

#created_atString

Returns When the certificate was created in DNSimple.

Returns:

  • (String)

    When the certificate was created in DNSimple.



36
37
38
# File 'lib/dnsimple/struct/certificate.rb', line 36

def created_at
  @created_at
end

#csrString

Returns The certificate CSR.

Returns:

  • (String)

    The certificate CSR.



24
25
26
# File 'lib/dnsimple/struct/certificate.rb', line 24

def csr
  @csr
end

#domain_idInteger

Returns The associated domain ID.

Returns:

  • (Integer)

    The associated domain ID.



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

def domain_id
  @domain_id
end

#expires_onString

Returns When the certificate will expire.

Returns:

  • (String)

    When the certificate will expire.



42
43
44
# File 'lib/dnsimple/struct/certificate.rb', line 42

def expires_on
  @expires_on
end

#idInteger

Returns The certificate ID in DNSimple.

Returns:

  • (Integer)

    The certificate ID in DNSimple.



6
7
8
# File 'lib/dnsimple/struct/certificate.rb', line 6

def id
  @id
end

#stateString

Returns The certificate state.

Returns:

  • (String)

    The certificate state.



27
28
29
# File 'lib/dnsimple/struct/certificate.rb', line 27

def state
  @state
end

#updated_atString

Returns When the certificate was last updated in DNSimple.

Returns:

  • (String)

    When the certificate was last updated in DNSimple.



39
40
41
# File 'lib/dnsimple/struct/certificate.rb', line 39

def updated_at
  @updated_at
end

#yearsInteger

Returns The years the certificate will last.

Returns:

  • (Integer)

    The years the certificate will last.



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

def years
  @years
end