2018-10-19 15:17:02 +00:00
|
|
|
import Model from 'ember-data/model';
|
|
|
|
import attr from 'ember-data/attr';
|
2020-09-01 18:13:11 +00:00
|
|
|
import { computed } from '@ember/object';
|
|
|
|
import { MANAGEMENT_ID } from 'consul-ui/models/policy';
|
2018-10-19 15:17:02 +00:00
|
|
|
|
|
|
|
export const PRIMARY_KEY = 'uid';
|
|
|
|
export const SLUG_KEY = 'AccessorID';
|
|
|
|
|
2019-12-17 16:16:43 +00:00
|
|
|
export default Model.extend({
|
2018-10-19 15:17:02 +00:00
|
|
|
[PRIMARY_KEY]: attr('string'),
|
|
|
|
[SLUG_KEY]: attr('string'),
|
2019-05-01 18:09:29 +00:00
|
|
|
IDPName: attr('string'),
|
2018-10-19 15:17:02 +00:00
|
|
|
SecretID: attr('string'),
|
|
|
|
// Legacy
|
|
|
|
Type: attr('string'),
|
|
|
|
Name: attr('string', {
|
|
|
|
defaultValue: '',
|
|
|
|
}),
|
|
|
|
Rules: attr('string'),
|
|
|
|
// End Legacy
|
|
|
|
Legacy: attr('boolean'),
|
|
|
|
Description: attr('string', {
|
|
|
|
defaultValue: '',
|
|
|
|
}),
|
2020-05-05 16:29:35 +00:00
|
|
|
meta: attr(),
|
2018-10-19 15:17:02 +00:00
|
|
|
Datacenter: attr('string'),
|
2019-12-17 18:47:37 +00:00
|
|
|
Namespace: attr('string'),
|
2018-10-19 15:17:02 +00:00
|
|
|
Local: attr('boolean'),
|
2020-09-01 18:13:11 +00:00
|
|
|
isGlobalManagement: computed('Policies.[]', function() {
|
|
|
|
return (this.Policies || []).find(item => item.ID === MANAGEMENT_ID);
|
|
|
|
}),
|
2018-10-19 15:17:02 +00:00
|
|
|
Policies: attr({
|
|
|
|
defaultValue: function() {
|
|
|
|
return [];
|
|
|
|
},
|
|
|
|
}),
|
2019-05-01 18:09:29 +00:00
|
|
|
Roles: attr({
|
|
|
|
defaultValue: function() {
|
|
|
|
return [];
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
ServiceIdentities: attr({
|
|
|
|
defaultValue: function() {
|
|
|
|
return [];
|
|
|
|
},
|
|
|
|
}),
|
2020-06-23 08:59:43 +00:00
|
|
|
NodeIdentities: attr({
|
|
|
|
defaultValue: function() {
|
|
|
|
return [];
|
|
|
|
},
|
|
|
|
}),
|
2018-10-19 15:17:02 +00:00
|
|
|
CreateTime: attr('date'),
|
2019-05-01 18:09:29 +00:00
|
|
|
Hash: attr('string'),
|
2018-10-19 15:17:02 +00:00
|
|
|
CreateIndex: attr('number'),
|
|
|
|
ModifyIndex: attr('number'),
|
|
|
|
});
|