Method: revisions.list

Full name: projects.locations.instances.integrations.logicalOperators.revisions.list

Lists all saved revisions for a specific logical operator. Supports pagination and allows users to browse through the version history of a custom logical operator definition.

HTTP request


GET https://chronicle.africa-south1.rep.googleapis.com/v1alpha/{parent}/revisions

Path parameters

Parameters
parent

string

Required. The parent logical operator to list revisions for. Format: projects/{project}/locations/{location}/instances/{instance}/integrations/{integration}/logicalOperators/{logicalOperator}

Query parameters

Parameters
pageSize

integer

Optional. The maximum number of IntegrationLogicalOperatorRevisions to return. The service may return fewer than this value.

pageToken

string

Optional. A page token, received from a previous revisions.list call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to revisions.list must match the call that provided the page token.

filter

string

Optional. A filter that can be used to filter the list of integration logical operator revisions.

orderBy

string

Optional. A field that can be used to sort the list of logical operator revisions.

Request body

The request body must be empty.

Response body

Response message for listing logical operator revisions.

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

JSON representation
{
  "revisions": [
    {
      object (IntegrationLogicalOperatorRevision)
    }
  ],
  "nextPageToken": string,
  "totalSize": integer
}
Fields
revisions[]

object (IntegrationLogicalOperatorRevision)

The list of IntegrationLogicalOperatorRevisions.

nextPageToken

string

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

totalSize

integer

Output only. Total number of revisions for the logical operator.

Authorization scopes

Requires one of the following OAuth scopes:

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

For more information, see the Authentication Overview.

IAM Permissions

Requires the following IAM permission on the parent resource:

  • chronicle.integrationLogicalOperatorRevisions.get

For more information, see the IAM documentation.