@lansweeper/discovery-sensor-proto 2.63.0 → 2.63.2

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lansweeper/discovery-sensor-proto",
3
3
  "description": "Discovery Sensor proto",
4
- "version": "2.63.0",
4
+ "version": "2.63.2",
5
5
  "main": "gen-proto/index.js",
6
6
  "types": "gen-proto/index.d.ts",
7
7
  "license": "MIT",
@@ -16,5 +16,5 @@
16
16
  "devDependencies": {
17
17
  "@types/google-protobuf": "^3.15.5"
18
18
  },
19
- "gitHead": "0d2229bd76c78c472eb2679c033aa570b7fa9e7e"
19
+ "gitHead": "f3f011f12a8dd1e7e43050d2815f06010174e252"
20
20
  }
@@ -10,6 +10,129 @@ option go_package = "./generated-go";
10
10
  import "google/protobuf/timestamp.proto";
11
11
  import "google/protobuf/wrappers.proto";
12
12
 
13
+ /* Active Directory scanning root object */
14
+ message ActiveDirectoryScanResult {
15
+ repeated ActiveDirectoryObject entries = 1;
16
+ }
17
+
18
+ message ActiveDirectoryObject {
19
+ string domain_object_guid = 1;
20
+
21
+ string distinguished_name = 2;
22
+ string object_sid = 3;
23
+ string object_guid = 4;
24
+ google.protobuf.StringValue domain_dns = 5;
25
+ google.protobuf.StringValue name = 6;
26
+ google.protobuf.StringValue object_class = 7;
27
+ optional google.protobuf.Timestamp when_created = 8;
28
+ optional google.protobuf.Timestamp when_changed = 9;
29
+
30
+ oneof object {
31
+ ActiveDirectoryDomain domain = 10;
32
+ ActiveDirectoryUser user = 11;
33
+ ActiveDirectoryGroup group = 12;
34
+ ActiveDirectoryComputer computer = 13;
35
+ }
36
+ }
37
+
38
+ message ActiveDirectoryUser {
39
+ google.protobuf.StringValue sam_account_name = 1;
40
+ google.protobuf.StringValue cn = 2;
41
+ google.protobuf.StringValue ou = 3;
42
+ google.protobuf.StringValue description = 4;
43
+ google.protobuf.StringValue comment = 5;
44
+ google.protobuf.StringValue company = 6;
45
+ google.protobuf.Int32Value primary_group_Id = 7;
46
+ google.protobuf.BoolValue enabled = 8;
47
+ google.protobuf.Int32Value user_account_control = 9;
48
+ optional google.protobuf.Timestamp account_expires = 10;
49
+ optional google.protobuf.Timestamp lockout_time = 11;
50
+ optional google.protobuf.Timestamp password_last_set = 12;
51
+ optional google.protobuf.Timestamp last_logon = 13;
52
+ optional google.protobuf.Timestamp lockout_date = 14;
53
+ google.protobuf.BoolValue can_user_change_password = 15;
54
+ optional google.protobuf.Timestamp password_expiration_date = 16;
55
+ google.protobuf.BoolValue password_never_expires = 17;
56
+ google.protobuf.BoolValue password_required = 18;
57
+ optional google.protobuf.Timestamp password_changeable_date = 19;
58
+ google.protobuf.StringValue email = 20;
59
+ google.protobuf.StringValue display_name = 21;
60
+ google.protobuf.StringValue given_name = 22;
61
+ google.protobuf.StringValue surname = 23;
62
+ google.protobuf.StringValue telephone = 24;
63
+ google.protobuf.StringValue fac_simile = 25;
64
+ google.protobuf.StringValue mobile = 26;
65
+ google.protobuf.StringValue street_address = 27;
66
+ google.protobuf.StringValue city = 28;
67
+ google.protobuf.StringValue country = 29;
68
+ google.protobuf.StringValue department = 30;
69
+ google.protobuf.StringValue delivery_office_name = 31;
70
+ google.protobuf.StringValue country_abbreviation = 32;
71
+ google.protobuf.StringValue postal_code = 33;
72
+ google.protobuf.StringValue country_code = 34;
73
+ google.protobuf.StringValue principal_name = 35;
74
+ google.protobuf.StringValue title = 36;
75
+ google.protobuf.StringValue division = 37;
76
+ google.protobuf.StringValue info = 38;
77
+ google.protobuf.StringValue home_phone = 39;
78
+ google.protobuf.StringValue pager = 40;
79
+ google.protobuf.StringValue ip_phone = 41;
80
+ google.protobuf.StringValue home_page = 42;
81
+ google.protobuf.StringValue post_office_box = 43;
82
+ google.protobuf.StringValue state = 44;
83
+ google.protobuf.StringValue profile_path = 45;
84
+ google.protobuf.StringValue script_path = 46;
85
+ google.protobuf.StringValue home_directory = 47;
86
+ google.protobuf.BytesValue thumbnail_photo = 48;
87
+ google.protobuf.StringValue employee_id = 49;
88
+ google.protobuf.StringValue employee_number = 50;
89
+ google.protobuf.StringValue employee_type = 51;
90
+ google.protobuf.StringValue initials = 52;
91
+ google.protobuf.StringValue middle_name = 53;
92
+
93
+ google.protobuf.StringValue primary_group_object_guid = 54;
94
+ google.protobuf.StringValue manager_object_guid = 55;
95
+ repeated google.protobuf.StringValue member_of_object_guids = 56;
96
+ }
97
+
98
+ message ActiveDirectoryGroup {
99
+ google.protobuf.StringValue sam_account_name = 1;
100
+ google.protobuf.StringValue cn = 2;
101
+ google.protobuf.StringValue ou = 3;
102
+ google.protobuf.StringValue description = 4;
103
+ google.protobuf.StringValue comment = 5;
104
+ google.protobuf.Int32Value group_type = 6;
105
+ google.protobuf.StringValue email = 7;
106
+
107
+ google.protobuf.StringValue managed_by_user_object_guid = 8;
108
+ google.protobuf.StringValue managed_by_group_object_guid = 9;
109
+
110
+ repeated google.protobuf.StringValue member_of_object_guids = 10;
111
+ }
112
+
113
+ message ActiveDirectoryDomain {
114
+ google.protobuf.Int32Value minimum_password_age = 1; // in days
115
+ google.protobuf.Int32Value maximum_password_age = 2; // in days
116
+ }
117
+
118
+ message ActiveDirectoryComputer {
119
+ google.protobuf.StringValue sam_account_name = 1;
120
+ google.protobuf.StringValue cn = 2;
121
+ google.protobuf.StringValue ou = 3;
122
+ google.protobuf.StringValue description = 4;
123
+ google.protobuf.StringValue comment = 5;
124
+ google.protobuf.StringValue company = 6;
125
+ google.protobuf.StringValue location = 7;
126
+ google.protobuf.StringValue ip_address = 8;
127
+ google.protobuf.BoolValue enabled = 9;
128
+ google.protobuf.StringValue bitlocker_recovery_info = 10;
129
+ google.protobuf.StringValue operatingSystem = 11;
130
+ google.protobuf.StringValue operatingSystemVersion = 12;
131
+
132
+ google.protobuf.StringValue managed_by_user_object_guid = 13;
133
+ google.protobuf.StringValue managed_by_group_object_guid = 14;
134
+ }
135
+
13
136
  /* AirWatch API scanning root object */
14
137
  message AirWatchOrganizationGroups {
15
138
  repeated AirWatchOrganizationGroup entries = 1;
@@ -1188,4 +1311,4 @@ message CitrixPool {
1188
1311
  repeated CitrixPoolPatch patches = 24;
1189
1312
  repeated CitrixAppliance appliances = 25;
1190
1313
  repeated CitrixTemplate templates = 26;
1191
- }
1314
+ }