get method
Gets an Environment.
May return any of the following canonical error codes: - PERMISSION_DENIED
- if the user is not authorized to read project - INVALID_ARGUMENT - if the request is malformed - NOT_FOUND - if the Environment does not exist
Request parameters:
projectId
- Required. A Project id.
historyId
- Required. A History id.
executionId
- Required. An Execution id.
environmentId
- Required. An Environment id.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a Environment.
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<Environment> get(
core.String projectId,
core.String historyId,
core.String executionId,
core.String environmentId, {
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') +
'/histories/' +
commons.escapeVariable('$historyId') +
'/executions/' +
commons.escapeVariable('$executionId') +
'/environments/' +
commons.escapeVariable('$environmentId');
final _response = await _requester.request(
_url,
'GET',
queryParams: _queryParams,
);
return Environment.fromJson(
_response as core.Map<core.String, core.dynamic>);
}