PoliciesListOptions
import type { PoliciesListOptions } from "https://googleapis.deno.dev/v1/cloudidentity:v1.ts";
Additional options for CloudIdentity#policiesList.
§Properties
Optional. A CEL expression for filtering the results. Policies can be
filtered by application with this expression:
setting.type.matches('settings/gmail\..*$') Policies can be filtered by
setting type with this expression:
setting.type.matches('.*\.service_status$') A maximum of one of the above
setting.type clauses can be used. Policies can be filtered by customer with
this expression: customer == "customers/{customer}" Where customer
is the
id
from the Admin SDK Customer
resource.
You may use customers/my_customer
to specify your own organization. When
no customer is mentioned it will be default to customers/my_customer. A
maximum of one customer clause can be used. The above clauses can only be
combined together in a single filter expression with the &&
operator.