Method: projects.locations.deployments.revisions.resources.list

Lists Resources in a given revision.

HTTP request

GET https://config.googleapis.com/v1/{parent=projects/*/locations/*/deployments/*/revisions/*}/resources

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
parent

string

Required. The parent in whose context the Resources are listed. The parent value is in the format: 'projects/{projectId}/locations/{location}/deployments/{deployment}/revisions/{revision}'. It takes the form projects/{project}/locations/{location}/deployments/{deployment}/revisions/{revision}.

Query parameters

Parameters
pageSize

integer

When requesting a page of resources, 'pageSize' specifies number of resources to return. If unspecified, at most 500 will be returned. The maximum value is 1000.

pageToken

string

Token returned by previous call to 'resources.list' which specifies the position in the list from where to continue listing the resources.

filter

string

Lists the Resources that match the filter expression. A filter expression filters the resources listed in the response. The expression must be of the form '{field} {operator} {value}' where operators: '<', '>', '<=', '>=', '!=', '=', ':' are supported (colon ':' represents a HAS operator which is roughly synonymous with equality). {field} can refer to a proto or JSON field, or a synthetic field. Field names can be camelCase or snake_case.

Examples: - Filter by name: name = "projects/foo/locations/us-central1/deployments/dep/revisions/bar/resources/baz

orderBy

string

Field to use to sort the list.

Request body

The request body must be empty.

Response body

A response to a 'resources.list' call. Contains a list of Resources.

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

JSON representation
{
  "resources": [
    {
      object (Resource)
    }
  ],
  "nextPageToken": string,
  "unreachable": [
    string
  ]
}
Fields
resources[]

object (Resource)

List of [Resources][]s.

nextPageToken

string

A token to request the next page of resources from the 'resources.list' method. The value of an empty string means that there are no more resources to return.

unreachable[]

string

Locations that could not be reached.

Authorization scopes

Requires the following OAuth scope:

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

For more information, see the Authentication Overview.

IAM Permissions

Requires the following IAM permission on the parent resource:

  • config.googleapis.com/config.resources.list

For more information, see the IAM documentation.