get method
Returns the metadata of a Rapid Cache instance.
Request parameters:
bucket - Name of the parent bucket.
rapidCacheId - The ID of the requested Rapid Cache instance.
$fields - Selector specifying which fields to include in a partial
response.
Completes with a RapidCache.
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<RapidCache> get(
core.String bucket,
core.String rapidCacheId, {
core.String? $fields,
}) async {
final queryParams_ = <core.String, core.List<core.String>>{
'fields': ?$fields == null ? null : [$fields],
};
final url_ =
'b/' +
commons.escapeVariable('$bucket') +
'/rapidCaches/' +
commons.escapeVariable('$rapidCacheId');
final response_ = await _requester.request(
url_,
'GET',
queryParams: queryParams_,
);
return RapidCache.fromJson(
response_ as core.Map<core.String, core.dynamic>,
);
}