import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; import * as enums from "../../types/enums"; /** * Creates a TensorboardTimeSeries. * Auto-naming is currently not supported for this resource. */ export declare class TimeSeries extends pulumi.CustomResource { /** * Get an existing TimeSeries 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): TimeSeries; /** * Returns true if the given object is an instance of TimeSeries. 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 TimeSeries; /** * Timestamp when this TensorboardTimeSeries was created. */ readonly createTime: pulumi.Output; /** * Description of this TensorboardTimeSeries. */ readonly description: pulumi.Output; /** * User provided name of this TensorboardTimeSeries. This value should be unique among all TensorboardTimeSeries resources belonging to the same TensorboardRun resource (parent resource). */ readonly displayName: pulumi.Output; /** * Used to perform a consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */ readonly etag: pulumi.Output; readonly experimentId: pulumi.Output; readonly location: pulumi.Output; /** * Scalar, Tensor, or Blob metadata for this TensorboardTimeSeries. */ readonly metadata: pulumi.Output; /** * Name of the TensorboardTimeSeries. */ readonly name: pulumi.Output; /** * Data of the current plugin, with the size limited to 65KB. */ readonly pluginData: pulumi.Output; /** * Immutable. Name of the plugin this time series pertain to. Such as Scalar, Tensor, Blob */ readonly pluginName: pulumi.Output; readonly project: pulumi.Output; readonly runId: pulumi.Output; readonly tensorboardId: pulumi.Output; /** * Optional. The user specified unique ID to use for the TensorboardTimeSeries, which becomes the final component of the TensorboardTimeSeries's resource name. This value should match "a-z0-9{0, 127}" */ readonly tensorboardTimeSeriesId: pulumi.Output; /** * Timestamp when this TensorboardTimeSeries was last updated. */ readonly updateTime: pulumi.Output; /** * Immutable. Type of TensorboardTimeSeries value. */ readonly valueType: pulumi.Output; /** * Create a TimeSeries 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: TimeSeriesArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a TimeSeries resource. */ export interface TimeSeriesArgs { /** * Description of this TensorboardTimeSeries. */ description?: pulumi.Input; /** * User provided name of this TensorboardTimeSeries. This value should be unique among all TensorboardTimeSeries resources belonging to the same TensorboardRun resource (parent resource). */ displayName: pulumi.Input; /** * Used to perform a consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */ etag?: pulumi.Input; experimentId: pulumi.Input; location?: pulumi.Input; /** * Data of the current plugin, with the size limited to 65KB. */ pluginData?: pulumi.Input; /** * Immutable. Name of the plugin this time series pertain to. Such as Scalar, Tensor, Blob */ pluginName?: pulumi.Input; project?: pulumi.Input; runId: pulumi.Input; tensorboardId: pulumi.Input; /** * Optional. The user specified unique ID to use for the TensorboardTimeSeries, which becomes the final component of the TensorboardTimeSeries's resource name. This value should match "a-z0-9{0, 127}" */ tensorboardTimeSeriesId?: pulumi.Input; /** * Immutable. Type of TensorboardTimeSeries value. */ valueType: pulumi.Input; }