2018-05-22 15:03:45 +00:00
|
|
|
import Model from 'ember-data/model';
|
|
|
|
import attr from 'ember-data/attr';
|
2018-06-06 11:00:25 +00:00
|
|
|
import writable from 'consul-ui/utils/model/writable';
|
2018-05-22 15:03:45 +00:00
|
|
|
|
|
|
|
export const PRIMARY_KEY = 'uid';
|
|
|
|
export const SLUG_KEY = 'ID';
|
2018-06-06 11:00:25 +00:00
|
|
|
const model = Model.extend({
|
2018-05-22 15:03:45 +00:00
|
|
|
[PRIMARY_KEY]: attr('string'),
|
|
|
|
[SLUG_KEY]: attr('string'),
|
|
|
|
Description: attr('string'),
|
|
|
|
SourceNS: attr('string'),
|
|
|
|
SourceName: attr('string'),
|
|
|
|
DestinationName: attr('string'),
|
2018-08-29 09:00:15 +00:00
|
|
|
DestinationNS: attr('string'),
|
2018-05-22 15:03:45 +00:00
|
|
|
Precedence: attr('number'),
|
2018-06-06 11:00:25 +00:00
|
|
|
SourceType: attr('string', { defaultValue: 'consul' }),
|
|
|
|
Action: attr('string', { defaultValue: 'deny' }),
|
2018-05-22 15:03:45 +00:00
|
|
|
DefaultAddr: attr('string'),
|
|
|
|
DefaultPort: attr('number'),
|
|
|
|
Meta: attr(),
|
|
|
|
Datacenter: attr('string'),
|
|
|
|
CreatedAt: attr('date'),
|
|
|
|
UpdatedAt: attr('date'),
|
|
|
|
CreateIndex: attr('number'),
|
|
|
|
ModifyIndex: attr('number'),
|
|
|
|
});
|
2018-06-06 11:00:25 +00:00
|
|
|
export const ATTRS = writable(model, [
|
|
|
|
'Action',
|
|
|
|
'SourceName',
|
|
|
|
'DestinationName',
|
|
|
|
'SourceType',
|
|
|
|
'Description',
|
|
|
|
]);
|
|
|
|
export default model;
|