Class: Google::Apis::PrivatecaV1beta1::RevocationDetails
- Inherits:
-
Object
- Object
- Google::Apis::PrivatecaV1beta1::RevocationDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/privateca_v1beta1/classes.rb,
generated/google/apis/privateca_v1beta1/representations.rb,
generated/google/apis/privateca_v1beta1/representations.rb
Overview
Describes fields that are relavent to the revocation of a Certificate.
Instance Attribute Summary collapse
-
#revocation_state ⇒ String
Indicates why a Certificate was revoked.
-
#revocation_time ⇒ String
The time at which this Certificate was revoked.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RevocationDetails
constructor
A new instance of RevocationDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RevocationDetails
Returns a new instance of RevocationDetails.
1945 1946 1947 |
# File 'generated/google/apis/privateca_v1beta1/classes.rb', line 1945 def initialize(**args) update!(**args) end |
Instance Attribute Details
#revocation_state ⇒ String
Indicates why a Certificate was revoked.
Corresponds to the JSON property revocationState
1938 1939 1940 |
# File 'generated/google/apis/privateca_v1beta1/classes.rb', line 1938 def revocation_state @revocation_state end |
#revocation_time ⇒ String
The time at which this Certificate was revoked.
Corresponds to the JSON property revocationTime
1943 1944 1945 |
# File 'generated/google/apis/privateca_v1beta1/classes.rb', line 1943 def revocation_time @revocation_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1950 1951 1952 1953 |
# File 'generated/google/apis/privateca_v1beta1/classes.rb', line 1950 def update!(**args) @revocation_state = args[:revocation_state] if args.key?(:revocation_state) @revocation_time = args[:revocation_time] if args.key?(:revocation_time) end |