mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 20:17:00 +02:00
11 lines
441 B
JavaScript
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;
|
|
}
|