class Google::Apis::PrivatecaV1beta1::RevocationDetails
Describes fields that are relavent to the revocation of a Certificate
.
Attributes
revocation_state[RW]
Indicates why a Certificate
was revoked. Corresponds to the JSON property `revocationState` @return [String]
revocation_time[RW]
The time at which this Certificate
was revoked. Corresponds to the JSON property `revocationTime` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/privateca_v1beta1/classes.rb, line 1971 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/privateca_v1beta1/classes.rb, line 1976 def update!(**args) @revocation_state = args[:revocation_state] if args.key?(:revocation_state) @revocation_time = args[:revocation_time] if args.key?(:revocation_time) end