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

Device

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

An Android or Chrome OS device registered for zero-touch enrollment.

interface Device {
readonly claims?: DeviceClaim[];
configuration?: string;
readonly deviceId?: bigint;
deviceIdentifier?: DeviceIdentifier;
deviceMetadata?: DeviceMetadata;
readonly name?: string;
}

§Properties

§
readonly claims?: DeviceClaim[]
[src]

Output only. The provisioning claims for a device. Devices claimed for zero-touch enrollment have a claim with the type SECTION_TYPE_ZERO_TOUCH. Call partners.devices.unclaim or partners.devices.unclaimAsync to remove the device from zero-touch enrollment.

§
configuration?: string
[src]

Not available to resellers.

§
readonly deviceId?: bigint
[src]

Output only. The ID of the device. Assigned by the server.

§
deviceIdentifier?: DeviceIdentifier
[src]

The hardware IDs that identify a manufactured device. To learn more, read Identifiers.

§
deviceMetadata?: DeviceMetadata
[src]

The metadata attached to the device. Structured as key-value pairs. To learn more, read Device metadata.

§
readonly name?: string
[src]

Output only. The API resource name in the format partners/[PARTNER_ID]/devices/[DEVICE_ID]. Assigned by the server.