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

DevicesLongRunningOperationMetadata

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

Tracks the status of a long-running operation to asynchronously update a batch of reseller metadata attached to devices. To learn more, read Long‑running batch operations.

interface DevicesLongRunningOperationMetadata {
devicesCount?: number;
processingStatus?:
| "BATCH_PROCESS_STATUS_UNSPECIFIED"
| "BATCH_PROCESS_PENDING"
| "BATCH_PROCESS_IN_PROGRESS"
| "BATCH_PROCESS_PROCESSED";
progress?: number;
}

§Properties

§
devicesCount?: number
[src]

The number of metadata updates in the operation. This might be different from the number of updates in the request if the API can't parse some of the updates.

§
processingStatus?: "BATCH_PROCESS_STATUS_UNSPECIFIED" | "BATCH_PROCESS_PENDING" | "BATCH_PROCESS_IN_PROGRESS" | "BATCH_PROCESS_PROCESSED"
[src]

The processing status of the operation.

§
progress?: number
[src]

The processing progress of the operation. Measured as a number from 0 to 100. A value of 10O doesn't always mean the operation completed—check for the inclusion of a done field.