@lansweeper/data-platform-outbound-grpc 0.1.8 → 0.1.9

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.
Files changed (23) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/gen-proto/image.json +1 -1
  3. package/gen-proto/outbound_pb.d.ts +445 -21
  4. package/gen-proto/outbound_pb.js +6658 -3287
  5. package/generated-go/outbound.pb.go +1683 -751
  6. package/package.json +2 -2
  7. package/pom.xml +1 -1
  8. package/proto/outbound.proto +107 -20
  9. package/src/main/java/com/lansweeper/dp/outbound/v1/Asset.java +193 -0
  10. package/src/main/java/com/lansweeper/dp/outbound/v1/AssetOrBuilder.java +15 -0
  11. package/src/main/java/com/lansweeper/dp/outbound/v1/CatalogMonitor.java +5210 -241
  12. package/src/main/java/com/lansweeper/dp/outbound/v1/CatalogMonitorOrBuilder.java +576 -0
  13. package/src/main/java/com/lansweeper/dp/outbound/v1/CatalogSoftware.java +400 -700
  14. package/src/main/java/com/lansweeper/dp/outbound/v1/CatalogSoftwareOrBuilder.java +57 -86
  15. package/src/main/java/com/lansweeper/dp/outbound/v1/Monitor.java +1590 -0
  16. package/src/main/java/com/lansweeper/dp/outbound/v1/MonitorInventory.java +966 -0
  17. package/src/main/java/com/lansweeper/dp/outbound/v1/MonitorInventoryOrBuilder.java +48 -0
  18. package/src/main/java/com/lansweeper/dp/outbound/v1/MonitorOrBuilder.java +100 -0
  19. package/src/main/java/com/lansweeper/dp/outbound/v1/Outbound.java +332 -222
  20. package/src/main/java/com/lansweeper/dp/outbound/v1/Software.java +424 -38
  21. package/src/main/java/com/lansweeper/dp/outbound/v1/SoftwareOrBuilder.java +30 -0
  22. package/src/main/java/com/lansweeper/dp/outbound/v1/WindowsRawMonitorInfo.java +1728 -0
  23. package/src/main/java/com/lansweeper/dp/outbound/v1/WindowsRawMonitorInfoOrBuilder.java +138 -0
@@ -0,0 +1,48 @@
1
+ // Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ // source: packages/data.platform/outbound/grpc/proto/outbound.proto
3
+
4
+ package com.lansweeper.dp.outbound.v1;
5
+
6
+ public interface MonitorInventoryOrBuilder extends
7
+ // @@protoc_insertion_point(interface_extends:com.lansweeper.dp.outbound.v1.MonitorInventory)
8
+ com.google.protobuf.MessageOrBuilder {
9
+
10
+ /**
11
+ * <code>.google.protobuf.Timestamp timestamp = 1;</code>
12
+ * @return Whether the timestamp field is set.
13
+ */
14
+ boolean hasTimestamp();
15
+ /**
16
+ * <code>.google.protobuf.Timestamp timestamp = 1;</code>
17
+ * @return The timestamp.
18
+ */
19
+ com.google.protobuf.Timestamp getTimestamp();
20
+ /**
21
+ * <code>.google.protobuf.Timestamp timestamp = 1;</code>
22
+ */
23
+ com.google.protobuf.TimestampOrBuilder getTimestampOrBuilder();
24
+
25
+ /**
26
+ * <code>repeated .com.lansweeper.dp.outbound.v1.Monitor monitor = 2;</code>
27
+ */
28
+ java.util.List<com.lansweeper.dp.outbound.v1.Monitor>
29
+ getMonitorList();
30
+ /**
31
+ * <code>repeated .com.lansweeper.dp.outbound.v1.Monitor monitor = 2;</code>
32
+ */
33
+ com.lansweeper.dp.outbound.v1.Monitor getMonitor(int index);
34
+ /**
35
+ * <code>repeated .com.lansweeper.dp.outbound.v1.Monitor monitor = 2;</code>
36
+ */
37
+ int getMonitorCount();
38
+ /**
39
+ * <code>repeated .com.lansweeper.dp.outbound.v1.Monitor monitor = 2;</code>
40
+ */
41
+ java.util.List<? extends com.lansweeper.dp.outbound.v1.MonitorOrBuilder>
42
+ getMonitorOrBuilderList();
43
+ /**
44
+ * <code>repeated .com.lansweeper.dp.outbound.v1.Monitor monitor = 2;</code>
45
+ */
46
+ com.lansweeper.dp.outbound.v1.MonitorOrBuilder getMonitorOrBuilder(
47
+ int index);
48
+ }
@@ -0,0 +1,100 @@
1
+ // Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ // source: packages/data.platform/outbound/grpc/proto/outbound.proto
3
+
4
+ package com.lansweeper.dp.outbound.v1;
5
+
6
+ public interface MonitorOrBuilder extends
7
+ // @@protoc_insertion_point(interface_extends:com.lansweeper.dp.outbound.v1.Monitor)
8
+ com.google.protobuf.MessageOrBuilder {
9
+
10
+ /**
11
+ * <code>string model = 1;</code>
12
+ * @return The model.
13
+ */
14
+ java.lang.String getModel();
15
+ /**
16
+ * <code>string model = 1;</code>
17
+ * @return The bytes for model.
18
+ */
19
+ com.google.protobuf.ByteString
20
+ getModelBytes();
21
+
22
+ /**
23
+ * <code>string serial_number = 2;</code>
24
+ * @return Whether the serialNumber field is set.
25
+ */
26
+ boolean hasSerialNumber();
27
+ /**
28
+ * <code>string serial_number = 2;</code>
29
+ * @return The serialNumber.
30
+ */
31
+ java.lang.String getSerialNumber();
32
+ /**
33
+ * <code>string serial_number = 2;</code>
34
+ * @return The bytes for serialNumber.
35
+ */
36
+ com.google.protobuf.ByteString
37
+ getSerialNumberBytes();
38
+
39
+ /**
40
+ * <code>.google.protobuf.Timestamp manufacturer_date = 3;</code>
41
+ * @return Whether the manufacturerDate field is set.
42
+ */
43
+ boolean hasManufacturerDate();
44
+ /**
45
+ * <code>.google.protobuf.Timestamp manufacturer_date = 3;</code>
46
+ * @return The manufacturerDate.
47
+ */
48
+ com.google.protobuf.Timestamp getManufacturerDate();
49
+ /**
50
+ * <code>.google.protobuf.Timestamp manufacturer_date = 3;</code>
51
+ */
52
+ com.google.protobuf.TimestampOrBuilder getManufacturerDateOrBuilder();
53
+
54
+ /**
55
+ * <code>.com.lansweeper.dp.outbound.v1.CatalogBrand catalog_brand = 10;</code>
56
+ * @return Whether the catalogBrand field is set.
57
+ */
58
+ boolean hasCatalogBrand();
59
+ /**
60
+ * <code>.com.lansweeper.dp.outbound.v1.CatalogBrand catalog_brand = 10;</code>
61
+ * @return The catalogBrand.
62
+ */
63
+ com.lansweeper.dp.outbound.v1.CatalogBrand getCatalogBrand();
64
+ /**
65
+ * <code>.com.lansweeper.dp.outbound.v1.CatalogBrand catalog_brand = 10;</code>
66
+ */
67
+ com.lansweeper.dp.outbound.v1.CatalogBrandOrBuilder getCatalogBrandOrBuilder();
68
+
69
+ /**
70
+ * <code>.com.lansweeper.dp.outbound.v1.CatalogMonitor catalog_monitor = 11;</code>
71
+ * @return Whether the catalogMonitor field is set.
72
+ */
73
+ boolean hasCatalogMonitor();
74
+ /**
75
+ * <code>.com.lansweeper.dp.outbound.v1.CatalogMonitor catalog_monitor = 11;</code>
76
+ * @return The catalogMonitor.
77
+ */
78
+ com.lansweeper.dp.outbound.v1.CatalogMonitor getCatalogMonitor();
79
+ /**
80
+ * <code>.com.lansweeper.dp.outbound.v1.CatalogMonitor catalog_monitor = 11;</code>
81
+ */
82
+ com.lansweeper.dp.outbound.v1.CatalogMonitorOrBuilder getCatalogMonitorOrBuilder();
83
+
84
+ /**
85
+ * <code>.com.lansweeper.dp.outbound.v1.WindowsRawMonitorInfo windows = 20;</code>
86
+ * @return Whether the windows field is set.
87
+ */
88
+ boolean hasWindows();
89
+ /**
90
+ * <code>.com.lansweeper.dp.outbound.v1.WindowsRawMonitorInfo windows = 20;</code>
91
+ * @return The windows.
92
+ */
93
+ com.lansweeper.dp.outbound.v1.WindowsRawMonitorInfo getWindows();
94
+ /**
95
+ * <code>.com.lansweeper.dp.outbound.v1.WindowsRawMonitorInfo windows = 20;</code>
96
+ */
97
+ com.lansweeper.dp.outbound.v1.WindowsRawMonitorInfoOrBuilder getWindowsOrBuilder();
98
+
99
+ public com.lansweeper.dp.outbound.v1.Monitor.RawCase getRawCase();
100
+ }