@lansweeper/discovery-sensor-proto 2.13.7 → 2.13.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.
@@ -0,0 +1,266 @@
1
+ syntax = "proto3";
2
+
3
+ package com.lansweeper.discovery.sensor.mac.v1;
4
+
5
+ option java_multiple_files = true;
6
+ option java_package = "com.lansweeper.dp.proto.discovery.sections.mac";
7
+
8
+ option csharp_namespace = "Lansweeper.IT.Model.Proto.Sensor.Mac";
9
+
10
+ import "google/protobuf/wrappers.proto";
11
+
12
+ /* Section element for memory info on Mac */
13
+ message MacMemory {
14
+ repeated Memory entries = 1;
15
+ }
16
+
17
+ message Memory {
18
+ google.protobuf.StringValue name = 1;
19
+ google.protobuf.StringValue size = 2;
20
+ google.protobuf.StringValue speed = 3;
21
+ google.protobuf.StringValue type = 4;
22
+ google.protobuf.StringValue status = 5;
23
+ }
24
+
25
+ /* Section element for hard disks on Mac */
26
+ message MacHardDisk {
27
+ repeated HardDisk entries = 1;
28
+ }
29
+
30
+ message HardDisk
31
+ {
32
+ google.protobuf.StringValue filesystem = 1;
33
+ google.protobuf.StringValue size = 2;
34
+ google.protobuf.StringValue used = 3;
35
+ google.protobuf.StringValue available = 4;
36
+ google.protobuf.StringValue percentage = 5;
37
+ google.protobuf.StringValue mounted_on = 6;
38
+ }
39
+
40
+ /* Section element for bluetooth devices on Mac */
41
+ message MacBluetooth {
42
+ repeated Bluetooth entries = 1;
43
+ }
44
+
45
+ message Bluetooth {
46
+ google.protobuf.StringValue address = 1;
47
+ google.protobuf.StringValue firmware_version = 2;
48
+ google.protobuf.StringValue discoverable = 3;
49
+ google.protobuf.StringValue chip_set = 4;
50
+ google.protobuf.StringValue product_id = 5;
51
+ google.protobuf.StringValue controller_state = 6;
52
+ google.protobuf.StringValue supported_services = 7;
53
+ google.protobuf.StringValue transport = 8;
54
+ google.protobuf.StringValue vendor_id = 9;
55
+ }
56
+
57
+ /* Section element for network info on Mac */
58
+ message MacNetwork {
59
+ repeated Network entries = 1;
60
+ }
61
+
62
+ message Network {
63
+ google.protobuf.StringValue name = 1;
64
+ google.protobuf.StringValue service_order = 2;
65
+ google.protobuf.StringValue hardware = 3;
66
+ google.protobuf.StringValue bsd_device_name = 4;
67
+ google.protobuf.StringValue type = 5;
68
+ optional NetworkProxies proxies = 6;
69
+ optional NetworkIpv4 ipv4 = 7;
70
+ optional NetworkIpv6 ipv6 = 8;
71
+ optional NetworkDns dns = 9;
72
+ optional NetworkEthernet ethernet = 10;
73
+ optional NetworkDhcp dhcp = 11;
74
+ optional NetworkAppleTalk apple_talk = 12;
75
+ repeated string ip_addresses = 13;
76
+ }
77
+
78
+ message NetworkProxies {
79
+ google.protobuf.StringValue ConfigurationMethod = 1;
80
+ google.protobuf.StringValue ExcludeSimpleHostnames = 2;
81
+ google.protobuf.StringValue FtpPassive = 3;
82
+ google.protobuf.StringValue AutoDiscoveryEnabled = 4;
83
+ google.protobuf.StringValue FtpEnable = 5;
84
+ google.protobuf.StringValue GopherEnable = 6;
85
+ google.protobuf.StringValue HttpEnable = 7;
86
+ google.protobuf.StringValue HttpsEnable = 8;
87
+ google.protobuf.StringValue RtsPEnable = 9;
88
+ google.protobuf.StringValue SocksEnable = 10;
89
+ repeated string ExceptionsList = 11;
90
+ }
91
+
92
+ message NetworkIpv4 {
93
+ google.protobuf.StringValue config_method = 1;
94
+ google.protobuf.StringValue interface_name = 2;
95
+ google.protobuf.StringValue router = 3;
96
+ repeated string addresses = 4;
97
+ repeated string subnet_masks = 5;
98
+ google.protobuf.StringValue arp_resolved_hardware_address = 6;
99
+ google.protobuf.StringValue arp_resolved_ip_address = 7;
100
+ google.protobuf.StringValue confirmed_interface_name = 8;
101
+ google.protobuf.StringValue network_signature = 9;
102
+ repeated NetworkIpv4AdditionalRoutes additional_routes = 10;
103
+ }
104
+
105
+ message NetworkIpv4AdditionalRoutes {
106
+ google.protobuf.StringValue destination_address = 1;
107
+ google.protobuf.StringValue subnet_mask = 2;
108
+ }
109
+
110
+ message NetworkIpv6 {
111
+ google.protobuf.StringValue config_method = 1;
112
+ google.protobuf.StringValue interface_name = 2;
113
+ google.protobuf.StringValue router = 3;
114
+ repeated string addresses = 4;
115
+ repeated string subnet_masks = 5;
116
+ }
117
+
118
+ message NetworkDns {
119
+ google.protobuf.StringValue domain_name = 1;
120
+ repeated string server_addresses = 2;
121
+ }
122
+
123
+ message NetworkEthernet {
124
+ google.protobuf.StringValue mac_address = 1;
125
+ google.protobuf.StringValue media_sub_type = 2;
126
+ repeated string media_options = 3;
127
+ }
128
+
129
+ message NetworkDhcp {
130
+ google.protobuf.StringValue domain_name = 1;
131
+ google.protobuf.StringValue domain_name_servers = 2;
132
+ google.protobuf.StringValue lease_duration = 3;
133
+ google.protobuf.StringValue message_type = 4;
134
+ google.protobuf.StringValue routers = 5;
135
+ google.protobuf.StringValue server_identifier = 6;
136
+ google.protobuf.StringValue subnet_mask = 7;
137
+ }
138
+
139
+ message NetworkAppleTalk {
140
+ google.protobuf.StringValue config_method = 1;
141
+ google.protobuf.StringValue default_zone = 2;
142
+ google.protobuf.StringValue interface_name = 3;
143
+ google.protobuf.StringValue network_id = 4;
144
+ google.protobuf.StringValue node_id = 5;
145
+ }
146
+
147
+ /* Section element for network volumes on Mac */
148
+ message MacNetworkVolume {
149
+ repeated NetworkVolume entries = 1;
150
+ }
151
+
152
+ message NetworkVolume {
153
+ google.protobuf.StringValue name = 1;
154
+ google.protobuf.StringValue auto_mounted = 2;
155
+ google.protobuf.StringValue fsmt_non_name = 3;
156
+ google.protobuf.StringValue fs_type_name = 4;
157
+ google.protobuf.StringValue mnt_from_name = 5;
158
+ }
159
+
160
+ /* Section element for basic info on Mac */
161
+ message MacOsInfo {
162
+ google.protobuf.StringValue system_version = 1;
163
+ google.protobuf.StringValue kernel_version = 2;
164
+ google.protobuf.StringValue boot_volume = 3;
165
+ google.protobuf.StringValue boot_mode = 4;
166
+ google.protobuf.StringValue computer_name = 5;
167
+ google.protobuf.StringValue user_name = 6;
168
+ google.protobuf.StringValue up_time = 7;
169
+ google.protobuf.StringValue secure_virtual_memory = 8;
170
+ google.protobuf.StringValue sixty_four_bit_kernel_and_exts = 9;
171
+ google.protobuf.StringValue system_integrity = 10;
172
+ }
173
+
174
+ /* Section element for power info on Mac */
175
+ message Power {
176
+ optional AcPower ac_power = 1;
177
+ google.protobuf.StringValue ups_installed = 2;
178
+ optional BatteryPower battery_power = 3;
179
+ optional BatteryChargeInfo battery_charge_info = 4;
180
+ optional BatteryHealthInfo battery_health_info = 5;
181
+ optional BatteryModelInfo battery_model_info = 6;
182
+ google.protobuf.StringValue battery_charger_connected = 7;
183
+ google.protobuf.StringValue battery_is_charging = 8;
184
+ }
185
+
186
+ message AcPower {
187
+ google.protobuf.StringValue disk_sleep_timer = 1;
188
+ google.protobuf.StringValue display_sleep_timer = 2;
189
+ google.protobuf.StringValue hibernate_mode = 3;
190
+ google.protobuf.StringValue prioritize_network_reachability_over_sleep = 4;
191
+ google.protobuf.StringValue sleep_on_power_button = 5;
192
+ google.protobuf.StringValue system_sleep_timer = 6;
193
+ google.protobuf.StringValue wake_on_lan = 7;
194
+ google.protobuf.StringValue current_power_source = 8;
195
+ google.protobuf.StringValue high_power_mode = 9;
196
+ google.protobuf.StringValue low_power_mode = 10;
197
+ }
198
+
199
+ message BatteryPower {
200
+ google.protobuf.StringValue disk_sleep_timer = 1;
201
+ google.protobuf.StringValue display_sleep_timer = 2;
202
+ google.protobuf.StringValue hibernate_mode = 3;
203
+ google.protobuf.StringValue prioritize_network_reachability_over_sleep = 4;
204
+ google.protobuf.StringValue sleep_on_power_button = 5;
205
+ google.protobuf.StringValue system_sleep_timer = 6;
206
+ google.protobuf.StringValue wake_on_lan = 7;
207
+ google.protobuf.StringValue current_power_source = 8;
208
+ google.protobuf.StringValue high_power_mode = 9;
209
+ google.protobuf.StringValue low_power_mode = 10;
210
+ google.protobuf.StringValue reduce_brightness = 11;
211
+ }
212
+
213
+ message BatteryChargeInfo {
214
+ google.protobuf.StringValue is_at_warn_level = 1;
215
+ google.protobuf.StringValue is_fully_charged = 2;
216
+ google.protobuf.StringValue is_charging = 3;
217
+ google.protobuf.StringValue state_of_charge = 4;
218
+ }
219
+
220
+ message BatteryHealthInfo {
221
+ google.protobuf.StringValue cycle_count = 1;
222
+ google.protobuf.StringValue health_status = 2;
223
+ google.protobuf.StringValue health_status_maximum_capacity = 3;
224
+ }
225
+
226
+ message BatteryModelInfo {
227
+ google.protobuf.StringValue pcb_lot_code = 1;
228
+ google.protobuf.StringValue pack_lot_code = 2;
229
+ google.protobuf.StringValue cell_revision = 3;
230
+ google.protobuf.StringValue device_name = 4;
231
+ google.protobuf.StringValue firmware_version = 5;
232
+ google.protobuf.StringValue hardware_revision = 6;
233
+ google.protobuf.StringValue serial_number = 7;
234
+ }
235
+
236
+ /* Section element for software on Mac */
237
+ message MacSoftware {
238
+ repeated Software entries = 1;
239
+ }
240
+
241
+ message Software {
242
+ google.protobuf.StringValue name = 1;
243
+ google.protobuf.StringValue install_date = 2;
244
+ google.protobuf.StringValue version = 3;
245
+ google.protobuf.StringValue description = 4;
246
+ google.protobuf.StringValue path = 5;
247
+ google.protobuf.StringValue runtime_environment = 6;
248
+ google.protobuf.StringValue has64_bit_intel_code = 7;
249
+ }
250
+
251
+ /* Section element for system hardware info on Mac */
252
+ message SystemHardware {
253
+ google.protobuf.StringValue machine_name = 1;
254
+ google.protobuf.StringValue machine_model = 2;
255
+ google.protobuf.StringValue cpu_type = 3;
256
+ google.protobuf.StringValue nr_of_cpus = 4;
257
+ google.protobuf.StringValue cpu_speed = 5;
258
+ google.protobuf.StringValue l2_cache_per_cpu = 6;
259
+ google.protobuf.StringValue memory = 7;
260
+ google.protobuf.StringValue bus_speed = 8;
261
+ google.protobuf.StringValue boot_rom_version = 9;
262
+ google.protobuf.StringValue serial_number = 10;
263
+ google.protobuf.StringValue packages = 11;
264
+ google.protobuf.StringValue platform_uuid = 12;
265
+ google.protobuf.StringValue smc_version_system = 13;
266
+ }
@@ -0,0 +1,449 @@
1
+ syntax = "proto3";
2
+
3
+ package com.lansweeper.discovery.sensor.unix.v1;
4
+
5
+ option java_multiple_files = true;
6
+ option java_package = "com.lansweeper.dp.proto.discovery.sections.unix";
7
+
8
+ option csharp_namespace = "Lansweeper.IT.Model.Proto.Sensor.Unix";
9
+
10
+ import "google/protobuf/timestamp.proto";
11
+ import "google/protobuf/wrappers.proto";
12
+
13
+ enum UnixDistributionFamily
14
+ {
15
+ unknown_family = 0;
16
+ debian_family = 1;
17
+ redHat_family = 2;
18
+ solaris_family = 3;
19
+ }
20
+
21
+ enum UnixDistribution
22
+ {
23
+ unknown_distribution = 0;
24
+ debian = 1;
25
+ ubuntu = 2;
26
+ mint = 3;
27
+ kali = 4;
28
+ redHat = 5;
29
+ centOs = 6;
30
+ oracle = 7;
31
+ fedora = 8;
32
+ solaris = 9;
33
+ aix = 10;
34
+ bsd = 11;
35
+ open_suse_leap = 12;
36
+ suse_linux_enterprise = 13;
37
+ }
38
+
39
+ enum SoftwareType
40
+ {
41
+ unknown_software_type = 0;
42
+ package = 1;
43
+ flatpak = 2;
44
+ snap = 3;
45
+ unbundled = 4;
46
+ }
47
+
48
+ message UnixDistributionInfo
49
+ {
50
+ google.protobuf.StringValue name = 1;
51
+ optional UnixDistributionFamily family = 2;
52
+ google.protobuf.StringValue version = 3;
53
+ optional UnixDistribution distribution = 4;
54
+ }
55
+
56
+ /* Section element for baseboard on Unix */
57
+ message Baseboard {
58
+ google.protobuf.StringValue product_name = 1;
59
+ google.protobuf.StringValue manufacturer = 2;
60
+ google.protobuf.StringValue version = 3;
61
+ google.protobuf.StringValue serial_number = 4;
62
+ google.protobuf.StringValue location_in_chassis = 5;
63
+ google.protobuf.StringValue type = 6;
64
+ }
65
+
66
+ /* Section element for basic info on Unix */
67
+ message BasicInfo {
68
+ bool is_dmidecode_available = 1;
69
+ bool is_sudo_available = 2;
70
+ google.protobuf.StringValue dmi_decode_path = 3;
71
+ bool is_hal_available = 4;
72
+ }
73
+
74
+ /* Section element for BIOS info on Unix */
75
+ message Bios {
76
+ google.protobuf.StringValue version = 1;
77
+ google.protobuf.StringValue release_date = 2;
78
+ google.protobuf.StringValue address = 3;
79
+ google.protobuf.StringValue vendor = 4;
80
+ google.protobuf.StringValue runtime_size = 5;
81
+ google.protobuf.StringValue rom_size = 6;
82
+ optional google.protobuf.Timestamp release_date_utc = 7;
83
+ }
84
+
85
+ /* Section element for computer system info on Unix */
86
+ message ComputerSystem {
87
+ int64 uptime = 1;
88
+ google.protobuf.StringValue asset_name = 2;
89
+ google.protobuf.StringValue ssh_server = 3;
90
+ google.protobuf.StringValue dns_name = 4;
91
+ google.protobuf.StringValue manufacturer = 5;
92
+ google.protobuf.StringValue model = 6;
93
+ google.protobuf.StringValue version = 7;
94
+ google.protobuf.StringValue serial = 8;
95
+ google.protobuf.StringValue uuid = 9;
96
+ google.protobuf.StringValue wakeup_time = 10;
97
+ google.protobuf.StringValue boot_status = 11;
98
+ google.protobuf.StringValue network_node_hostname = 12;
99
+ google.protobuf.StringValue machine_hardwareName = 13;
100
+ google.protobuf.StringValue processor_type = 14;
101
+ google.protobuf.StringValue hardware_platform = 15;
102
+ google.protobuf.StringValue system_sku = 16;
103
+ google.protobuf.StringValue total_memory = 17;
104
+ google.protobuf.StringValue firmware = 18;
105
+ }
106
+
107
+ /* Section element for files on Unix */
108
+ message FileInfos {
109
+ repeated FileInfoEntry entries = 1;
110
+ }
111
+
112
+ message FileInfoEntry
113
+ {
114
+ google.protobuf.StringValue owner = 1;
115
+ google.protobuf.StringValue file_path = 2;
116
+ google.protobuf.BoolValue found = 3;
117
+ google.protobuf.StringValue type = 4;
118
+ optional google.protobuf.Timestamp last_modified = 5;
119
+ optional google.protobuf.Timestamp last_accessed = 6;
120
+ google.protobuf.Int32Value size = 7;
121
+ }
122
+
123
+ /* Section element for groups on Unix */
124
+ message Groups {
125
+ repeated GroupEntry entries = 1;
126
+ }
127
+
128
+ message GroupEntry {
129
+ int32 group_id = 1;
130
+ google.protobuf.StringValue name = 2;
131
+ google.protobuf.StringValue type = 3;
132
+ repeated string user_names = 4;
133
+ }
134
+
135
+ /* Section element for hard disks on Unix */
136
+ message HardDisks {
137
+ repeated HardDiskEntry entries = 1;
138
+ }
139
+
140
+ message HardDiskEntry {
141
+ google.protobuf.StringValue filesystem = 1;
142
+ google.protobuf.StringValue type = 2;
143
+ google.protobuf.StringValue size = 3;
144
+ google.protobuf.StringValue used = 4;
145
+ google.protobuf.StringValue available = 5;
146
+ google.protobuf.StringValue percentage = 6;
147
+ google.protobuf.StringValue mounted_on = 7;
148
+ }
149
+
150
+ /* Section element for memory controller info on Unix */
151
+ message MemoryController {
152
+ google.protobuf.StringValue supported_interleave = 1;
153
+ google.protobuf.StringValue current_interleave = 2;
154
+ google.protobuf.StringValue max_memory_module_size = 3;
155
+ google.protobuf.StringValue max_total_memory_size = 4;
156
+ google.protobuf.StringValue supported_speeds = 5;
157
+ google.protobuf.StringValue supported_mem_types = 6;
158
+ google.protobuf.StringValue memory_module_voltage = 7;
159
+ google.protobuf.StringValue number_of_slots = 8;
160
+ }
161
+
162
+ /* Section element for memory devices on Unix */
163
+ message MemoryDevices {
164
+ repeated MemoryDeviceEntry entries = 1;
165
+ }
166
+
167
+ message MemoryDeviceEntry {
168
+ google.protobuf.StringValue total_width = 1;
169
+ google.protobuf.StringValue data_width = 2;
170
+ google.protobuf.StringValue size = 3;
171
+ google.protobuf.StringValue form_factor = 4;
172
+ google.protobuf.StringValue set = 5;
173
+ google.protobuf.StringValue locator = 6;
174
+ google.protobuf.StringValue bank_locator = 7;
175
+ google.protobuf.StringValue type = 8;
176
+ google.protobuf.StringValue type_detail = 9;
177
+ google.protobuf.StringValue speed = 10;
178
+ google.protobuf.StringValue manufacturer = 11;
179
+ google.protobuf.StringValue serial_number = 12;
180
+ }
181
+
182
+ /* Section element for memory modules on Unix */
183
+ message MemoryModules {
184
+ repeated MemoryModuleEntry entries = 1;
185
+ }
186
+
187
+ message MemoryModuleEntry {
188
+ google.protobuf.StringValue socket = 1;
189
+ google.protobuf.StringValue bank_connections = 2;
190
+ google.protobuf.StringValue current_speed = 3;
191
+ google.protobuf.StringValue type = 4;
192
+ google.protobuf.StringValue installed_size = 5;
193
+ google.protobuf.StringValue enabled_size = 6;
194
+ google.protobuf.StringValue error_status = 7;
195
+ }
196
+
197
+ /* Section element for network info on Unix */
198
+ message Network {
199
+ repeated NetworkAdapterEntry network_adapters = 1;
200
+ repeated string mac_addresses = 2;
201
+ }
202
+
203
+ message NetworkAdapterEntry {
204
+ google.protobuf.StringValue name = 1;
205
+ google.protobuf.StringValue link_encap = 2;
206
+ google.protobuf.StringValue mac = 3;
207
+ google.protobuf.StringValue ip4 = 4;
208
+ google.protobuf.StringValue broadcast = 5;
209
+ google.protobuf.StringValue mask = 6;
210
+ google.protobuf.StringValue ip6 = 7;
211
+ google.protobuf.StringValue scope = 8;
212
+ google.protobuf.StringValue gateway = 9;
213
+ google.protobuf.StringValue state = 10;
214
+ google.protobuf.StringValue q_disc = 11;
215
+ google.protobuf.StringValue master = 12;
216
+ google.protobuf.Int32Value mtu = 13;
217
+ google.protobuf.StringValue group = 14;
218
+ }
219
+
220
+ /* Section element for optical drives on Unix */
221
+ message OpticalDrives {
222
+ repeated OpticalDriveEntry entries = 1;
223
+ }
224
+
225
+ message OpticalDriveEntry {
226
+ google.protobuf.StringValue vendor = 1;
227
+ google.protobuf.StringValue path = 2;
228
+ google.protobuf.StringValue product = 3;
229
+ google.protobuf.StringValue bus = 4;
230
+ google.protobuf.StringValue mount = 5;
231
+ }
232
+
233
+ /* Section element for OS info on Unix */
234
+ message OperatingSystem {
235
+ google.protobuf.StringValue kernel_name = 1;
236
+ google.protobuf.StringValue kernel_release = 2;
237
+ google.protobuf.StringValue kernel_version = 3;
238
+ google.protobuf.StringValue distribution = 4;
239
+ google.protobuf.StringValue os_release = 5;
240
+ }
241
+
242
+ /* Section element for PCI cards on Unix */
243
+ message PciCards {
244
+ repeated PciCardEntry entries = 1;
245
+ }
246
+
247
+ /* Section element for graphics cards on Unix */
248
+ message GraphicsCards {
249
+ repeated PciCardEntry entries = 1;
250
+ }
251
+
252
+ /* Section element for sound cards on Unix */
253
+ message SoundCards {
254
+ repeated PciCardEntry entries = 1;
255
+ }
256
+
257
+ message PciCardEntry {
258
+ google.protobuf.StringValue device_id = 1;
259
+ google.protobuf.StringValue type = 2;
260
+ google.protobuf.StringValue name = 3;
261
+ google.protobuf.StringValue manufacturer = 4;
262
+ google.protobuf.StringValue subsystem_name = 5;
263
+ google.protobuf.StringValue subsystem_manufacturer = 6;
264
+ google.protobuf.StringValue parent = 7;
265
+ }
266
+
267
+ /* Section element for physical hard disks on Unix */
268
+ message PhysicalHardDisks {
269
+ repeated PhysicalHardDiskEntry entries = 1;
270
+ }
271
+
272
+ message PhysicalHardDiskEntry {
273
+ google.protobuf.StringValue name = 1;
274
+ google.protobuf.Int64Value size = 2;
275
+ google.protobuf.StringValue state = 3;
276
+ google.protobuf.StringValue hctl = 4;
277
+ google.protobuf.StringValue maj_min = 5;
278
+ google.protobuf.BoolValue hotplug = 6;
279
+ google.protobuf.StringValue model = 7;
280
+ google.protobuf.StringValue serial = 8;
281
+ google.protobuf.StringValue vendor = 9;
282
+ google.protobuf.StringValue rev = 10;
283
+ }
284
+
285
+ /* Section element for physical processors on Unix */
286
+ message PhysicalProcessors {
287
+ repeated PhysicalProcessorEntry entries = 1;
288
+ }
289
+
290
+ message PhysicalProcessorEntry {
291
+ google.protobuf.StringValue model_name = 1;
292
+ google.protobuf.StringValue model_type = 2;
293
+ google.protobuf.Int32Value stepping = 3;
294
+ google.protobuf.StringValue manufacturer = 4;
295
+ google.protobuf.StringValue family = 5;
296
+ google.protobuf.StringValue architecture = 6;
297
+ google.protobuf.StringValue opModes = 7;
298
+ google.protobuf.Int32Value number_of_physical_cores = 8;
299
+ google.protobuf.Int32Value threads_per_physical_core = 9;
300
+ google.protobuf.Int32Value number_of_logical_cores = 10;
301
+ google.protobuf.Int32Value sockets = 11;
302
+ google.protobuf.StringValue current_clock_speed = 12;
303
+ google.protobuf.StringValue minimum_clock_speed = 13;
304
+ google.protobuf.StringValue maximum_clock_speed = 14;
305
+ google.protobuf.StringValue bogo_mips = 15;
306
+ google.protobuf.StringValue l1d_cache_size = 16;
307
+ google.protobuf.StringValue l1i_cache_size = 17;
308
+ google.protobuf.StringValue l2_cache_size = 18;
309
+ google.protobuf.StringValue l3_cache_size = 19;
310
+ google.protobuf.StringValue byte_order = 20;
311
+ google.protobuf.StringValue address_sizes = 21;
312
+ google.protobuf.StringValue virtualization = 22;
313
+ google.protobuf.StringValue hypervisor_vendor = 23;
314
+ }
315
+
316
+ /* Section element for processors on Unix */
317
+ message Processors {
318
+ repeated ProcessorEntry entries = 1;
319
+ }
320
+
321
+ message ProcessorEntry {
322
+ google.protobuf.StringValue socket = 1;
323
+ google.protobuf.StringValue type = 2;
324
+ google.protobuf.StringValue family = 3;
325
+ google.protobuf.StringValue manufacturer = 4;
326
+ google.protobuf.StringValue id = 5;
327
+ google.protobuf.StringValue version = 6;
328
+ google.protobuf.StringValue voltage = 7;
329
+ google.protobuf.StringValue external_clock = 8;
330
+ google.protobuf.StringValue max_speed = 9;
331
+ google.protobuf.StringValue current_speed = 10;
332
+ google.protobuf.StringValue status = 11;
333
+ google.protobuf.StringValue serial_number = 12;
334
+ }
335
+
336
+ /* Section element for software on Unix */
337
+ message Software {
338
+ repeated SoftwareEntry entries = 1;
339
+ }
340
+
341
+ message SoftwareEntry {
342
+ google.protobuf.StringValue name = 1;
343
+ google.protobuf.StringValue version = 2;
344
+ google.protobuf.StringValue description = 3;
345
+ google.protobuf.StringValue release = 4;
346
+ google.protobuf.StringValue architecture = 5;
347
+ google.protobuf.StringValue desired = 6;
348
+ google.protobuf.StringValue status = 7;
349
+ google.protobuf.StringValue error = 8;
350
+ google.protobuf.StringValue install_date = 9;
351
+ optional SoftwareType Type = 10;
352
+ optional google.protobuf.Timestamp install_date_utc = 11;
353
+ google.protobuf.Int64Value size = 12;
354
+ google.protobuf.StringValue path = 13;
355
+ google.protobuf.StringValue software_publisher = 14;
356
+ google.protobuf.Int32Value approved = 15;
357
+ google.protobuf.StringValue application_id = 16;
358
+ }
359
+
360
+ /* Section element for system encolsure info on Unix */
361
+ message SystemEnclosure {
362
+ google.protobuf.Int32Value chassis_types = 1;
363
+ google.protobuf.BoolValue lock_present = 2;
364
+ google.protobuf.StringValue manufacturer = 3;
365
+ google.protobuf.Int32Value security_status = 4;
366
+ google.protobuf.StringValue serial = 5;
367
+ google.protobuf.StringValue sm_bios_asset_tag = 6;
368
+ google.protobuf.StringValue version = 7;
369
+ }
370
+
371
+ /* Section element for user logons on Unix */
372
+ message UserLogons {
373
+ repeated UserLogonEntry entries = 1;
374
+ }
375
+
376
+ message UserLogonEntry {
377
+ google.protobuf.StringValue user_name = 1;
378
+ google.protobuf.StringValue port = 2;
379
+ google.protobuf.StringValue ip_address = 3;
380
+ optional google.protobuf.Timestamp logon_time = 4;
381
+ }
382
+
383
+ /* Section element for users on Unix */
384
+ message Users {
385
+ repeated UserEntry entries = 1;
386
+ }
387
+
388
+ message UserEntry {
389
+ google.protobuf.StringValue user_name = 1;
390
+ google.protobuf.StringValue comment = 2;
391
+ google.protobuf.Int32Value userId = 3;
392
+ google.protobuf.Int32Value groupId = 4;
393
+ google.protobuf.StringValue type = 5;
394
+ google.protobuf.StringValue home_directory = 6;
395
+ google.protobuf.StringValue login_shell = 7;
396
+ }
397
+
398
+ /* Section element for volumes on Unix */
399
+ message Volumes {
400
+ repeated VolumeEntry entries = 1;
401
+ }
402
+
403
+ message VolumeEntry {
404
+ google.protobuf.StringValue type = 1;
405
+ google.protobuf.DoubleValue size = 2;
406
+ google.protobuf.StringValue mounted = 3;
407
+ google.protobuf.StringValue path = 4;
408
+ google.protobuf.StringValue mount_point = 5;
409
+ google.protobuf.StringValue label = 6;
410
+ }
411
+
412
+ /* Section element for volume groups on Unix */
413
+ message VolumeGroups {
414
+ repeated VolumeGroupEntry entries = 1;
415
+ }
416
+
417
+ message VolumeGroupEntry {
418
+ google.protobuf.StringValue name = 1;
419
+ google.protobuf.StringValue uuid = 2;
420
+ google.protobuf.Int64Value size = 3;
421
+ google.protobuf.Int64Value free = 4;
422
+ google.protobuf.StringValue access = 5;
423
+ google.protobuf.StringValue status = 6;
424
+ google.protobuf.StringValue format = 7;
425
+ repeated LogicalVolumeEntry logical_volumes = 8;
426
+ repeated PhysicalVolumeEntry physical_volumes = 9;
427
+ }
428
+
429
+ message LogicalVolumeEntry
430
+ {
431
+ google.protobuf.StringValue volume_group_name = 1;
432
+ google.protobuf.StringValue name = 2;
433
+ google.protobuf.StringValue uuid = 3;
434
+ google.protobuf.StringValue device_mapper_path = 4;
435
+ google.protobuf.Int64Value size = 5;
436
+ google.protobuf.StringValue block_device = 6;
437
+ optional google.protobuf.Timestamp creation_time = 7;
438
+ }
439
+
440
+ message PhysicalVolumeEntry
441
+ {
442
+ google.protobuf.StringValue volume_group_name = 1;
443
+ google.protobuf.StringValue name = 2;
444
+ google.protobuf.StringValue uuid = 3;
445
+ google.protobuf.Int64Value size = 4;
446
+ google.protobuf.Int64Value free = 5;
447
+ google.protobuf.Int64Value used = 6;
448
+ google.protobuf.StringValue in_use = 7;
449
+ }