2017-11-29 01:21:56 +00:00
|
|
|
import attr from 'ember-data/attr';
|
|
|
|
import Fragment from 'ember-data-model-fragments/fragment';
|
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
export default class PlacementFailure extends Fragment {
|
|
|
|
@attr('string') name;
|
2017-11-29 01:21:56 +00:00
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
@attr('number') coalescedFailures;
|
2017-11-29 01:21:56 +00:00
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
@attr('number') nodesEvaluated;
|
|
|
|
@attr('number') nodesExhausted;
|
2017-11-29 01:21:56 +00:00
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
// Maps keyed by relevant dimension (dc, class, constraint, etc)ith count values
|
|
|
|
@attr() nodesAvailable;
|
|
|
|
@attr() classFiltered;
|
|
|
|
@attr() constraintFiltered;
|
|
|
|
@attr() classExhausted;
|
|
|
|
@attr() dimensionExhausted;
|
|
|
|
@attr() quotaExhausted;
|
|
|
|
@attr() scores;
|
|
|
|
}
|