@lansweeper/data-platform-outbound-grpc 0.1.13 → 0.1.15
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 +164 -0
- package/gen-proto/outbound_pb.js +1486 -115
- package/generated-go/outbound.pb.go +1385 -961
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +54 -0
|
@@ -309,6 +309,10 @@ export class Asset extends jspb.Message {
|
|
|
309
309
|
clearLastEnriched(): void;
|
|
310
310
|
getLastEnriched(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
311
311
|
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;
|
|
312
316
|
|
|
313
317
|
hasCore(): boolean;
|
|
314
318
|
clearCore(): void;
|
|
@@ -335,6 +339,11 @@ export class Asset extends jspb.Message {
|
|
|
335
339
|
getMonitorInventory(): MonitorInventory | undefined;
|
|
336
340
|
setMonitorInventory(value?: MonitorInventory): Asset;
|
|
337
341
|
|
|
342
|
+
hasNetworkInterfaces(): boolean;
|
|
343
|
+
clearNetworkInterfaces(): void;
|
|
344
|
+
getNetworkInterfaces(): NetworkInterfaces | undefined;
|
|
345
|
+
setNetworkInterfaces(value?: NetworkInterfaces): Asset;
|
|
346
|
+
|
|
338
347
|
serializeBinary(): Uint8Array;
|
|
339
348
|
toObject(includeInstance?: boolean): Asset.AsObject;
|
|
340
349
|
static toObject(includeInstance: boolean, msg: Asset): Asset.AsObject;
|
|
@@ -352,11 +361,13 @@ export namespace Asset {
|
|
|
352
361
|
firstSeen?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
353
362
|
lastUpdated?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
354
363
|
lastEnriched?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
364
|
+
sourceTagList: Array<string>,
|
|
355
365
|
core?: CoreFields.AsObject,
|
|
356
366
|
hw?: HardwareInfo.AsObject,
|
|
357
367
|
os?: OperatingSystemInfo.AsObject,
|
|
358
368
|
softwareInventory?: SoftwareInventory.AsObject,
|
|
359
369
|
monitorInventory?: MonitorInventory.AsObject,
|
|
370
|
+
networkInterfaces?: NetworkInterfaces.AsObject,
|
|
360
371
|
}
|
|
361
372
|
}
|
|
362
373
|
|
|
@@ -749,6 +760,153 @@ export namespace WindowsRawOperatingSystemInfo {
|
|
|
749
760
|
}
|
|
750
761
|
}
|
|
751
762
|
|
|
763
|
+
export class NetworkInterfaces extends jspb.Message {
|
|
764
|
+
|
|
765
|
+
hasTimestamp(): boolean;
|
|
766
|
+
clearTimestamp(): void;
|
|
767
|
+
getTimestamp(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
768
|
+
setTimestamp(value?: google_protobuf_timestamp_pb.Timestamp): NetworkInterfaces;
|
|
769
|
+
clearInterfaceList(): void;
|
|
770
|
+
getInterfaceList(): Array<NetworkInterface>;
|
|
771
|
+
setInterfaceList(value: Array<NetworkInterface>): NetworkInterfaces;
|
|
772
|
+
addInterface(value?: NetworkInterface, index?: number): NetworkInterface;
|
|
773
|
+
|
|
774
|
+
serializeBinary(): Uint8Array;
|
|
775
|
+
toObject(includeInstance?: boolean): NetworkInterfaces.AsObject;
|
|
776
|
+
static toObject(includeInstance: boolean, msg: NetworkInterfaces): NetworkInterfaces.AsObject;
|
|
777
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
778
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
779
|
+
static serializeBinaryToWriter(message: NetworkInterfaces, writer: jspb.BinaryWriter): void;
|
|
780
|
+
static deserializeBinary(bytes: Uint8Array): NetworkInterfaces;
|
|
781
|
+
static deserializeBinaryFromReader(message: NetworkInterfaces, reader: jspb.BinaryReader): NetworkInterfaces;
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
export namespace NetworkInterfaces {
|
|
785
|
+
export type AsObject = {
|
|
786
|
+
timestamp?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
787
|
+
pb_interfaceList: Array<NetworkInterface.AsObject>,
|
|
788
|
+
}
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
export class NetworkInterface extends jspb.Message {
|
|
792
|
+
getName(): string;
|
|
793
|
+
setName(value: string): NetworkInterface;
|
|
794
|
+
getType(): string;
|
|
795
|
+
setType(value: string): NetworkInterface;
|
|
796
|
+
getSubType(): string;
|
|
797
|
+
setSubType(value: string): NetworkInterface;
|
|
798
|
+
|
|
799
|
+
hasId(): boolean;
|
|
800
|
+
clearId(): void;
|
|
801
|
+
getId(): string | undefined;
|
|
802
|
+
setId(value: string): NetworkInterface;
|
|
803
|
+
|
|
804
|
+
hasMac(): boolean;
|
|
805
|
+
clearMac(): void;
|
|
806
|
+
getMac(): string | undefined;
|
|
807
|
+
setMac(value: string): NetworkInterface;
|
|
808
|
+
|
|
809
|
+
hasDhcpEnabled(): boolean;
|
|
810
|
+
clearDhcpEnabled(): void;
|
|
811
|
+
getDhcpEnabled(): boolean | undefined;
|
|
812
|
+
setDhcpEnabled(value: boolean): NetworkInterface;
|
|
813
|
+
|
|
814
|
+
hasDhcpServerIp(): boolean;
|
|
815
|
+
clearDhcpServerIp(): void;
|
|
816
|
+
getDhcpServerIp(): string | undefined;
|
|
817
|
+
setDhcpServerIp(value: string): NetworkInterface;
|
|
818
|
+
clearIpList(): void;
|
|
819
|
+
getIpList(): Array<NetIpAddress>;
|
|
820
|
+
setIpList(value: Array<NetIpAddress>): NetworkInterface;
|
|
821
|
+
addIp(value?: NetIpAddress, index?: number): NetIpAddress;
|
|
822
|
+
|
|
823
|
+
hasGatewayIp(): boolean;
|
|
824
|
+
clearGatewayIp(): void;
|
|
825
|
+
getGatewayIp(): string | undefined;
|
|
826
|
+
setGatewayIp(value: string): NetworkInterface;
|
|
827
|
+
|
|
828
|
+
hasGatewayMac(): boolean;
|
|
829
|
+
clearGatewayMac(): void;
|
|
830
|
+
getGatewayMac(): string | undefined;
|
|
831
|
+
setGatewayMac(value: string): NetworkInterface;
|
|
832
|
+
clearDnsServerList(): void;
|
|
833
|
+
getDnsServerList(): Array<string>;
|
|
834
|
+
setDnsServerList(value: Array<string>): NetworkInterface;
|
|
835
|
+
addDnsServer(value: string, index?: number): string;
|
|
836
|
+
|
|
837
|
+
hasDnsHostName(): boolean;
|
|
838
|
+
clearDnsHostName(): void;
|
|
839
|
+
getDnsHostName(): string | undefined;
|
|
840
|
+
setDnsHostName(value: string): NetworkInterface;
|
|
841
|
+
|
|
842
|
+
hasDnsDomainSuffixSearchOrder(): boolean;
|
|
843
|
+
clearDnsDomainSuffixSearchOrder(): void;
|
|
844
|
+
getDnsDomainSuffixSearchOrder(): string | undefined;
|
|
845
|
+
setDnsDomainSuffixSearchOrder(value: string): NetworkInterface;
|
|
846
|
+
|
|
847
|
+
hasServiceName(): boolean;
|
|
848
|
+
clearServiceName(): void;
|
|
849
|
+
getServiceName(): string | undefined;
|
|
850
|
+
setServiceName(value: string): NetworkInterface;
|
|
851
|
+
|
|
852
|
+
hasDatabasePath(): boolean;
|
|
853
|
+
clearDatabasePath(): void;
|
|
854
|
+
getDatabasePath(): string | undefined;
|
|
855
|
+
setDatabasePath(value: string): NetworkInterface;
|
|
856
|
+
|
|
857
|
+
serializeBinary(): Uint8Array;
|
|
858
|
+
toObject(includeInstance?: boolean): NetworkInterface.AsObject;
|
|
859
|
+
static toObject(includeInstance: boolean, msg: NetworkInterface): NetworkInterface.AsObject;
|
|
860
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
861
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
862
|
+
static serializeBinaryToWriter(message: NetworkInterface, writer: jspb.BinaryWriter): void;
|
|
863
|
+
static deserializeBinary(bytes: Uint8Array): NetworkInterface;
|
|
864
|
+
static deserializeBinaryFromReader(message: NetworkInterface, reader: jspb.BinaryReader): NetworkInterface;
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
export namespace NetworkInterface {
|
|
868
|
+
export type AsObject = {
|
|
869
|
+
name: string,
|
|
870
|
+
type: string,
|
|
871
|
+
subType: string,
|
|
872
|
+
id?: string,
|
|
873
|
+
mac?: string,
|
|
874
|
+
dhcpEnabled?: boolean,
|
|
875
|
+
dhcpServerIp?: string,
|
|
876
|
+
ipList: Array<NetIpAddress.AsObject>,
|
|
877
|
+
gatewayIp?: string,
|
|
878
|
+
gatewayMac?: string,
|
|
879
|
+
dnsServerList: Array<string>,
|
|
880
|
+
dnsHostName?: string,
|
|
881
|
+
dnsDomainSuffixSearchOrder?: string,
|
|
882
|
+
serviceName?: string,
|
|
883
|
+
databasePath?: string,
|
|
884
|
+
}
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
export class NetIpAddress extends jspb.Message {
|
|
888
|
+
getIp(): string;
|
|
889
|
+
setIp(value: string): NetIpAddress;
|
|
890
|
+
getSubnet(): string;
|
|
891
|
+
setSubnet(value: string): NetIpAddress;
|
|
892
|
+
|
|
893
|
+
serializeBinary(): Uint8Array;
|
|
894
|
+
toObject(includeInstance?: boolean): NetIpAddress.AsObject;
|
|
895
|
+
static toObject(includeInstance: boolean, msg: NetIpAddress): NetIpAddress.AsObject;
|
|
896
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
897
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
898
|
+
static serializeBinaryToWriter(message: NetIpAddress, writer: jspb.BinaryWriter): void;
|
|
899
|
+
static deserializeBinary(bytes: Uint8Array): NetIpAddress;
|
|
900
|
+
static deserializeBinaryFromReader(message: NetIpAddress, reader: jspb.BinaryReader): NetIpAddress;
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
export namespace NetIpAddress {
|
|
904
|
+
export type AsObject = {
|
|
905
|
+
ip: string,
|
|
906
|
+
subnet: string,
|
|
907
|
+
}
|
|
908
|
+
}
|
|
909
|
+
|
|
752
910
|
export class MonitorInventory extends jspb.Message {
|
|
753
911
|
|
|
754
912
|
hasTimestamp(): boolean;
|
|
@@ -1240,6 +1398,11 @@ export class CatalogBrand extends jspb.Message {
|
|
|
1240
1398
|
getPinterestAccount(): string | undefined;
|
|
1241
1399
|
setPinterestAccount(value: string): CatalogBrand;
|
|
1242
1400
|
|
|
1401
|
+
hasTiktokAccount(): boolean;
|
|
1402
|
+
clearTiktokAccount(): void;
|
|
1403
|
+
getTiktokAccount(): string | undefined;
|
|
1404
|
+
setTiktokAccount(value: string): CatalogBrand;
|
|
1405
|
+
|
|
1243
1406
|
hasClassHardware(): boolean;
|
|
1244
1407
|
clearClassHardware(): void;
|
|
1245
1408
|
getClassHardware(): boolean | undefined;
|
|
@@ -1308,6 +1471,7 @@ export namespace CatalogBrand {
|
|
|
1308
1471
|
instagramAccount?: string,
|
|
1309
1472
|
youtubeAccount?: string,
|
|
1310
1473
|
pinterestAccount?: string,
|
|
1474
|
+
tiktokAccount?: string,
|
|
1311
1475
|
classHardware?: boolean,
|
|
1312
1476
|
classSoftware?: boolean,
|
|
1313
1477
|
classConsumer?: boolean,
|