2020-03-25 12:51:26 +00:00
|
|
|
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';
|
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
export default class StorageNode extends Fragment {
|
|
|
|
@fragmentOwner() plugin;
|
2020-03-25 12:51:26 +00:00
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
@belongsTo('node') node;
|
|
|
|
@attr('string') allocID;
|
2020-05-04 19:24:59 +00:00
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
@attr('string') provider;
|
|
|
|
@attr('string') version;
|
|
|
|
@attr('boolean') healthy;
|
|
|
|
@attr('string') healthDescription;
|
|
|
|
@attr('date') updateTime;
|
|
|
|
@attr('boolean') requiresControllerPlugin;
|
|
|
|
@attr('boolean') requiresTopologies;
|
2020-03-25 12:51:26 +00:00
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
@attr() nodeInfo;
|
2020-05-12 02:59:38 +00:00
|
|
|
|
|
|
|
// Fragments can't have relationships, so provider a manual getter instead.
|
|
|
|
async getAllocation() {
|
|
|
|
return this.store.findRecord('allocation', this.allocID);
|
2020-06-10 13:49:16 +00:00
|
|
|
}
|
|
|
|
}
|