get method
- String name,
- {String $fields}
Gets a session. Returns NOT_FOUND
if the session does not exist. This is
mainly useful for determining whether a session is still alive.
Request parameters:
name
- Required. The name of the session to retrieve.
Value must have pattern
"^projects/^/
+/instances/^/
+/databases/^/
+/sessions/^/
+$".
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a Session.
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<Session> get(core.String name, {core.String $fields}) {
var _url;
var _queryParams = new core.Map<core.String, core.List<core.String>>();
var _uploadMedia;
var _uploadOptions;
var _downloadOptions = commons.DownloadOptions.Metadata;
var _body;
if (name == null) {
throw new core.ArgumentError("Parameter name is required.");
}
if ($fields != null) {
_queryParams["fields"] = [$fields];
}
_url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
var _response = _requester.request(_url, "GET",
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions);
return _response.then((data) => new Session.fromJson(data));
}