open-nomad/ui/app/models/volume.js

58 lines
1.5 KiB
JavaScript
Raw Normal View History

import { computed } from '@ember/object';
import Model from 'ember-data/model';
2020-02-11 00:19:28 +00:00
import attr from 'ember-data/attr';
import { belongsTo, hasMany } from 'ember-data/relationships';
2020-02-11 00:19:28 +00:00
export default class Volume extends Model {
@attr('string') plainId;
@attr('string') name;
2020-02-11 00:19:28 +00:00
@belongsTo('namespace') namespace;
@belongsTo('plugin') plugin;
@hasMany('allocation') writeAllocations;
@hasMany('allocation') readAllocations;
@computed('writeAllocations.[]', 'readAllocations.[]')
get allocations() {
return [...this.writeAllocations.toArray(), ...this.readAllocations.toArray()];
}
@attr('number') currentWriters;
@attr('number') currentReaders;
@computed('currentWriters', 'currentReaders')
get allocationCount() {
return this.currentWriters + this.currentReaders;
}
@attr('string') externalId;
@attr() topologies;
@attr('string') accessMode;
@attr('string') attachmentMode;
@attr('boolean') schedulable;
@attr('string') provider;
@attr('string') version;
@attr('boolean') controllerRequired;
@attr('number') controllersHealthy;
@attr('number') controllersExpected;
@computed('controllersHealthy', 'controllersExpected')
get controllersHealthyProportion() {
return this.controllersHealthy / this.controllersExpected;
}
@attr('number') nodesHealthy;
@attr('number') nodesExpected;
@computed('nodesHealthy', 'nodesExpected')
get nodesHealthyProportion() {
return this.nodesHealthy / this.nodesExpected;
}
@attr('number') resourceExhausted;
@attr('number') createIndex;
@attr('number') modifyIndex;
}