Class: Google::Apis::AccessapprovalV1::ApproveDecision
- Inherits:
-
Object
- Object
- Google::Apis::AccessapprovalV1::ApproveDecision
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/accessapproval_v1/classes.rb,
generated/google/apis/accessapproval_v1/representations.rb,
generated/google/apis/accessapproval_v1/representations.rb
Overview
A decision that has been made to approve access to a resource.
Instance Attribute Summary collapse
-
#approve_time ⇒ String
The time at which approval was granted.
-
#expire_time ⇒ String
The time at which the approval expires.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ApproveDecision
constructor
A new instance of ApproveDecision.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ApproveDecision
Returns a new instance of ApproveDecision.
246 247 248 |
# File 'generated/google/apis/accessapproval_v1/classes.rb', line 246 def initialize(**args) update!(**args) end |
Instance Attribute Details
#approve_time ⇒ String
The time at which approval was granted.
Corresponds to the JSON property approveTime
239 240 241 |
# File 'generated/google/apis/accessapproval_v1/classes.rb', line 239 def approve_time @approve_time end |
#expire_time ⇒ String
The time at which the approval expires.
Corresponds to the JSON property expireTime
244 245 246 |
# File 'generated/google/apis/accessapproval_v1/classes.rb', line 244 def expire_time @expire_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
251 252 253 254 |
# File 'generated/google/apis/accessapproval_v1/classes.rb', line 251 def update!(**args) @approve_time = args[:approve_time] if args.key?(:approve_time) @expire_time = args[:expire_time] if args.key?(:expire_time) end |