Class: Google::Apis::CloudidentityV1beta1::DynamicGroupStatus

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

Overview

The current status of a dynamic group along with timestamp.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DynamicGroupStatus

Returns a new instance of DynamicGroupStatus.



762
763
764
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 762

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

Instance Attribute Details

#statusString

Status of the dynamic group. Corresponds to the JSON property status

Returns:

  • (String)


752
753
754
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 752

def status
  @status
end

#status_timeString

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

Returns:

  • (String)


760
761
762
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 760

def status_time
  @status_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



767
768
769
770
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 767

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