Files
cloudly/ts/manager.secret/classes.secretgroup.ts
T
jkunz f40ef6b7c0 chore: update cloudly dependency stack
Align Cloudly with the current typedserver, smartconfig, smartstate, and Docker tooling releases so builds and Docker output stay compatible with the upgraded stack.
2026-05-08 13:56:20 +00:00

22 lines
512 B
TypeScript

/**
* a secretgroup is a set of secrets for different environments.
*/
import * as plugins from '../plugins.js';
@plugins.smartdata.Manager()
export class SecretGroup extends plugins.smartdata.SmartDataDbDoc<
SecretGroup,
plugins.servezoneInterfaces.data.ISecretGroup
> {
// INSTANCE
/**
* the insatnce id. This should be a random id, except for default
*/
@plugins.smartdata.unI()
id!: string;
@plugins.smartdata.svDb()
data!: plugins.servezoneInterfaces.data.ISecretGroup['data'];
}