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

DynamicGroupStatus

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

The current status of a dynamic group along with timestamp.

interface DynamicGroupStatus {
status?:
| "STATUS_UNSPECIFIED"
| "UP_TO_DATE"
| "UPDATING_MEMBERSHIPS"
| "INVALID_QUERY";
statusTime?: Date;
}

§Properties

§
status?: "STATUS_UNSPECIFIED" | "UP_TO_DATE" | "UPDATING_MEMBERSHIPS" | "INVALID_QUERY"
[src]

Status of the dynamic group.

§
statusTime?: Date
[src]

The latest time at which the dynamic group is guaranteed to be in the given status. If status is UP_TO_DATE, the latest time at which the dynamic group was confirmed to be up-to-date. If status is UPDATING_MEMBERSHIPS, the time at which dynamic group was created.