Method: logicalOperators.list

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

Lists all IntegrationLogicalOperators defined for a specific integration. Use this method to discover the custom logic operators available for use within playbook decision steps.

HTTP request


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

Path parameters

Parameters
parent

string

Required. The integration to list Logical Operator Definitions for. Format: projects/{project}/locations/{location}/instances/{instance}/integrations/{integration}

Query parameters

Parameters
pageSize

integer

Optional. The maximum number of Logical Operator Definitions to return. The service may return fewer than this value. If unspecified, at most 100 Logical Operator Definitions will be returned. The maximum value is 200; values above 200 will be coerced to 200.

pageToken

string

Optional. A page token, received from a previous logicalOperators.list call. Provide this to retrieve the subsequent page.

filter

string

Optional. A filter that can be used to filter the list of Logical Operator Definitions.

orderBy

string

Optional. A field that can be used to sort the list of Logical Operator Definitions.

excludeStaging

boolean

Optional. Exclude staging logical operators from the response. By default, staging logical operators are included.

expand

string

Optional. Expand the response with the full logical operator details.

Request body

The request body must be empty.

Response body

Response message for listing Logical Operator Definitions.

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

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

object (IntegrationLogicalOperator)

The list of Logical Operator Definitions.

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

Total number of Logical Operator Definitions.

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.integrationLogicalOperators.get

For more information, see the IAM documentation.