countInstalledApps method

Future<GoogleChromeManagementV1CountInstalledAppsResponse> countInstalledApps(
  1. String customer, {
  2. String? filter,
  3. String? orderBy,
  4. String? orgUnitId,
  5. int? pageSize,
  6. String? pageToken,
  7. String? $fields,
})

Generate report of app installations.

Request parameters:

customer - Required. Customer id or "my_customer" to use the customer associated to the account making the request. Value must have pattern ^customers/\[^/\]+$.

filter - Query string to filter results, AND-separated fields in EBNF syntax. Note: OR operations are not supported in this filter. Supported filter fields: * app_name * app_type * install_type * number_of_permissions * total_install_count * latest_profile_active_date * permission_name * app_id

orderBy - Field used to order results. Supported order by fields: * app_name * app_type * install_type * number_of_permissions * total_install_count * app_id

orgUnitId - The ID of the organizational unit.

pageSize - Maximum number of results to return. Maximum and default are 100.

pageToken - Token to specify the page of the request to be returned.

$fields - Selector specifying which fields to include in a partial response.

Completes with a GoogleChromeManagementV1CountInstalledAppsResponse.

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<GoogleChromeManagementV1CountInstalledAppsResponse>
    countInstalledApps(
  core.String customer, {
  core.String? filter,
  core.String? orderBy,
  core.String? orgUnitId,
  core.int? pageSize,
  core.String? pageToken,
  core.String? $fields,
}) async {
  final queryParams_ = <core.String, core.List<core.String>>{
    if (filter != null) 'filter': [filter],
    if (orderBy != null) 'orderBy': [orderBy],
    if (orgUnitId != null) 'orgUnitId': [orgUnitId],
    if (pageSize != null) 'pageSize': ['${pageSize}'],
    if (pageToken != null) 'pageToken': [pageToken],
    if ($fields != null) 'fields': [$fields],
  };

  final url_ = 'v1/' +
      core.Uri.encodeFull('$customer') +
      '/reports:countInstalledApps';

  final response_ = await _requester.request(
    url_,
    'GET',
    queryParams: queryParams_,
  );
  return GoogleChromeManagementV1CountInstalledAppsResponse.fromJson(
      response_ as core.Map<core.String, core.dynamic>);
}