import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Gets a Tensorboard. */ export declare function getTensorboard(args: GetTensorboardArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetTensorboardArgs { location: string; project?: string; tensorboardId: string; } export interface GetTensorboardResult { /** * 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 blobStoragePathPrefix: string; /** * Timestamp when this Tensorboard was created. */ readonly createTime: string; /** * Description of this Tensorboard. */ readonly description: string; /** * User provided name of this Tensorboard. */ readonly displayName: string; /** * 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. */ readonly encryptionSpec: outputs.aiplatform.v1.GoogleCloudAiplatformV1EncryptionSpecResponse; /** * Used to perform a consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */ readonly etag: string; /** * 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. */ readonly isDefault: boolean; /** * 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 labels: { [key: string]: string; }; /** * Name of the Tensorboard. Format: `projects/{project}/locations/{location}/tensorboards/{tensorboard}` */ readonly name: string; /** * The number of Runs stored in this Tensorboard. */ readonly runCount: number; /** * Timestamp when this Tensorboard was last updated. */ readonly updateTime: string; } /** * Gets a Tensorboard. */ export declare function getTensorboardOutput(args: GetTensorboardOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetTensorboardOutputArgs { location: pulumi.Input; project?: pulumi.Input; tensorboardId: pulumi.Input; }