@lansweeper/data-platform-outbound-grpc 0.1.40 → 0.1.41
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 +112 -0
- package/gen-proto/outbound_pb.js +996 -110
- package/generated-go/outbound.pb.go +2038 -1766
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +33 -3
|
@@ -329,6 +329,11 @@ export class Asset extends jspb.Message {
|
|
|
329
329
|
getCore(): CoreFields | undefined;
|
|
330
330
|
setCore(value?: CoreFields): Asset;
|
|
331
331
|
|
|
332
|
+
hasInternetIp(): boolean;
|
|
333
|
+
clearInternetIp(): void;
|
|
334
|
+
getInternetIp(): IpInfo | undefined;
|
|
335
|
+
setInternetIp(value?: IpInfo): Asset;
|
|
336
|
+
|
|
332
337
|
hasHw(): boolean;
|
|
333
338
|
clearHw(): void;
|
|
334
339
|
getHw(): HardwareInfo | undefined;
|
|
@@ -405,6 +410,11 @@ export class Asset extends jspb.Message {
|
|
|
405
410
|
setPointingDeviceList(value: Array<PointingDevice>): Asset;
|
|
406
411
|
addPointingDevice(value?: PointingDevice, index?: number): PointingDevice;
|
|
407
412
|
|
|
413
|
+
hasLastUser(): boolean;
|
|
414
|
+
clearLastUser(): void;
|
|
415
|
+
getLastUser(): LastUser | undefined;
|
|
416
|
+
setLastUser(value?: LastUser): Asset;
|
|
417
|
+
|
|
408
418
|
hasOtModule(): boolean;
|
|
409
419
|
clearOtModule(): void;
|
|
410
420
|
getOtModule(): OtModule | undefined;
|
|
@@ -436,6 +446,7 @@ export namespace Asset {
|
|
|
436
446
|
tagList: Array<Tag.AsObject>,
|
|
437
447
|
relationList: Array<Relation.AsObject>,
|
|
438
448
|
core?: CoreFields.AsObject,
|
|
449
|
+
internetIp?: IpInfo.AsObject,
|
|
439
450
|
hw?: HardwareInfo.AsObject,
|
|
440
451
|
os?: OperatingSystem.AsObject,
|
|
441
452
|
softwareInventory?: SoftwareInventory.AsObject,
|
|
@@ -453,6 +464,7 @@ export namespace Asset {
|
|
|
453
464
|
soundCardList: Array<SoundCard.AsObject>,
|
|
454
465
|
keyboardList: Array<Keyboard.AsObject>,
|
|
455
466
|
pointingDeviceList: Array<PointingDevice.AsObject>,
|
|
467
|
+
lastUser?: LastUser.AsObject,
|
|
456
468
|
otModule?: OtModule.AsObject,
|
|
457
469
|
cloud?: CloudEntity.AsObject,
|
|
458
470
|
}
|
|
@@ -705,6 +717,11 @@ export class CoreFields extends jspb.Message {
|
|
|
705
717
|
getSensorId(): string | undefined;
|
|
706
718
|
setSensorId(value: string): CoreFields;
|
|
707
719
|
|
|
720
|
+
hasFqdn(): boolean;
|
|
721
|
+
clearFqdn(): void;
|
|
722
|
+
getFqdn(): string | undefined;
|
|
723
|
+
setFqdn(value: string): CoreFields;
|
|
724
|
+
|
|
708
725
|
serializeBinary(): Uint8Array;
|
|
709
726
|
toObject(includeInstance?: boolean): CoreFields.AsObject;
|
|
710
727
|
static toObject(includeInstance: boolean, msg: CoreFields): CoreFields.AsObject;
|
|
@@ -725,6 +742,33 @@ export namespace CoreFields {
|
|
|
725
742
|
mac?: string,
|
|
726
743
|
macVendor?: string,
|
|
727
744
|
sensorId?: string,
|
|
745
|
+
fqdn?: string,
|
|
746
|
+
}
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
export class LastUser extends jspb.Message {
|
|
750
|
+
getUserName(): string;
|
|
751
|
+
setUserName(value: string): LastUser;
|
|
752
|
+
|
|
753
|
+
hasUserType(): boolean;
|
|
754
|
+
clearUserType(): void;
|
|
755
|
+
getUserType(): string | undefined;
|
|
756
|
+
setUserType(value: string): LastUser;
|
|
757
|
+
|
|
758
|
+
serializeBinary(): Uint8Array;
|
|
759
|
+
toObject(includeInstance?: boolean): LastUser.AsObject;
|
|
760
|
+
static toObject(includeInstance: boolean, msg: LastUser): LastUser.AsObject;
|
|
761
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
762
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
763
|
+
static serializeBinaryToWriter(message: LastUser, writer: jspb.BinaryWriter): void;
|
|
764
|
+
static deserializeBinary(bytes: Uint8Array): LastUser;
|
|
765
|
+
static deserializeBinaryFromReader(message: LastUser, reader: jspb.BinaryReader): LastUser;
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
export namespace LastUser {
|
|
769
|
+
export type AsObject = {
|
|
770
|
+
userName: string,
|
|
771
|
+
userType?: string,
|
|
728
772
|
}
|
|
729
773
|
}
|
|
730
774
|
|
|
@@ -863,6 +907,16 @@ export class SpecHardwareInfo extends jspb.Message {
|
|
|
863
907
|
getSerialNumber(): string | undefined;
|
|
864
908
|
setSerialNumber(value: string): SpecHardwareInfo;
|
|
865
909
|
|
|
910
|
+
hasSystemSku(): boolean;
|
|
911
|
+
clearSystemSku(): void;
|
|
912
|
+
getSystemSku(): string | undefined;
|
|
913
|
+
setSystemSku(value: string): SpecHardwareInfo;
|
|
914
|
+
|
|
915
|
+
hasUptime(): boolean;
|
|
916
|
+
clearUptime(): void;
|
|
917
|
+
getUptime(): number | undefined;
|
|
918
|
+
setUptime(value: number): SpecHardwareInfo;
|
|
919
|
+
|
|
866
920
|
serializeBinary(): Uint8Array;
|
|
867
921
|
toObject(includeInstance?: boolean): SpecHardwareInfo.AsObject;
|
|
868
922
|
static toObject(includeInstance: boolean, msg: SpecHardwareInfo): SpecHardwareInfo.AsObject;
|
|
@@ -879,6 +933,8 @@ export namespace SpecHardwareInfo {
|
|
|
879
933
|
model?: string,
|
|
880
934
|
manufacturer?: string,
|
|
881
935
|
serialNumber?: string,
|
|
936
|
+
systemSku?: string,
|
|
937
|
+
uptime?: number,
|
|
882
938
|
}
|
|
883
939
|
}
|
|
884
940
|
|
|
@@ -3070,6 +3126,62 @@ export namespace AntivirusSoftware {
|
|
|
3070
3126
|
}
|
|
3071
3127
|
}
|
|
3072
3128
|
|
|
3129
|
+
export class IpInfo extends jspb.Message {
|
|
3130
|
+
getAddress(): string;
|
|
3131
|
+
setAddress(value: string): IpInfo;
|
|
3132
|
+
|
|
3133
|
+
hasHostname(): boolean;
|
|
3134
|
+
clearHostname(): void;
|
|
3135
|
+
getHostname(): string | undefined;
|
|
3136
|
+
setHostname(value: string): IpInfo;
|
|
3137
|
+
|
|
3138
|
+
hasCountryCode(): boolean;
|
|
3139
|
+
clearCountryCode(): void;
|
|
3140
|
+
getCountryCode(): string | undefined;
|
|
3141
|
+
setCountryCode(value: string): IpInfo;
|
|
3142
|
+
|
|
3143
|
+
hasRegionCode(): boolean;
|
|
3144
|
+
clearRegionCode(): void;
|
|
3145
|
+
getRegionCode(): string | undefined;
|
|
3146
|
+
setRegionCode(value: string): IpInfo;
|
|
3147
|
+
|
|
3148
|
+
hasCountryCity(): boolean;
|
|
3149
|
+
clearCountryCity(): void;
|
|
3150
|
+
getCountryCity(): string | undefined;
|
|
3151
|
+
setCountryCity(value: string): IpInfo;
|
|
3152
|
+
|
|
3153
|
+
hasIsp(): boolean;
|
|
3154
|
+
clearIsp(): void;
|
|
3155
|
+
getIsp(): string | undefined;
|
|
3156
|
+
setIsp(value: string): IpInfo;
|
|
3157
|
+
|
|
3158
|
+
hasOrganization(): boolean;
|
|
3159
|
+
clearOrganization(): void;
|
|
3160
|
+
getOrganization(): string | undefined;
|
|
3161
|
+
setOrganization(value: string): IpInfo;
|
|
3162
|
+
|
|
3163
|
+
serializeBinary(): Uint8Array;
|
|
3164
|
+
toObject(includeInstance?: boolean): IpInfo.AsObject;
|
|
3165
|
+
static toObject(includeInstance: boolean, msg: IpInfo): IpInfo.AsObject;
|
|
3166
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3167
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3168
|
+
static serializeBinaryToWriter(message: IpInfo, writer: jspb.BinaryWriter): void;
|
|
3169
|
+
static deserializeBinary(bytes: Uint8Array): IpInfo;
|
|
3170
|
+
static deserializeBinaryFromReader(message: IpInfo, reader: jspb.BinaryReader): IpInfo;
|
|
3171
|
+
}
|
|
3172
|
+
|
|
3173
|
+
export namespace IpInfo {
|
|
3174
|
+
export type AsObject = {
|
|
3175
|
+
address: string,
|
|
3176
|
+
hostname?: string,
|
|
3177
|
+
countryCode?: string,
|
|
3178
|
+
regionCode?: string,
|
|
3179
|
+
countryCity?: string,
|
|
3180
|
+
isp?: string,
|
|
3181
|
+
organization?: string,
|
|
3182
|
+
}
|
|
3183
|
+
}
|
|
3184
|
+
|
|
3073
3185
|
export class SoftwareInventory extends jspb.Message {
|
|
3074
3186
|
|
|
3075
3187
|
hasTimestamp(): boolean;
|