27 lines
783 B
JavaScript
27 lines
783 B
JavaScript
import attr from 'ember-data/attr';
|
|
import { belongsTo } from 'ember-data/relationships';
|
|
import Fragment from 'ember-data-model-fragments/fragment';
|
|
import { fragmentOwner } from 'ember-data-model-fragments/attributes';
|
|
|
|
export default class StorageNode extends Fragment {
|
|
@fragmentOwner() plugin;
|
|
|
|
@belongsTo('node') node;
|
|
@attr('string') allocID;
|
|
|
|
@attr('string') provider;
|
|
@attr('string') version;
|
|
@attr('boolean') healthy;
|
|
@attr('string') healthDescription;
|
|
@attr('date') updateTime;
|
|
@attr('boolean') requiresControllerPlugin;
|
|
@attr('boolean') requiresTopologies;
|
|
|
|
@attr() nodeInfo;
|
|
|
|
// Fragments can't have relationships, so provider a manual getter instead.
|
|
async getAllocation() {
|
|
return this.store.findRecord('allocation', this.allocID);
|
|
}
|
|
}
|