36 lines
1007 B
JavaScript
36 lines
1007 B
JavaScript
import Model, { attr } from '@ember-data/model';
|
|
import fieldToAttrs from 'vault/utils/field-to-attrs';
|
|
import { computed } from '@ember/object';
|
|
import apiPath from 'vault/utils/api-path';
|
|
import attachCapabilities from 'vault/lib/attach-capabilities';
|
|
|
|
const ModelExport = Model.extend({
|
|
backend: attr({ readOnly: true }),
|
|
scope: attr({ readOnly: true }),
|
|
role: attr({ readOnly: true }),
|
|
certificate: attr('string', { readOnly: true }),
|
|
caChain: attr({ readOnly: true }),
|
|
privateKey: attr('string', {
|
|
readOnly: true,
|
|
sensitive: true,
|
|
}),
|
|
format: attr('string', {
|
|
possibleValues: ['pem', 'der', 'pem_bundle'],
|
|
defaultValue: 'pem',
|
|
label: 'Certificate format',
|
|
}),
|
|
fieldGroups: computed(function () {
|
|
const groups = [
|
|
{
|
|
default: ['format'],
|
|
},
|
|
];
|
|
|
|
return fieldToAttrs(this, groups);
|
|
}),
|
|
});
|
|
|
|
export default attachCapabilities(ModelExport, {
|
|
deletePath: apiPath`${'backend'}/scope/${'scope'}/role/${'role'}/credentials/revoke`,
|
|
});
|