f40ef6b7c0
Align Cloudly with the current typedserver, smartconfig, smartstate, and Docker tooling releases so builds and Docker output stay compatible with the upgraded stack.
22 lines
512 B
TypeScript
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'];
|
|
}
|