import * as pulumi from "@pulumi/pulumi"; /** * Gets a TensorboardRun. */ export declare function getRun(args: GetRunArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetRunArgs { experimentId: string; location: string; project?: string; runId: string; tensorboardId: string; } export interface GetRunResult { /** * Timestamp when this TensorboardRun was created. */ readonly createTime: string; /** * Description of this TensorboardRun. */ readonly description: string; /** * User provided name of this TensorboardRun. This value must be unique among all TensorboardRuns belonging to the same parent TensorboardExperiment. */ readonly displayName: string; /** * Used to perform a consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */ readonly etag: string; /** * The labels with user-defined metadata to organize your TensorboardRuns. This field will be used to filter and visualize Runs in the Tensorboard UI. For example, a Vertex AI training job can set a label aiplatform.googleapis.com/training_job_id=xxxxx to all the runs created within that job. An end user can set a label experiment_id=xxxxx for all the runs produced in a Jupyter notebook. These runs can be grouped by a label value and visualized together in the Tensorboard UI. 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 TensorboardRun (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 TensorboardRun. Format: `projects/{project}/locations/{location}/tensorboards/{tensorboard}/experiments/{experiment}/runs/{run}` */ readonly name: string; /** * Timestamp when this TensorboardRun was last updated. */ readonly updateTime: string; } /** * Gets a TensorboardRun. */ export declare function getRunOutput(args: GetRunOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetRunOutputArgs { experimentId: pulumi.Input; location: pulumi.Input; project?: pulumi.Input; runId: pulumi.Input; tensorboardId: pulumi.Input; }