Class: Google::Apis::CloudidentityV1beta1::DynamicGroupMetadata

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

Dynamic group metadata like queries and status.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DynamicGroupMetadata

Returns a new instance of DynamicGroupMetadata.



705
706
707
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 705

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

Instance Attribute Details

#queriesArray<Google::Apis::CloudidentityV1beta1::DynamicGroupQuery>

Memberships will be the union of all queries. Only one entry with USER resource is currently supported. Customers can create up to 100 dynamic groups. Corresponds to the JSON property queries



698
699
700
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 698

def queries
  @queries
end

#statusGoogle::Apis::CloudidentityV1beta1::DynamicGroupStatus

The current status of a dynamic group along with timestamp. Corresponds to the JSON property status



703
704
705
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 703

def status
  @status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



710
711
712
713
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 710

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