2018-05-23 17:39:43 +00:00
|
|
|
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';
|
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
export default class TaskGroupDeploymentSummary extends Fragment {
|
|
|
|
@fragmentOwner() deployment;
|
2017-09-19 14:47:10 +00:00
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
@attr('string') name;
|
2017-09-19 14:47:10 +00:00
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
@attr('boolean') autoRevert;
|
|
|
|
@attr('boolean') promoted;
|
|
|
|
@gt('desiredCanaries', 0) requiresPromotion;
|
2017-09-19 14:47:10 +00:00
|
|
|
|
2018-05-23 17:39:43 +00:00
|
|
|
// The list of canary allocation IDs
|
|
|
|
// hasMany is not supported in fragments
|
2020-06-10 13:49:16 +00:00
|
|
|
@attr({ defaultValue: () => [] }) placedCanaryAllocations;
|
2018-05-23 17:39:43 +00:00
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
@alias('placedCanaryAllocations.length') placedCanaries;
|
|
|
|
@attr('number') desiredCanaries;
|
|
|
|
@attr('number') desiredTotal;
|
|
|
|
@attr('number') placedAllocs;
|
|
|
|
@attr('number') healthyAllocs;
|
|
|
|
@attr('number') unhealthyAllocs;
|
2018-06-07 00:35:18 +00:00
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
@attr('date') requireProgressBy;
|
|
|
|
}
|