@tolinax/ayoune-interfaces 2026.53.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.
|
@@ -210,8 +210,10 @@ export interface IComputingEntity extends IDefaultFields {
|
|
|
210
210
|
vpcId?: string;
|
|
211
211
|
platform?: string;
|
|
212
212
|
ip?: string;
|
|
213
|
+
publicDnsName?: string;
|
|
213
214
|
username?: string;
|
|
214
215
|
password?: string;
|
|
216
|
+
_credentialID?: ObjectId;
|
|
215
217
|
clientVersion?: string;
|
|
216
218
|
name?: string;
|
|
217
219
|
description?: string;
|
|
@@ -227,6 +229,15 @@ export interface IComputingEntity extends IDefaultFields {
|
|
|
227
229
|
updateForceCountdownSec?: number;
|
|
228
230
|
tags?: string[];
|
|
229
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;
|
|
230
241
|
bootstrapToken?: string;
|
|
231
242
|
bootstrapTokenExpiresAt?: Date;
|
|
232
243
|
bootstrapTokenUsedAt?: Date;
|