analyzePackages method

Future<Operation> analyzePackages(
  1. AnalyzePackagesRequest request,
  2. String parent, {
  3. String? $fields,
})

Initiates an analysis of the provided packages.

request - The metadata request object.

Request parameters:

parent - Required. The parent of the resource for which analysis is requested. Format: projects/[project_name]/locations/[location] Value must have pattern ^projects/\[^/\]+/locations/\[^/\]+$.

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

Completes with a Operation.

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<Operation> analyzePackages(
  AnalyzePackagesRequest request,
  core.String parent, {
  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 =
      'v1beta1/' + core.Uri.encodeFull('$parent') + '/scans:analyzePackages';

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