Method: projects.locations.streams.objects.list

Use this method to list the objects of a specific stream.

HTTP request

GET https://datastream.googleapis.com/v1/{parent}/objects

Path parameters

Parameters
parent

string

Required. The parent stream that owns the collection of objects.

Query parameters

Parameters
pageSize

integer

Maximum number of objects to return. Default is 50. The maximum value is 1000; values above 1000 will be coerced to 1000.

pageToken

string

Page token received from a previous ListStreamObjectsRequest call. Provide this to retrieve the subsequent page.

When paginating, all other parameters provided to ListStreamObjectsRequest must match the call that provided the page token.

Request body

The request body must be empty.

Response body

Response containing the objects for a stream.

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

JSON representation
{
  "streamObjects": [
    {
      object (StreamObject)
    }
  ],
  "nextPageToken": string
}
Fields
streamObjects[]

object (StreamObject)

List of stream objects.

nextPageToken

string

A token, which can be sent as pageToken to retrieve the next page.

Authorization scopes

Requires the following OAuth scope:

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

For more information, see the Authentication Overview.