Method: projects.locations.apps.list

Lists apps in the given project and location.

HTTP request

GET https://ces.googleapis.com/v1/{parent=projects/*/locations/*}/apps

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
parent

string

Required. The resource name of the location to list apps from.

Query parameters

Parameters
pageSize

integer

Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.

pageToken

string

Optional. The nextPageToken value returned from a previous list AgentService.ListApps call.

filter

string

Optional. Filter to be applied when listing the apps. See https://google.aip.dev/160 for more details.

orderBy

string

Optional. Field to sort by. Only "name" and "createTime" is supported. See https://google.aip.dev/132#ordering for more details.

Request body

The request body must be empty.

Response body

Response message for AgentService.ListApps.

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

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

object (App)

The list of apps.

nextPageToken

string

A token that can be sent as ListAppsRequest.page_token to retrieve the next page. Absence of this field indicates there are no subsequent pages.

unreachable[]

string

Unordered list. 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:

  • ces.apps.list

For more information, see the IAM documentation.