@lansweeper/data-platform-outbound-grpc 0.1.22 → 0.1.24
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_grpc_pb.d.ts +1 -0
- package/gen-proto/outbound_grpc_pb.js +1 -0
- package/gen-proto/outbound_pb.d.ts +136 -9
- package/gen-proto/outbound_pb.js +4278 -3281
- package/generated-go/outbound.pb.go +2050 -1699
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +53 -13
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
import * as grpc from "@grpc/grpc-js";
|
|
8
8
|
import * as outbound_pb from "./outbound_pb";
|
|
9
9
|
import * as google_protobuf_timestamp_pb from "google-protobuf/google/protobuf/timestamp_pb";
|
|
10
|
+
import * as google_protobuf_any_pb from "google-protobuf/google/protobuf/any_pb";
|
|
10
11
|
|
|
11
12
|
interface IDataCoreOutboundServiceService extends grpc.ServiceDefinition<grpc.UntypedServiceImplementation> {
|
|
12
13
|
getEntity: IDataCoreOutboundServiceService_IGetEntity;
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
var grpc = require('@grpc/grpc-js');
|
|
12
12
|
var outbound_pb = require('./outbound_pb.js');
|
|
13
13
|
var google_protobuf_timestamp_pb = require('google-protobuf/google/protobuf/timestamp_pb.js');
|
|
14
|
+
var google_protobuf_any_pb = require('google-protobuf/google/protobuf/any_pb.js');
|
|
14
15
|
|
|
15
16
|
function serialize_com_lansweeper_dp_outbound_v1_CatalogLookupRequest(arg) {
|
|
16
17
|
if (!(arg instanceof outbound_pb.CatalogLookupRequest)) {
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
import * as jspb from "google-protobuf";
|
|
8
8
|
import * as google_protobuf_timestamp_pb from "google-protobuf/google/protobuf/timestamp_pb";
|
|
9
|
+
import * as google_protobuf_any_pb from "google-protobuf/google/protobuf/any_pb";
|
|
9
10
|
|
|
10
11
|
export class GetEntityRequest extends jspb.Message {
|
|
11
12
|
|
|
@@ -309,14 +310,10 @@ export class Asset extends jspb.Message {
|
|
|
309
310
|
clearLastEnriched(): void;
|
|
310
311
|
getLastEnriched(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
311
312
|
setLastEnriched(value?: google_protobuf_timestamp_pb.Timestamp): Asset;
|
|
312
|
-
clearSourceTagList(): void;
|
|
313
|
-
getSourceTagList(): Array<string>;
|
|
314
|
-
setSourceTagList(value: Array<string>): Asset;
|
|
315
|
-
addSourceTag(value: string, index?: number): string;
|
|
316
313
|
clearTagList(): void;
|
|
317
|
-
getTagList(): Array<
|
|
318
|
-
setTagList(value: Array<
|
|
319
|
-
addTag(value
|
|
314
|
+
getTagList(): Array<Tag>;
|
|
315
|
+
setTagList(value: Array<Tag>): Asset;
|
|
316
|
+
addTag(value?: Tag, index?: number): Tag;
|
|
320
317
|
|
|
321
318
|
hasCore(): boolean;
|
|
322
319
|
clearCore(): void;
|
|
@@ -355,12 +352,21 @@ export class Asset extends jspb.Message {
|
|
|
355
352
|
getProcessorList(): Array<Processor>;
|
|
356
353
|
setProcessorList(value: Array<Processor>): Asset;
|
|
357
354
|
addProcessor(value?: Processor, index?: number): Processor;
|
|
355
|
+
clearChassisList(): void;
|
|
356
|
+
getChassisList(): Array<Chassis>;
|
|
357
|
+
setChassisList(value: Array<Chassis>): Asset;
|
|
358
|
+
addChassis(value?: Chassis, index?: number): Chassis;
|
|
358
359
|
|
|
359
360
|
hasOtModule(): boolean;
|
|
360
361
|
clearOtModule(): void;
|
|
361
362
|
getOtModule(): OtModule | undefined;
|
|
362
363
|
setOtModule(value?: OtModule): Asset;
|
|
363
364
|
|
|
365
|
+
hasCloud(): boolean;
|
|
366
|
+
clearCloud(): void;
|
|
367
|
+
getCloud(): CloudEntity | undefined;
|
|
368
|
+
setCloud(value?: CloudEntity): Asset;
|
|
369
|
+
|
|
364
370
|
serializeBinary(): Uint8Array;
|
|
365
371
|
toObject(includeInstance?: boolean): Asset.AsObject;
|
|
366
372
|
static toObject(includeInstance: boolean, msg: Asset): Asset.AsObject;
|
|
@@ -378,8 +384,7 @@ export namespace Asset {
|
|
|
378
384
|
firstSeen?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
379
385
|
lastUpdated?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
380
386
|
lastEnriched?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
381
|
-
|
|
382
|
-
tagList: Array<string>,
|
|
387
|
+
tagList: Array<Tag.AsObject>,
|
|
383
388
|
core?: CoreFields.AsObject,
|
|
384
389
|
hw?: HardwareInfo.AsObject,
|
|
385
390
|
os?: OperatingSystemInfo.AsObject,
|
|
@@ -388,7 +393,58 @@ export namespace Asset {
|
|
|
388
393
|
networkInterfaces?: NetworkInterfaces.AsObject,
|
|
389
394
|
osPatchList: Array<OperatingSystemPatch.AsObject>,
|
|
390
395
|
processorList: Array<Processor.AsObject>,
|
|
396
|
+
chassisList: Array<Chassis.AsObject>,
|
|
391
397
|
otModule?: OtModule.AsObject,
|
|
398
|
+
cloud?: CloudEntity.AsObject,
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
export class Tag extends jspb.Message {
|
|
403
|
+
getKey(): string;
|
|
404
|
+
setKey(value: string): Tag;
|
|
405
|
+
|
|
406
|
+
hasValue(): boolean;
|
|
407
|
+
clearValue(): void;
|
|
408
|
+
getValue(): string | undefined;
|
|
409
|
+
setValue(value: string): Tag;
|
|
410
|
+
|
|
411
|
+
serializeBinary(): Uint8Array;
|
|
412
|
+
toObject(includeInstance?: boolean): Tag.AsObject;
|
|
413
|
+
static toObject(includeInstance: boolean, msg: Tag): Tag.AsObject;
|
|
414
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
415
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
416
|
+
static serializeBinaryToWriter(message: Tag, writer: jspb.BinaryWriter): void;
|
|
417
|
+
static deserializeBinary(bytes: Uint8Array): Tag;
|
|
418
|
+
static deserializeBinaryFromReader(message: Tag, reader: jspb.BinaryReader): Tag;
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
export namespace Tag {
|
|
422
|
+
export type AsObject = {
|
|
423
|
+
key: string,
|
|
424
|
+
value?: string,
|
|
425
|
+
}
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
export class CloudEntity extends jspb.Message {
|
|
429
|
+
|
|
430
|
+
hasBody(): boolean;
|
|
431
|
+
clearBody(): void;
|
|
432
|
+
getBody(): google_protobuf_any_pb.Any | undefined;
|
|
433
|
+
setBody(value?: google_protobuf_any_pb.Any): CloudEntity;
|
|
434
|
+
|
|
435
|
+
serializeBinary(): Uint8Array;
|
|
436
|
+
toObject(includeInstance?: boolean): CloudEntity.AsObject;
|
|
437
|
+
static toObject(includeInstance: boolean, msg: CloudEntity): CloudEntity.AsObject;
|
|
438
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
439
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
440
|
+
static serializeBinaryToWriter(message: CloudEntity, writer: jspb.BinaryWriter): void;
|
|
441
|
+
static deserializeBinary(bytes: Uint8Array): CloudEntity;
|
|
442
|
+
static deserializeBinaryFromReader(message: CloudEntity, reader: jspb.BinaryReader): CloudEntity;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
export namespace CloudEntity {
|
|
446
|
+
export type AsObject = {
|
|
447
|
+
body?: google_protobuf_any_pb.Any.AsObject,
|
|
392
448
|
}
|
|
393
449
|
}
|
|
394
450
|
|
|
@@ -489,6 +545,11 @@ export class AssetType extends jspb.Message {
|
|
|
489
545
|
getFingType(): string | undefined;
|
|
490
546
|
setFingType(value: string): AssetType;
|
|
491
547
|
|
|
548
|
+
hasSubType(): boolean;
|
|
549
|
+
clearSubType(): void;
|
|
550
|
+
getSubType(): string | undefined;
|
|
551
|
+
setSubType(value: string): AssetType;
|
|
552
|
+
|
|
492
553
|
serializeBinary(): Uint8Array;
|
|
493
554
|
toObject(includeInstance?: boolean): AssetType.AsObject;
|
|
494
555
|
static toObject(includeInstance: boolean, msg: AssetType): AssetType.AsObject;
|
|
@@ -504,6 +565,7 @@ export namespace AssetType {
|
|
|
504
565
|
lsName: string,
|
|
505
566
|
lsId: number,
|
|
506
567
|
fingType?: string,
|
|
568
|
+
subType?: string,
|
|
507
569
|
}
|
|
508
570
|
}
|
|
509
571
|
|
|
@@ -1585,6 +1647,71 @@ export namespace Processor {
|
|
|
1585
1647
|
}
|
|
1586
1648
|
}
|
|
1587
1649
|
|
|
1650
|
+
export class Chassis extends jspb.Message {
|
|
1651
|
+
|
|
1652
|
+
hasType(): boolean;
|
|
1653
|
+
clearType(): void;
|
|
1654
|
+
getType(): MappedValue | undefined;
|
|
1655
|
+
setType(value?: MappedValue): Chassis;
|
|
1656
|
+
|
|
1657
|
+
hasChassisLockPresent(): boolean;
|
|
1658
|
+
clearChassisLockPresent(): void;
|
|
1659
|
+
getChassisLockPresent(): boolean | undefined;
|
|
1660
|
+
setChassisLockPresent(value: boolean): Chassis;
|
|
1661
|
+
|
|
1662
|
+
hasChassisManufacturer(): boolean;
|
|
1663
|
+
clearChassisManufacturer(): void;
|
|
1664
|
+
getChassisManufacturer(): string | undefined;
|
|
1665
|
+
setChassisManufacturer(value: string): Chassis;
|
|
1666
|
+
|
|
1667
|
+
hasChassisSecurityStatus(): boolean;
|
|
1668
|
+
clearChassisSecurityStatus(): void;
|
|
1669
|
+
getChassisSecurityStatus(): MappedValue | undefined;
|
|
1670
|
+
setChassisSecurityStatus(value?: MappedValue): Chassis;
|
|
1671
|
+
|
|
1672
|
+
hasChassisSerialNumber(): boolean;
|
|
1673
|
+
clearChassisSerialNumber(): void;
|
|
1674
|
+
getChassisSerialNumber(): string | undefined;
|
|
1675
|
+
setChassisSerialNumber(value: string): Chassis;
|
|
1676
|
+
|
|
1677
|
+
hasChassisAssetTag(): boolean;
|
|
1678
|
+
clearChassisAssetTag(): void;
|
|
1679
|
+
getChassisAssetTag(): string | undefined;
|
|
1680
|
+
setChassisAssetTag(value: string): Chassis;
|
|
1681
|
+
|
|
1682
|
+
hasChassisVersion(): boolean;
|
|
1683
|
+
clearChassisVersion(): void;
|
|
1684
|
+
getChassisVersion(): string | undefined;
|
|
1685
|
+
setChassisVersion(value: string): Chassis;
|
|
1686
|
+
|
|
1687
|
+
hasChassisBootupState(): boolean;
|
|
1688
|
+
clearChassisBootupState(): void;
|
|
1689
|
+
getChassisBootupState(): MappedValue | undefined;
|
|
1690
|
+
setChassisBootupState(value?: MappedValue): Chassis;
|
|
1691
|
+
|
|
1692
|
+
serializeBinary(): Uint8Array;
|
|
1693
|
+
toObject(includeInstance?: boolean): Chassis.AsObject;
|
|
1694
|
+
static toObject(includeInstance: boolean, msg: Chassis): Chassis.AsObject;
|
|
1695
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1696
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1697
|
+
static serializeBinaryToWriter(message: Chassis, writer: jspb.BinaryWriter): void;
|
|
1698
|
+
static deserializeBinary(bytes: Uint8Array): Chassis;
|
|
1699
|
+
static deserializeBinaryFromReader(message: Chassis, reader: jspb.BinaryReader): Chassis;
|
|
1700
|
+
}
|
|
1701
|
+
|
|
1702
|
+
export namespace Chassis {
|
|
1703
|
+
export type AsObject = {
|
|
1704
|
+
type?: MappedValue.AsObject,
|
|
1705
|
+
chassisLockPresent?: boolean,
|
|
1706
|
+
chassisManufacturer?: string,
|
|
1707
|
+
chassisSecurityStatus?: MappedValue.AsObject,
|
|
1708
|
+
chassisSerialNumber?: string,
|
|
1709
|
+
chassisAssetTag?: string,
|
|
1710
|
+
chassisVersion?: string,
|
|
1711
|
+
chassisBootupState?: MappedValue.AsObject,
|
|
1712
|
+
}
|
|
1713
|
+
}
|
|
1714
|
+
|
|
1588
1715
|
export class MappedValue extends jspb.Message {
|
|
1589
1716
|
getValue(): number;
|
|
1590
1717
|
setValue(value: number): MappedValue;
|