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>);
}