open-nomad/ui/app/models/task-group-deployment-summa...

28 lines
860 B
JavaScript
Raw Normal View History

import { gt, alias } from '@ember/object/computed';
2017-09-19 14:47:10 +00:00
import Fragment from 'ember-data-model-fragments/fragment';
import attr from 'ember-data/attr';
import { fragmentOwner } from 'ember-data-model-fragments/attributes';
export default class TaskGroupDeploymentSummary extends Fragment {
@fragmentOwner() deployment;
2017-09-19 14:47:10 +00:00
@attr('string') name;
2017-09-19 14:47:10 +00:00
@attr('boolean') autoRevert;
@attr('boolean') promoted;
@gt('desiredCanaries', 0) requiresPromotion;
2017-09-19 14:47:10 +00:00
// The list of canary allocation IDs
// hasMany is not supported in fragments
@attr({ defaultValue: () => [] }) placedCanaryAllocations;
@alias('placedCanaryAllocations.length') placedCanaries;
@attr('number') desiredCanaries;
@attr('number') desiredTotal;
@attr('number') placedAllocs;
@attr('number') healthyAllocs;
@attr('number') unhealthyAllocs;
@attr('date') requireProgressBy;
}