Method: projects.locations.datasets.list

Lists DataSets under the project.

The order of the results is unspecified but deterministic. Newly created DataSets will not necessarily be added to the end of this list.

HTTP request

GET https://timeseriesinsights.googleapis.com/v1/{parent=projects/*/locations/*}/datasets

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
parent

string

Required. Project owning the DataSet in the format of "projects/{project}".

Query parameters

Parameters
pageSize

integer

Number of results to return in the list.

pageToken

string

Token to provide to skip to a particular spot in the list.

Request body

The request body must be empty.

Response body

Created DataSets list response.

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

JSON representation
{
  "datasets": [
    {
      object (DataSet)
    }
  ],
  "nextPageToken": string
}
Fields
datasets[]

object (DataSet)

The list of created DataSets.

nextPageToken

string

Token to receive the next page of results.

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:

  • timeseriesinsights.datasets.list

For more information, see the IAM documentation.