Class: Google::Apis::CloudidentityV1::DynamicGroupQuery

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

Overview

Defines a query on a resource.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DynamicGroupQuery

Returns a new instance of DynamicGroupQuery.



92
93
94
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 92

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

Instance Attribute Details

#queryString

Query that determines the memberships of the dynamic group. Examples: All users with at least one organizations.department of engineering. user. organizations.exists(org, org.department=='engineering') All users with at least one location that has area of foo and building_id of bar. user. locations.exists(loc, loc.area=='foo' && loc.building_id=='bar') Corresponds to the JSON property query

Returns:

  • (String)


85
86
87
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 85

def query
  @query
end

#resource_typeString

Resource type for the Dynamic Group Query Corresponds to the JSON property resourceType

Returns:

  • (String)


90
91
92
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 90

def resource_type
  @resource_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



97
98
99
100
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 97

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