@lansweeper/data-platform-outbound-grpc 0.1.68 → 0.1.69
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 +246 -0
- package/gen-proto/outbound_pb.js +1997 -0
- package/generated-go/outbound.pb.go +11120 -10455
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +65 -0
|
@@ -372,6 +372,16 @@ export class Asset extends jspb.Message {
|
|
|
372
372
|
getNetworkInterfaces(): NetworkInterfaces | undefined;
|
|
373
373
|
setNetworkInterfaces(value?: NetworkInterfaces): Asset;
|
|
374
374
|
|
|
375
|
+
hasNetworkProtocols(): boolean;
|
|
376
|
+
clearNetworkProtocols(): void;
|
|
377
|
+
getNetworkProtocols(): NetworkProtocols | undefined;
|
|
378
|
+
setNetworkProtocols(value?: NetworkProtocols): Asset;
|
|
379
|
+
|
|
380
|
+
hasPortScan(): boolean;
|
|
381
|
+
clearPortScan(): void;
|
|
382
|
+
getPortScan(): PortScan | undefined;
|
|
383
|
+
setPortScan(value?: PortScan): Asset;
|
|
384
|
+
|
|
375
385
|
hasSoftwareInventory(): boolean;
|
|
376
386
|
clearSoftwareInventory(): void;
|
|
377
387
|
getSoftwareInventory(): SoftwareInventory | undefined;
|
|
@@ -482,6 +492,8 @@ export namespace Asset {
|
|
|
482
492
|
os?: OperatingSystem.AsObject,
|
|
483
493
|
monitorInventory?: MonitorInventory.AsObject,
|
|
484
494
|
networkInterfaces?: NetworkInterfaces.AsObject,
|
|
495
|
+
networkProtocols?: NetworkProtocols.AsObject,
|
|
496
|
+
portScan?: PortScan.AsObject,
|
|
485
497
|
softwareInventory?: SoftwareInventory.AsObject,
|
|
486
498
|
antivirusList: Array<AntivirusSoftware.AsObject>,
|
|
487
499
|
osPatchList: Array<OperatingSystemPatch.AsObject>,
|
|
@@ -905,6 +917,11 @@ export class OtModule extends jspb.Message {
|
|
|
905
917
|
getIsNetworkNode(): boolean;
|
|
906
918
|
setIsNetworkNode(value: boolean): OtModule;
|
|
907
919
|
|
|
920
|
+
hasScanProtocol(): boolean;
|
|
921
|
+
clearScanProtocol(): void;
|
|
922
|
+
getScanProtocol(): string | undefined;
|
|
923
|
+
setScanProtocol(value: string): OtModule;
|
|
924
|
+
|
|
908
925
|
hasPartNumber(): boolean;
|
|
909
926
|
clearPartNumber(): void;
|
|
910
927
|
getPartNumber(): string | undefined;
|
|
@@ -935,6 +952,7 @@ export namespace OtModule {
|
|
|
935
952
|
rack?: OtRack.AsObject,
|
|
936
953
|
isMainModule: boolean,
|
|
937
954
|
isNetworkNode: boolean,
|
|
955
|
+
scanProtocol?: string,
|
|
938
956
|
partNumber?: string,
|
|
939
957
|
extInfoList: Array<OtModuleExtInfo.AsObject>,
|
|
940
958
|
routePath?: string,
|
|
@@ -2889,6 +2907,234 @@ export namespace NetIpAddress {
|
|
|
2889
2907
|
}
|
|
2890
2908
|
}
|
|
2891
2909
|
|
|
2910
|
+
export class NetworkProtocols extends jspb.Message {
|
|
2911
|
+
clearProtocolList(): void;
|
|
2912
|
+
getProtocolList(): Array<string>;
|
|
2913
|
+
setProtocolList(value: Array<string>): NetworkProtocols;
|
|
2914
|
+
addProtocol(value: string, index?: number): string;
|
|
2915
|
+
|
|
2916
|
+
serializeBinary(): Uint8Array;
|
|
2917
|
+
toObject(includeInstance?: boolean): NetworkProtocols.AsObject;
|
|
2918
|
+
static toObject(includeInstance: boolean, msg: NetworkProtocols): NetworkProtocols.AsObject;
|
|
2919
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2920
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2921
|
+
static serializeBinaryToWriter(message: NetworkProtocols, writer: jspb.BinaryWriter): void;
|
|
2922
|
+
static deserializeBinary(bytes: Uint8Array): NetworkProtocols;
|
|
2923
|
+
static deserializeBinaryFromReader(message: NetworkProtocols, reader: jspb.BinaryReader): NetworkProtocols;
|
|
2924
|
+
}
|
|
2925
|
+
|
|
2926
|
+
export namespace NetworkProtocols {
|
|
2927
|
+
export type AsObject = {
|
|
2928
|
+
protocolList: Array<string>,
|
|
2929
|
+
}
|
|
2930
|
+
}
|
|
2931
|
+
|
|
2932
|
+
export class PortScan extends jspb.Message {
|
|
2933
|
+
|
|
2934
|
+
hasTimestamp(): boolean;
|
|
2935
|
+
clearTimestamp(): void;
|
|
2936
|
+
getTimestamp(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
2937
|
+
setTimestamp(value?: google_protobuf_timestamp_pb.Timestamp): PortScan;
|
|
2938
|
+
clearScannedPortList(): void;
|
|
2939
|
+
getScannedPortList(): Array<ScannedPort>;
|
|
2940
|
+
setScannedPortList(value: Array<ScannedPort>): PortScan;
|
|
2941
|
+
addScannedPort(value?: ScannedPort, index?: number): ScannedPort;
|
|
2942
|
+
|
|
2943
|
+
serializeBinary(): Uint8Array;
|
|
2944
|
+
toObject(includeInstance?: boolean): PortScan.AsObject;
|
|
2945
|
+
static toObject(includeInstance: boolean, msg: PortScan): PortScan.AsObject;
|
|
2946
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2947
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2948
|
+
static serializeBinaryToWriter(message: PortScan, writer: jspb.BinaryWriter): void;
|
|
2949
|
+
static deserializeBinary(bytes: Uint8Array): PortScan;
|
|
2950
|
+
static deserializeBinaryFromReader(message: PortScan, reader: jspb.BinaryReader): PortScan;
|
|
2951
|
+
}
|
|
2952
|
+
|
|
2953
|
+
export namespace PortScan {
|
|
2954
|
+
export type AsObject = {
|
|
2955
|
+
timestamp?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
2956
|
+
scannedPortList: Array<ScannedPort.AsObject>,
|
|
2957
|
+
}
|
|
2958
|
+
}
|
|
2959
|
+
|
|
2960
|
+
export class ScannedPort extends jspb.Message {
|
|
2961
|
+
getProtocol(): string;
|
|
2962
|
+
setProtocol(value: string): ScannedPort;
|
|
2963
|
+
getPortNumber(): number;
|
|
2964
|
+
setPortNumber(value: number): ScannedPort;
|
|
2965
|
+
|
|
2966
|
+
hasLocalAddress(): boolean;
|
|
2967
|
+
clearLocalAddress(): void;
|
|
2968
|
+
getLocalAddress(): string | undefined;
|
|
2969
|
+
setLocalAddress(value: string): ScannedPort;
|
|
2970
|
+
|
|
2971
|
+
hasProcessName(): boolean;
|
|
2972
|
+
clearProcessName(): void;
|
|
2973
|
+
getProcessName(): string | undefined;
|
|
2974
|
+
setProcessName(value: string): ScannedPort;
|
|
2975
|
+
|
|
2976
|
+
hasBanner(): boolean;
|
|
2977
|
+
clearBanner(): void;
|
|
2978
|
+
getBanner(): string | undefined;
|
|
2979
|
+
setBanner(value: string): ScannedPort;
|
|
2980
|
+
|
|
2981
|
+
hasHttpServer(): boolean;
|
|
2982
|
+
clearHttpServer(): void;
|
|
2983
|
+
getHttpServer(): HttpServerInfo | undefined;
|
|
2984
|
+
setHttpServer(value?: HttpServerInfo): ScannedPort;
|
|
2985
|
+
|
|
2986
|
+
serializeBinary(): Uint8Array;
|
|
2987
|
+
toObject(includeInstance?: boolean): ScannedPort.AsObject;
|
|
2988
|
+
static toObject(includeInstance: boolean, msg: ScannedPort): ScannedPort.AsObject;
|
|
2989
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2990
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2991
|
+
static serializeBinaryToWriter(message: ScannedPort, writer: jspb.BinaryWriter): void;
|
|
2992
|
+
static deserializeBinary(bytes: Uint8Array): ScannedPort;
|
|
2993
|
+
static deserializeBinaryFromReader(message: ScannedPort, reader: jspb.BinaryReader): ScannedPort;
|
|
2994
|
+
}
|
|
2995
|
+
|
|
2996
|
+
export namespace ScannedPort {
|
|
2997
|
+
export type AsObject = {
|
|
2998
|
+
protocol: string,
|
|
2999
|
+
portNumber: number,
|
|
3000
|
+
localAddress?: string,
|
|
3001
|
+
processName?: string,
|
|
3002
|
+
banner?: string,
|
|
3003
|
+
httpServer?: HttpServerInfo.AsObject,
|
|
3004
|
+
}
|
|
3005
|
+
}
|
|
3006
|
+
|
|
3007
|
+
export class HttpServerInfo extends jspb.Message {
|
|
3008
|
+
getPort(): number;
|
|
3009
|
+
setPort(value: number): HttpServerInfo;
|
|
3010
|
+
|
|
3011
|
+
hasSsl(): boolean;
|
|
3012
|
+
clearSsl(): void;
|
|
3013
|
+
getSsl(): boolean | undefined;
|
|
3014
|
+
setSsl(value: boolean): HttpServerInfo;
|
|
3015
|
+
clearServerList(): void;
|
|
3016
|
+
getServerList(): Array<string>;
|
|
3017
|
+
setServerList(value: Array<string>): HttpServerInfo;
|
|
3018
|
+
addServer(value: string, index?: number): string;
|
|
3019
|
+
clearWwwauthList(): void;
|
|
3020
|
+
getWwwauthList(): Array<string>;
|
|
3021
|
+
setWwwauthList(value: Array<string>): HttpServerInfo;
|
|
3022
|
+
addWwwauth(value: string, index?: number): string;
|
|
3023
|
+
clearCookieList(): void;
|
|
3024
|
+
getCookieList(): Array<string>;
|
|
3025
|
+
setCookieList(value: Array<string>): HttpServerInfo;
|
|
3026
|
+
addCookie(value: string, index?: number): string;
|
|
3027
|
+
|
|
3028
|
+
hasTitle(): boolean;
|
|
3029
|
+
clearTitle(): void;
|
|
3030
|
+
getTitle(): string | undefined;
|
|
3031
|
+
setTitle(value: string): HttpServerInfo;
|
|
3032
|
+
|
|
3033
|
+
hasFaviconMd5(): boolean;
|
|
3034
|
+
clearFaviconMd5(): void;
|
|
3035
|
+
getFaviconMd5(): string | undefined;
|
|
3036
|
+
setFaviconMd5(value: string): HttpServerInfo;
|
|
3037
|
+
|
|
3038
|
+
hasFavicon(): boolean;
|
|
3039
|
+
clearFavicon(): void;
|
|
3040
|
+
getFavicon(): Uint8Array | string;
|
|
3041
|
+
getFavicon_asU8(): Uint8Array;
|
|
3042
|
+
getFavicon_asB64(): string;
|
|
3043
|
+
setFavicon(value: Uint8Array | string): HttpServerInfo;
|
|
3044
|
+
clearCertificatesList(): void;
|
|
3045
|
+
getCertificatesList(): Array<HttpCertificate>;
|
|
3046
|
+
setCertificatesList(value: Array<HttpCertificate>): HttpServerInfo;
|
|
3047
|
+
addCertificates(value?: HttpCertificate, index?: number): HttpCertificate;
|
|
3048
|
+
|
|
3049
|
+
serializeBinary(): Uint8Array;
|
|
3050
|
+
toObject(includeInstance?: boolean): HttpServerInfo.AsObject;
|
|
3051
|
+
static toObject(includeInstance: boolean, msg: HttpServerInfo): HttpServerInfo.AsObject;
|
|
3052
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3053
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3054
|
+
static serializeBinaryToWriter(message: HttpServerInfo, writer: jspb.BinaryWriter): void;
|
|
3055
|
+
static deserializeBinary(bytes: Uint8Array): HttpServerInfo;
|
|
3056
|
+
static deserializeBinaryFromReader(message: HttpServerInfo, reader: jspb.BinaryReader): HttpServerInfo;
|
|
3057
|
+
}
|
|
3058
|
+
|
|
3059
|
+
export namespace HttpServerInfo {
|
|
3060
|
+
export type AsObject = {
|
|
3061
|
+
port: number,
|
|
3062
|
+
ssl?: boolean,
|
|
3063
|
+
serverList: Array<string>,
|
|
3064
|
+
wwwauthList: Array<string>,
|
|
3065
|
+
cookieList: Array<string>,
|
|
3066
|
+
title?: string,
|
|
3067
|
+
faviconMd5?: string,
|
|
3068
|
+
favicon: Uint8Array | string,
|
|
3069
|
+
certificatesList: Array<HttpCertificate.AsObject>,
|
|
3070
|
+
}
|
|
3071
|
+
}
|
|
3072
|
+
|
|
3073
|
+
export class HttpCertificate extends jspb.Message {
|
|
3074
|
+
|
|
3075
|
+
hasThumbprint(): boolean;
|
|
3076
|
+
clearThumbprint(): void;
|
|
3077
|
+
getThumbprint(): string | undefined;
|
|
3078
|
+
setThumbprint(value: string): HttpCertificate;
|
|
3079
|
+
|
|
3080
|
+
hasSerialNumber(): boolean;
|
|
3081
|
+
clearSerialNumber(): void;
|
|
3082
|
+
getSerialNumber(): string | undefined;
|
|
3083
|
+
setSerialNumber(value: string): HttpCertificate;
|
|
3084
|
+
|
|
3085
|
+
hasX509Issuer(): boolean;
|
|
3086
|
+
clearX509Issuer(): void;
|
|
3087
|
+
getX509Issuer(): string | undefined;
|
|
3088
|
+
setX509Issuer(value: string): HttpCertificate;
|
|
3089
|
+
|
|
3090
|
+
hasX509Subject(): boolean;
|
|
3091
|
+
clearX509Subject(): void;
|
|
3092
|
+
getX509Subject(): string | undefined;
|
|
3093
|
+
setX509Subject(value: string): HttpCertificate;
|
|
3094
|
+
|
|
3095
|
+
hasEffectiveDate(): boolean;
|
|
3096
|
+
clearEffectiveDate(): void;
|
|
3097
|
+
getEffectiveDate(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
3098
|
+
setEffectiveDate(value?: google_protobuf_timestamp_pb.Timestamp): HttpCertificate;
|
|
3099
|
+
|
|
3100
|
+
hasExpirationDate(): boolean;
|
|
3101
|
+
clearExpirationDate(): void;
|
|
3102
|
+
getExpirationDate(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
3103
|
+
setExpirationDate(value?: google_protobuf_timestamp_pb.Timestamp): HttpCertificate;
|
|
3104
|
+
clearErrorsList(): void;
|
|
3105
|
+
getErrorsList(): Array<HttpCertificate.SslPolicyErrors>;
|
|
3106
|
+
setErrorsList(value: Array<HttpCertificate.SslPolicyErrors>): HttpCertificate;
|
|
3107
|
+
addErrors(value: HttpCertificate.SslPolicyErrors, index?: number): HttpCertificate.SslPolicyErrors;
|
|
3108
|
+
|
|
3109
|
+
serializeBinary(): Uint8Array;
|
|
3110
|
+
toObject(includeInstance?: boolean): HttpCertificate.AsObject;
|
|
3111
|
+
static toObject(includeInstance: boolean, msg: HttpCertificate): HttpCertificate.AsObject;
|
|
3112
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3113
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3114
|
+
static serializeBinaryToWriter(message: HttpCertificate, writer: jspb.BinaryWriter): void;
|
|
3115
|
+
static deserializeBinary(bytes: Uint8Array): HttpCertificate;
|
|
3116
|
+
static deserializeBinaryFromReader(message: HttpCertificate, reader: jspb.BinaryReader): HttpCertificate;
|
|
3117
|
+
}
|
|
3118
|
+
|
|
3119
|
+
export namespace HttpCertificate {
|
|
3120
|
+
export type AsObject = {
|
|
3121
|
+
thumbprint?: string,
|
|
3122
|
+
serialNumber?: string,
|
|
3123
|
+
x509Issuer?: string,
|
|
3124
|
+
x509Subject?: string,
|
|
3125
|
+
effectiveDate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
3126
|
+
expirationDate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
3127
|
+
errorsList: Array<HttpCertificate.SslPolicyErrors>,
|
|
3128
|
+
}
|
|
3129
|
+
|
|
3130
|
+
export enum SslPolicyErrors {
|
|
3131
|
+
SSL_REMOTE_CERTIFICATE_NOT_AVAILABLE = 0,
|
|
3132
|
+
SSL_REMOTE_CERTIFICATE_NAME_MISMATCH = 1,
|
|
3133
|
+
SSL_REMOTE_CERTIFICATE_CHAIN_ERRORS = 2,
|
|
3134
|
+
}
|
|
3135
|
+
|
|
3136
|
+
}
|
|
3137
|
+
|
|
2892
3138
|
export class Processor extends jspb.Message {
|
|
2893
3139
|
getName(): string;
|
|
2894
3140
|
setName(value: string): Processor;
|