2018-10-19 15:17:02 +00:00
|
|
|
import Model from 'ember-data/model';
|
|
|
|
import attr from 'ember-data/attr';
|
|
|
|
import writable from 'consul-ui/utils/model/writable';
|
|
|
|
|
|
|
|
export const PRIMARY_KEY = 'uid';
|
|
|
|
export const SLUG_KEY = 'AccessorID';
|
|
|
|
|
|
|
|
const model = Model.extend({
|
|
|
|
[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: '',
|
|
|
|
}),
|
|
|
|
Datacenter: attr('string'),
|
|
|
|
Local: attr('boolean'),
|
|
|
|
Policies: attr({
|
|
|
|
defaultValue: function() {
|
|
|
|
return [];
|
|
|
|
},
|
|
|
|
}),
|
2019-05-01 18:09:29 +00:00
|
|
|
Roles: attr({
|
|
|
|
defaultValue: function() {
|
|
|
|
return [];
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
ServiceIdentities: 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'),
|
|
|
|
});
|
|
|
|
// Name and Rules is only for legacy tokens
|
|
|
|
export const ATTRS = writable(model, [
|
|
|
|
'Name',
|
|
|
|
'Rules',
|
|
|
|
'Type',
|
|
|
|
'Local',
|
|
|
|
'Description',
|
|
|
|
'Policies',
|
2019-05-01 18:09:29 +00:00
|
|
|
'Roles',
|
2018-10-19 15:17:02 +00:00
|
|
|
// SecretID isn't writable but we need it to identify an
|
|
|
|
// update via the old API, see TokenAdapter dataForRequest
|
|
|
|
'SecretID',
|
|
|
|
'AccessorID',
|
|
|
|
]);
|
|
|
|
export default model;
|