Method: services.groups.expandedMembers.list

List the expanded members that belong to a given service group or transitively to any of the groups that are members of the service group. The expanded members are always services. The service group is defined by service producers. It throws NOT_FOUND if the given service group is not defined.

HTTP request

GET https://serviceusage.googleapis.com/v2beta/{parent=*/*/services/*/groups/*}/expandedMembers

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
parent

string

Required. The group that the expandedMembers.list method is called on.

Query parameters

Parameters
pageSize

integer

The maximum number of expanded members to return. It may return fewer than this value. If unspecified, at most 50 expanded members will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.

pageToken

string

A page token, received from a previous expandedMembers.list call. Provide this to retrieve the subsequent page.

When paginating, all other parameters provided to expandedMembers.list must match the call that provided the page token.

Request body

The request body must be empty.

Response body

The response message of the expandedMembers.list method.

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

JSON representation
{
  "members": [
    {
      object (ExpandedMember)
    }
  ],
  "nextPageToken": string
}
Fields
members[]

object (ExpandedMember)

The expanded members of the given service group.

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 one of the following OAuth scopes:

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

For more information, see the Authentication Overview.

ExpandedMember

An expanded member that belongs to a certain service group directly or indirectly. It is always a service.

JSON representation
{
  "parent": string,
  "serviceName": string
}
Fields
parent

string

Output only. The group that the expandedMembers.list method is called on.

serviceName

string

Output only. The name of this expanded member, which is always a service in the format of services/{service}.