get method
Gets a single Utilization Report.
Request parameters:
name
- Required. The Utilization Report name.
Value must have pattern
^projects/\[^/\]+/locations/\[^/\]+/sources/\[^/\]+/utilizationReports/\[^/\]+$
.
view
- Optional. The level of details of the report. Defaults to FULL
Possible string values are:
- "UTILIZATION_REPORT_VIEW_UNSPECIFIED" : The default / unset value. The API will default to FULL on single report request and BASIC for multiple reports request.
- "BASIC" : Get the report metadata, without the list of VMs and their utilization info.
- "FULL" : Include everything.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a UtilizationReport.
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<UtilizationReport> get(
core.String name, {
core.String? view,
core.String? $fields,
}) async {
final queryParams_ = <core.String, core.List<core.String>>{
if (view != null) 'view': [view],
if ($fields != null) 'fields': [$fields],
};
final url_ = 'v1/' + core.Uri.encodeFull('$name');
final response_ = await _requester.request(
url_,
'GET',
queryParams: queryParams_,
);
return UtilizationReport.fromJson(
response_ as core.Map<core.String, core.dynamic>);
}