Remove non-spec PersistenceEnumType.Ephemeral value. Use existing
Volatile which correctly prevents disk persistence and is already
used for ~25 other runtime-only variables in the registry.
description: 'Private key material upload placeholder; write-only for security.',
maxLength: 2048,
mutability: MutabilityEnumType.WriteOnly,
- persistence: PersistenceEnumType.Ephemeral,
+ persistence: PersistenceEnumType.Volatile,
supportedAttributes: [AttributeEnumType.Actual],
variable: OCPP20VendorVariableName.CertificatePrivateKey,
vendorSpecific: true,
}
export enum PersistenceEnumType {
- Ephemeral = 'Ephemeral',
Persistent = 'Persistent',
Volatile = 'Volatile',
}