Class ProjectsResource.LocationsResource.TensorboardsResource.ExperimentsResource.RunsResource.TimeSeriesResource.ReadRequest
Reads a TensorboardTimeSeries' data. By default, if the number of data points stored is less than 1000, all data is returned. Otherwise, 1000 data points is randomly selected from this time series and returned. This value can be changed by changing max_data_points, which can't be greater than 10k.
Inheritance
Implements
Inherited Members
Namespace: Google.Apis.Aiplatform.v1beta1
Assembly: Google.Apis.Aiplatform.v1beta1.dll
Syntax
public class ProjectsResource.LocationsResource.TensorboardsResource.ExperimentsResource.RunsResource.TimeSeriesResource.ReadRequest : AiplatformBaseServiceRequest<GoogleCloudAiplatformV1beta1ReadTensorboardTimeSeriesDataResponse>, IClientServiceRequest<GoogleCloudAiplatformV1beta1ReadTensorboardTimeSeriesDataResponse>, IClientServiceRequest
Constructors
ReadRequest(IClientService, string)
Constructs a new Read request.
Declaration
public ReadRequest(IClientService service, string tensorboardTimeSeries)
Parameters
| Type | Name | Description |
|---|---|---|
| IClientService | service | |
| string | tensorboardTimeSeries |
Properties
Filter
Reads the TensorboardTimeSeries' data that match the filter expression.
Declaration
[RequestParameter("filter", RequestParameterType.Query)]
public virtual string Filter { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
| Type | Description |
|---|---|
| string |
Overrides
MaxDataPoints
The maximum number of TensorboardTimeSeries' data to return. This value should be a positive integer. This value can be set to -1 to return all data.
Declaration
[RequestParameter("maxDataPoints", RequestParameterType.Query)]
public virtual int? MaxDataPoints { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
MethodName
Gets the method name.
Declaration
public override string MethodName { get; }
Property Value
| Type | Description |
|---|---|
| string |
Overrides
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
| Type | Description |
|---|---|
| string |
Overrides
TensorboardTimeSeries
Required. The resource name of the TensorboardTimeSeries to read data from. Format:
projects/{project}/locations/{location}/tensorboards/{tensorboard}/experiments/{experiment}/runs/{run}/timeSeries/{time_series}
Declaration
[RequestParameter("tensorboardTimeSeries", RequestParameterType.Path)]
public virtual string TensorboardTimeSeries { get; }
Property Value
| Type | Description |
|---|---|
| string |
Methods
InitParameters()
Initializes Read parameter list.
Declaration
protected override void InitParameters()