Class: Google::Apis::AppengineV1beta::ManagedCertificate
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1beta::ManagedCertificate
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/appengine_v1beta/classes.rb,
generated/google/apis/appengine_v1beta/representations.rb,
generated/google/apis/appengine_v1beta/representations.rb
Overview
A certificate managed by App Engine.
Instance Attribute Summary collapse
-
#last_renewal_time ⇒ String
Time at which the certificate was last renewed.
-
#status ⇒ String
Status of certificate management.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ManagedCertificate
constructor
A new instance of ManagedCertificate.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ManagedCertificate
Returns a new instance of ManagedCertificate
1699 1700 1701 |
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 1699 def initialize(**args) update!(**args) end |
Instance Attribute Details
#last_renewal_time ⇒ String
Time at which the certificate was last renewed. The renewal process is fully
managed. Certificate renewal will automatically occur before the certificate
expires. Renewal errors can be tracked via ManagementStatus.@OutputOnly
Corresponds to the JSON property lastRenewalTime
1691 1692 1693 |
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 1691 def last_renewal_time @last_renewal_time end |
#status ⇒ String
Status of certificate management. Refers to the most recent certificate
acquisition or renewal attempt.@OutputOnly
Corresponds to the JSON property status
1697 1698 1699 |
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 1697 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1704 1705 1706 1707 |
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 1704 def update!(**args) @last_renewal_time = args[:last_renewal_time] if args.key?(:last_renewal_time) @status = args[:status] if args.key?(:status) end |