revisions
Creates, updates, deletes, gets or lists a revisions resource.
Overview
| Name | revisions |
| Type | Resource |
| Id | google.threatintelligence.revisions |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
name | string | Identifier. The name of the ConfigurationRevision Format: projects//configurations//revisions/ |
createTime | string (google-datetime) | Output only. The time the Revision was created |
snapshot | object | A configuration represents a behavior an engine should follow when producing new findings. (id: Configuration) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | projectsId, configurationsId | orderBy, pageSize, pageToken, filter | List configuration revisions that meet the filter criteria. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
configurationsId | string | |
projectsId | string | |
filter | string | |
orderBy | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT examples
- list
List configuration revisions that meet the filter criteria.
SELECT
name,
createTime,
snapshot
FROM google.threatintelligence.revisions
WHERE projectsId = '{{ projectsId }}' -- required
AND configurationsId = '{{ configurationsId }}' -- required
AND orderBy = '{{ orderBy }}'
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}'
AND filter = '{{ filter }}'
;