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

ReportWorkItemStatusRequest

import type { ReportWorkItemStatusRequest } from "https://googleapis.deno.dev/v1/dataflow:v1b3.ts";

Request to report the status of WorkItems.

interface ReportWorkItemStatusRequest {
currentWorkerTime?: Date;
location?: string;
unifiedWorkerRequest?: {
[key: string]: any;
}
;
workerId?: string;
workItemStatuses?: WorkItemStatus[];
}

§Properties

§
currentWorkerTime?: Date
[src]

The current timestamp at the worker.

§
location?: string
[src]

The [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) that contains the WorkItem's job.

§
unifiedWorkerRequest?: {
[key: string]: any;
}
[src]

Untranslated bag-of-bytes WorkProgressUpdateRequest from UnifiedWorker.

§
workerId?: string
[src]

The ID of the worker reporting the WorkItem status. If this does not match the ID of the worker which the Dataflow service believes currently has the lease on the WorkItem, the report will be dropped (with an error response).

§
workItemStatuses?: WorkItemStatus[]
[src]

The order is unimportant, except that the order of the WorkItemServiceState messages in the ReportWorkItemStatusResponse corresponds to the order of WorkItemStatus messages here.