get method
- String projectId,
- String indexId,
- {String $fields}
Gets an index.
Request parameters:
projectId
- Project ID against which to make the request.
indexId
- The resource ID of the index to get.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a GoogleDatastoreAdminV1Index.
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<GoogleDatastoreAdminV1Index> get(
core.String projectId, core.String indexId,
{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 (projectId == null) {
throw new core.ArgumentError("Parameter projectId is required.");
}
if (indexId == null) {
throw new core.ArgumentError("Parameter indexId is required.");
}
if ($fields != null) {
_queryParams["fields"] = [$fields];
}
_url = 'v1/projects/' +
commons.Escaper.ecapeVariable('$projectId') +
'/indexes/' +
commons.Escaper.ecapeVariable('$indexId');
var _response = _requester.request(_url, "GET",
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions);
return _response
.then((data) => new GoogleDatastoreAdminV1Index.fromJson(data));
}