update method
- Property request,
- String fileId,
- String propertyKey,
- {String visibility,
- String $fields}
Updates a property.
request
- The metadata request object.
Request parameters:
fileId
- The ID of the file.
propertyKey
- The key of the property.
visibility
- The visibility of the property. Allowed values are PRIVATE
and PUBLIC. (Default: PRIVATE)
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a Property.
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<Property> update(
Property request, core.String fileId, core.String propertyKey,
{core.String visibility, 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 (request != null) {
_body = convert_1.json.encode((request).toJson());
}
if (fileId == null) {
throw new core.ArgumentError("Parameter fileId is required.");
}
if (propertyKey == null) {
throw new core.ArgumentError("Parameter propertyKey is required.");
}
if (visibility != null) {
_queryParams["visibility"] = [visibility];
}
if ($fields != null) {
_queryParams["fields"] = [$fields];
}
_url = 'files/' +
commons.Escaper.ecapeVariable('$fileId') +
'/properties/' +
commons.Escaper.ecapeVariable('$propertyKey');
var _response = _requester.request(_url, "PUT",
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions);
return _response.then((data) => new Property.fromJson(data));
}