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';
|
|
|
|
|
|
|
|
export default Fragment.extend({
|
|
|
|
plugin: fragmentOwner(),
|
|
|
|
|
|
|
|
node: belongsTo('node'),
|
2020-05-04 19:24:59 +00:00
|
|
|
allocID: attr('string'),
|
|
|
|
|
2020-03-25 12:51:26 +00:00
|
|
|
provider: attr('string'),
|
|
|
|
version: attr('string'),
|
|
|
|
healthy: attr('boolean'),
|
|
|
|
healthDescription: attr('string'),
|
|
|
|
updateTime: attr('date'),
|
|
|
|
requiresControllerPlugin: attr('boolean'),
|
|
|
|
requiresTopologies: attr('boolean'),
|
|
|
|
|
|
|
|
nodeInfo: attr(),
|
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-03-25 12:51:26 +00:00
|
|
|
});
|