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