open-nomad/ui/app/models/placement-failure.js
2023-04-10 15:36:59 +00:00

26 lines
636 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import { attr } from '@ember-data/model';
import Fragment from 'ember-data-model-fragments/fragment';
export default class PlacementFailure extends Fragment {
@attr('string') name;
@attr('number') coalescedFailures;
@attr('number') nodesEvaluated;
@attr('number') nodesExhausted;
// 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;
}