exportTensorboardTimeSeries method
- GoogleCloudAiplatformV1ExportTensorboardTimeSeriesDataRequest request,
- String tensorboardTimeSeries, {
- String? $fields,
Exports a TensorboardTimeSeries' data.
Data is returned in paginated responses.
request
- The metadata request object.
Request parameters:
tensorboardTimeSeries
- Required. The resource name of the
TensorboardTimeSeries to export data from. Format:
projects/{project}/locations/{location}/tensorboards/{tensorboard}/experiments/{experiment}/runs/{run}/timeSeries/{time_series}
Value must have pattern
^projects/\[^/\]+/locations/\[^/\]+/tensorboards/\[^/\]+/experiments/\[^/\]+/runs/\[^/\]+/timeSeries/\[^/\]+$
.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a GoogleCloudAiplatformV1ExportTensorboardTimeSeriesDataResponse.
Completes with a commons.ApiRequestError if the API endpoint returned an error.
If the used http.Client
completes with an error when making a REST call,
this method will complete with the same error.
Implementation
async.Future<GoogleCloudAiplatformV1ExportTensorboardTimeSeriesDataResponse>
exportTensorboardTimeSeries(
GoogleCloudAiplatformV1ExportTensorboardTimeSeriesDataRequest request,
core.String tensorboardTimeSeries, {
core.String? $fields,
}) async {
final body_ = convert.json.encode(request);
final queryParams_ = <core.String, core.List<core.String>>{
if ($fields != null) 'fields': [$fields],
};
final url_ = 'v1/' +
core.Uri.encodeFull('$tensorboardTimeSeries') +
':exportTensorboardTimeSeries';
final response_ = await _requester.request(
url_,
'POST',
body: body_,
queryParams: queryParams_,
);
return GoogleCloudAiplatformV1ExportTensorboardTimeSeriesDataResponse
.fromJson(response_ as core.Map<core.String, core.dynamic>);
}