mirror of
https://github.com/kemko/nomad.git
synced 2026-01-03 00:45:43 +03:00
Adds Namespace UI to Access Control - Also adds two step buttons to other Access Control pages --------- Co-authored-by: Phil Renaud <phil@riotindustries.com>
19 lines
506 B
JavaScript
19 lines
506 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Model from '@ember-data/model';
|
|
import { attr } from '@ember-data/model';
|
|
import { fragment } from 'ember-data-model-fragments/attributes';
|
|
|
|
export default class Namespace extends Model {
|
|
@attr('string') name;
|
|
@attr('string') hash;
|
|
@attr('string') description;
|
|
@attr('string') quota;
|
|
@attr() meta;
|
|
@fragment('ns-capabilities') capabilities;
|
|
@fragment('ns-node-pool-configuration') nodePoolConfiguration;
|
|
}
|