@tolinax/ayoune-interfaces 2026.52.0 → 2026.54.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -105,6 +105,13 @@ export interface IComputingEntityProgram {
|
|
|
105
105
|
restartDelayMs?: number;
|
|
106
106
|
restartCount?: number;
|
|
107
107
|
logPaths?: string[];
|
|
108
|
+
/**
|
|
109
|
+
* Glob patterns applied to files found under `logPaths` (directories).
|
|
110
|
+
* Empty or undefined means "collect all *.log files" (legacy behaviour).
|
|
111
|
+
* Supports include patterns ('*.log', 'MT4_*.log') and negated patterns
|
|
112
|
+
* ('!debug-*.log'). Negations apply after includes.
|
|
113
|
+
*/
|
|
114
|
+
logFilePatterns?: string[];
|
|
108
115
|
healthCheck?: IComputingEntityProgramHealthCheck;
|
|
109
116
|
adapter?: string;
|
|
110
117
|
adapterConfig?: Record<string, any>;
|
|
@@ -203,8 +210,10 @@ export interface IComputingEntity extends IDefaultFields {
|
|
|
203
210
|
vpcId?: string;
|
|
204
211
|
platform?: string;
|
|
205
212
|
ip?: string;
|
|
213
|
+
publicDnsName?: string;
|
|
206
214
|
username?: string;
|
|
207
215
|
password?: string;
|
|
216
|
+
_credentialID?: ObjectId;
|
|
208
217
|
clientVersion?: string;
|
|
209
218
|
name?: string;
|
|
210
219
|
description?: string;
|
|
@@ -220,6 +229,15 @@ export interface IComputingEntity extends IDefaultFields {
|
|
|
220
229
|
updateForceCountdownSec?: number;
|
|
221
230
|
tags?: string[];
|
|
222
231
|
pendingCommands?: IRemoteCommand[];
|
|
232
|
+
awsState?: string;
|
|
233
|
+
architecture?: string;
|
|
234
|
+
monitoringState?: string;
|
|
235
|
+
launchTime?: Date;
|
|
236
|
+
securityGroups?: {
|
|
237
|
+
id: string;
|
|
238
|
+
name: string;
|
|
239
|
+
}[];
|
|
240
|
+
lastCloudSync?: Date;
|
|
223
241
|
bootstrapToken?: string;
|
|
224
242
|
bootstrapTokenExpiresAt?: Date;
|
|
225
243
|
bootstrapTokenUsedAt?: Date;
|