2018-05-22 15:03:45 +00:00
|
|
|
import Model from 'ember-data/model';
|
|
|
|
import attr from 'ember-data/attr';
|
|
|
|
|
|
|
|
export const PRIMARY_KEY = 'uid';
|
|
|
|
export const SLUG_KEY = 'ID';
|
2019-12-17 18:47:37 +00:00
|
|
|
export default 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' }),
|
2019-12-17 18:47:37 +00:00
|
|
|
// These are in the API response but up until now
|
|
|
|
// aren't used for anything
|
2018-05-22 15:03:45 +00:00
|
|
|
DefaultAddr: attr('string'),
|
|
|
|
DefaultPort: attr('number'),
|
2019-12-17 18:47:37 +00:00
|
|
|
//
|
2018-05-22 15:03:45 +00:00
|
|
|
Meta: attr(),
|
2020-04-24 13:37:35 +00:00
|
|
|
SyncTime: attr('number'),
|
2018-05-22 15:03:45 +00:00
|
|
|
Datacenter: attr('string'),
|
|
|
|
CreatedAt: attr('date'),
|
|
|
|
UpdatedAt: attr('date'),
|
|
|
|
CreateIndex: attr('number'),
|
|
|
|
ModifyIndex: attr('number'),
|
|
|
|
});
|