@lansweeper/data-platform-outbound-grpc 0.13.1 → 0.14.0
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 +6 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +45 -0
- package/gen-proto/outbound_pb.js +369 -2
- package/generated-go/outbound.pb.go +14074 -13945
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +10 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/AiDetection$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/AiDetection$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/AiDetection$MetadataDefaultEntryHolder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/AiDetection.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/AiDetectionOrBuilder.class +0 -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/outbound.proto +10 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ActiveDirectoryComputer.java +9 -9
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ActiveDirectoryComputerOrBuilder.java +3 -3
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/AiDetection.java +1307 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/AiDetectionOrBuilder.java +100 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Asset.java +443 -0
- 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 +4120 -4090
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +5 -0
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +2 -0
- package/model/target/{outbound-model-0.13.0-sources.jar → outbound-model-0.13.1-sources.jar} +0 -0
- package/model/target/{outbound-model-0.13.0.jar → outbound-model-0.13.1.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +10 -0
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.13.0-sources.jar → outbound-service-0.13.1-sources.jar} +0 -0
- package/service/target/{outbound-service-0.13.0.jar → outbound-service-0.13.1.jar} +0 -0
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
2
|
+
// source: outbound.proto
|
|
3
|
+
|
|
4
|
+
// Protobuf Java Version: 3.25.1
|
|
5
|
+
package com.lansweeper.dp.outbound.v1;
|
|
6
|
+
|
|
7
|
+
public interface AiDetectionOrBuilder extends
|
|
8
|
+
// @@protoc_insertion_point(interface_extends:com.lansweeper.dp.outbound.v1.AiDetection)
|
|
9
|
+
com.google.protobuf.MessageOrBuilder {
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* <code>string category = 1;</code>
|
|
13
|
+
* @return The category.
|
|
14
|
+
*/
|
|
15
|
+
java.lang.String getCategory();
|
|
16
|
+
/**
|
|
17
|
+
* <code>string category = 1;</code>
|
|
18
|
+
* @return The bytes for category.
|
|
19
|
+
*/
|
|
20
|
+
com.google.protobuf.ByteString
|
|
21
|
+
getCategoryBytes();
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* <code>optional string source = 2;</code>
|
|
25
|
+
* @return Whether the source field is set.
|
|
26
|
+
*/
|
|
27
|
+
boolean hasSource();
|
|
28
|
+
/**
|
|
29
|
+
* <code>optional string source = 2;</code>
|
|
30
|
+
* @return The source.
|
|
31
|
+
*/
|
|
32
|
+
java.lang.String getSource();
|
|
33
|
+
/**
|
|
34
|
+
* <code>optional string source = 2;</code>
|
|
35
|
+
* @return The bytes for source.
|
|
36
|
+
*/
|
|
37
|
+
com.google.protobuf.ByteString
|
|
38
|
+
getSourceBytes();
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* <code>string trigger = 3;</code>
|
|
42
|
+
* @return The trigger.
|
|
43
|
+
*/
|
|
44
|
+
java.lang.String getTrigger();
|
|
45
|
+
/**
|
|
46
|
+
* <code>string trigger = 3;</code>
|
|
47
|
+
* @return The bytes for trigger.
|
|
48
|
+
*/
|
|
49
|
+
com.google.protobuf.ByteString
|
|
50
|
+
getTriggerBytes();
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* <code>.google.protobuf.Timestamp timestamp = 4;</code>
|
|
54
|
+
* @return Whether the timestamp field is set.
|
|
55
|
+
*/
|
|
56
|
+
boolean hasTimestamp();
|
|
57
|
+
/**
|
|
58
|
+
* <code>.google.protobuf.Timestamp timestamp = 4;</code>
|
|
59
|
+
* @return The timestamp.
|
|
60
|
+
*/
|
|
61
|
+
com.google.protobuf.Timestamp getTimestamp();
|
|
62
|
+
/**
|
|
63
|
+
* <code>.google.protobuf.Timestamp timestamp = 4;</code>
|
|
64
|
+
*/
|
|
65
|
+
com.google.protobuf.TimestampOrBuilder getTimestampOrBuilder();
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* <code>map<string, string> metadata = 5;</code>
|
|
69
|
+
*/
|
|
70
|
+
int getMetadataCount();
|
|
71
|
+
/**
|
|
72
|
+
* <code>map<string, string> metadata = 5;</code>
|
|
73
|
+
*/
|
|
74
|
+
boolean containsMetadata(
|
|
75
|
+
java.lang.String key);
|
|
76
|
+
/**
|
|
77
|
+
* Use {@link #getMetadataMap()} instead.
|
|
78
|
+
*/
|
|
79
|
+
@java.lang.Deprecated
|
|
80
|
+
java.util.Map<java.lang.String, java.lang.String>
|
|
81
|
+
getMetadata();
|
|
82
|
+
/**
|
|
83
|
+
* <code>map<string, string> metadata = 5;</code>
|
|
84
|
+
*/
|
|
85
|
+
java.util.Map<java.lang.String, java.lang.String>
|
|
86
|
+
getMetadataMap();
|
|
87
|
+
/**
|
|
88
|
+
* <code>map<string, string> metadata = 5;</code>
|
|
89
|
+
*/
|
|
90
|
+
/* nullable */
|
|
91
|
+
java.lang.String getMetadataOrDefault(
|
|
92
|
+
java.lang.String key,
|
|
93
|
+
/* nullable */
|
|
94
|
+
java.lang.String defaultValue);
|
|
95
|
+
/**
|
|
96
|
+
* <code>map<string, string> metadata = 5;</code>
|
|
97
|
+
*/
|
|
98
|
+
java.lang.String getMetadataOrThrow(
|
|
99
|
+
java.lang.String key);
|
|
100
|
+
}
|
package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Asset.java
CHANGED
|
@@ -33,6 +33,7 @@ private static final long serialVersionUID = 0L;
|
|
|
33
33
|
relation_ = java.util.Collections.emptyList();
|
|
34
34
|
warrantyInfo_ = java.util.Collections.emptyList();
|
|
35
35
|
changeLog_ = java.util.Collections.emptyList();
|
|
36
|
+
aiDetections_ = java.util.Collections.emptyList();
|
|
36
37
|
}
|
|
37
38
|
|
|
38
39
|
@java.lang.Override
|
|
@@ -1630,6 +1631,67 @@ private static final long serialVersionUID = 0L;
|
|
|
1630
1631
|
return manualAssetLockedFields_ == null ? com.lansweeper.dp.outbound.v1.LockedFields.getDefaultInstance() : manualAssetLockedFields_;
|
|
1631
1632
|
}
|
|
1632
1633
|
|
|
1634
|
+
public static final int AI_DETECTIONS_FIELD_NUMBER = 99;
|
|
1635
|
+
@SuppressWarnings("serial")
|
|
1636
|
+
private java.util.List<com.lansweeper.dp.outbound.v1.AiDetection> aiDetections_;
|
|
1637
|
+
/**
|
|
1638
|
+
* <pre>
|
|
1639
|
+
* AI scan results from LS Discovery
|
|
1640
|
+
* </pre>
|
|
1641
|
+
*
|
|
1642
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.AiDetection ai_detections = 99;</code>
|
|
1643
|
+
*/
|
|
1644
|
+
@java.lang.Override
|
|
1645
|
+
public java.util.List<com.lansweeper.dp.outbound.v1.AiDetection> getAiDetectionsList() {
|
|
1646
|
+
return aiDetections_;
|
|
1647
|
+
}
|
|
1648
|
+
/**
|
|
1649
|
+
* <pre>
|
|
1650
|
+
* AI scan results from LS Discovery
|
|
1651
|
+
* </pre>
|
|
1652
|
+
*
|
|
1653
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.AiDetection ai_detections = 99;</code>
|
|
1654
|
+
*/
|
|
1655
|
+
@java.lang.Override
|
|
1656
|
+
public java.util.List<? extends com.lansweeper.dp.outbound.v1.AiDetectionOrBuilder>
|
|
1657
|
+
getAiDetectionsOrBuilderList() {
|
|
1658
|
+
return aiDetections_;
|
|
1659
|
+
}
|
|
1660
|
+
/**
|
|
1661
|
+
* <pre>
|
|
1662
|
+
* AI scan results from LS Discovery
|
|
1663
|
+
* </pre>
|
|
1664
|
+
*
|
|
1665
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.AiDetection ai_detections = 99;</code>
|
|
1666
|
+
*/
|
|
1667
|
+
@java.lang.Override
|
|
1668
|
+
public int getAiDetectionsCount() {
|
|
1669
|
+
return aiDetections_.size();
|
|
1670
|
+
}
|
|
1671
|
+
/**
|
|
1672
|
+
* <pre>
|
|
1673
|
+
* AI scan results from LS Discovery
|
|
1674
|
+
* </pre>
|
|
1675
|
+
*
|
|
1676
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.AiDetection ai_detections = 99;</code>
|
|
1677
|
+
*/
|
|
1678
|
+
@java.lang.Override
|
|
1679
|
+
public com.lansweeper.dp.outbound.v1.AiDetection getAiDetections(int index) {
|
|
1680
|
+
return aiDetections_.get(index);
|
|
1681
|
+
}
|
|
1682
|
+
/**
|
|
1683
|
+
* <pre>
|
|
1684
|
+
* AI scan results from LS Discovery
|
|
1685
|
+
* </pre>
|
|
1686
|
+
*
|
|
1687
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.AiDetection ai_detections = 99;</code>
|
|
1688
|
+
*/
|
|
1689
|
+
@java.lang.Override
|
|
1690
|
+
public com.lansweeper.dp.outbound.v1.AiDetectionOrBuilder getAiDetectionsOrBuilder(
|
|
1691
|
+
int index) {
|
|
1692
|
+
return aiDetections_.get(index);
|
|
1693
|
+
}
|
|
1694
|
+
|
|
1633
1695
|
private byte memoizedIsInitialized = -1;
|
|
1634
1696
|
@java.lang.Override
|
|
1635
1697
|
public final boolean isInitialized() {
|
|
@@ -1767,6 +1829,9 @@ private static final long serialVersionUID = 0L;
|
|
|
1767
1829
|
if (((bitField0_ & 0x00800000) != 0)) {
|
|
1768
1830
|
output.writeMessage(98, getHyperVHost());
|
|
1769
1831
|
}
|
|
1832
|
+
for (int i = 0; i < aiDetections_.size(); i++) {
|
|
1833
|
+
output.writeMessage(99, aiDetections_.get(i));
|
|
1834
|
+
}
|
|
1770
1835
|
for (int i = 0; i < scanSection_.size(); i++) {
|
|
1771
1836
|
output.writeMessage(306, scanSection_.get(i));
|
|
1772
1837
|
}
|
|
@@ -1943,6 +2008,10 @@ private static final long serialVersionUID = 0L;
|
|
|
1943
2008
|
size += com.google.protobuf.CodedOutputStream
|
|
1944
2009
|
.computeMessageSize(98, getHyperVHost());
|
|
1945
2010
|
}
|
|
2011
|
+
for (int i = 0; i < aiDetections_.size(); i++) {
|
|
2012
|
+
size += com.google.protobuf.CodedOutputStream
|
|
2013
|
+
.computeMessageSize(99, aiDetections_.get(i));
|
|
2014
|
+
}
|
|
1946
2015
|
for (int i = 0; i < scanSection_.size(); i++) {
|
|
1947
2016
|
size += com.google.protobuf.CodedOutputStream
|
|
1948
2017
|
.computeMessageSize(306, scanSection_.get(i));
|
|
@@ -2154,6 +2223,8 @@ private static final long serialVersionUID = 0L;
|
|
|
2154
2223
|
if (!getManualAssetLockedFields()
|
|
2155
2224
|
.equals(other.getManualAssetLockedFields())) return false;
|
|
2156
2225
|
}
|
|
2226
|
+
if (!getAiDetectionsList()
|
|
2227
|
+
.equals(other.getAiDetectionsList())) return false;
|
|
2157
2228
|
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
|
|
2158
2229
|
return true;
|
|
2159
2230
|
}
|
|
@@ -2337,6 +2408,10 @@ private static final long serialVersionUID = 0L;
|
|
|
2337
2408
|
hash = (37 * hash) + MANUAL_ASSET_LOCKED_FIELDS_FIELD_NUMBER;
|
|
2338
2409
|
hash = (53 * hash) + getManualAssetLockedFields().hashCode();
|
|
2339
2410
|
}
|
|
2411
|
+
if (getAiDetectionsCount() > 0) {
|
|
2412
|
+
hash = (37 * hash) + AI_DETECTIONS_FIELD_NUMBER;
|
|
2413
|
+
hash = (53 * hash) + getAiDetectionsList().hashCode();
|
|
2414
|
+
}
|
|
2340
2415
|
hash = (29 * hash) + getUnknownFields().hashCode();
|
|
2341
2416
|
memoizedHashCode = hash;
|
|
2342
2417
|
return hash;
|
|
@@ -2511,6 +2586,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2511
2586
|
getOffice365OrganizationFieldBuilder();
|
|
2512
2587
|
getCitrixFieldBuilder();
|
|
2513
2588
|
getManualAssetLockedFieldsFieldBuilder();
|
|
2589
|
+
getAiDetectionsFieldBuilder();
|
|
2514
2590
|
}
|
|
2515
2591
|
}
|
|
2516
2592
|
@java.lang.Override
|
|
@@ -2739,6 +2815,13 @@ private static final long serialVersionUID = 0L;
|
|
|
2739
2815
|
manualAssetLockedFieldsBuilder_.dispose();
|
|
2740
2816
|
manualAssetLockedFieldsBuilder_ = null;
|
|
2741
2817
|
}
|
|
2818
|
+
if (aiDetectionsBuilder_ == null) {
|
|
2819
|
+
aiDetections_ = java.util.Collections.emptyList();
|
|
2820
|
+
} else {
|
|
2821
|
+
aiDetections_ = null;
|
|
2822
|
+
aiDetectionsBuilder_.clear();
|
|
2823
|
+
}
|
|
2824
|
+
bitField1_ = (bitField1_ & ~0x00000800);
|
|
2742
2825
|
return this;
|
|
2743
2826
|
}
|
|
2744
2827
|
|
|
@@ -2854,6 +2937,15 @@ private static final long serialVersionUID = 0L;
|
|
|
2854
2937
|
} else {
|
|
2855
2938
|
result.changeLog_ = changeLogBuilder_.build();
|
|
2856
2939
|
}
|
|
2940
|
+
if (aiDetectionsBuilder_ == null) {
|
|
2941
|
+
if (((bitField1_ & 0x00000800) != 0)) {
|
|
2942
|
+
aiDetections_ = java.util.Collections.unmodifiableList(aiDetections_);
|
|
2943
|
+
bitField1_ = (bitField1_ & ~0x00000800);
|
|
2944
|
+
}
|
|
2945
|
+
result.aiDetections_ = aiDetections_;
|
|
2946
|
+
} else {
|
|
2947
|
+
result.aiDetections_ = aiDetectionsBuilder_.build();
|
|
2948
|
+
}
|
|
2857
2949
|
}
|
|
2858
2950
|
|
|
2859
2951
|
private void buildPartial0(com.lansweeper.dp.outbound.v1.Asset result) {
|
|
@@ -3454,6 +3546,32 @@ private static final long serialVersionUID = 0L;
|
|
|
3454
3546
|
if (other.hasManualAssetLockedFields()) {
|
|
3455
3547
|
mergeManualAssetLockedFields(other.getManualAssetLockedFields());
|
|
3456
3548
|
}
|
|
3549
|
+
if (aiDetectionsBuilder_ == null) {
|
|
3550
|
+
if (!other.aiDetections_.isEmpty()) {
|
|
3551
|
+
if (aiDetections_.isEmpty()) {
|
|
3552
|
+
aiDetections_ = other.aiDetections_;
|
|
3553
|
+
bitField1_ = (bitField1_ & ~0x00000800);
|
|
3554
|
+
} else {
|
|
3555
|
+
ensureAiDetectionsIsMutable();
|
|
3556
|
+
aiDetections_.addAll(other.aiDetections_);
|
|
3557
|
+
}
|
|
3558
|
+
onChanged();
|
|
3559
|
+
}
|
|
3560
|
+
} else {
|
|
3561
|
+
if (!other.aiDetections_.isEmpty()) {
|
|
3562
|
+
if (aiDetectionsBuilder_.isEmpty()) {
|
|
3563
|
+
aiDetectionsBuilder_.dispose();
|
|
3564
|
+
aiDetectionsBuilder_ = null;
|
|
3565
|
+
aiDetections_ = other.aiDetections_;
|
|
3566
|
+
bitField1_ = (bitField1_ & ~0x00000800);
|
|
3567
|
+
aiDetectionsBuilder_ =
|
|
3568
|
+
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
|
|
3569
|
+
getAiDetectionsFieldBuilder() : null;
|
|
3570
|
+
} else {
|
|
3571
|
+
aiDetectionsBuilder_.addAllMessages(other.aiDetections_);
|
|
3572
|
+
}
|
|
3573
|
+
}
|
|
3574
|
+
}
|
|
3457
3575
|
this.mergeUnknownFields(other.getUnknownFields());
|
|
3458
3576
|
onChanged();
|
|
3459
3577
|
return this;
|
|
@@ -3809,6 +3927,19 @@ private static final long serialVersionUID = 0L;
|
|
|
3809
3927
|
bitField0_ |= 0x80000000;
|
|
3810
3928
|
break;
|
|
3811
3929
|
} // case 786
|
|
3930
|
+
case 794: {
|
|
3931
|
+
com.lansweeper.dp.outbound.v1.AiDetection m =
|
|
3932
|
+
input.readMessage(
|
|
3933
|
+
com.lansweeper.dp.outbound.v1.AiDetection.parser(),
|
|
3934
|
+
extensionRegistry);
|
|
3935
|
+
if (aiDetectionsBuilder_ == null) {
|
|
3936
|
+
ensureAiDetectionsIsMutable();
|
|
3937
|
+
aiDetections_.add(m);
|
|
3938
|
+
} else {
|
|
3939
|
+
aiDetectionsBuilder_.addMessage(m);
|
|
3940
|
+
}
|
|
3941
|
+
break;
|
|
3942
|
+
} // case 794
|
|
3812
3943
|
case 2450: {
|
|
3813
3944
|
com.lansweeper.dp.outbound.v1.ScanSection m =
|
|
3814
3945
|
input.readMessage(
|
|
@@ -10792,6 +10923,318 @@ private static final long serialVersionUID = 0L;
|
|
|
10792
10923
|
}
|
|
10793
10924
|
return manualAssetLockedFieldsBuilder_;
|
|
10794
10925
|
}
|
|
10926
|
+
|
|
10927
|
+
private java.util.List<com.lansweeper.dp.outbound.v1.AiDetection> aiDetections_ =
|
|
10928
|
+
java.util.Collections.emptyList();
|
|
10929
|
+
private void ensureAiDetectionsIsMutable() {
|
|
10930
|
+
if (!((bitField1_ & 0x00000800) != 0)) {
|
|
10931
|
+
aiDetections_ = new java.util.ArrayList<com.lansweeper.dp.outbound.v1.AiDetection>(aiDetections_);
|
|
10932
|
+
bitField1_ |= 0x00000800;
|
|
10933
|
+
}
|
|
10934
|
+
}
|
|
10935
|
+
|
|
10936
|
+
private com.google.protobuf.RepeatedFieldBuilderV3<
|
|
10937
|
+
com.lansweeper.dp.outbound.v1.AiDetection, com.lansweeper.dp.outbound.v1.AiDetection.Builder, com.lansweeper.dp.outbound.v1.AiDetectionOrBuilder> aiDetectionsBuilder_;
|
|
10938
|
+
|
|
10939
|
+
/**
|
|
10940
|
+
* <pre>
|
|
10941
|
+
* AI scan results from LS Discovery
|
|
10942
|
+
* </pre>
|
|
10943
|
+
*
|
|
10944
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.AiDetection ai_detections = 99;</code>
|
|
10945
|
+
*/
|
|
10946
|
+
public java.util.List<com.lansweeper.dp.outbound.v1.AiDetection> getAiDetectionsList() {
|
|
10947
|
+
if (aiDetectionsBuilder_ == null) {
|
|
10948
|
+
return java.util.Collections.unmodifiableList(aiDetections_);
|
|
10949
|
+
} else {
|
|
10950
|
+
return aiDetectionsBuilder_.getMessageList();
|
|
10951
|
+
}
|
|
10952
|
+
}
|
|
10953
|
+
/**
|
|
10954
|
+
* <pre>
|
|
10955
|
+
* AI scan results from LS Discovery
|
|
10956
|
+
* </pre>
|
|
10957
|
+
*
|
|
10958
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.AiDetection ai_detections = 99;</code>
|
|
10959
|
+
*/
|
|
10960
|
+
public int getAiDetectionsCount() {
|
|
10961
|
+
if (aiDetectionsBuilder_ == null) {
|
|
10962
|
+
return aiDetections_.size();
|
|
10963
|
+
} else {
|
|
10964
|
+
return aiDetectionsBuilder_.getCount();
|
|
10965
|
+
}
|
|
10966
|
+
}
|
|
10967
|
+
/**
|
|
10968
|
+
* <pre>
|
|
10969
|
+
* AI scan results from LS Discovery
|
|
10970
|
+
* </pre>
|
|
10971
|
+
*
|
|
10972
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.AiDetection ai_detections = 99;</code>
|
|
10973
|
+
*/
|
|
10974
|
+
public com.lansweeper.dp.outbound.v1.AiDetection getAiDetections(int index) {
|
|
10975
|
+
if (aiDetectionsBuilder_ == null) {
|
|
10976
|
+
return aiDetections_.get(index);
|
|
10977
|
+
} else {
|
|
10978
|
+
return aiDetectionsBuilder_.getMessage(index);
|
|
10979
|
+
}
|
|
10980
|
+
}
|
|
10981
|
+
/**
|
|
10982
|
+
* <pre>
|
|
10983
|
+
* AI scan results from LS Discovery
|
|
10984
|
+
* </pre>
|
|
10985
|
+
*
|
|
10986
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.AiDetection ai_detections = 99;</code>
|
|
10987
|
+
*/
|
|
10988
|
+
public Builder setAiDetections(
|
|
10989
|
+
int index, com.lansweeper.dp.outbound.v1.AiDetection value) {
|
|
10990
|
+
if (aiDetectionsBuilder_ == null) {
|
|
10991
|
+
if (value == null) {
|
|
10992
|
+
throw new NullPointerException();
|
|
10993
|
+
}
|
|
10994
|
+
ensureAiDetectionsIsMutable();
|
|
10995
|
+
aiDetections_.set(index, value);
|
|
10996
|
+
onChanged();
|
|
10997
|
+
} else {
|
|
10998
|
+
aiDetectionsBuilder_.setMessage(index, value);
|
|
10999
|
+
}
|
|
11000
|
+
return this;
|
|
11001
|
+
}
|
|
11002
|
+
/**
|
|
11003
|
+
* <pre>
|
|
11004
|
+
* AI scan results from LS Discovery
|
|
11005
|
+
* </pre>
|
|
11006
|
+
*
|
|
11007
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.AiDetection ai_detections = 99;</code>
|
|
11008
|
+
*/
|
|
11009
|
+
public Builder setAiDetections(
|
|
11010
|
+
int index, com.lansweeper.dp.outbound.v1.AiDetection.Builder builderForValue) {
|
|
11011
|
+
if (aiDetectionsBuilder_ == null) {
|
|
11012
|
+
ensureAiDetectionsIsMutable();
|
|
11013
|
+
aiDetections_.set(index, builderForValue.build());
|
|
11014
|
+
onChanged();
|
|
11015
|
+
} else {
|
|
11016
|
+
aiDetectionsBuilder_.setMessage(index, builderForValue.build());
|
|
11017
|
+
}
|
|
11018
|
+
return this;
|
|
11019
|
+
}
|
|
11020
|
+
/**
|
|
11021
|
+
* <pre>
|
|
11022
|
+
* AI scan results from LS Discovery
|
|
11023
|
+
* </pre>
|
|
11024
|
+
*
|
|
11025
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.AiDetection ai_detections = 99;</code>
|
|
11026
|
+
*/
|
|
11027
|
+
public Builder addAiDetections(com.lansweeper.dp.outbound.v1.AiDetection value) {
|
|
11028
|
+
if (aiDetectionsBuilder_ == null) {
|
|
11029
|
+
if (value == null) {
|
|
11030
|
+
throw new NullPointerException();
|
|
11031
|
+
}
|
|
11032
|
+
ensureAiDetectionsIsMutable();
|
|
11033
|
+
aiDetections_.add(value);
|
|
11034
|
+
onChanged();
|
|
11035
|
+
} else {
|
|
11036
|
+
aiDetectionsBuilder_.addMessage(value);
|
|
11037
|
+
}
|
|
11038
|
+
return this;
|
|
11039
|
+
}
|
|
11040
|
+
/**
|
|
11041
|
+
* <pre>
|
|
11042
|
+
* AI scan results from LS Discovery
|
|
11043
|
+
* </pre>
|
|
11044
|
+
*
|
|
11045
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.AiDetection ai_detections = 99;</code>
|
|
11046
|
+
*/
|
|
11047
|
+
public Builder addAiDetections(
|
|
11048
|
+
int index, com.lansweeper.dp.outbound.v1.AiDetection value) {
|
|
11049
|
+
if (aiDetectionsBuilder_ == null) {
|
|
11050
|
+
if (value == null) {
|
|
11051
|
+
throw new NullPointerException();
|
|
11052
|
+
}
|
|
11053
|
+
ensureAiDetectionsIsMutable();
|
|
11054
|
+
aiDetections_.add(index, value);
|
|
11055
|
+
onChanged();
|
|
11056
|
+
} else {
|
|
11057
|
+
aiDetectionsBuilder_.addMessage(index, value);
|
|
11058
|
+
}
|
|
11059
|
+
return this;
|
|
11060
|
+
}
|
|
11061
|
+
/**
|
|
11062
|
+
* <pre>
|
|
11063
|
+
* AI scan results from LS Discovery
|
|
11064
|
+
* </pre>
|
|
11065
|
+
*
|
|
11066
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.AiDetection ai_detections = 99;</code>
|
|
11067
|
+
*/
|
|
11068
|
+
public Builder addAiDetections(
|
|
11069
|
+
com.lansweeper.dp.outbound.v1.AiDetection.Builder builderForValue) {
|
|
11070
|
+
if (aiDetectionsBuilder_ == null) {
|
|
11071
|
+
ensureAiDetectionsIsMutable();
|
|
11072
|
+
aiDetections_.add(builderForValue.build());
|
|
11073
|
+
onChanged();
|
|
11074
|
+
} else {
|
|
11075
|
+
aiDetectionsBuilder_.addMessage(builderForValue.build());
|
|
11076
|
+
}
|
|
11077
|
+
return this;
|
|
11078
|
+
}
|
|
11079
|
+
/**
|
|
11080
|
+
* <pre>
|
|
11081
|
+
* AI scan results from LS Discovery
|
|
11082
|
+
* </pre>
|
|
11083
|
+
*
|
|
11084
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.AiDetection ai_detections = 99;</code>
|
|
11085
|
+
*/
|
|
11086
|
+
public Builder addAiDetections(
|
|
11087
|
+
int index, com.lansweeper.dp.outbound.v1.AiDetection.Builder builderForValue) {
|
|
11088
|
+
if (aiDetectionsBuilder_ == null) {
|
|
11089
|
+
ensureAiDetectionsIsMutable();
|
|
11090
|
+
aiDetections_.add(index, builderForValue.build());
|
|
11091
|
+
onChanged();
|
|
11092
|
+
} else {
|
|
11093
|
+
aiDetectionsBuilder_.addMessage(index, builderForValue.build());
|
|
11094
|
+
}
|
|
11095
|
+
return this;
|
|
11096
|
+
}
|
|
11097
|
+
/**
|
|
11098
|
+
* <pre>
|
|
11099
|
+
* AI scan results from LS Discovery
|
|
11100
|
+
* </pre>
|
|
11101
|
+
*
|
|
11102
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.AiDetection ai_detections = 99;</code>
|
|
11103
|
+
*/
|
|
11104
|
+
public Builder addAllAiDetections(
|
|
11105
|
+
java.lang.Iterable<? extends com.lansweeper.dp.outbound.v1.AiDetection> values) {
|
|
11106
|
+
if (aiDetectionsBuilder_ == null) {
|
|
11107
|
+
ensureAiDetectionsIsMutable();
|
|
11108
|
+
com.google.protobuf.AbstractMessageLite.Builder.addAll(
|
|
11109
|
+
values, aiDetections_);
|
|
11110
|
+
onChanged();
|
|
11111
|
+
} else {
|
|
11112
|
+
aiDetectionsBuilder_.addAllMessages(values);
|
|
11113
|
+
}
|
|
11114
|
+
return this;
|
|
11115
|
+
}
|
|
11116
|
+
/**
|
|
11117
|
+
* <pre>
|
|
11118
|
+
* AI scan results from LS Discovery
|
|
11119
|
+
* </pre>
|
|
11120
|
+
*
|
|
11121
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.AiDetection ai_detections = 99;</code>
|
|
11122
|
+
*/
|
|
11123
|
+
public Builder clearAiDetections() {
|
|
11124
|
+
if (aiDetectionsBuilder_ == null) {
|
|
11125
|
+
aiDetections_ = java.util.Collections.emptyList();
|
|
11126
|
+
bitField1_ = (bitField1_ & ~0x00000800);
|
|
11127
|
+
onChanged();
|
|
11128
|
+
} else {
|
|
11129
|
+
aiDetectionsBuilder_.clear();
|
|
11130
|
+
}
|
|
11131
|
+
return this;
|
|
11132
|
+
}
|
|
11133
|
+
/**
|
|
11134
|
+
* <pre>
|
|
11135
|
+
* AI scan results from LS Discovery
|
|
11136
|
+
* </pre>
|
|
11137
|
+
*
|
|
11138
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.AiDetection ai_detections = 99;</code>
|
|
11139
|
+
*/
|
|
11140
|
+
public Builder removeAiDetections(int index) {
|
|
11141
|
+
if (aiDetectionsBuilder_ == null) {
|
|
11142
|
+
ensureAiDetectionsIsMutable();
|
|
11143
|
+
aiDetections_.remove(index);
|
|
11144
|
+
onChanged();
|
|
11145
|
+
} else {
|
|
11146
|
+
aiDetectionsBuilder_.remove(index);
|
|
11147
|
+
}
|
|
11148
|
+
return this;
|
|
11149
|
+
}
|
|
11150
|
+
/**
|
|
11151
|
+
* <pre>
|
|
11152
|
+
* AI scan results from LS Discovery
|
|
11153
|
+
* </pre>
|
|
11154
|
+
*
|
|
11155
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.AiDetection ai_detections = 99;</code>
|
|
11156
|
+
*/
|
|
11157
|
+
public com.lansweeper.dp.outbound.v1.AiDetection.Builder getAiDetectionsBuilder(
|
|
11158
|
+
int index) {
|
|
11159
|
+
return getAiDetectionsFieldBuilder().getBuilder(index);
|
|
11160
|
+
}
|
|
11161
|
+
/**
|
|
11162
|
+
* <pre>
|
|
11163
|
+
* AI scan results from LS Discovery
|
|
11164
|
+
* </pre>
|
|
11165
|
+
*
|
|
11166
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.AiDetection ai_detections = 99;</code>
|
|
11167
|
+
*/
|
|
11168
|
+
public com.lansweeper.dp.outbound.v1.AiDetectionOrBuilder getAiDetectionsOrBuilder(
|
|
11169
|
+
int index) {
|
|
11170
|
+
if (aiDetectionsBuilder_ == null) {
|
|
11171
|
+
return aiDetections_.get(index); } else {
|
|
11172
|
+
return aiDetectionsBuilder_.getMessageOrBuilder(index);
|
|
11173
|
+
}
|
|
11174
|
+
}
|
|
11175
|
+
/**
|
|
11176
|
+
* <pre>
|
|
11177
|
+
* AI scan results from LS Discovery
|
|
11178
|
+
* </pre>
|
|
11179
|
+
*
|
|
11180
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.AiDetection ai_detections = 99;</code>
|
|
11181
|
+
*/
|
|
11182
|
+
public java.util.List<? extends com.lansweeper.dp.outbound.v1.AiDetectionOrBuilder>
|
|
11183
|
+
getAiDetectionsOrBuilderList() {
|
|
11184
|
+
if (aiDetectionsBuilder_ != null) {
|
|
11185
|
+
return aiDetectionsBuilder_.getMessageOrBuilderList();
|
|
11186
|
+
} else {
|
|
11187
|
+
return java.util.Collections.unmodifiableList(aiDetections_);
|
|
11188
|
+
}
|
|
11189
|
+
}
|
|
11190
|
+
/**
|
|
11191
|
+
* <pre>
|
|
11192
|
+
* AI scan results from LS Discovery
|
|
11193
|
+
* </pre>
|
|
11194
|
+
*
|
|
11195
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.AiDetection ai_detections = 99;</code>
|
|
11196
|
+
*/
|
|
11197
|
+
public com.lansweeper.dp.outbound.v1.AiDetection.Builder addAiDetectionsBuilder() {
|
|
11198
|
+
return getAiDetectionsFieldBuilder().addBuilder(
|
|
11199
|
+
com.lansweeper.dp.outbound.v1.AiDetection.getDefaultInstance());
|
|
11200
|
+
}
|
|
11201
|
+
/**
|
|
11202
|
+
* <pre>
|
|
11203
|
+
* AI scan results from LS Discovery
|
|
11204
|
+
* </pre>
|
|
11205
|
+
*
|
|
11206
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.AiDetection ai_detections = 99;</code>
|
|
11207
|
+
*/
|
|
11208
|
+
public com.lansweeper.dp.outbound.v1.AiDetection.Builder addAiDetectionsBuilder(
|
|
11209
|
+
int index) {
|
|
11210
|
+
return getAiDetectionsFieldBuilder().addBuilder(
|
|
11211
|
+
index, com.lansweeper.dp.outbound.v1.AiDetection.getDefaultInstance());
|
|
11212
|
+
}
|
|
11213
|
+
/**
|
|
11214
|
+
* <pre>
|
|
11215
|
+
* AI scan results from LS Discovery
|
|
11216
|
+
* </pre>
|
|
11217
|
+
*
|
|
11218
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.AiDetection ai_detections = 99;</code>
|
|
11219
|
+
*/
|
|
11220
|
+
public java.util.List<com.lansweeper.dp.outbound.v1.AiDetection.Builder>
|
|
11221
|
+
getAiDetectionsBuilderList() {
|
|
11222
|
+
return getAiDetectionsFieldBuilder().getBuilderList();
|
|
11223
|
+
}
|
|
11224
|
+
private com.google.protobuf.RepeatedFieldBuilderV3<
|
|
11225
|
+
com.lansweeper.dp.outbound.v1.AiDetection, com.lansweeper.dp.outbound.v1.AiDetection.Builder, com.lansweeper.dp.outbound.v1.AiDetectionOrBuilder>
|
|
11226
|
+
getAiDetectionsFieldBuilder() {
|
|
11227
|
+
if (aiDetectionsBuilder_ == null) {
|
|
11228
|
+
aiDetectionsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
|
|
11229
|
+
com.lansweeper.dp.outbound.v1.AiDetection, com.lansweeper.dp.outbound.v1.AiDetection.Builder, com.lansweeper.dp.outbound.v1.AiDetectionOrBuilder>(
|
|
11230
|
+
aiDetections_,
|
|
11231
|
+
((bitField1_ & 0x00000800) != 0),
|
|
11232
|
+
getParentForChildren(),
|
|
11233
|
+
isClean());
|
|
11234
|
+
aiDetections_ = null;
|
|
11235
|
+
}
|
|
11236
|
+
return aiDetectionsBuilder_;
|
|
11237
|
+
}
|
|
10795
11238
|
@java.lang.Override
|
|
10796
11239
|
public final Builder setUnknownFields(
|
|
10797
11240
|
final com.google.protobuf.UnknownFieldSet unknownFields) {
|
|
@@ -996,4 +996,48 @@ public interface AssetOrBuilder extends
|
|
|
996
996
|
* <code>optional .com.lansweeper.dp.outbound.v1.LockedFields manual_asset_locked_fields = 97;</code>
|
|
997
997
|
*/
|
|
998
998
|
com.lansweeper.dp.outbound.v1.LockedFieldsOrBuilder getManualAssetLockedFieldsOrBuilder();
|
|
999
|
+
|
|
1000
|
+
/**
|
|
1001
|
+
* <pre>
|
|
1002
|
+
* AI scan results from LS Discovery
|
|
1003
|
+
* </pre>
|
|
1004
|
+
*
|
|
1005
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.AiDetection ai_detections = 99;</code>
|
|
1006
|
+
*/
|
|
1007
|
+
java.util.List<com.lansweeper.dp.outbound.v1.AiDetection>
|
|
1008
|
+
getAiDetectionsList();
|
|
1009
|
+
/**
|
|
1010
|
+
* <pre>
|
|
1011
|
+
* AI scan results from LS Discovery
|
|
1012
|
+
* </pre>
|
|
1013
|
+
*
|
|
1014
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.AiDetection ai_detections = 99;</code>
|
|
1015
|
+
*/
|
|
1016
|
+
com.lansweeper.dp.outbound.v1.AiDetection getAiDetections(int index);
|
|
1017
|
+
/**
|
|
1018
|
+
* <pre>
|
|
1019
|
+
* AI scan results from LS Discovery
|
|
1020
|
+
* </pre>
|
|
1021
|
+
*
|
|
1022
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.AiDetection ai_detections = 99;</code>
|
|
1023
|
+
*/
|
|
1024
|
+
int getAiDetectionsCount();
|
|
1025
|
+
/**
|
|
1026
|
+
* <pre>
|
|
1027
|
+
* AI scan results from LS Discovery
|
|
1028
|
+
* </pre>
|
|
1029
|
+
*
|
|
1030
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.AiDetection ai_detections = 99;</code>
|
|
1031
|
+
*/
|
|
1032
|
+
java.util.List<? extends com.lansweeper.dp.outbound.v1.AiDetectionOrBuilder>
|
|
1033
|
+
getAiDetectionsOrBuilderList();
|
|
1034
|
+
/**
|
|
1035
|
+
* <pre>
|
|
1036
|
+
* AI scan results from LS Discovery
|
|
1037
|
+
* </pre>
|
|
1038
|
+
*
|
|
1039
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.AiDetection ai_detections = 99;</code>
|
|
1040
|
+
*/
|
|
1041
|
+
com.lansweeper.dp.outbound.v1.AiDetectionOrBuilder getAiDetectionsOrBuilder(
|
|
1042
|
+
int index);
|
|
999
1043
|
}
|