list method
Developer Preview: Lists Google Workspace subscriptions.
To learn how to use this method, see List Google Workspace subscriptions.
Request parameters:
filter
- Required. A query filter. You can filter subscriptions by event
type (event_types
) and target resource (target_resource
). You must
specify at least one event type in your query. To filter for multiple
event types, use the OR
operator. To filter by both event type and
target resource, use the AND
operator and specify the full resource
name, such as //chat.googleapis.com/spaces/{space}
. For example, the
following queries are valid: event_types:"google.workspace.chat.membership.v1.updated" OR event_types:"google.workspace.chat.message.v1.created" event_types:"google.workspace.chat.message.v1.created" AND target_resource="//chat.googleapis.com/spaces/{space}" ( event_types:"google.workspace.chat.membership.v1.updated" OR event_types:"google.workspace.chat.message.v1.created" ) AND target_resource="//chat.googleapis.com/spaces/{space}"
The server
rejects invalid queries with an INVALID_ARGUMENT
error.
pageSize
- Optional. The maximum number of subscriptions to return. The
service might return fewer than this value. If unspecified or set to 0
,
up to 50 subscriptions are returned. The maximum value is 100. If you
specify a value more than 100, the system only returns 100 subscriptions.
pageToken
- Optional. A page token, received from a previous list
subscriptions call. Provide this parameter to retrieve the subsequent
page. When paginating, the filter value should match the call that
provided the page token. Passing a different value might lead to
unexpected results.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a ListSubscriptionsResponse.
Completes with a commons.ApiRequestError if the API endpoint returned an error.
If the used http.Client
completes with an error when making a REST call,
this method will complete with the same error.
Implementation
async.Future<ListSubscriptionsResponse> list({
core.String? filter,
core.int? pageSize,
core.String? pageToken,
core.String? $fields,
}) async {
final queryParams_ = <core.String, core.List<core.String>>{
if (filter != null) 'filter': [filter],
if (pageSize != null) 'pageSize': ['${pageSize}'],
if (pageToken != null) 'pageToken': [pageToken],
if ($fields != null) 'fields': [$fields],
};
const url_ = 'v1/subscriptions';
final response_ = await _requester.request(
url_,
'GET',
queryParams: queryParams_,
);
return ListSubscriptionsResponse.fromJson(
response_ as core.Map<core.String, core.dynamic>);
}