mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 12:07:02 +02:00
11 lines
318 B
JavaScript
11 lines
318 B
JavaScript
import Model, { attr } from '@ember-data/model';
|
|
|
|
export default class PkiCertificateEngineModel extends Model {
|
|
@attr('string', { readOnly: true }) backend;
|
|
@attr('string') commonName;
|
|
@attr('string') issueDate;
|
|
@attr('string') serialNumber;
|
|
@attr('string') notAfter;
|
|
@attr('string') notBeforeDuration;
|
|
}
|