open-consul/ui/packages/consul-ui/app/models/nspace.js

23 lines
529 B
JavaScript
Raw Normal View History

import Model, { attr } from '@ember-data/model';
export const PRIMARY_KEY = 'Name';
export const SLUG_KEY = 'Name';
export const NSPACE_KEY = 'Namespace';
export default class Nspace extends Model {
@attr('string') uid;
@attr('string') Name;
@attr('number') SyncTime;
@attr('string', { defaultValue: () => '' }) Description;
// TODO: Is there some sort of date we can use here
@attr('string') DeletedAt;
@attr({
defaultValue: () => ({
PolicyDefaults: [],
RoleDefaults: [],
}),
})
ACLs;
}