Class: Dnsimple::Struct::CertificateRenewal
- Defined in:
- lib/dnsimple/struct/certificate_renewal.rb
Instance Attribute Summary collapse
-
#auto_renew ⇒ Boolean
True if the certificate is requested to auto-renew.
-
#created_at ⇒ String
When the certificate renewal was created in DNSimple.
-
#id ⇒ Integer
The certificate renewal ID in DNSimple.
-
#new_certificate_id ⇒ Integer
The new certificate ID.
-
#old_certificate_id ⇒ Integer
The old certificate ID.
-
#state ⇒ String
The certificate renewal state.
-
#updated_at ⇒ String
When the certificate renewal was last updated in DNSimple.
Method Summary
Methods inherited from Base
Constructor Details
This class inherits a constructor from Dnsimple::Struct::Base
Instance Attribute Details
#auto_renew ⇒ Boolean
Returns True if the certificate is requested to auto-renew.
20 21 22 |
# File 'lib/dnsimple/struct/certificate_renewal.rb', line 20 def auto_renew @auto_renew end |
#created_at ⇒ String
Returns When the certificate renewal was created in DNSimple.
23 24 25 |
# File 'lib/dnsimple/struct/certificate_renewal.rb', line 23 def created_at @created_at end |
#id ⇒ Integer
Returns The certificate renewal ID in DNSimple.
8 9 10 |
# File 'lib/dnsimple/struct/certificate_renewal.rb', line 8 def id @id end |
#new_certificate_id ⇒ Integer
Returns The new certificate ID.
14 15 16 |
# File 'lib/dnsimple/struct/certificate_renewal.rb', line 14 def new_certificate_id @new_certificate_id end |
#old_certificate_id ⇒ Integer
Returns The old certificate ID.
11 12 13 |
# File 'lib/dnsimple/struct/certificate_renewal.rb', line 11 def old_certificate_id @old_certificate_id end |
#state ⇒ String
Returns The certificate renewal state.
17 18 19 |
# File 'lib/dnsimple/struct/certificate_renewal.rb', line 17 def state @state end |
#updated_at ⇒ String
Returns When the certificate renewal was last updated in DNSimple.
26 27 28 |
# File 'lib/dnsimple/struct/certificate_renewal.rb', line 26 def updated_at @updated_at end |