import * as pulumi from "@pulumi/pulumi"; /** * Gets a TensorboardExperiment. */ export declare function getExperiment(args: GetExperimentArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetExperimentArgs { experimentId: string; location: string; project?: string; tensorboardId: string; } export interface GetExperimentResult { /** * Timestamp when this TensorboardExperiment was created. */ readonly createTime: string; /** * Description of this TensorboardExperiment. */ readonly description: string; /** * User provided name of this TensorboardExperiment. */ readonly displayName: string; /** * Used to perform 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 TensorboardExperiment. Label keys and values cannot be 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 Dataset (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. The following system labels exist for each Dataset: * `aiplatform.googleapis.com/dataset_metadata_schema`: output only. Its value is the metadata_schema's title. */ readonly labels: { [key: string]: string; }; /** * Name of the TensorboardExperiment. Format: `projects/{project}/locations/{location}/tensorboards/{tensorboard}/experiments/{experiment}` */ readonly name: string; /** * Immutable. Source of the TensorboardExperiment. Example: a custom training job. */ readonly source: string; /** * Timestamp when this TensorboardExperiment was last updated. */ readonly updateTime: string; } /** * Gets a TensorboardExperiment. */ export declare function getExperimentOutput(args: GetExperimentOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetExperimentOutputArgs { experimentId: pulumi.Input; location: pulumi.Input; project?: pulumi.Input; tensorboardId: pulumi.Input; }