Method: projects.releaseChannels.list

  • This page describes how to list all release channels and their corresponding versions for a project.

  • The HTTP request uses a GET method to the specified URL, including the project as a path parameter.

  • Optional query parameters allow for controlling pagination of the results.

  • The response body contains a list of ReleaseChannel objects and an optional token for the next page.

  • Each ReleaseChannel object provides details like the channel's name, current deployed version, and any pending version.

Lists all release channels and corresponding versions, if any.

HTTP request

GET https://actions.googleapis.com/v2/{parent=projects/*}/releaseChannels

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
parent

string

Required. The name of the resource in the format projects/{project}. The {project} is the cloud project ID associated with the project.

Query parameters

Parameters
pageSize

integer

The maximum number of release channels to return. The service may return fewer than this value. If unspecified, at most 50 release channels will be returned.

pageToken

string

A page token, received from a previous releaseChannels.list call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to releaseChannels.list must match the call that provided the page token.

Request body

The request body must be empty.

Response body

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

RPC response for listing release channels

JSON representation
{
  "releaseChannels": [
    {
      object (ReleaseChannel)
    }
  ],
  "nextPageToken": string
}
Fields
releaseChannels[]

object (ReleaseChannel)

List of the release channels for the given project id.

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.

ReleaseChannel

Definition of release channel resource.

JSON representation
{
  "name": string,
  "currentVersion": string,
  "pendingVersion": string
}
Fields
name

string

The unique name of the release channel in the following format. projects/{project}/releaseChannels/{releaseChannel}.

currentVersion

string

Version currently deployed to this release channel in the following format: projects/{project}/versions/{version}.

pendingVersion

string

Version to be deployed to this release channel in the following format: projects/{project}/versions/{version}.