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

TraceScope

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

A trace scope is a collection of resources whose traces are queried together.

interface TraceScope {
readonly createTime?: Date;
description?: string;
name?: string;
resourceNames?: string[];
readonly updateTime?: Date;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. The creation timestamp of the trace scope.

§
description?: string
[src]

Optional. Describes this trace scope. The maximum length of the description is 8000 characters.

§
name?: string
[src]

Identifier. The resource name of the trace scope. For example: projects/my-project/locations/global/traceScopes/my-trace-scope

§
resourceNames?: string[]
[src]

Required. Names of the projects that are included in this trace scope. * projects/[PROJECT_ID] A trace scope can include a maximum of 20 projects.

§
readonly updateTime?: Date
[src]

Output only. The last update timestamp of the trace scope.