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

GoogleAppsCloudidentityDevicesV1DeviceUser

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

Represents a user's use of a Device in the Cloud Identity Devices API. A DeviceUser is a resource representing a user's use of a Device

interface GoogleAppsCloudidentityDevicesV1DeviceUser {
compromisedState?: "COMPROMISED_STATE_UNSPECIFIED" | "COMPROMISED" | "NOT_COMPROMISED";
createTime?: Date;
readonly firstSyncTime?: Date;
readonly languageCode?: string;
readonly lastSyncTime?: Date;
readonly managementState?:
| "MANAGEMENT_STATE_UNSPECIFIED"
| "WIPING"
| "WIPED"
| "APPROVED"
| "BLOCKED"
| "PENDING_APPROVAL"
| "UNENROLLED";
readonly name?: string;
passwordState?: "PASSWORD_STATE_UNSPECIFIED" | "PASSWORD_SET" | "PASSWORD_NOT_SET";
readonly userAgent?: string;
userEmail?: string;
}

§Properties

§
compromisedState?: "COMPROMISED_STATE_UNSPECIFIED" | "COMPROMISED" | "NOT_COMPROMISED"
[src]

Compromised State of the DeviceUser object

§
createTime?: Date
[src]

When the user first signed in to the device

§
readonly firstSyncTime?: Date
[src]

Output only. Most recent time when user registered with this service.

§
readonly languageCode?: string
[src]

Output only. Default locale used on device, in IETF BCP-47 format.

§
readonly lastSyncTime?: Date
[src]

Output only. Last time when user synced with policies.

§
readonly managementState?: "MANAGEMENT_STATE_UNSPECIFIED" | "WIPING" | "WIPED" | "APPROVED" | "BLOCKED" | "PENDING_APPROVAL" | "UNENROLLED"
[src]

Output only. Management state of the user on the device.

§
readonly name?: string
[src]

Output only. Resource name of the DeviceUser in format: devices/{device}/deviceUsers/{device_user}, where device_user uniquely identifies a user's use of a device.

§
passwordState?: "PASSWORD_STATE_UNSPECIFIED" | "PASSWORD_SET" | "PASSWORD_NOT_SET"
[src]

Password state of the DeviceUser object

§
readonly userAgent?: string
[src]

Output only. User agent on the device for this specific user

§
userEmail?: string
[src]

Email address of the user registered on the device.