Class GoogleCloudAiplatformV1WriteTensorboardRunDataRequest
Request message for TensorboardService.WriteTensorboardRunData.
Implements
Inherited Members
Namespace: Google.Apis.Aiplatform.v1.Data
Assembly: Google.Apis.Aiplatform.v1.dll
Syntax
public class GoogleCloudAiplatformV1WriteTensorboardRunDataRequest : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
TensorboardRun
Required. The resource name of the TensorboardRun to write data to. Format:
projects/{project}/locations/{location}/tensorboards/{tensorboard}/experiments/{experiment}/runs/{run}
Declaration
[JsonProperty("tensorboardRun")]
public virtual string TensorboardRun { get; set; }
Property Value
Type | Description |
---|---|
string |
TimeSeriesData
Required. The TensorboardTimeSeries data to write. Values with in a time series are indexed by their step value. Repeated writes to the same step will overwrite the existing value for that step. The upper limit of data points per write request is 5000.
Declaration
[JsonProperty("timeSeriesData")]
public virtual IList<GoogleCloudAiplatformV1TimeSeriesData> TimeSeriesData { get; set; }
Property Value
Type | Description |
---|---|
IList<GoogleCloudAiplatformV1TimeSeriesData> |