Class ProjectsResource.LocationsResource.TensorboardsResource.BatchReadRequest
Reads multiple TensorboardTimeSeries' data. The data point number limit is 1000 for scalars, 100 for tensors and blob references. If the number of data points stored is less than the limit, all data is returned. Otherwise, the number limit of data points is randomly selected from this time series and returned.
Inheritance
Implements
Inherited Members
Namespace: Google.Apis.Aiplatform.v1beta1
Assembly: Google.Apis.Aiplatform.v1beta1.dll
Syntax
public class ProjectsResource.LocationsResource.TensorboardsResource.BatchReadRequest : AiplatformBaseServiceRequest<GoogleCloudAiplatformV1beta1BatchReadTensorboardTimeSeriesDataResponse>, IClientServiceRequest<GoogleCloudAiplatformV1beta1BatchReadTensorboardTimeSeriesDataResponse>, IClientServiceRequest
Constructors
BatchReadRequest(IClientService, string)
Constructs a new BatchRead request.
Declaration
public BatchReadRequest(IClientService service, string tensorboard)
Parameters
Type | Name | Description |
---|---|---|
IClientService | service | |
string | tensorboard |
Properties
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
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
Tensorboard
Required. The resource name of the Tensorboard containing TensorboardTimeSeries to read data
from. Format: projects/{project}/locations/{location}/tensorboards/{tensorboard}
. The
TensorboardTimeSeries referenced by time_series must be sub resources of this Tensorboard.
Declaration
[RequestParameter("tensorboard", RequestParameterType.Path)]
public virtual string Tensorboard { get; }
Property Value
Type | Description |
---|---|
string |
TimeSeries
Required. The resource names of the TensorboardTimeSeries to read data from. Format:
projects/{project}/locations/{location}/tensorboards/{tensorboard}/experiments/{experiment}/runs/{run}/timeSeries/{time_series}
Declaration
[RequestParameter("timeSeries", RequestParameterType.Query)]
public virtual Repeatable<string> TimeSeries { get; set; }
Property Value
Type | Description |
---|---|
Repeatable<string> |
Methods
InitParameters()
Initializes BatchRead parameter list.
Declaration
protected override void InitParameters()