class Google::Apis::CloudidentityV1::DynamicGroupStatus
The current status of a dynamic group along with timestamp.
Attributes
status[RW]
Status
of the dynamic group. Corresponds to the JSON property `status` @return [String]
status_time[RW]
The latest time at which the dynamic group is guaranteed to be in the given status. If status is `UP_TO_DATE`, the latest time at which the dynamic group was confirmed to be up-to-date. If status is `UPDATING_MEMBERSHIPS`, the time at which dynamic group was created. Corresponds to the JSON property `statusTime` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudidentity_v1/classes.rb, line 172 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/cloudidentity_v1/classes.rb, line 177 def update!(**args) @status = args[:status] if args.key?(:status) @status_time = args[:status_time] if args.key?(:status_time) end