DynamicGroupQueryArgs

data class DynamicGroupQueryArgs(val query: Output<String>? = null, val resourceType: Output<DynamicGroupQueryResourceType>? = null) : ConvertibleToJava<DynamicGroupQueryArgs>

Defines a query on a resource.

Constructors

Link copied to clipboard
constructor(query: Output<String>? = null, resourceType: Output<DynamicGroupQueryResourceType>? = null)

Properties

Link copied to clipboard
val query: Output<String>? = null

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') All users with any variation of the name John Doe (case-insensitive queries add equalsIgnoreCase() to the value being queried). user.name.value.equalsIgnoreCase('jOhn DoE')

Link copied to clipboard

Resource type for the Dynamic Group Query

Functions

Link copied to clipboard
open override fun toJava(): DynamicGroupQueryArgs