@lansweeper/data-platform-outbound-grpc 0.6.0 → 0.7.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 +23 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +107 -6
- package/gen-proto/outbound_pb.js +859 -53
- package/generated-go/outbound.pb.go +13354 -13126
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +22 -2
- 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/LockedFields$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/LockedFields$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/LockedFields.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/LockedFieldsOrBuilder.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/Printer$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Printer$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Printer.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/PrinterOrBuilder.class +0 -0
- package/model/target/classes/outbound.proto +22 -2
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Asset.java +532 -114
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/AssetOrBuilder.java +42 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/LockedFields.java +2549 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/LockedFieldsOrBuilder.java +225 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +3911 -3882
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Printer.java +4 -243
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/PrinterOrBuilder.java +0 -27
- 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.5.0-sources.jar → outbound-model-0.6.1-sources.jar} +0 -0
- package/model/target/{outbound-model-0.5.0.jar → outbound-model-0.6.1.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +22 -2
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.5.0-sources.jar → outbound-service-0.6.1-sources.jar} +0 -0
- package/service/target/{outbound-service-0.5.0.jar → outbound-service-0.6.1.jar} +0 -0
package/java.json
CHANGED
package/model/pom.xml
CHANGED
|
@@ -314,6 +314,7 @@ message Asset {
|
|
|
314
314
|
optional ActiveDirectoryComputer ad_computer = 88;
|
|
315
315
|
optional HyperV hyper_v_computer = 89;
|
|
316
316
|
|
|
317
|
+
optional ActiveDirectoryPrinter ad_printer = 96;
|
|
317
318
|
optional Printer printer = 84;
|
|
318
319
|
optional Ups ups = 85;
|
|
319
320
|
|
|
@@ -330,8 +331,28 @@ message Asset {
|
|
|
330
331
|
// Vmware Guest Network is mapped in the computer section
|
|
331
332
|
|
|
332
333
|
optional Citrix citrix = 95;
|
|
334
|
+
|
|
335
|
+
optional LockedFields manual_asset_locked_fields = 97; // fields locked by the user in the manual asset UI
|
|
333
336
|
}
|
|
334
337
|
|
|
338
|
+
/**
|
|
339
|
+
* Contains locked fields from the manual asset UI interface
|
|
340
|
+
*/
|
|
341
|
+
message LockedFields {
|
|
342
|
+
optional string asset_name = 1;
|
|
343
|
+
optional AssetType asset_type = 2;
|
|
344
|
+
optional string mac_address = 3;
|
|
345
|
+
optional string state = 4;
|
|
346
|
+
optional string description = 5;
|
|
347
|
+
optional string manufacturer = 6;
|
|
348
|
+
optional string model = 7;
|
|
349
|
+
optional string serial_number = 8;
|
|
350
|
+
optional string system_sku = 9;
|
|
351
|
+
optional string contact = 10;
|
|
352
|
+
optional string address = 11;
|
|
353
|
+
optional google.protobuf.Timestamp purchase_date = 12;
|
|
354
|
+
optional google.protobuf.Timestamp warranty_date = 13;
|
|
355
|
+
}
|
|
335
356
|
|
|
336
357
|
/**
|
|
337
358
|
* Asset change event log.
|
|
@@ -3707,7 +3728,7 @@ message CatalogMonitor {
|
|
|
3707
3728
|
|
|
3708
3729
|
/**
|
|
3709
3730
|
* Printer details.
|
|
3710
|
-
* Currently filled only from source SNMP
|
|
3731
|
+
* Currently filled only from source SNMP.
|
|
3711
3732
|
*/
|
|
3712
3733
|
message Printer {
|
|
3713
3734
|
optional string printer_name = 1;
|
|
@@ -3717,7 +3738,6 @@ message Printer {
|
|
|
3717
3738
|
optional string printer_status = 5;
|
|
3718
3739
|
optional string serial_number = 6;
|
|
3719
3740
|
repeated PrinterTonerInfo toner = 7;
|
|
3720
|
-
optional ActiveDirectoryPrinter ad_printer = 8; // Active Directory specific information
|
|
3721
3741
|
}
|
|
3722
3742
|
|
|
3723
3743
|
/**
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -314,6 +314,7 @@ message Asset {
|
|
|
314
314
|
optional ActiveDirectoryComputer ad_computer = 88;
|
|
315
315
|
optional HyperV hyper_v_computer = 89;
|
|
316
316
|
|
|
317
|
+
optional ActiveDirectoryPrinter ad_printer = 96;
|
|
317
318
|
optional Printer printer = 84;
|
|
318
319
|
optional Ups ups = 85;
|
|
319
320
|
|
|
@@ -330,8 +331,28 @@ message Asset {
|
|
|
330
331
|
// Vmware Guest Network is mapped in the computer section
|
|
331
332
|
|
|
332
333
|
optional Citrix citrix = 95;
|
|
334
|
+
|
|
335
|
+
optional LockedFields manual_asset_locked_fields = 97; // fields locked by the user in the manual asset UI
|
|
333
336
|
}
|
|
334
337
|
|
|
338
|
+
/**
|
|
339
|
+
* Contains locked fields from the manual asset UI interface
|
|
340
|
+
*/
|
|
341
|
+
message LockedFields {
|
|
342
|
+
optional string asset_name = 1;
|
|
343
|
+
optional AssetType asset_type = 2;
|
|
344
|
+
optional string mac_address = 3;
|
|
345
|
+
optional string state = 4;
|
|
346
|
+
optional string description = 5;
|
|
347
|
+
optional string manufacturer = 6;
|
|
348
|
+
optional string model = 7;
|
|
349
|
+
optional string serial_number = 8;
|
|
350
|
+
optional string system_sku = 9;
|
|
351
|
+
optional string contact = 10;
|
|
352
|
+
optional string address = 11;
|
|
353
|
+
optional google.protobuf.Timestamp purchase_date = 12;
|
|
354
|
+
optional google.protobuf.Timestamp warranty_date = 13;
|
|
355
|
+
}
|
|
335
356
|
|
|
336
357
|
/**
|
|
337
358
|
* Asset change event log.
|
|
@@ -3707,7 +3728,7 @@ message CatalogMonitor {
|
|
|
3707
3728
|
|
|
3708
3729
|
/**
|
|
3709
3730
|
* Printer details.
|
|
3710
|
-
* Currently filled only from source SNMP
|
|
3731
|
+
* Currently filled only from source SNMP.
|
|
3711
3732
|
*/
|
|
3712
3733
|
message Printer {
|
|
3713
3734
|
optional string printer_name = 1;
|
|
@@ -3717,7 +3738,6 @@ message Printer {
|
|
|
3717
3738
|
optional string printer_status = 5;
|
|
3718
3739
|
optional string serial_number = 6;
|
|
3719
3740
|
repeated PrinterTonerInfo toner = 7;
|
|
3720
|
-
optional ActiveDirectoryPrinter ad_printer = 8; // Active Directory specific information
|
|
3721
3741
|
}
|
|
3722
3742
|
|
|
3723
3743
|
/**
|