searchChangeHistoryEvents method

Searches through all changes to an account or its children given the specified set of filters.

request - The metadata request object.

Request parameters:

account - Required. The account resource for which to return change history resources. Value must have pattern ^accounts/\[^/\]+$.

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

Completes with a GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsResponse.

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<GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsResponse>
    searchChangeHistoryEvents(
  GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest request,
  core.String account, {
  core.String? $fields,
}) async {
  final _body = convert.json.encode(request.toJson());
  final _queryParams = <core.String, core.List<core.String>>{
    if ($fields != null) 'fields': [$fields],
  };

  final _url = 'v1alpha/' +
      core.Uri.encodeFull('$account') +
      ':searchChangeHistoryEvents';

  final _response = await _requester.request(
    _url,
    'POST',
    body: _body,
    queryParams: _queryParams,
  );
  return GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsResponse
      .fromJson(_response as core.Map<core.String, core.dynamic>);
}