import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Creates a Tensorboard. * Auto-naming is currently not supported for this resource. */ export declare class Tensorboard extends pulumi.CustomResource { /** * Get an existing Tensorboard resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): Tensorboard; /** * Returns true if the given object is an instance of Tensorboard. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Tensorboard; /** * 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: pulumi.Output; /** * Timestamp when this Tensorboard was created. */ readonly createTime: pulumi.Output; /** * Description of this Tensorboard. */ readonly description: pulumi.Output; /** * User provided name of this Tensorboard. */ readonly displayName: pulumi.Output; /** * 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: pulumi.Output; /** * Used to perform a consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */ readonly etag: pulumi.Output; /** * 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: pulumi.Output; /** * 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: pulumi.Output<{ [key: string]: string; }>; readonly location: pulumi.Output; /** * Name of the Tensorboard. Format: `projects/{project}/locations/{location}/tensorboards/{tensorboard}` */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * The number of Runs stored in this Tensorboard. */ readonly runCount: pulumi.Output; /** * Timestamp when this Tensorboard was last updated. */ readonly updateTime: pulumi.Output; /** * Create a Tensorboard resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: TensorboardArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Tensorboard resource. */ export interface TensorboardArgs { /** * Description of this Tensorboard. */ description?: pulumi.Input; /** * User provided name of this Tensorboard. */ displayName: pulumi.Input; /** * 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. */ encryptionSpec?: pulumi.Input; /** * Used to perform a consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */ etag?: pulumi.Input; /** * 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. */ isDefault?: pulumi.Input; /** * 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. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; location?: pulumi.Input; project?: pulumi.Input; }