open-nomad/ui/app/models/volume-definition.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
531 B
JavaScript
Raw Normal View History

import { alias, equal } from '@ember/object/computed';
import { attr } from '@ember-data/model';
import Fragment from 'ember-data-model-fragments/fragment';
import { fragmentOwner } from 'ember-data-model-fragments/attributes';
export default class VolumeDefinition extends Fragment {
@fragmentOwner() taskGroup;
@attr('string') name;
@attr('string') source;
@attr('string') type;
@attr('boolean') readOnly;
@attr('boolean') perAlloc;
@equal('type', 'csi') isCSI;
@alias('taskGroup.job.namespace') namespace;
}