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

Counters

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

Describes details about the progress of the job.

interface Counters {
readonly failedObjectCount?: bigint;
readonly objectCustomContextsCreated?: bigint;
readonly objectCustomContextsDeleted?: bigint;
readonly objectCustomContextsUpdated?: bigint;
readonly succeededObjectCount?: bigint;
readonly totalBytesFound?: bigint;
readonly totalObjectCount?: bigint;
}

§Properties

§
readonly failedObjectCount?: bigint
[src]

Output only. The number of objects that failed due to user errors or service errors.

§
readonly objectCustomContextsCreated?: bigint
[src]

Output only. Number of object custom contexts created. This field is only populated for jobs with the UpdateObjectCustomContext transformation.

§
readonly objectCustomContextsDeleted?: bigint
[src]

Output only. Number of object custom contexts deleted. This field is only populated for jobs with the UpdateObjectCustomContext transformation.

§
readonly objectCustomContextsUpdated?: bigint
[src]

Output only. Number of object custom contexts updated. This counter tracks custom contexts where the key already existed, but the payload was modified. This field is only populated for jobs with the UpdateObjectCustomContext transformation.

§
readonly succeededObjectCount?: bigint
[src]

Output only. Number of objects completed.

§
readonly totalBytesFound?: bigint
[src]

Output only. Number of bytes found from source. This field is only populated for jobs with a prefix list object configuration.

§
readonly totalObjectCount?: bigint
[src]

Output only. Number of objects listed.