feat(xen-api/Record#update_): easier use for single entry

```js
// before
await object.update_property({
  entry: 'value',
})

// after
await object.update_property('entry', 'value')
```
This commit is contained in:
Julien Fontanet
2019-02-22 19:47:52 +01:00
parent 8e8b1c009a
commit 66f685165e
2 changed files with 9 additions and 9 deletions

View File

@@ -1102,8 +1102,10 @@ export class Xapi extends EventEmitter {
})
return result
}
props[`update_${field}`] = function(entries) {
return xapi.setFieldEntries(this.$type, this.$ref, field, entries)
props[`update_${field}`] = function(entries, value) {
return typeof entries === 'string'
? xapi.setFieldEntry(this.$type, this.$ref, field, entries, value)
: xapi.setFieldEntries(this.$type, this.$ref, field, entries)
}
} else if (value === '' || isOpaqueRef(value)) {
// 2019-02-07 - JFT: even if `value` should not be an empty string for