Method: projects.configurations.revisions.list

List configuration revisions that meet the filter criteria.

HTTP request


GET https://threatintelligence.googleapis.com/v1beta/{parent=projects/*/configurations/*}/revisions

The URLs use gRPC Transcoding syntax.

Path parameters

Parameters
parent

string

Required. The name of the Configuration to retrieve Revisions for

Query parameters

Parameters
filter

string

Optional. An AIP-160 filter string

orderBy

string

Optional. Specify ordering of response

pageSize

integer

Optional. Page Size

pageToken

string

Optional. A page token provided by the API

Request body

The request body must be empty.

Response body

Response message for revisions.list.

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

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

object (ConfigurationRevision)

The Configuration Revisions associated with the specified Configuration

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.

Authorization scopes

Requires the following OAuth scope:

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

For more information, see the Authentication Overview.

ConfigurationRevision

A ConfigurationRevision is a snapshot of a Configuration at a point in time. It is immutable.

JSON representation
{
  "name": string,
  "snapshot": {
    object (Configuration)
  },
  "createTime": string
}
Fields
name

string

Identifier. The name of the ConfigurationRevision Format: projects//configurations//revisions/ OR projects//configurations//revisions/

snapshot

object (Configuration)

The snapshot of the configuration

createTime

string (Timestamp format)

Output only. The time the Revision was created

Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: "2014-10-02T15:01:23Z", "2014-10-02T15:01:23.045123456Z" or "2014-10-02T15:01:23+05:30".