@lansweeper/data-platform-outbound-grpc 0.3.13 → 0.3.15
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 +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +388 -0
- package/gen-proto/outbound_pb.js +3767 -129
- package/generated-go/outbound.pb.go +22238 -20918
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +121 -10
- 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/CoreFields$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CoreFields$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CoreFields.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CoreFieldsOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/DeviceActionResult$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/DeviceActionResult$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/DeviceActionResult.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/DeviceActionResultOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/IntuneApplication$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/IntuneApplication$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/IntuneApplication.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/IntuneApplicationOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/IntuneDevice$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/IntuneDevice$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/IntuneDevice.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/IntuneDeviceOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
- package/model/target/classes/outbound.proto +121 -10
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Asset.java +372 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/AssetOrBuilder.java +30 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/BootConfig.java +2 -2
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ComputerConnectedModem.java +9 -9
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ComputerConnectedModemOrBuilder.java +3 -3
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CoreFields.java +113 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CoreFieldsOrBuilder.java +19 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/DeviceActionResult.java +1084 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/DeviceActionResultOrBuilder.java +72 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/IntuneApplication.java +947 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/IntuneApplicationOrBuilder.java +58 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/IntuneDevice.java +12075 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/IntuneDeviceOrBuilder.java +1015 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +2931 -2803
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +12 -0
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +7 -1
- package/model/target/{outbound-model-0.3.12-sources.jar → outbound-model-0.3.14-sources.jar} +0 -0
- package/model/target/{outbound-model-0.3.12.jar → outbound-model-0.3.14.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +121 -10
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.3.12-sources.jar → outbound-service-0.3.14-sources.jar} +0 -0
- package/service/target/{outbound-service-0.3.12.jar → outbound-service-0.3.14.jar} +0 -0
package/java.json
CHANGED
package/model/pom.xml
CHANGED
|
@@ -273,6 +273,9 @@ message Asset {
|
|
|
273
273
|
optional CloudEntity cloud = 17;
|
|
274
274
|
|
|
275
275
|
repeated AssetChangeEvent change_log = 80;
|
|
276
|
+
|
|
277
|
+
optional IntuneDevice intune_device = 90;
|
|
278
|
+
optional IntuneApplication intune_application = 91;
|
|
276
279
|
}
|
|
277
280
|
|
|
278
281
|
|
|
@@ -345,7 +348,7 @@ message Computer {
|
|
|
345
348
|
repeated ComputerMacBluetooth mac_bluetooth = 35;
|
|
346
349
|
repeated ComputerMacNetworkLocation mac_network_location = 36;
|
|
347
350
|
optional ComputerMacSecureElements mac_secure_elements = 37;
|
|
348
|
-
repeated ComputerMacCamera mac_camera = 38;
|
|
351
|
+
repeated ComputerMacCamera mac_camera = 38;
|
|
349
352
|
repeated ComputerMacCardReader mac_card_reader = 39;
|
|
350
353
|
optional ComputerMacHardwareController mac_hardware_controller = 40;
|
|
351
354
|
repeated ComputerMacDiagnostics mac_diagnostic = 41;
|
|
@@ -353,7 +356,7 @@ message Computer {
|
|
|
353
356
|
optional ComputerMacNVMExpress mac_nvm_express = 43;
|
|
354
357
|
repeated ComputerMacSPIDevice mac_spi_device = 44;
|
|
355
358
|
repeated ComputerMacSATAController mac_sata_controller = 45;
|
|
356
|
-
|
|
359
|
+
|
|
357
360
|
|
|
358
361
|
// OS
|
|
359
362
|
optional Bios bios = 101;
|
|
@@ -644,7 +647,112 @@ message AssetType {
|
|
|
644
647
|
optional string fing_type = 2;
|
|
645
648
|
optional string sub_type = 4; // sub type for OT and CDK
|
|
646
649
|
}
|
|
647
|
-
|
|
650
|
+
message DeviceActionResult {
|
|
651
|
+
string action_name = 1;
|
|
652
|
+
string action_state = 2; // none/pending/canceled/active/done/failed/notSupported
|
|
653
|
+
optional google.protobuf.Timestamp start_date_time = 3;
|
|
654
|
+
optional google.protobuf.Timestamp last_updated_date_time = 4;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
|
|
658
|
+
message IntuneDevice {
|
|
659
|
+
string intune_id = 1;
|
|
660
|
+
string remote_assistance_session_error_details = 2;
|
|
661
|
+
bool is_encrypted = 3;
|
|
662
|
+
string user_principal_name = 4;
|
|
663
|
+
string model = 5;
|
|
664
|
+
string manufacturer = 6;
|
|
665
|
+
string imei = 7;
|
|
666
|
+
optional google.protobuf.Timestamp compliance_grace_period_expiration_date = 8;
|
|
667
|
+
string serial_number = 9;
|
|
668
|
+
string phone_number = 10;
|
|
669
|
+
string android_security_patch_level = 11;
|
|
670
|
+
string user_display_name = 12;
|
|
671
|
+
string wi_fi_mac_address = 13;
|
|
672
|
+
string subscriber_carrier = 14;
|
|
673
|
+
string meid = 15;
|
|
674
|
+
int64 total_storage_space_in_bytes = 16;
|
|
675
|
+
int64 free_storage_space_in_bytes = 17;
|
|
676
|
+
string managed_device_name = 18;
|
|
677
|
+
string partner_reported_threat_state = 19;
|
|
678
|
+
string remote_assistance_session_url = 20;
|
|
679
|
+
string exchange_access_state_reason = 21;
|
|
680
|
+
string exchange_access_state = 22;
|
|
681
|
+
optional google.protobuf.Timestamp exchange_last_successful_sync_date = 23;
|
|
682
|
+
string user_id = 24;
|
|
683
|
+
string device_name = 25;
|
|
684
|
+
string managed_device_owner_type = 26;
|
|
685
|
+
repeated DeviceActionResult device_action_results = 27;
|
|
686
|
+
optional google.protobuf.Timestamp enrolled_date_time = 28;
|
|
687
|
+
optional google.protobuf.Timestamp last_sync_date_time = 29;
|
|
688
|
+
string operating_system = 30;
|
|
689
|
+
string compliance_state = 31;
|
|
690
|
+
string jail_broken = 32;
|
|
691
|
+
string management_agent = 33;
|
|
692
|
+
string os_version = 34;
|
|
693
|
+
string eas_device_id = 35;
|
|
694
|
+
optional google.protobuf.Timestamp eas_activation_date= 36;
|
|
695
|
+
bool is_azure_ad_registered = 37;
|
|
696
|
+
string device_enrollment_type = 38;
|
|
697
|
+
string activation_lock_bypass_code = 39;
|
|
698
|
+
string email_address = 40;
|
|
699
|
+
string azure_ad_device_id = 41;
|
|
700
|
+
string device_registration_state = 42;
|
|
701
|
+
bool is_supervised = 43;
|
|
702
|
+
bool is_eas_activated = 44;
|
|
703
|
+
bool has_feature_inventory = 45;
|
|
704
|
+
bool has_feature_modern_apps = 46;
|
|
705
|
+
bool has_feature_resource_access = 47;
|
|
706
|
+
bool has_feature_device_configuration = 48;
|
|
707
|
+
bool has_feature_compliance_policy = 49;
|
|
708
|
+
bool has_feature_windows_update_for_business = 50;
|
|
709
|
+
string health_status_mismatch_info = 51;
|
|
710
|
+
string operating_system_rev_list_info = 52;
|
|
711
|
+
string boot_revision_list_info = 53;
|
|
712
|
+
string code_integrity_policy = 54;
|
|
713
|
+
string secure_boot_configuration_policy_finger_print = 55;
|
|
714
|
+
string pcr0 = 56;
|
|
715
|
+
string tpm_version = 57;
|
|
716
|
+
string boot_manager_security_version = 58;
|
|
717
|
+
string boot_app_security_version = 59;
|
|
718
|
+
string pcr_hash_algorithm = 60;
|
|
719
|
+
string virtual_secure_mode = 61;
|
|
720
|
+
string early_launch_anti_malware_driver_protection = 62;
|
|
721
|
+
string windows_pe = 63;
|
|
722
|
+
string safe_mode = 64;
|
|
723
|
+
string test_signing = 65;
|
|
724
|
+
string code_integrity = 66;
|
|
725
|
+
string operating_system_kernel_debugging = 67;
|
|
726
|
+
string last_update_date_time = 68;
|
|
727
|
+
optional google.protobuf.Timestamp last_update = 69;
|
|
728
|
+
string content_namespace_url = 70;
|
|
729
|
+
string device_health_attestation_status = 71;
|
|
730
|
+
string content_version = 72;
|
|
731
|
+
optional google.protobuf.Timestamp issued_date = 73;
|
|
732
|
+
string attestation_identity_key = 74;
|
|
733
|
+
string health_attestation_supported_status = 75;
|
|
734
|
+
int64 reset_count = 76;
|
|
735
|
+
string data_execution_policy = 77;
|
|
736
|
+
string bit_locker_status = 78;
|
|
737
|
+
string boot_manager_version = 79;
|
|
738
|
+
string code_integrity_check_version = 80;
|
|
739
|
+
string secure_boot = 81;
|
|
740
|
+
string boot_debugging = 82;
|
|
741
|
+
int64 restart_count = 83;
|
|
742
|
+
string device_category_id = 84;
|
|
743
|
+
string device_category_display_name = 85;
|
|
744
|
+
string device_category_description = 86;
|
|
745
|
+
repeated IntuneApplication intune_applications = 87;
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
|
|
749
|
+
message IntuneApplication {
|
|
750
|
+
string intune_id = 1;
|
|
751
|
+
string display_name = 2;
|
|
752
|
+
string version = 3;
|
|
753
|
+
int64 size_in_byte = 4;
|
|
754
|
+
int32 device_count = 5;
|
|
755
|
+
}
|
|
648
756
|
|
|
649
757
|
/**
|
|
650
758
|
* Detailed Source information for each source (aka installation in legacy terms)
|
|
@@ -707,6 +815,9 @@ message CoreFields {
|
|
|
707
815
|
* - <100 is for e.g. CDR or imported data from 3rd parties
|
|
708
816
|
*/
|
|
709
817
|
int32 confidence = 10;
|
|
818
|
+
|
|
819
|
+
// To propagate scanned by bitmask from LS Classic Assets
|
|
820
|
+
optional uint64 classic_scanned_by = 11;
|
|
710
821
|
}
|
|
711
822
|
|
|
712
823
|
message LastUser {
|
|
@@ -767,7 +878,7 @@ message UserGroup {
|
|
|
767
878
|
|
|
768
879
|
optional string sid = 5;
|
|
769
880
|
optional bool local_account = 6;
|
|
770
|
-
|
|
881
|
+
|
|
771
882
|
// unix specific
|
|
772
883
|
optional int32 group_id = 7;
|
|
773
884
|
optional string type = 8;
|
|
@@ -825,7 +936,7 @@ message InternetExplorer {
|
|
|
825
936
|
}
|
|
826
937
|
|
|
827
938
|
|
|
828
|
-
repeated ActiveX active_x = 1;
|
|
939
|
+
repeated ActiveX active_x = 1;
|
|
829
940
|
repeated BrowserObject bar = 2;
|
|
830
941
|
repeated BrowserObject browser_object = 3;
|
|
831
942
|
repeated Extension extension = 4;
|
|
@@ -840,7 +951,7 @@ message WindowsSqlServer {
|
|
|
840
951
|
WINDOWS = 1;
|
|
841
952
|
MIXED = 2;
|
|
842
953
|
}
|
|
843
|
-
|
|
954
|
+
|
|
844
955
|
bool is_clustered = 1;
|
|
845
956
|
SqlAuthenticationMode sql_authentication_mode = 2;
|
|
846
957
|
repeated SqlServerDatabase databases = 3;
|
|
@@ -887,7 +998,7 @@ message SqlServerService {
|
|
|
887
998
|
MANUAL = 3;
|
|
888
999
|
DISABLED = 4;
|
|
889
1000
|
}
|
|
890
|
-
|
|
1001
|
+
|
|
891
1002
|
optional ServiceState state = 1;
|
|
892
1003
|
optional ServiceStartupType startup_type = 2;
|
|
893
1004
|
optional string name = 3;
|
|
@@ -1489,7 +1600,7 @@ message AutoRunCommand {
|
|
|
1489
1600
|
}
|
|
1490
1601
|
|
|
1491
1602
|
/**
|
|
1492
|
-
* BootConfig: Windows.BootConfig
|
|
1603
|
+
* BootConfig: Windows.BootConfig
|
|
1493
1604
|
**/
|
|
1494
1605
|
message BootConfig {
|
|
1495
1606
|
optional string boot_directory = 1;
|
|
@@ -2413,7 +2524,7 @@ message ComputerConnectedUsbDeviceInfo {
|
|
|
2413
2524
|
message ComputerConnectedModem {
|
|
2414
2525
|
optional string attached_to = 1;
|
|
2415
2526
|
optional string caption = 2; // mac: name
|
|
2416
|
-
optional string country_info = 3; // windows: country_selected, mac: country_info
|
|
2527
|
+
optional string country_info = 3; // windows: country_selected, mac: country_info
|
|
2417
2528
|
optional string device_id = 4;
|
|
2418
2529
|
optional string device_type = 5; // mac: interface_type
|
|
2419
2530
|
optional int32 max_baud_rate_to_phone = 6;
|
|
@@ -3543,7 +3654,7 @@ message ActiveDirectoryDomain {
|
|
|
3543
3654
|
*/
|
|
3544
3655
|
message ActiveDirectoryUser {
|
|
3545
3656
|
ActiveDirectoryObject ad_object = 1;
|
|
3546
|
-
|
|
3657
|
+
|
|
3547
3658
|
optional string sam_account_name = 2;
|
|
3548
3659
|
optional string cn = 3;
|
|
3549
3660
|
optional string ou = 4;
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -273,6 +273,9 @@ message Asset {
|
|
|
273
273
|
optional CloudEntity cloud = 17;
|
|
274
274
|
|
|
275
275
|
repeated AssetChangeEvent change_log = 80;
|
|
276
|
+
|
|
277
|
+
optional IntuneDevice intune_device = 90;
|
|
278
|
+
optional IntuneApplication intune_application = 91;
|
|
276
279
|
}
|
|
277
280
|
|
|
278
281
|
|
|
@@ -345,7 +348,7 @@ message Computer {
|
|
|
345
348
|
repeated ComputerMacBluetooth mac_bluetooth = 35;
|
|
346
349
|
repeated ComputerMacNetworkLocation mac_network_location = 36;
|
|
347
350
|
optional ComputerMacSecureElements mac_secure_elements = 37;
|
|
348
|
-
repeated ComputerMacCamera mac_camera = 38;
|
|
351
|
+
repeated ComputerMacCamera mac_camera = 38;
|
|
349
352
|
repeated ComputerMacCardReader mac_card_reader = 39;
|
|
350
353
|
optional ComputerMacHardwareController mac_hardware_controller = 40;
|
|
351
354
|
repeated ComputerMacDiagnostics mac_diagnostic = 41;
|
|
@@ -353,7 +356,7 @@ message Computer {
|
|
|
353
356
|
optional ComputerMacNVMExpress mac_nvm_express = 43;
|
|
354
357
|
repeated ComputerMacSPIDevice mac_spi_device = 44;
|
|
355
358
|
repeated ComputerMacSATAController mac_sata_controller = 45;
|
|
356
|
-
|
|
359
|
+
|
|
357
360
|
|
|
358
361
|
// OS
|
|
359
362
|
optional Bios bios = 101;
|
|
@@ -644,7 +647,112 @@ message AssetType {
|
|
|
644
647
|
optional string fing_type = 2;
|
|
645
648
|
optional string sub_type = 4; // sub type for OT and CDK
|
|
646
649
|
}
|
|
647
|
-
|
|
650
|
+
message DeviceActionResult {
|
|
651
|
+
string action_name = 1;
|
|
652
|
+
string action_state = 2; // none/pending/canceled/active/done/failed/notSupported
|
|
653
|
+
optional google.protobuf.Timestamp start_date_time = 3;
|
|
654
|
+
optional google.protobuf.Timestamp last_updated_date_time = 4;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
|
|
658
|
+
message IntuneDevice {
|
|
659
|
+
string intune_id = 1;
|
|
660
|
+
string remote_assistance_session_error_details = 2;
|
|
661
|
+
bool is_encrypted = 3;
|
|
662
|
+
string user_principal_name = 4;
|
|
663
|
+
string model = 5;
|
|
664
|
+
string manufacturer = 6;
|
|
665
|
+
string imei = 7;
|
|
666
|
+
optional google.protobuf.Timestamp compliance_grace_period_expiration_date = 8;
|
|
667
|
+
string serial_number = 9;
|
|
668
|
+
string phone_number = 10;
|
|
669
|
+
string android_security_patch_level = 11;
|
|
670
|
+
string user_display_name = 12;
|
|
671
|
+
string wi_fi_mac_address = 13;
|
|
672
|
+
string subscriber_carrier = 14;
|
|
673
|
+
string meid = 15;
|
|
674
|
+
int64 total_storage_space_in_bytes = 16;
|
|
675
|
+
int64 free_storage_space_in_bytes = 17;
|
|
676
|
+
string managed_device_name = 18;
|
|
677
|
+
string partner_reported_threat_state = 19;
|
|
678
|
+
string remote_assistance_session_url = 20;
|
|
679
|
+
string exchange_access_state_reason = 21;
|
|
680
|
+
string exchange_access_state = 22;
|
|
681
|
+
optional google.protobuf.Timestamp exchange_last_successful_sync_date = 23;
|
|
682
|
+
string user_id = 24;
|
|
683
|
+
string device_name = 25;
|
|
684
|
+
string managed_device_owner_type = 26;
|
|
685
|
+
repeated DeviceActionResult device_action_results = 27;
|
|
686
|
+
optional google.protobuf.Timestamp enrolled_date_time = 28;
|
|
687
|
+
optional google.protobuf.Timestamp last_sync_date_time = 29;
|
|
688
|
+
string operating_system = 30;
|
|
689
|
+
string compliance_state = 31;
|
|
690
|
+
string jail_broken = 32;
|
|
691
|
+
string management_agent = 33;
|
|
692
|
+
string os_version = 34;
|
|
693
|
+
string eas_device_id = 35;
|
|
694
|
+
optional google.protobuf.Timestamp eas_activation_date= 36;
|
|
695
|
+
bool is_azure_ad_registered = 37;
|
|
696
|
+
string device_enrollment_type = 38;
|
|
697
|
+
string activation_lock_bypass_code = 39;
|
|
698
|
+
string email_address = 40;
|
|
699
|
+
string azure_ad_device_id = 41;
|
|
700
|
+
string device_registration_state = 42;
|
|
701
|
+
bool is_supervised = 43;
|
|
702
|
+
bool is_eas_activated = 44;
|
|
703
|
+
bool has_feature_inventory = 45;
|
|
704
|
+
bool has_feature_modern_apps = 46;
|
|
705
|
+
bool has_feature_resource_access = 47;
|
|
706
|
+
bool has_feature_device_configuration = 48;
|
|
707
|
+
bool has_feature_compliance_policy = 49;
|
|
708
|
+
bool has_feature_windows_update_for_business = 50;
|
|
709
|
+
string health_status_mismatch_info = 51;
|
|
710
|
+
string operating_system_rev_list_info = 52;
|
|
711
|
+
string boot_revision_list_info = 53;
|
|
712
|
+
string code_integrity_policy = 54;
|
|
713
|
+
string secure_boot_configuration_policy_finger_print = 55;
|
|
714
|
+
string pcr0 = 56;
|
|
715
|
+
string tpm_version = 57;
|
|
716
|
+
string boot_manager_security_version = 58;
|
|
717
|
+
string boot_app_security_version = 59;
|
|
718
|
+
string pcr_hash_algorithm = 60;
|
|
719
|
+
string virtual_secure_mode = 61;
|
|
720
|
+
string early_launch_anti_malware_driver_protection = 62;
|
|
721
|
+
string windows_pe = 63;
|
|
722
|
+
string safe_mode = 64;
|
|
723
|
+
string test_signing = 65;
|
|
724
|
+
string code_integrity = 66;
|
|
725
|
+
string operating_system_kernel_debugging = 67;
|
|
726
|
+
string last_update_date_time = 68;
|
|
727
|
+
optional google.protobuf.Timestamp last_update = 69;
|
|
728
|
+
string content_namespace_url = 70;
|
|
729
|
+
string device_health_attestation_status = 71;
|
|
730
|
+
string content_version = 72;
|
|
731
|
+
optional google.protobuf.Timestamp issued_date = 73;
|
|
732
|
+
string attestation_identity_key = 74;
|
|
733
|
+
string health_attestation_supported_status = 75;
|
|
734
|
+
int64 reset_count = 76;
|
|
735
|
+
string data_execution_policy = 77;
|
|
736
|
+
string bit_locker_status = 78;
|
|
737
|
+
string boot_manager_version = 79;
|
|
738
|
+
string code_integrity_check_version = 80;
|
|
739
|
+
string secure_boot = 81;
|
|
740
|
+
string boot_debugging = 82;
|
|
741
|
+
int64 restart_count = 83;
|
|
742
|
+
string device_category_id = 84;
|
|
743
|
+
string device_category_display_name = 85;
|
|
744
|
+
string device_category_description = 86;
|
|
745
|
+
repeated IntuneApplication intune_applications = 87;
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
|
|
749
|
+
message IntuneApplication {
|
|
750
|
+
string intune_id = 1;
|
|
751
|
+
string display_name = 2;
|
|
752
|
+
string version = 3;
|
|
753
|
+
int64 size_in_byte = 4;
|
|
754
|
+
int32 device_count = 5;
|
|
755
|
+
}
|
|
648
756
|
|
|
649
757
|
/**
|
|
650
758
|
* Detailed Source information for each source (aka installation in legacy terms)
|
|
@@ -707,6 +815,9 @@ message CoreFields {
|
|
|
707
815
|
* - <100 is for e.g. CDR or imported data from 3rd parties
|
|
708
816
|
*/
|
|
709
817
|
int32 confidence = 10;
|
|
818
|
+
|
|
819
|
+
// To propagate scanned by bitmask from LS Classic Assets
|
|
820
|
+
optional uint64 classic_scanned_by = 11;
|
|
710
821
|
}
|
|
711
822
|
|
|
712
823
|
message LastUser {
|
|
@@ -767,7 +878,7 @@ message UserGroup {
|
|
|
767
878
|
|
|
768
879
|
optional string sid = 5;
|
|
769
880
|
optional bool local_account = 6;
|
|
770
|
-
|
|
881
|
+
|
|
771
882
|
// unix specific
|
|
772
883
|
optional int32 group_id = 7;
|
|
773
884
|
optional string type = 8;
|
|
@@ -825,7 +936,7 @@ message InternetExplorer {
|
|
|
825
936
|
}
|
|
826
937
|
|
|
827
938
|
|
|
828
|
-
repeated ActiveX active_x = 1;
|
|
939
|
+
repeated ActiveX active_x = 1;
|
|
829
940
|
repeated BrowserObject bar = 2;
|
|
830
941
|
repeated BrowserObject browser_object = 3;
|
|
831
942
|
repeated Extension extension = 4;
|
|
@@ -840,7 +951,7 @@ message WindowsSqlServer {
|
|
|
840
951
|
WINDOWS = 1;
|
|
841
952
|
MIXED = 2;
|
|
842
953
|
}
|
|
843
|
-
|
|
954
|
+
|
|
844
955
|
bool is_clustered = 1;
|
|
845
956
|
SqlAuthenticationMode sql_authentication_mode = 2;
|
|
846
957
|
repeated SqlServerDatabase databases = 3;
|
|
@@ -887,7 +998,7 @@ message SqlServerService {
|
|
|
887
998
|
MANUAL = 3;
|
|
888
999
|
DISABLED = 4;
|
|
889
1000
|
}
|
|
890
|
-
|
|
1001
|
+
|
|
891
1002
|
optional ServiceState state = 1;
|
|
892
1003
|
optional ServiceStartupType startup_type = 2;
|
|
893
1004
|
optional string name = 3;
|
|
@@ -1489,7 +1600,7 @@ message AutoRunCommand {
|
|
|
1489
1600
|
}
|
|
1490
1601
|
|
|
1491
1602
|
/**
|
|
1492
|
-
* BootConfig: Windows.BootConfig
|
|
1603
|
+
* BootConfig: Windows.BootConfig
|
|
1493
1604
|
**/
|
|
1494
1605
|
message BootConfig {
|
|
1495
1606
|
optional string boot_directory = 1;
|
|
@@ -2413,7 +2524,7 @@ message ComputerConnectedUsbDeviceInfo {
|
|
|
2413
2524
|
message ComputerConnectedModem {
|
|
2414
2525
|
optional string attached_to = 1;
|
|
2415
2526
|
optional string caption = 2; // mac: name
|
|
2416
|
-
optional string country_info = 3; // windows: country_selected, mac: country_info
|
|
2527
|
+
optional string country_info = 3; // windows: country_selected, mac: country_info
|
|
2417
2528
|
optional string device_id = 4;
|
|
2418
2529
|
optional string device_type = 5; // mac: interface_type
|
|
2419
2530
|
optional int32 max_baud_rate_to_phone = 6;
|
|
@@ -3543,7 +3654,7 @@ message ActiveDirectoryDomain {
|
|
|
3543
3654
|
*/
|
|
3544
3655
|
message ActiveDirectoryUser {
|
|
3545
3656
|
ActiveDirectoryObject ad_object = 1;
|
|
3546
|
-
|
|
3657
|
+
|
|
3547
3658
|
optional string sam_account_name = 2;
|
|
3548
3659
|
optional string cn = 3;
|
|
3549
3660
|
optional string ou = 4;
|