Method: projects.configs.list

Lists all the RuntimeConfig resources within project.

HTTP request

GET https://runtimeconfig.googleapis.com/v1beta1/{parent=projects/*}/configs

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
parent

string

The project ID for this request, in the format projects/[PROJECT_ID].

Authorization requires the following Google IAM permission on the specified resource parent:

  • runtimeconfig.configs.list

Query parameters

Parameters
pageSize

number

Specifies the number of results to return per page. If there are fewer elements than the specified number, returns all elements.

pageToken

string

Specifies a page token to use. Set pageToken to a nextPageToken returned by a previous list request to get the next page of results.

Request body

The request body must be empty.

Response body

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

configs.list() returns the following response. The order of returned objects is arbitrary; that is, it is not ordered in any particular way.

JSON representation
{
  "configs": [
    {
      object(RuntimeConfig)
    }
  ],
  "nextPageToken": string
}
Fields
configs[]

object(RuntimeConfig)

A list of the configurations in the project. The order of returned objects is arbitrary; that is, it is not ordered in any particular way.

nextPageToken

string

This token allows you to get the next page of results for list requests. If the number of results is larger than pageSize, use the nextPageToken as a value for the query parameter pageToken in the next list request. Subsequent list requests will have their own nextPageToken to continue paging through the results

Authorization Scopes

Requires one of the following OAuth scopes:

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

For more information, see the Authentication Overview.

Try it!