Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GroupsMembershipsSearchTransitiveGroupsOptions

import type { GroupsMembershipsSearchTransitiveGroupsOptions } from "https://googleapis.deno.dev/v1/cloudidentity:v1.ts";

Additional options for CloudIdentity#groupsMembershipsSearchTransitiveGroups.

interface GroupsMembershipsSearchTransitiveGroupsOptions {
pageSize?: number;
pageToken?: string;
query?: string;
}

§Properties

§
pageSize?: number
[src]

The default page size is 200 (max 1000).

§
pageToken?: string
[src]

The next_page_token value returned from a previous list request, if any.

§
query?: string
[src]

Required. A CEL expression that MUST include member specification AND label(s). This is a required field. Users can search on label attributes of groups. CONTAINS match ('in') is supported on labels. Identity-mapped groups are uniquely identified by both a member_key_id and a member_key_namespace, which requires an additional query input: member_key_namespace. Example query: member_key_id == 'member_key_id_value' && in labels Query may optionally contain equality operators on the parent of the group restricting the search within a particular customer, e.g. parent == 'customers/{customer_id}'. The customer_id must begin with "C" (for example, 'C046psxkn'). This filtering is only supported for Admins with groups read permissons on the input customer. Example query: member_key_id == 'member_key_id_value' && in labels && parent == 'customers/C046psxkn'