delete method
Removes a parent from a file.
Request parameters:
fileId
- The ID of the file.
parentId
- The ID of the parent.
enforceSingleParent
- Set to true to opt in to API behavior that aims
for all items to have exactly one parent. This parameter only takes effect
if the item is not in a shared drive. If the item's last parent is
removed, the item is placed under its owner's root.
$fields
- Selector specifying which fields to include in a partial
response.
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 delete(core.String fileId, core.String parentId,
{core.bool enforceSingleParent, 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 (fileId == null) {
throw new core.ArgumentError("Parameter fileId is required.");
}
if (parentId == null) {
throw new core.ArgumentError("Parameter parentId is required.");
}
if (enforceSingleParent != null) {
_queryParams["enforceSingleParent"] = ["${enforceSingleParent}"];
}
if ($fields != null) {
_queryParams["fields"] = [$fields];
}
_downloadOptions = null;
_url = 'files/' +
commons.Escaper.ecapeVariable('$fileId') +
'/parents/' +
commons.Escaper.ecapeVariable('$parentId');
var _response = _requester.request(_url, "DELETE",
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions);
return _response.then((data) => null);
}