getSettings method
Gets the Tool Results settings for a project.
May return any of the following canonical error codes: - PERMISSION_DENIED
- if the user is not authorized to read from project
Request parameters:
projectId
- A Project id. Required.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a ProjectSettings.
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<ProjectSettings> getSettings(
core.String projectId, {
core.String? $fields,
}) async {
final queryParams_ = <core.String, core.List<core.String>>{
if ($fields != null) 'fields': [$fields],
};
final url_ = 'toolresults/v1beta3/projects/' +
commons.escapeVariable('$projectId') +
'/settings';
final response_ = await _requester.request(
url_,
'GET',
queryParams: queryParams_,
);
return ProjectSettings.fromJson(
response_ as core.Map<core.String, core.dynamic>);
}