Method: projects.locations.tensorboards.experiments.batchCreate

Batch create TensorboardTimeSeries that belong to a TensorboardExperiment.

HTTP request

POST https://{service-endpoint}/v1/{parent}:batchCreate

Where {service-endpoint} is one of the supported service endpoints.

Path parameters

Parameters
parent

string

Required. The resource name of the TensorboardExperiment to create the TensorboardTimeSeries in. Format: projects/{project}/locations/{location}/tensorboards/{tensorboard}/experiments/{experiment} The TensorboardRuns referenced by the parent fields in the CreateTensorboardTimeSeriesRequest messages must be sub resources of this TensorboardExperiment.

Request body

The request body contains data with the following structure:

JSON representation
{
  "requests": [
    {
      object (CreateTensorboardTimeSeriesRequest)
    }
  ]
}
Fields
requests[]

object (CreateTensorboardTimeSeriesRequest)

Required. The request message specifying the TensorboardTimeSeries to create. A maximum of 1000 TensorboardTimeSeries can be created in a batch.

Response body

Response message for TensorboardService.BatchCreateTensorboardTimeSeries.

If successful, the response body contains data with the following structure:

JSON representation
{
  "tensorboardTimeSeries": [
    {
      object (TensorboardTimeSeries)
    }
  ]
}
Fields
tensorboardTimeSeries[]

object (TensorboardTimeSeries)

The created TensorboardTimeSeries.

Authorization scopes

Requires the following OAuth scope:

  • https://www.googleapis.com/auth/cloud-platform

For more information, see the Authentication Overview.

IAM Permissions

Requires the following IAM permission on the parent resource:

  • aiplatform.tensorboardTimeSeries.batchCreate

For more information, see the IAM documentation.

CreateTensorboardTimeSeriesRequest

Request message for TensorboardService.CreateTensorboardTimeSeries.

JSON representation
{
  "parent": string,
  "tensorboardTimeSeriesId": string,
  "tensorboardTimeSeries": {
    object (TensorboardTimeSeries)
  }
}
Fields
parent

string

Required. The resource name of the TensorboardRun to create the TensorboardTimeSeries in. Format: projects/{project}/locations/{location}/tensorboards/{tensorboard}/experiments/{experiment}/runs/{run}

tensorboardTimeSeriesId

string

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][a-z0-9-]{0, 127}"

tensorboardTimeSeries

object (TensorboardTimeSeries)

Required. The TensorboardTimeSeries to create.