@lansweeper/data-platform-outbound-grpc 0.1.135 → 0.1.137
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.
- package/CHANGELOG.md +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +211 -0
- package/gen-proto/outbound_pb.js +1839 -197
- package/generated-go/outbound.pb.go +20185 -19582
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +43 -1
|
@@ -626,6 +626,11 @@ export class Asset extends jspb.Message {
|
|
|
626
626
|
getComputer(): Computer | undefined;
|
|
627
627
|
setComputer(value?: Computer): Asset;
|
|
628
628
|
|
|
629
|
+
hasServerGroup(): boolean;
|
|
630
|
+
clearServerGroup(): void;
|
|
631
|
+
getServerGroup(): ServerGroup | undefined;
|
|
632
|
+
setServerGroup(value?: ServerGroup): Asset;
|
|
633
|
+
|
|
629
634
|
hasPrinter(): boolean;
|
|
630
635
|
clearPrinter(): void;
|
|
631
636
|
getPrinter(): Printer | undefined;
|
|
@@ -687,6 +692,7 @@ export namespace Asset {
|
|
|
687
692
|
portScan?: PortScan.AsObject,
|
|
688
693
|
warrantyInfoList: Array<WarrantyInfo.AsObject>,
|
|
689
694
|
computer?: Computer.AsObject,
|
|
695
|
+
serverGroup?: ServerGroup.AsObject,
|
|
690
696
|
printer?: Printer.AsObject,
|
|
691
697
|
ups?: Ups.AsObject,
|
|
692
698
|
otModule?: OtModule.AsObject,
|
|
@@ -1252,6 +1258,190 @@ export namespace Computer {
|
|
|
1252
1258
|
}
|
|
1253
1259
|
}
|
|
1254
1260
|
|
|
1261
|
+
export class ServerGroup extends jspb.Message {
|
|
1262
|
+
|
|
1263
|
+
hasSccmInfo(): boolean;
|
|
1264
|
+
clearSccmInfo(): void;
|
|
1265
|
+
getSccmInfo(): SccmInfo | undefined;
|
|
1266
|
+
setSccmInfo(value?: SccmInfo): ServerGroup;
|
|
1267
|
+
|
|
1268
|
+
serializeBinary(): Uint8Array;
|
|
1269
|
+
toObject(includeInstance?: boolean): ServerGroup.AsObject;
|
|
1270
|
+
static toObject(includeInstance: boolean, msg: ServerGroup): ServerGroup.AsObject;
|
|
1271
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1272
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1273
|
+
static serializeBinaryToWriter(message: ServerGroup, writer: jspb.BinaryWriter): void;
|
|
1274
|
+
static deserializeBinary(bytes: Uint8Array): ServerGroup;
|
|
1275
|
+
static deserializeBinaryFromReader(message: ServerGroup, reader: jspb.BinaryReader): ServerGroup;
|
|
1276
|
+
}
|
|
1277
|
+
|
|
1278
|
+
export namespace ServerGroup {
|
|
1279
|
+
export type AsObject = {
|
|
1280
|
+
sccmInfo?: SccmInfo.AsObject,
|
|
1281
|
+
}
|
|
1282
|
+
}
|
|
1283
|
+
|
|
1284
|
+
export class SccmInfo extends jspb.Message {
|
|
1285
|
+
|
|
1286
|
+
hasTimestamp(): boolean;
|
|
1287
|
+
clearTimestamp(): void;
|
|
1288
|
+
getTimestamp(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
1289
|
+
setTimestamp(value?: google_protobuf_timestamp_pb.Timestamp): SccmInfo;
|
|
1290
|
+
|
|
1291
|
+
hasSccmServer(): boolean;
|
|
1292
|
+
clearSccmServer(): void;
|
|
1293
|
+
getSccmServer(): SccmServer | undefined;
|
|
1294
|
+
setSccmServer(value?: SccmServer): SccmInfo;
|
|
1295
|
+
|
|
1296
|
+
hasSccmSite(): boolean;
|
|
1297
|
+
clearSccmSite(): void;
|
|
1298
|
+
getSccmSite(): SccmSite | undefined;
|
|
1299
|
+
setSccmSite(value?: SccmSite): SccmInfo;
|
|
1300
|
+
getResourceId(): number;
|
|
1301
|
+
setResourceId(value: number): SccmInfo;
|
|
1302
|
+
|
|
1303
|
+
hasSccmClient(): boolean;
|
|
1304
|
+
clearSccmClient(): void;
|
|
1305
|
+
getSccmClient(): SccmClient | undefined;
|
|
1306
|
+
setSccmClient(value?: SccmClient): SccmInfo;
|
|
1307
|
+
|
|
1308
|
+
hasCreationDate(): boolean;
|
|
1309
|
+
clearCreationDate(): void;
|
|
1310
|
+
getCreationDate(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
1311
|
+
setCreationDate(value?: google_protobuf_timestamp_pb.Timestamp): SccmInfo;
|
|
1312
|
+
|
|
1313
|
+
serializeBinary(): Uint8Array;
|
|
1314
|
+
toObject(includeInstance?: boolean): SccmInfo.AsObject;
|
|
1315
|
+
static toObject(includeInstance: boolean, msg: SccmInfo): SccmInfo.AsObject;
|
|
1316
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1317
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1318
|
+
static serializeBinaryToWriter(message: SccmInfo, writer: jspb.BinaryWriter): void;
|
|
1319
|
+
static deserializeBinary(bytes: Uint8Array): SccmInfo;
|
|
1320
|
+
static deserializeBinaryFromReader(message: SccmInfo, reader: jspb.BinaryReader): SccmInfo;
|
|
1321
|
+
}
|
|
1322
|
+
|
|
1323
|
+
export namespace SccmInfo {
|
|
1324
|
+
export type AsObject = {
|
|
1325
|
+
timestamp?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
1326
|
+
sccmServer?: SccmServer.AsObject,
|
|
1327
|
+
sccmSite?: SccmSite.AsObject,
|
|
1328
|
+
resourceId: number,
|
|
1329
|
+
sccmClient?: SccmClient.AsObject,
|
|
1330
|
+
creationDate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
1331
|
+
}
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1334
|
+
export class SccmServer extends jspb.Message {
|
|
1335
|
+
|
|
1336
|
+
hasServer(): boolean;
|
|
1337
|
+
clearServer(): void;
|
|
1338
|
+
getServer(): EntityPath | undefined;
|
|
1339
|
+
setServer(value?: EntityPath): SccmServer;
|
|
1340
|
+
|
|
1341
|
+
hasServerName(): boolean;
|
|
1342
|
+
clearServerName(): void;
|
|
1343
|
+
getServerName(): string | undefined;
|
|
1344
|
+
setServerName(value: string): SccmServer;
|
|
1345
|
+
|
|
1346
|
+
hasDomain(): boolean;
|
|
1347
|
+
clearDomain(): void;
|
|
1348
|
+
getDomain(): string | undefined;
|
|
1349
|
+
setDomain(value: string): SccmServer;
|
|
1350
|
+
|
|
1351
|
+
serializeBinary(): Uint8Array;
|
|
1352
|
+
toObject(includeInstance?: boolean): SccmServer.AsObject;
|
|
1353
|
+
static toObject(includeInstance: boolean, msg: SccmServer): SccmServer.AsObject;
|
|
1354
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1355
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1356
|
+
static serializeBinaryToWriter(message: SccmServer, writer: jspb.BinaryWriter): void;
|
|
1357
|
+
static deserializeBinary(bytes: Uint8Array): SccmServer;
|
|
1358
|
+
static deserializeBinaryFromReader(message: SccmServer, reader: jspb.BinaryReader): SccmServer;
|
|
1359
|
+
}
|
|
1360
|
+
|
|
1361
|
+
export namespace SccmServer {
|
|
1362
|
+
export type AsObject = {
|
|
1363
|
+
server?: EntityPath.AsObject,
|
|
1364
|
+
serverName?: string,
|
|
1365
|
+
domain?: string,
|
|
1366
|
+
}
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
export class SccmSite extends jspb.Message {
|
|
1370
|
+
|
|
1371
|
+
hasCode(): boolean;
|
|
1372
|
+
clearCode(): void;
|
|
1373
|
+
getCode(): string | undefined;
|
|
1374
|
+
setCode(value: string): SccmSite;
|
|
1375
|
+
|
|
1376
|
+
hasName(): boolean;
|
|
1377
|
+
clearName(): void;
|
|
1378
|
+
getName(): string | undefined;
|
|
1379
|
+
setName(value: string): SccmSite;
|
|
1380
|
+
|
|
1381
|
+
hasVersion(): boolean;
|
|
1382
|
+
clearVersion(): void;
|
|
1383
|
+
getVersion(): string | undefined;
|
|
1384
|
+
setVersion(value: string): SccmSite;
|
|
1385
|
+
|
|
1386
|
+
hasBuildNumber(): boolean;
|
|
1387
|
+
clearBuildNumber(): void;
|
|
1388
|
+
getBuildNumber(): number | undefined;
|
|
1389
|
+
setBuildNumber(value: number): SccmSite;
|
|
1390
|
+
|
|
1391
|
+
hasStatus(): boolean;
|
|
1392
|
+
clearStatus(): void;
|
|
1393
|
+
getStatus(): string | undefined;
|
|
1394
|
+
setStatus(value: string): SccmSite;
|
|
1395
|
+
|
|
1396
|
+
serializeBinary(): Uint8Array;
|
|
1397
|
+
toObject(includeInstance?: boolean): SccmSite.AsObject;
|
|
1398
|
+
static toObject(includeInstance: boolean, msg: SccmSite): SccmSite.AsObject;
|
|
1399
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1400
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1401
|
+
static serializeBinaryToWriter(message: SccmSite, writer: jspb.BinaryWriter): void;
|
|
1402
|
+
static deserializeBinary(bytes: Uint8Array): SccmSite;
|
|
1403
|
+
static deserializeBinaryFromReader(message: SccmSite, reader: jspb.BinaryReader): SccmSite;
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
export namespace SccmSite {
|
|
1407
|
+
export type AsObject = {
|
|
1408
|
+
code?: string,
|
|
1409
|
+
name?: string,
|
|
1410
|
+
version?: string,
|
|
1411
|
+
buildNumber?: number,
|
|
1412
|
+
status?: string,
|
|
1413
|
+
}
|
|
1414
|
+
}
|
|
1415
|
+
|
|
1416
|
+
export class SccmClient extends jspb.Message {
|
|
1417
|
+
|
|
1418
|
+
hasClientEdition(): boolean;
|
|
1419
|
+
clearClientEdition(): void;
|
|
1420
|
+
getClientEdition(): MappedValue | undefined;
|
|
1421
|
+
setClientEdition(value?: MappedValue): SccmClient;
|
|
1422
|
+
|
|
1423
|
+
hasClientVersion(): boolean;
|
|
1424
|
+
clearClientVersion(): void;
|
|
1425
|
+
getClientVersion(): string | undefined;
|
|
1426
|
+
setClientVersion(value: string): SccmClient;
|
|
1427
|
+
|
|
1428
|
+
serializeBinary(): Uint8Array;
|
|
1429
|
+
toObject(includeInstance?: boolean): SccmClient.AsObject;
|
|
1430
|
+
static toObject(includeInstance: boolean, msg: SccmClient): SccmClient.AsObject;
|
|
1431
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1432
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1433
|
+
static serializeBinaryToWriter(message: SccmClient, writer: jspb.BinaryWriter): void;
|
|
1434
|
+
static deserializeBinary(bytes: Uint8Array): SccmClient;
|
|
1435
|
+
static deserializeBinaryFromReader(message: SccmClient, reader: jspb.BinaryReader): SccmClient;
|
|
1436
|
+
}
|
|
1437
|
+
|
|
1438
|
+
export namespace SccmClient {
|
|
1439
|
+
export type AsObject = {
|
|
1440
|
+
clientEdition?: MappedValue.AsObject,
|
|
1441
|
+
clientVersion?: string,
|
|
1442
|
+
}
|
|
1443
|
+
}
|
|
1444
|
+
|
|
1255
1445
|
export class Tag extends jspb.Message {
|
|
1256
1446
|
getKey(): string;
|
|
1257
1447
|
setKey(value: string): Tag;
|
|
@@ -14221,6 +14411,16 @@ export namespace SiteKey {
|
|
|
14221
14411
|
}
|
|
14222
14412
|
|
|
14223
14413
|
export class ReconRuleSet extends jspb.Message {
|
|
14414
|
+
getId(): ReconRuleId;
|
|
14415
|
+
setId(value: ReconRuleId): ReconRuleSet;
|
|
14416
|
+
getName(): string;
|
|
14417
|
+
setName(value: string): ReconRuleSet;
|
|
14418
|
+
getDescription(): string;
|
|
14419
|
+
setDescription(value: string): ReconRuleSet;
|
|
14420
|
+
getPriority(): number;
|
|
14421
|
+
setPriority(value: number): ReconRuleSet;
|
|
14422
|
+
getEnabled(): boolean;
|
|
14423
|
+
setEnabled(value: boolean): ReconRuleSet;
|
|
14224
14424
|
|
|
14225
14425
|
serializeBinary(): Uint8Array;
|
|
14226
14426
|
toObject(includeInstance?: boolean): ReconRuleSet.AsObject;
|
|
@@ -14234,5 +14434,16 @@ export class ReconRuleSet extends jspb.Message {
|
|
|
14234
14434
|
|
|
14235
14435
|
export namespace ReconRuleSet {
|
|
14236
14436
|
export type AsObject = {
|
|
14437
|
+
id: ReconRuleId,
|
|
14438
|
+
name: string,
|
|
14439
|
+
description: string,
|
|
14440
|
+
priority: number,
|
|
14441
|
+
enabled: boolean,
|
|
14237
14442
|
}
|
|
14238
14443
|
}
|
|
14444
|
+
|
|
14445
|
+
export enum ReconRuleId {
|
|
14446
|
+
RECONCILE_BY_MAC = 0,
|
|
14447
|
+
RECONCILE_BY_MAKE_MODEL_SERIAL = 1,
|
|
14448
|
+
RECONCILE_BY_NETBIOS = 2,
|
|
14449
|
+
}
|