vault/ui/app/models/pki/pki-key-engine.js
Angel Garbarino 613498cbc9
PKI Keys List View (#17239)
* setup

* cleanup

* cleanup
2022-09-21 08:41:44 -06:00

11 lines
441 B
JavaScript

import Model, { attr } from '@ember-data/model';
export default class PkiKeyEngineModel extends Model {
@attr('string', { readOnly: true }) backend;
@attr('boolean') isDefault;
@attr('string') keyRef; // reference to an existing key: either, vault generate identifier, literal string 'default', or the name assigned to the key. Part of the request URL.
@attr('string') keyId;
@attr('string') keyName;
@attr('string') keyType;
}