Method: projects.datasets.errors.list

Get all the errors of a Dataset (currently this only works for DDS use case).

HTTP request

GET https://mapsplatformdatasets.googleapis.com/v1alpha/{name=projects/*/datasets/*}/errors

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
name

string

Required. Format: projects/${project}/datasets/{dataset_id}

Query parameters

Parameters
pageSize

integer

The maximum number of versions to return per page. Defaults to 10.

pageToken

string

The page token, received from a previous errors.list call. Provide this to retrieve the subsequent page.

Request body

The request body must be empty.

Response body

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

Response of errors.list. Returns a repeated string for error messages.

JSON representation
{
  "errorMessages": [
    string
  ],
  "nextPageToken": string
}
Fields
errorMessages[]

string

The errors belonging to a Dataset.

nextPageToken

string

A token that can be sent as pageToken to retrieve the next page. If this field is omitted, there are no subsequent pages.

Authorization Scopes

Requires the following OAuth scope:

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

IAM Permissions

Requires the following IAM permission on the name resource:

  • mapsplatformdatasets.datasets.get

For more information, see the IAM documentation.