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

V2LogEntryOperation

import type { V2LogEntryOperation } from "https://googleapis.deno.dev/v1/servicecontrol:v2.ts";

Additional information about a potentially long-running operation with which a log entry is associated.

interface V2LogEntryOperation {
first?: boolean;
id?: string;
last?: boolean;
producer?: string;
}

§Properties

§
first?: boolean
[src]

Optional. Set this to True if this is the first log entry in the operation.

§
id?: string
[src]

Optional. An arbitrary operation identifier. Log entries with the same identifier are assumed to be part of the same operation.

§
last?: boolean
[src]

Optional. Set this to True if this is the last log entry in the operation.

§
producer?: string
[src]

Optional. An arbitrary producer identifier. The combination of id and producer must be globally unique. Examples for producer: "MyDivision.MyBigCompany.com", "github.com/MyProject/MyApplication".