Class: Google::Apis::AccessapprovalV1beta1::ApproveDecision

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/accessapproval_v1beta1/classes.rb,
generated/google/apis/accessapproval_v1beta1/representations.rb,
generated/google/apis/accessapproval_v1beta1/representations.rb

Overview

A decision that has been made to approve access to a resource.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ApproveDecision

Returns a new instance of ApproveDecision.



270
271
272
# File 'generated/google/apis/accessapproval_v1beta1/classes.rb', line 270

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#approve_timeString

The time at which approval was granted. Corresponds to the JSON property approveTime

Returns:

  • (String)


263
264
265
# File 'generated/google/apis/accessapproval_v1beta1/classes.rb', line 263

def approve_time
  @approve_time
end

#expire_timeString

The time at which the approval expires. Corresponds to the JSON property expireTime

Returns:

  • (String)


268
269
270
# File 'generated/google/apis/accessapproval_v1beta1/classes.rb', line 268

def expire_time
  @expire_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



275
276
277
278
# File 'generated/google/apis/accessapproval_v1beta1/classes.rb', line 275

def update!(**args)
  @approve_time = args[:approve_time] if args.key?(:approve_time)
  @expire_time = args[:expire_time] if args.key?(:expire_time)
end