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

GoogleCloudAiplatformV1Tensorboard

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

Tensorboard is a physical database that stores users' training metrics. A default Tensorboard is provided in each region of a Google Cloud project. If needed users can also create extra Tensorboards in their projects.

interface GoogleCloudAiplatformV1Tensorboard {
readonly blobStoragePathPrefix?: string;
readonly createTime?: Date;
description?: string;
displayName?: string;
etag?: string;
isDefault?: boolean;
labels?: {
[key: string]: string;
}
;
readonly name?: string;
readonly runCount?: number;
readonly updateTime?: Date;
}

§Properties

§
readonly blobStoragePathPrefix?: string
[src]

Output only. Consumer project Cloud Storage path prefix used to store blob data, which can either be a bucket or directory. Does not end with a '/'.

§
readonly createTime?: Date
[src]

Output only. Timestamp when this Tensorboard was created.

§
description?: string
[src]

Description of this Tensorboard.

§
displayName?: string
[src]

Required. User provided name of this Tensorboard.

§

Customer-managed encryption key spec for a Tensorboard. If set, this Tensorboard and all sub-resources of this Tensorboard will be secured by this key.

§
etag?: string
[src]

Used to perform a consistent read-modify-write updates. If not set, a blind "overwrite" update happens.

§
isDefault?: boolean
[src]

Used to indicate if the TensorBoard instance is the default one. Each project & region can have at most one default TensorBoard instance. Creation of a default TensorBoard instance and updating an existing TensorBoard instance to be default will mark all other TensorBoard instances (if any) as non default.

§
labels?: {
[key: string]: string;
}
[src]

The labels with user-defined metadata to organize your Tensorboards. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. No more than 64 user labels can be associated with one Tensorboard (System labels are excluded). See https://goo.gl/xmQnxf for more information and examples of labels. System reserved label keys are prefixed with "aiplatform.googleapis.com/" and are immutable.

§
readonly name?: string
[src]

Output only. Name of the Tensorboard. Format: projects/{project}/locations/{location}/tensorboards/{tensorboard}

§
readonly runCount?: number
[src]

Output only. The number of Runs stored in this Tensorboard.

§
readonly updateTime?: Date
[src]

Output only. Timestamp when this Tensorboard was last updated.