Method: projects.locations.traceScopes.list

List TraceScopes of a project in a particular location.

HTTP request

GET https://observability.googleapis.com/v1/{parent=projects/*/locations/*}/traceScopes

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
parent

string

Required. The full resource name of the location to look for trace scopes:

projects/[PROJECT_ID]/locations/[LOCATION_ID]

For example:

projects/my-project/locations/global

Query parameters

Parameters
pageSize

integer

Optional. The maximum number of results to return from this request.

Non-positive values are ignored. The presence of nextPageToken in the response indicates that more results might be available.

pageToken

string

Optional. If present, then retrieve the next batch of results from the preceding call to this method. pageToken must be the value of nextPageToken from the previous response. The values of other method parameters should be identical to those in the previous call.

Request body

The request body must be empty.

Response body

Response for listing TraceScopes.

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

JSON representation
{
  "traceScopes": [
    {
      object (TraceScope)
    }
  ],
  "nextPageToken": string
}
Fields
traceScopes[]

object (TraceScope)

Optional. A list of trace scopes.

nextPageToken

string

Optional. If there might be more results than appear in this response, then nextPageToken is included. To get the next set of results, call the same method again using the value of nextPageToken as pageToken.

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:

  • observability.traceScopes.list

For more information, see the IAM documentation.