Class: Dnsimple::Struct::Certificate
- Defined in:
- lib/dnsimple/struct/certificate.rb
Instance Attribute Summary collapse
-
#alternate_names ⇒ Array<String>
The certificate alternate names.
-
#authority_identifier ⇒ String
The Certificate Authority (CA) that issued the certificate.
-
#auto_renew ⇒ Boolean
True if the certificate is set to auto-renew on expiration.
-
#common_name ⇒ String
The certificate common name.
-
#created_at ⇒ String
When the certificate was created in DNSimple.
-
#csr ⇒ String
The certificate CSR.
-
#domain_id ⇒ Integer
The associated domain ID.
-
#expires_at ⇒ String
The timestamp when the certificate will expire.
-
#id ⇒ Integer
The certificate ID in DNSimple.
-
#state ⇒ String
The certificate state.
-
#updated_at ⇒ String
When the certificate was last updated in DNSimple.
-
#years ⇒ Integer
The years the certificate will last.
Method Summary
Methods inherited from Base
Constructor Details
This class inherits a constructor from Dnsimple::Struct::Base
Instance Attribute Details
#alternate_names ⇒ Array<String>
16 17 18 |
# File 'lib/dnsimple/struct/certificate.rb', line 16 def alternate_names @alternate_names end |
#authority_identifier ⇒ String
28 29 30 |
# File 'lib/dnsimple/struct/certificate.rb', line 28 def end |
#auto_renew ⇒ Boolean
31 32 33 |
# File 'lib/dnsimple/struct/certificate.rb', line 31 def auto_renew @auto_renew end |
#common_name ⇒ String
13 14 15 |
# File 'lib/dnsimple/struct/certificate.rb', line 13 def common_name @common_name end |
#created_at ⇒ String
34 35 36 |
# File 'lib/dnsimple/struct/certificate.rb', line 34 def created_at @created_at end |
#csr ⇒ String
22 23 24 |
# File 'lib/dnsimple/struct/certificate.rb', line 22 def csr @csr end |
#domain_id ⇒ Integer
10 11 12 |
# File 'lib/dnsimple/struct/certificate.rb', line 10 def domain_id @domain_id end |
#expires_at ⇒ String
40 41 42 |
# File 'lib/dnsimple/struct/certificate.rb', line 40 def expires_at @expires_at end |
#id ⇒ Integer
7 8 9 |
# File 'lib/dnsimple/struct/certificate.rb', line 7 def id @id end |
#state ⇒ String
25 26 27 |
# File 'lib/dnsimple/struct/certificate.rb', line 25 def state @state end |
#updated_at ⇒ String
37 38 39 |
# File 'lib/dnsimple/struct/certificate.rb', line 37 def updated_at @updated_at end |
#years ⇒ Integer
19 20 21 |
# File 'lib/dnsimple/struct/certificate.rb', line 19 def years @years end |