@lansweeper/data-platform-outbound-grpc 0.8.3 → 0.8.5
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 +125 -0
- package/gen-proto/outbound_pb.js +1497 -469
- package/generated-go/outbound.pb.go +3971 -3661
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +29 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Asset$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Asset$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Asset.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/AssetOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/LegacyFields$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/LegacyFields$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/LegacyFields.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/LegacyFieldsOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ScanSection$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ScanSection$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ScanSection.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ScanSectionOrBuilder.class +0 -0
- package/model/target/classes/outbound.proto +29 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Asset.java +1111 -435
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/AssetOrBuilder.java +71 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/LegacyFields.java +1351 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/LegacyFieldsOrBuilder.java +85 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +4012 -3968
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ScanSection.java +1814 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ScanSectionOrBuilder.java +194 -0
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +8 -0
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +4 -0
- package/model/target/{outbound-model-0.8.2-sources.jar → outbound-model-0.8.4-sources.jar} +0 -0
- package/model/target/{outbound-model-0.8.2.jar → outbound-model-0.8.4.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +29 -0
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.8.2-sources.jar → outbound-service-0.8.4-sources.jar} +0 -0
- package/service/target/{outbound-service-0.8.2.jar → outbound-service-0.8.4.jar} +0 -0
|
@@ -766,6 +766,11 @@ export class Asset extends jspb.Message {
|
|
|
766
766
|
getLastEnriched(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
767
767
|
setLastEnriched(value?: google_protobuf_timestamp_pb.Timestamp): Asset;
|
|
768
768
|
|
|
769
|
+
hasLegacyFields(): boolean;
|
|
770
|
+
clearLegacyFields(): void;
|
|
771
|
+
getLegacyFields(): LegacyFields | undefined;
|
|
772
|
+
setLegacyFields(value?: LegacyFields): Asset;
|
|
773
|
+
|
|
769
774
|
hasLastSyncedSourceAgent(): boolean;
|
|
770
775
|
clearLastSyncedSourceAgent(): void;
|
|
771
776
|
getLastSyncedSourceAgent(): string | undefined;
|
|
@@ -792,6 +797,10 @@ export class Asset extends jspb.Message {
|
|
|
792
797
|
clearUniqueKey(): void;
|
|
793
798
|
getUniqueKey(): string | undefined;
|
|
794
799
|
setUniqueKey(value: string): Asset;
|
|
800
|
+
clearScanSectionList(): void;
|
|
801
|
+
getScanSectionList(): Array<ScanSection>;
|
|
802
|
+
setScanSectionList(value: Array<ScanSection>): Asset;
|
|
803
|
+
addScanSection(value?: ScanSection, index?: number): ScanSection;
|
|
795
804
|
clearScanErrorList(): void;
|
|
796
805
|
getScanErrorList(): Array<ScanError>;
|
|
797
806
|
setScanErrorList(value: Array<ScanError>): Asset;
|
|
@@ -955,12 +964,14 @@ export namespace Asset {
|
|
|
955
964
|
firstSeen?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
956
965
|
lastUpdated?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
957
966
|
lastEnriched?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
967
|
+
legacyFields?: LegacyFields.AsObject,
|
|
958
968
|
lastSyncedSourceAgent?: string,
|
|
959
969
|
lastSyncedSourceName?: string,
|
|
960
970
|
sourceInfoList: Array<SourceInfo.AsObject>,
|
|
961
971
|
unlinkedSourceInfoList: Array<SourceInfo.AsObject>,
|
|
962
972
|
dataProcessorList: Array<DataProcessor.AsObject>,
|
|
963
973
|
uniqueKey?: string,
|
|
974
|
+
scanSectionList: Array<ScanSection.AsObject>,
|
|
964
975
|
scanErrorList: Array<ScanError.AsObject>,
|
|
965
976
|
internetIp?: IpInfo.AsObject,
|
|
966
977
|
tagList: Array<Tag.AsObject>,
|
|
@@ -994,6 +1005,53 @@ export namespace Asset {
|
|
|
994
1005
|
}
|
|
995
1006
|
}
|
|
996
1007
|
|
|
1008
|
+
export class LegacyFields extends jspb.Message {
|
|
1009
|
+
|
|
1010
|
+
hasLastTried(): boolean;
|
|
1011
|
+
clearLastTried(): void;
|
|
1012
|
+
getLastTried(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
1013
|
+
setLastTried(value?: google_protobuf_timestamp_pb.Timestamp): LegacyFields;
|
|
1014
|
+
|
|
1015
|
+
hasLastActiveScan(): boolean;
|
|
1016
|
+
clearLastActiveScan(): void;
|
|
1017
|
+
getLastActiveScan(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
1018
|
+
setLastActiveScan(value?: google_protobuf_timestamp_pb.Timestamp): LegacyFields;
|
|
1019
|
+
|
|
1020
|
+
hasLastIpScan(): boolean;
|
|
1021
|
+
clearLastIpScan(): void;
|
|
1022
|
+
getLastIpScan(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
1023
|
+
setLastIpScan(value?: google_protobuf_timestamp_pb.Timestamp): LegacyFields;
|
|
1024
|
+
|
|
1025
|
+
hasLastSaved(): boolean;
|
|
1026
|
+
clearLastSaved(): void;
|
|
1027
|
+
getLastSaved(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
1028
|
+
setLastSaved(value?: google_protobuf_timestamp_pb.Timestamp): LegacyFields;
|
|
1029
|
+
|
|
1030
|
+
hasLastSccmScan(): boolean;
|
|
1031
|
+
clearLastSccmScan(): void;
|
|
1032
|
+
getLastSccmScan(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
1033
|
+
setLastSccmScan(value?: google_protobuf_timestamp_pb.Timestamp): LegacyFields;
|
|
1034
|
+
|
|
1035
|
+
serializeBinary(): Uint8Array;
|
|
1036
|
+
toObject(includeInstance?: boolean): LegacyFields.AsObject;
|
|
1037
|
+
static toObject(includeInstance: boolean, msg: LegacyFields): LegacyFields.AsObject;
|
|
1038
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1039
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1040
|
+
static serializeBinaryToWriter(message: LegacyFields, writer: jspb.BinaryWriter): void;
|
|
1041
|
+
static deserializeBinary(bytes: Uint8Array): LegacyFields;
|
|
1042
|
+
static deserializeBinaryFromReader(message: LegacyFields, reader: jspb.BinaryReader): LegacyFields;
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
export namespace LegacyFields {
|
|
1046
|
+
export type AsObject = {
|
|
1047
|
+
lastTried?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
1048
|
+
lastActiveScan?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
1049
|
+
lastIpScan?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
1050
|
+
lastSaved?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
1051
|
+
lastSccmScan?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
1052
|
+
}
|
|
1053
|
+
}
|
|
1054
|
+
|
|
997
1055
|
export class LockedFields extends jspb.Message {
|
|
998
1056
|
|
|
999
1057
|
hasAssetName(): boolean;
|
|
@@ -3118,6 +3176,73 @@ export namespace ScanError {
|
|
|
3118
3176
|
}
|
|
3119
3177
|
}
|
|
3120
3178
|
|
|
3179
|
+
export class ScanSection extends jspb.Message {
|
|
3180
|
+
getKey(): number;
|
|
3181
|
+
setKey(value: number): ScanSection;
|
|
3182
|
+
|
|
3183
|
+
hasName(): boolean;
|
|
3184
|
+
clearName(): void;
|
|
3185
|
+
getName(): string | undefined;
|
|
3186
|
+
setName(value: string): ScanSection;
|
|
3187
|
+
|
|
3188
|
+
hasSource(): boolean;
|
|
3189
|
+
clearSource(): void;
|
|
3190
|
+
getSource(): string | undefined;
|
|
3191
|
+
setSource(value: string): ScanSection;
|
|
3192
|
+
|
|
3193
|
+
hasScanTime(): boolean;
|
|
3194
|
+
clearScanTime(): void;
|
|
3195
|
+
getScanTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
3196
|
+
setScanTime(value?: google_protobuf_timestamp_pb.Timestamp): ScanSection;
|
|
3197
|
+
|
|
3198
|
+
hasDuration(): boolean;
|
|
3199
|
+
clearDuration(): void;
|
|
3200
|
+
getDuration(): number | undefined;
|
|
3201
|
+
setDuration(value: number): ScanSection;
|
|
3202
|
+
clearErrorsList(): void;
|
|
3203
|
+
getErrorsList(): Array<string>;
|
|
3204
|
+
setErrorsList(value: Array<string>): ScanSection;
|
|
3205
|
+
addErrors(value: string, index?: number): string;
|
|
3206
|
+
|
|
3207
|
+
hasSuccess(): boolean;
|
|
3208
|
+
clearSuccess(): void;
|
|
3209
|
+
getSuccess(): boolean | undefined;
|
|
3210
|
+
setSuccess(value: boolean): ScanSection;
|
|
3211
|
+
|
|
3212
|
+
hasHash(): boolean;
|
|
3213
|
+
clearHash(): void;
|
|
3214
|
+
getHash(): string | undefined;
|
|
3215
|
+
setHash(value: string): ScanSection;
|
|
3216
|
+
|
|
3217
|
+
hasTimezone(): boolean;
|
|
3218
|
+
clearTimezone(): void;
|
|
3219
|
+
getTimezone(): string | undefined;
|
|
3220
|
+
setTimezone(value: string): ScanSection;
|
|
3221
|
+
|
|
3222
|
+
serializeBinary(): Uint8Array;
|
|
3223
|
+
toObject(includeInstance?: boolean): ScanSection.AsObject;
|
|
3224
|
+
static toObject(includeInstance: boolean, msg: ScanSection): ScanSection.AsObject;
|
|
3225
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3226
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3227
|
+
static serializeBinaryToWriter(message: ScanSection, writer: jspb.BinaryWriter): void;
|
|
3228
|
+
static deserializeBinary(bytes: Uint8Array): ScanSection;
|
|
3229
|
+
static deserializeBinaryFromReader(message: ScanSection, reader: jspb.BinaryReader): ScanSection;
|
|
3230
|
+
}
|
|
3231
|
+
|
|
3232
|
+
export namespace ScanSection {
|
|
3233
|
+
export type AsObject = {
|
|
3234
|
+
key: number,
|
|
3235
|
+
name?: string,
|
|
3236
|
+
source?: string,
|
|
3237
|
+
scanTime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
3238
|
+
duration?: number,
|
|
3239
|
+
errorsList: Array<string>,
|
|
3240
|
+
success?: boolean,
|
|
3241
|
+
hash?: string,
|
|
3242
|
+
timezone?: string,
|
|
3243
|
+
}
|
|
3244
|
+
}
|
|
3245
|
+
|
|
3121
3246
|
export class ScanCredential extends jspb.Message {
|
|
3122
3247
|
|
|
3123
3248
|
hasVaultType(): boolean;
|