@lansweeper/data-platform-outbound-grpc 0.8.3 → 0.8.4
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 +4 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +72 -0
- package/gen-proto/outbound_pb.js +601 -1
- package/generated-go/outbound.pb.go +11786 -11621
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +15 -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/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 +15 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Asset.java +766 -323
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/AssetOrBuilder.java +44 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +3950 -3929
- 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 +4 -0
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +2 -0
- package/model/target/{outbound-model-0.8.2-sources.jar → outbound-model-0.8.3-sources.jar} +0 -0
- package/model/target/{outbound-model-0.8.2.jar → outbound-model-0.8.3.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +15 -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.3-sources.jar} +0 -0
- package/service/target/{outbound-service-0.8.2.jar → outbound-service-0.8.3.jar} +0 -0
|
@@ -792,6 +792,10 @@ export class Asset extends jspb.Message {
|
|
|
792
792
|
clearUniqueKey(): void;
|
|
793
793
|
getUniqueKey(): string | undefined;
|
|
794
794
|
setUniqueKey(value: string): Asset;
|
|
795
|
+
clearScanSectionList(): void;
|
|
796
|
+
getScanSectionList(): Array<ScanSection>;
|
|
797
|
+
setScanSectionList(value: Array<ScanSection>): Asset;
|
|
798
|
+
addScanSection(value?: ScanSection, index?: number): ScanSection;
|
|
795
799
|
clearScanErrorList(): void;
|
|
796
800
|
getScanErrorList(): Array<ScanError>;
|
|
797
801
|
setScanErrorList(value: Array<ScanError>): Asset;
|
|
@@ -961,6 +965,7 @@ export namespace Asset {
|
|
|
961
965
|
unlinkedSourceInfoList: Array<SourceInfo.AsObject>,
|
|
962
966
|
dataProcessorList: Array<DataProcessor.AsObject>,
|
|
963
967
|
uniqueKey?: string,
|
|
968
|
+
scanSectionList: Array<ScanSection.AsObject>,
|
|
964
969
|
scanErrorList: Array<ScanError.AsObject>,
|
|
965
970
|
internetIp?: IpInfo.AsObject,
|
|
966
971
|
tagList: Array<Tag.AsObject>,
|
|
@@ -3118,6 +3123,73 @@ export namespace ScanError {
|
|
|
3118
3123
|
}
|
|
3119
3124
|
}
|
|
3120
3125
|
|
|
3126
|
+
export class ScanSection extends jspb.Message {
|
|
3127
|
+
getKey(): number;
|
|
3128
|
+
setKey(value: number): ScanSection;
|
|
3129
|
+
|
|
3130
|
+
hasName(): boolean;
|
|
3131
|
+
clearName(): void;
|
|
3132
|
+
getName(): string | undefined;
|
|
3133
|
+
setName(value: string): ScanSection;
|
|
3134
|
+
|
|
3135
|
+
hasSource(): boolean;
|
|
3136
|
+
clearSource(): void;
|
|
3137
|
+
getSource(): string | undefined;
|
|
3138
|
+
setSource(value: string): ScanSection;
|
|
3139
|
+
|
|
3140
|
+
hasScanTime(): boolean;
|
|
3141
|
+
clearScanTime(): void;
|
|
3142
|
+
getScanTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
3143
|
+
setScanTime(value?: google_protobuf_timestamp_pb.Timestamp): ScanSection;
|
|
3144
|
+
|
|
3145
|
+
hasDuration(): boolean;
|
|
3146
|
+
clearDuration(): void;
|
|
3147
|
+
getDuration(): number | undefined;
|
|
3148
|
+
setDuration(value: number): ScanSection;
|
|
3149
|
+
clearErrorsList(): void;
|
|
3150
|
+
getErrorsList(): Array<string>;
|
|
3151
|
+
setErrorsList(value: Array<string>): ScanSection;
|
|
3152
|
+
addErrors(value: string, index?: number): string;
|
|
3153
|
+
|
|
3154
|
+
hasSuccess(): boolean;
|
|
3155
|
+
clearSuccess(): void;
|
|
3156
|
+
getSuccess(): boolean | undefined;
|
|
3157
|
+
setSuccess(value: boolean): ScanSection;
|
|
3158
|
+
|
|
3159
|
+
hasHash(): boolean;
|
|
3160
|
+
clearHash(): void;
|
|
3161
|
+
getHash(): string | undefined;
|
|
3162
|
+
setHash(value: string): ScanSection;
|
|
3163
|
+
|
|
3164
|
+
hasTimezone(): boolean;
|
|
3165
|
+
clearTimezone(): void;
|
|
3166
|
+
getTimezone(): string | undefined;
|
|
3167
|
+
setTimezone(value: string): ScanSection;
|
|
3168
|
+
|
|
3169
|
+
serializeBinary(): Uint8Array;
|
|
3170
|
+
toObject(includeInstance?: boolean): ScanSection.AsObject;
|
|
3171
|
+
static toObject(includeInstance: boolean, msg: ScanSection): ScanSection.AsObject;
|
|
3172
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3173
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3174
|
+
static serializeBinaryToWriter(message: ScanSection, writer: jspb.BinaryWriter): void;
|
|
3175
|
+
static deserializeBinary(bytes: Uint8Array): ScanSection;
|
|
3176
|
+
static deserializeBinaryFromReader(message: ScanSection, reader: jspb.BinaryReader): ScanSection;
|
|
3177
|
+
}
|
|
3178
|
+
|
|
3179
|
+
export namespace ScanSection {
|
|
3180
|
+
export type AsObject = {
|
|
3181
|
+
key: number,
|
|
3182
|
+
name?: string,
|
|
3183
|
+
source?: string,
|
|
3184
|
+
scanTime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
3185
|
+
duration?: number,
|
|
3186
|
+
errorsList: Array<string>,
|
|
3187
|
+
success?: boolean,
|
|
3188
|
+
hash?: string,
|
|
3189
|
+
timezone?: string,
|
|
3190
|
+
}
|
|
3191
|
+
}
|
|
3192
|
+
|
|
3121
3193
|
export class ScanCredential extends jspb.Message {
|
|
3122
3194
|
|
|
3123
3195
|
hasVaultType(): boolean;
|