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

DevicesDeviceUsersLookupOptions

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

Additional options for CloudIdentity#devicesDeviceUsersLookup.

interface DevicesDeviceUsersLookupOptions {
androidId?: string;
iosDeviceId?: string;
pageSize?: number;
pageToken?: string;
partner?: string;
rawResourceId?: string;
userId?: string;
}

§Properties

§
androidId?: string
[src]

Android Id returned by Settings.Secure#ANDROID_ID.

§
iosDeviceId?: string
[src]

Optional. The partner-specified device identifier assigned to the iOS device that initiated the Lookup API call. This string must match the value of the iosDeviceId key in the app config dictionary provided to Google Workspace apps.

§
pageSize?: number
[src]

The maximum number of DeviceUsers to return. If unspecified, at most 20 DeviceUsers will be returned. The maximum value is 20; values above 20 will be coerced to 20.

§
pageToken?: string
[src]

A page token, received from a previous LookupDeviceUsers call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to LookupDeviceUsers must match the call that provided the page token.

§
partner?: string
[src]

Optional. The partner ID of the calling iOS app. This string must match the value of the partner key within the app configuration dictionary provided to Google Workspace apps.

§
rawResourceId?: string
[src]

Raw Resource Id used by Google Endpoint Verification. If the user is enrolled into Google Endpoint Verification, this id will be saved as the 'device_resource_id' field in the following platform dependent files. Mac: ~/.secureConnect/context_aware_config.json Windows: C:\Users%USERPROFILE%.secureConnect\context_aware_config.json Linux: ~/.secureConnect/context_aware_config.json

§
userId?: string
[src]

The user whose DeviceUser's resource name will be fetched. Must be set to 'me' to fetch the DeviceUser's resource name for the calling user.