@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,1199 @@
1
+ syntax = "proto3";
2
+
3
+ package com.lansweeper.discovery.sensor.api.v1;
4
+
5
+ option java_multiple_files = true;
6
+ option java_package = "com.lansweeper.dp.proto.discovery.sections.api";
7
+
8
+ option csharp_namespace = "Lansweeper.IT.Model.Proto.Sensor.Api";
9
+
10
+ import "google/protobuf/timestamp.proto";
11
+ import "google/protobuf/wrappers.proto";
12
+
13
+ /* AirWatch API scanning root object */
14
+ message AirWatchOrganizationGroups {
15
+ repeated AirWatchOrganizationGroup entries = 1;
16
+ }
17
+
18
+ message AirWatchOrganizationGroup {
19
+ google.protobuf.StringValue name = 1;
20
+ int32 organization_group_id = 2;
21
+ google.protobuf.StringValue location_group_type = 3;
22
+ google.protobuf.StringValue country = 4;
23
+ google.protobuf.StringValue locale = 5;
24
+ google.protobuf.StringValue created_on = 6;
25
+ google.protobuf.Int32Value users = 7;
26
+ google.protobuf.Int32Value admins = 8;
27
+ google.protobuf.Int32Value devices = 9;
28
+ google.protobuf.Int32Value lg_level = 10;
29
+ google.protobuf.StringValue uuid = 11;
30
+ google.protobuf.Timestamp last_changed = 12;
31
+ repeated AirWatchUser air_watch_users = 13;
32
+ repeated AirWatchDevice air_watch_devices = 14;
33
+ }
34
+
35
+ message AirWatchUser {
36
+ google.protobuf.StringValue user_name = 1;
37
+ google.protobuf.StringValue first_name = 2;
38
+ google.protobuf.StringValue last_name = 3;
39
+ google.protobuf.BoolValue status = 4;
40
+ google.protobuf.StringValue email = 5;
41
+ google.protobuf.StringValue security_type = 6;
42
+ google.protobuf.StringValue contact_number = 7;
43
+ google.protobuf.StringValue mobile_number = 8;
44
+ google.protobuf.StringValue email_user_name = 9;
45
+ google.protobuf.StringValue group = 10;
46
+ google.protobuf.StringValue custom_attribute1 = 11;
47
+ google.protobuf.StringValue custom_attribute2 = 12;
48
+ google.protobuf.StringValue custom_attribute3 = 13;
49
+ google.protobuf.StringValue custom_attribute4 = 14;
50
+ google.protobuf.StringValue custom_attribute5 = 15;
51
+ google.protobuf.StringValue external_id = 16;
52
+ int32 staging_mode = 17;
53
+ google.protobuf.BoolValue device_staging_enabled = 18;
54
+ google.protobuf.StringValue uuid = 19;
55
+ google.protobuf.Int32Value message_type = 20;
56
+ google.protobuf.Int32Value enrolled_devices_count = 21;
57
+ int32 user_id = 22;
58
+ repeated AirWatchDevice air_watch_devices = 23;
59
+ int32 organization_group_id = 24;
60
+ }
61
+
62
+ message AirWatchDevice {
63
+ google.protobuf.StringValue udid = 1;
64
+ google.protobuf.StringValue imei = 2;
65
+ google.protobuf.StringValue mac_address = 3;
66
+ google.protobuf.StringValue asset_number = 4;
67
+ google.protobuf.StringValue eas_id = 5;
68
+ google.protobuf.StringValue serial_number = 6;
69
+ google.protobuf.StringValue device_friendly_name = 7;
70
+ google.protobuf.StringValue uuid = 8;
71
+ google.protobuf.StringValue location_group_name = 9;
72
+ google.protobuf.StringValue user_name = 10;
73
+ google.protobuf.StringValue user_email_address = 11;
74
+ google.protobuf.StringValue ownership = 12;
75
+ google.protobuf.StringValue platform = 13;
76
+ google.protobuf.StringValue model = 14;
77
+ google.protobuf.StringValue os_version = 15;
78
+ google.protobuf.StringValue phone_number = 16;
79
+ optional google.protobuf.Timestamp last_seen = 17;
80
+ google.protobuf.StringValue enrollment_status = 18;
81
+ google.protobuf.StringValue compliance_status = 19;
82
+ google.protobuf.BoolValue compromised_status = 20;
83
+ optional google.protobuf.Timestamp last_enrolled_on = 21;
84
+ optional google.protobuf.Timestamp last_compliance_check_on = 22;
85
+ optional google.protobuf.Timestamp Last_compromised_check_on = 23;
86
+ google.protobuf.BoolValue is_supervised = 24;
87
+ google.protobuf.Int32Value sim_mcc = 25;
88
+ google.protobuf.Int32Value current_mcc = 26;
89
+ google.protobuf.Int32Value virtual_memory = 27;
90
+ bool is_device_dnd_enabled = 28;
91
+ google.protobuf.BoolValue is_device_locator_enabled = 29;
92
+ google.protobuf.BoolValue is_cloud_backup_enabled = 30;
93
+ google.protobuf.BoolValue is_activation_lock_enabled = 31;
94
+ google.protobuf.BoolValue is_network_tethered = 32;
95
+ google.protobuf.StringValue battery_level = 33;
96
+ google.protobuf.BoolValue is_roaming = 34;
97
+ google.protobuf.BoolValue system_integrity_protection_enabled = 35;
98
+ google.protobuf.Int32Value processor_architecture = 36;
99
+ google.protobuf.Int32Value total_physical_memory = 37;
100
+ google.protobuf.Int32Value available_physical_memory = 38;
101
+ google.protobuf.Timestamp last_changed = 39;
102
+ int32 organization_group_id = 40;
103
+ google.protobuf.Int32Value user_id = 41;
104
+ repeated AirWatchApplication air_watch_applications = 42;
105
+ int32 device_id = 43;
106
+ }
107
+
108
+ message AirWatchApplication {
109
+ google.protobuf.StringValue name = 1;
110
+ google.protobuf.StringValue version = 2;
111
+ google.protobuf.StringValue build_version = 3;
112
+ google.protobuf.StringValue status = 4;
113
+ google.protobuf.Int32Value size = 5;
114
+ google.protobuf.StringValue application_identifier = 6;
115
+ google.protobuf.StringValue type = 7;
116
+ google.protobuf.BoolValue is_managed = 8;
117
+ google.protobuf.Timestamp last_changed = 9;
118
+ }
119
+
120
+ /* AzureAD API scanning root object */
121
+ message AzureAdContainer {
122
+ string tenant_id = 1;
123
+ repeated AzureAdObject azure_ad_objects = 2;
124
+ repeated AzureAdGroupMembership azure_ad_group_memberships = 3;
125
+ optional AzureAdOrganization azure_ad_organization = 4;
126
+ }
127
+
128
+ message AzureAdDevice {
129
+ string azure_id = 1;
130
+ bool account_enabled = 2;
131
+ string device_id = 3;
132
+ google.protobuf.StringValue display_name = 4;
133
+ google.protobuf.BoolValue is_compliant = 5;
134
+ google.protobuf.BoolValue is_managed = 6;
135
+ google.protobuf.StringValue mdm_app_id = 7;
136
+ optional google.protobuf.Timestamp on_premises_last_sync_date_time = 8;
137
+ google.protobuf.BoolValue on_premises_sync_enabled = 9;
138
+ google.protobuf.StringValue operating_system = 10;
139
+ google.protobuf.StringValue operating_system_version = 11;
140
+ google.protobuf.StringValue profile_type = 12;
141
+ google.protobuf.StringValue registered_owner_id = 13;
142
+ google.protobuf.StringValue trust_type = 14;
143
+ }
144
+
145
+ message AzureAdGroup {
146
+ string azure_id = 1;
147
+ optional google.protobuf.Timestamp created_date_time = 2;
148
+ optional google.protobuf.Timestamp deleted_date_time = 3;
149
+ google.protobuf.StringValue description = 4;
150
+ google.protobuf.StringValue display_name = 5;
151
+ optional google.protobuf.Timestamp expiration_date_time = 6;
152
+ google.protobuf.StringValue mail = 7;
153
+ google.protobuf.BoolValue mail_enabled = 8;
154
+ google.protobuf.StringValue mail_nickname = 9;
155
+ google.protobuf.StringValue on_premises_domain_name = 10;
156
+ optional google.protobuf.Timestamp on_premises_last_sync_date_time = 11;
157
+ google.protobuf.StringValue on_premises_net_bios_name = 12;
158
+ google.protobuf.StringValue on_premises_sam_account_name = 13;
159
+ google.protobuf.StringValue on_premises_security_identifier = 14;
160
+ google.protobuf.BoolValue on_premises_sync_enabled = 15;
161
+ google.protobuf.StringValue proxy_addresses = 16;
162
+ optional google.protobuf.Timestamp renewed_date_time = 17;
163
+ google.protobuf.BoolValue security_enabled = 18;
164
+ google.protobuf.StringValue security_identifier = 19;
165
+ google.protobuf.StringValue visibility = 20;
166
+ }
167
+
168
+ message AzureAdGroupMembership {
169
+ optional AzureAdObject azure_ad_object_child = 1;
170
+ optional AzureAdObject azure_ad_object_parent = 2;
171
+ }
172
+
173
+ message AzureAdObject {
174
+ AzureAdObjectType azure_ad_object_type = 1;
175
+ oneof object {
176
+ AzureAdDevice azure_ad_device = 2;
177
+ AzureAdGroup azure_ad_group = 3;
178
+ AzureAdUser azure_ad_user = 4;
179
+ }
180
+ }
181
+
182
+ enum AzureAdObjectType {
183
+ unknown_object_type = 0;
184
+ azure_ad_device = 1;
185
+ azure_ad_group = 2;
186
+ azure_ad_user = 3;
187
+ }
188
+
189
+ message AzureAdOrganization {
190
+ google.protobuf.StringValue business_phone = 1;
191
+ google.protobuf.StringValue city = 2;
192
+ optional google.protobuf.Timestamp company_last_dir_sync_time = 3;
193
+ google.protobuf.StringValue country = 4;
194
+ google.protobuf.StringValue country_letter_code = 5;
195
+ google.protobuf.BoolValue dir_sync_enabled = 6;
196
+ google.protobuf.StringValue displayname = 7;
197
+ google.protobuf.StringValue postal_code = 8;
198
+ google.protobuf.StringValue state = 9;
199
+ google.protobuf.StringValue street = 10;
200
+ }
201
+
202
+ message AzureAdUser {
203
+ string azure_id = 1;
204
+ bool account_enabled = 2;
205
+ google.protobuf.StringValue business_phones = 3;
206
+ optional google.protobuf.Timestamp created_date_time = 4;
207
+ google.protobuf.StringValue city = 5;
208
+ google.protobuf.StringValue company_name = 6;
209
+ google.protobuf.StringValue country = 7;
210
+ optional google.protobuf.Timestamp deleted_date_time = 8;
211
+ google.protobuf.StringValue department = 9;
212
+ google.protobuf.StringValue display_name = 10;
213
+ google.protobuf.StringValue employee_id = 11;
214
+ google.protobuf.StringValue employee_type = 12;
215
+ google.protobuf.StringValue fax_number = 13;
216
+ google.protobuf.StringValue given_name = 14;
217
+ google.protobuf.StringValue im_addresses = 15;
218
+ google.protobuf.StringValue job_title = 16;
219
+ google.protobuf.Timestamp last_changed = 17;
220
+ optional google.protobuf.Timestamp last_password_change_date_time = 18;
221
+ optional google.protobuf.Timestamp last_logon = 19;
222
+ google.protobuf.StringValue mail = 20;
223
+ google.protobuf.StringValue manager_upn = 21;
224
+ google.protobuf.StringValue mobile_phone = 22;
225
+ google.protobuf.StringValue office_location = 23;
226
+ google.protobuf.StringValue on_premises_domain_name = 24;
227
+ google.protobuf.StringValue on_premises_ou = 25;
228
+ optional google.protobuf.Timestamp on_premises_last_sync_date_time = 26;
229
+ google.protobuf.StringValue on_premises_distinguished_name = 27;
230
+ google.protobuf.StringValue on_premises_immutable_id = 28;
231
+ google.protobuf.StringValue on_premises_sam_account_name = 29;
232
+ google.protobuf.StringValue on_premises_security_identifier = 30;
233
+ google.protobuf.BoolValue on_premises_sync_enabled = 31;
234
+ google.protobuf.StringValue on_premises_user_principal_name = 32;
235
+ google.protobuf.StringValue other_mails = 33;
236
+ google.protobuf.StringValue password_policies = 34;
237
+ google.protobuf.StringValue password_profile = 35;
238
+ google.protobuf.StringValue postal_code = 36;
239
+ google.protobuf.StringValue proxy_addresses = 37;
240
+ google.protobuf.StringValue street_address = 38;
241
+ google.protobuf.StringValue surname = 39;
242
+ google.protobuf.StringValue state = 40;
243
+ google.protobuf.StringValue user_principal_name = 41;
244
+ }
245
+
246
+ /* ChromeOS API scanning root object */
247
+ message ChromeOses {
248
+ repeated ChromeOs entries = 1;
249
+ }
250
+
251
+ message ChromeOs {
252
+ google.protobuf.StringValue annotated_asset_id = 1;
253
+ google.protobuf.StringValue annotated_location = 2;
254
+ google.protobuf.StringValue annotated_user = 3;
255
+ google.protobuf.StringValue boot_mode = 4;
256
+ google.protobuf.StringValue device_id = 5;
257
+ google.protobuf.StringValue ethernet_mac_address = 6;
258
+ google.protobuf.StringValue firmware_version = 7;
259
+ optional google.protobuf.Timestamp last_enrollment_time = 8;
260
+ optional google.protobuf.Timestamp last_sync = 9;
261
+ google.protobuf.StringValue mac_address = 10;
262
+ google.protobuf.StringValue meid = 11;
263
+ google.protobuf.StringValue model = 12;
264
+ google.protobuf.StringValue notes = 13;
265
+ google.protobuf.StringValue order_number = 14;
266
+ google.protobuf.StringValue org_unit_path = 15;
267
+ google.protobuf.StringValue os_version = 16;
268
+ google.protobuf.StringValue platform_version = 17;
269
+ google.protobuf.StringValue serial_number = 18;
270
+ google.protobuf.StringValue status = 19;
271
+ optional google.protobuf.Timestamp support_end_date = 20;
272
+ google.protobuf.Int64Value system_ram_total = 21;
273
+ google.protobuf.BoolValue will_auto_renew = 22;
274
+ repeated ChromeOsVolume volumes = 23;
275
+ repeated ChromeOsTpm chrome_os_tpms = 24;
276
+ repeated ChromeOsActiveTimeRange active_time_ranges = 25;
277
+ repeated ChromeOsRecentUser recent_users = 26;
278
+ }
279
+
280
+ message ChromeOsActiveTimeRange {
281
+ google.protobuf.Int32Value active_time = 1;
282
+ optional google.protobuf.Timestamp date = 2;
283
+ }
284
+
285
+ enum ChromeOsFilterType {
286
+ none = 0;
287
+ ou = 1;
288
+ device = 2;
289
+ }
290
+
291
+ message ChromeOsRecentUser {
292
+ google.protobuf.StringValue email = 1;
293
+ google.protobuf.StringValue type = 2;
294
+ }
295
+
296
+ message ChromeOsTpm {
297
+ google.protobuf.StringValue family = 1;
298
+ google.protobuf.StringValue firmware_version = 2;
299
+ google.protobuf.StringValue manufacturer_code = 3;
300
+ google.protobuf.StringValue spec_level = 4;
301
+ google.protobuf.StringValue model_number = 5;
302
+ google.protobuf.StringValue vendor_specific = 6;
303
+ }
304
+
305
+ message ChromeOsVolume {
306
+ google.protobuf.StringValue volume_id = 1;
307
+ google.protobuf.Int64Value storage_free = 2;
308
+ google.protobuf.Int64Value storage_total = 3;
309
+ }
310
+
311
+ /* Warranty API scanning root object */
312
+ message Warranties {
313
+ repeated Warranty entries = 1;
314
+ }
315
+
316
+ message Warranty {
317
+ optional google.protobuf.Timestamp warranty_start_date = 1;
318
+ optional google.protobuf.Timestamp warranty_end_date = 2;
319
+ google.protobuf.StringValue service_type = 3;
320
+ google.protobuf.StringValue purchase_country = 4;
321
+ optional google.protobuf.Timestamp ship_date = 5;
322
+ bool is_silly = 6;
323
+ }
324
+
325
+ /* Intune API scanning root object */
326
+ message IntuneScanResult {
327
+ repeated IntuneContainer containers = 1;
328
+ repeated string scanning_target_errors = 2;
329
+ repeated string errors = 3;
330
+ }
331
+
332
+ message IntuneContainer {
333
+ repeated IntuneApplication intune_applications = 1;
334
+ repeated IntuneDevice intune_devices = 2;
335
+ google.protobuf.StringValue app_id = 3;
336
+ string tenant_id = 4;
337
+ }
338
+
339
+ message IntuneApplication {
340
+ google.protobuf.StringValue intune_id = 1;
341
+ google.protobuf.StringValue display_name = 2;
342
+ google.protobuf.StringValue version = 3;
343
+ google.protobuf.Int64Value size_in_byte = 4;
344
+ google.protobuf.Int32Value device_count = 5;
345
+ repeated IntuneDevice managed_devices = 6;
346
+ }
347
+
348
+ message IntuneDevice {
349
+ google.protobuf.StringValue intune_id = 1;
350
+ google.protobuf.StringValue remote_assistance_session_error_details = 2;
351
+ google.protobuf.BoolValue is_encrypted = 3;
352
+ google.protobuf.StringValue user_principal_name = 4;
353
+ google.protobuf.StringValue model = 5;
354
+ google.protobuf.StringValue manufacturer = 6;
355
+ google.protobuf.StringValue imei = 7;
356
+ optional google.protobuf.Timestamp compliance_grace_period_expiration_date_time = 8;
357
+ google.protobuf.StringValue serial_number = 9;
358
+ google.protobuf.StringValue phone_number = 10;
359
+ google.protobuf.StringValue android_security_patch_level = 11;
360
+ google.protobuf.StringValue user_display_name = 12;
361
+ google.protobuf.StringValue wi_fi_mac_address = 13;
362
+ google.protobuf.StringValue subscriber_carrier = 14;
363
+ google.protobuf.StringValue meid = 15;
364
+ google.protobuf.Int64Value total_storage_space_in_bytes = 16;
365
+ google.protobuf.Int64Value free_storage_space_in_bytes = 17;
366
+ google.protobuf.StringValue managed_device_name = 18;
367
+ google.protobuf.StringValue partner_reported_threat_state = 19; // unknown/activated/deactivated/secured/lowSeverity/mediumSeverity/highSeverity/unresponsive/compromised/misconfigured
368
+ google.protobuf.StringValue remote_assistance_session_url = 20;
369
+ google.protobuf.StringValue exchange_access_state_reason = 21; //none/unknown/exchangeGlobalRule/exchangeIndividualRule/exchangeDeviceRule/exchangeUpgrade/exchangeMailboxPolicy/other/compliant/notCompliant/notEnrolled/unknownLocation/mfaRequired/azureADBlockDueToAccessPolicy/compromisedPassword/deviceNotKnownWithManagedApp
370
+ google.protobuf.StringValue exchange_access_state = 22; // none/unknown/allowed/blocked/quarantined
371
+ optional google.protobuf.Timestamp exchange_last_successful_sync_date_time = 23;
372
+ google.protobuf.StringValue user_id = 24;
373
+ google.protobuf.StringValue device_name = 25;
374
+ google.protobuf.StringValue managed_device_owner_type = 26; // unknown/company/personal
375
+ repeated DeviceActionResult device_action_results = 27;
376
+ optional google.protobuf.Timestamp enrolled_date_time = 28;
377
+ optional google.protobuf.Timestamp last_sync_date_time = 29;
378
+ google.protobuf.StringValue operating_system = 30;
379
+ google.protobuf.StringValue compliance_state = 31; // unknown/compliant/noncompliant/conflict/error/inGracePeriod/configManager
380
+ google.protobuf.StringValue jail_broken = 32;
381
+ google.protobuf.StringValue management_agent = 33; // eas/mdm/easMdm/intuneClient/easIntuneClient/configurationManagerClient/configurationManagerClientMdm/configurationManagerClientMdmEas/unknown/jamf/googleCloudDevicePolicyController
382
+ google.protobuf.StringValue os_version = 34;
383
+ google.protobuf.StringValue eas_device_id = 35;
384
+ optional google.protobuf.Timestamp eas_activation_date_time = 36;
385
+ google.protobuf.BoolValue is_azure_aD_registered = 37;
386
+ google.protobuf.StringValue device_enrollment_type = 38; // unknown/userEnrollment/deviceEnrollmentManager/appleBulkWithUser/appleBulkWithoutUser/windowsAzureADJoin/windowsBulkUserless/windowsAutoEnrollment/windowsBulkAzureDomainJoin/windowsCoManagement
387
+ google.protobuf.StringValue activation_lock_bypass_code = 39;
388
+ google.protobuf.StringValue email_address = 40;
389
+ google.protobuf.StringValue azure_aD_device_id = 41;
390
+ google.protobuf.StringValue device_registration_state = 42; // notRegistered/registered/revoked/keyConflict/approvalPending/certificateReset/notRegisteredPendingEnrollment/unknown
391
+ google.protobuf.BoolValue is_supervised = 43;
392
+ google.protobuf.BoolValue is_eas_activated = 44;
393
+ google.protobuf.BoolValue has_feature_inventory = 45;
394
+ google.protobuf.BoolValue has_feature_modern_apps = 46;
395
+ google.protobuf.BoolValue has_feature_resource_access = 47;
396
+ google.protobuf.BoolValue has_feature_device_configuration = 48;
397
+ google.protobuf.BoolValue has_Feature_compliance_policy = 49;
398
+ google.protobuf.BoolValue has_feature_windows_update_for_business = 50;
399
+ google.protobuf.StringValue health_status_mismatch_info = 51;
400
+ google.protobuf.StringValue operating_system_rev_list_info = 52;
401
+ google.protobuf.StringValue boot_revision_list_info = 53;
402
+ google.protobuf.StringValue code_integrity_policy = 54;
403
+ google.protobuf.StringValue secure_boot_configuration_policy_fingerPrint = 55;
404
+ google.protobuf.StringValue pcr0 = 56;
405
+ google.protobuf.StringValue tpm_version = 57;
406
+ google.protobuf.StringValue boot_manager_security_version = 58;
407
+ google.protobuf.StringValue boot_app_security_version = 59;
408
+ google.protobuf.StringValue pcr_hash_algorithm = 60;
409
+ google.protobuf.StringValue virtual_secure_mode = 61;
410
+ google.protobuf.StringValue early_launch_anti_malware_driver_protection = 62;
411
+ google.protobuf.StringValue windows_pE = 63;
412
+ google.protobuf.StringValue safe_mode = 64;
413
+ google.protobuf.StringValue test_signing = 65;
414
+ google.protobuf.StringValue code_integrity = 66;
415
+ google.protobuf.StringValue operating_system_kernel_debugging = 67;
416
+ google.protobuf.StringValue last_update_date_time = 68;
417
+ optional google.protobuf.Timestamp last_update_date_time_utc = 69;
418
+ google.protobuf.StringValue content_namespace_url = 70;
419
+ google.protobuf.StringValue device_health_attestation_status = 71;
420
+ google.protobuf.StringValue content_version = 72;
421
+ optional google.protobuf.Timestamp issued_date_time = 73;
422
+ google.protobuf.StringValue attestation_identity_key = 74;
423
+ google.protobuf.StringValue health_attestation_supported_status = 75;
424
+ google.protobuf.Int64Value reset_count = 76;
425
+ google.protobuf.StringValue data_excution_policy = 77;
426
+ google.protobuf.StringValue bit_locker_status = 78;
427
+ google.protobuf.StringValue boot_manager_version = 79;
428
+ google.protobuf.StringValue code_integrity_check_version = 80;
429
+ google.protobuf.StringValue secure_boot = 81;
430
+ google.protobuf.StringValue boot_debugging = 82;
431
+ google.protobuf.Int64Value restart_count = 83;
432
+ google.protobuf.StringValue device_category_id = 84;
433
+ google.protobuf.StringValue device_Category_display_name = 85;
434
+ google.protobuf.StringValue device_category_description = 86;
435
+ }
436
+
437
+ message DeviceActionResult {
438
+ google.protobuf.StringValue action_name = 1;
439
+ google.protobuf.StringValue action_state = 2; // none/pending/canceled/active/done/failed/notSupported
440
+ optional google.protobuf.Timestamp start_date_time = 3;
441
+ optional google.protobuf.Timestamp last_updated_date_time = 4;
442
+ }
443
+
444
+ /* SCCM API scanning root object */
445
+ message SccmScanResult {
446
+ SccmServer sccm_server = 1;
447
+ repeated string scanning_target_errors = 2;
448
+ }
449
+
450
+ message SccmServer {
451
+ google.protobuf.StringValue server_name = 1;
452
+ google.protobuf.StringValue domain = 2;
453
+ repeated SccmSite sccm_sites = 3;
454
+ }
455
+
456
+ message SccmSite {
457
+ google.protobuf.StringValue code = 1;
458
+ google.protobuf.StringValue name = 2;
459
+ google.protobuf.StringValue version = 3;
460
+ google.protobuf.Int32Value build_number = 4;
461
+ google.protobuf.StringValue status = 5;
462
+ repeated SccmAsset sccm_assets = 6;
463
+ }
464
+
465
+ message SccmAsset {
466
+ repeated SccmSoftware sccm_softwares = 1;
467
+ repeated SccmNetworkAdapter sccm_network_adapters = 2;
468
+ int64 resource_id = 3;
469
+ google.protobuf.StringValue name = 4;
470
+ google.protobuf.StringValue operating_system_nameand_version = 5;
471
+ google.protobuf.StringValue resource_domain_oR_workgroup = 6;
472
+ google.protobuf.StringValue full_domain_name = 7;
473
+ bool has_client = 8;
474
+ optional ClientEdition client_edition = 9;
475
+ google.protobuf.StringValue client_version = 10;
476
+ optional google.protobuf.Timestamp creation_date = 11;
477
+ google.protobuf.StringValue cpu_type = 12;
478
+ google.protobuf.StringValue pc_manufacturer = 13;
479
+ google.protobuf.StringValue pc_model = 14;
480
+ google.protobuf.Int32Value number_of_processors = 15;
481
+ google.protobuf.Int64Value total_physical_memory = 16;
482
+ google.protobuf.StringValue bios_serial_number = 17;
483
+ google.protobuf.StringValue os_caption = 18;
484
+ google.protobuf.StringValue os_name = 19;
485
+ google.protobuf.StringValue csd_version = 20;
486
+ google.protobuf.StringValue os_manufacturer = 21;
487
+ google.protobuf.StringValue os_serial_number = 22;
488
+ google.protobuf.StringValue os_version = 23;
489
+ google.protobuf.Int32Value norm_speed = 24;
490
+ google.protobuf.Int32Value number_of_cores = 25;
491
+ google.protobuf.StringValue cpu_manufacturer = 26;
492
+ int32 asset_type = 27;
493
+ google.protobuf.StringValue ip_address = 28;
494
+ google.protobuf.DoubleValue ip_numeric = 29;
495
+ }
496
+
497
+ enum ClientEdition {
498
+ windows = 0;
499
+ windows_aRM = 1;
500
+ windows_mobile = 2;
501
+ nokia_symbian = 3;
502
+ windows_phone = 4;
503
+ mac = 5;
504
+ windows_cE = 6;
505
+ windows_embedded = 7;
506
+ i_oS = 8;
507
+ i_pad = 9;
508
+ i_pod_touch = 10;
509
+ android = 11;
510
+ intel_System_on_chip = 12;
511
+ unix_linux_servers = 13;
512
+ apple_mac_oS = 14;
513
+ microsoft_holo_lens = 15;
514
+ microsoft_surface_hub = 16;
515
+ android_for_work = 17;
516
+ }
517
+
518
+ message SccmSoftware {
519
+ google.protobuf.StringValue display_name = 1;
520
+ optional google.protobuf.Timestamp install_date = 2;
521
+ google.protobuf.StringValue publisher = 3;
522
+ google.protobuf.StringValue version = 4;
523
+ bool is64_bit = 5;
524
+ }
525
+
526
+ message SccmNetworkAdapter {
527
+ google.protobuf.StringValue ip_address = 1;
528
+ google.protobuf.StringValue mac_address = 2;
529
+ google.protobuf.StringValue ip_subnet = 3;
530
+ google.protobuf.StringValue service_name = 4;
531
+ int32 index = 5;
532
+ }
533
+
534
+ /* Office365 API scanning root object */
535
+ message Office365Organization {
536
+ string tenant_id = 1;
537
+ google.protobuf.StringValue displayname = 2;
538
+ google.protobuf.StringValue country = 3;
539
+ google.protobuf.StringValue city = 4;
540
+ google.protobuf.StringValue country_name = 5;
541
+ google.protobuf.StringValue postal_code = 6;
542
+ google.protobuf.StringValue state = 7;
543
+ google.protobuf.StringValue street = 8;
544
+ google.protobuf.StringValue telephone_number = 9;
545
+ optional google.protobuf.Timestamp company_last_dir_sync_time = 10;
546
+ google.protobuf.BoolValue dir_sync_enabled = 11;
547
+ repeated Office365Domain domains = 12;
548
+ repeated Office365User users = 13;
549
+ repeated Office365Group groups = 14;
550
+ repeated Office365License licenses = 15;
551
+ repeated Office365AssignedPlan assigned_plans = 16;
552
+ repeated Office365Contact contacts = 17;
553
+ }
554
+
555
+ message Office365AssignedPlan {
556
+ string service_plan_id = 1;
557
+ google.protobuf.StringValue service = 2;
558
+ google.protobuf.StringValue capability_status = 3;
559
+ google.protobuf.Timestamp assigned_time_stamp = 4;
560
+ }
561
+
562
+ message Office365Contact {
563
+ google.protobuf.StringValue display_name = 1;
564
+ google.protobuf.StringValue mail = 2;
565
+ }
566
+
567
+ message Office365Domain {
568
+ int32 id = 1;
569
+ int32 organization_id = 2;
570
+ google.protobuf.StringValue domain_name = 3;
571
+ google.protobuf.StringValue authentication_type = 4;
572
+ google.protobuf.BoolValue is_admin_managed = 5;
573
+ google.protobuf.BoolValue is_default = 6;
574
+ google.protobuf.BoolValue is_initial = 7;
575
+ google.protobuf.BoolValue is_root = 8;
576
+ google.protobuf.BoolValue is_verified = 9;
577
+ google.protobuf.StringValue supported_services = 10;
578
+ google.protobuf.StringValue state = 11;
579
+ google.protobuf.StringValue availability_status = 12;
580
+ }
581
+
582
+ message Office365Group {
583
+ string object_id = 1;
584
+ google.protobuf.StringValue display_name = 2;
585
+ google.protobuf.StringValue description = 3;
586
+ bool mail_enabled = 4;
587
+ bool security_enabled = 5;
588
+ google.protobuf.StringValue mail = 6;
589
+ google.protobuf.StringValue mail_nickname = 7;
590
+ google.protobuf.StringValue proxy_addresses = 8;
591
+ repeated Office365User users = 9;
592
+ }
593
+
594
+ message Office365License {
595
+ string sku_id = 1;
596
+ int32 consumed_units = 2;
597
+ int32 prepaid_units_enabled = 3;
598
+ int32 prepaid_units_suspended = 4;
599
+ int32 prepaid_units_warning = 5;
600
+ google.protobuf.StringValue sku_part_number = 6;
601
+ google.protobuf.StringValue applies_to = 7;
602
+ google.protobuf.StringValue capability_status = 8;
603
+ repeated Office365User users = 9;
604
+ repeated Office365ServicePlan service_plans = 10;
605
+ }
606
+
607
+ message Office365ServicePlan {
608
+ string service_plan_id = 1;
609
+ google.protobuf.StringValue service_plan_name = 2;
610
+ google.protobuf.StringValue provisioning_status = 3;
611
+ google.protobuf.StringValue applies_to = 4;
612
+ }
613
+
614
+ message Office365User {
615
+ string object_id = 1;
616
+ google.protobuf.StringValue user_principal_name = 2;
617
+ google.protobuf.StringValue display_name = 3;
618
+ google.protobuf.StringValue mail = 4;
619
+ google.protobuf.BoolValue account_enabled = 5;
620
+ google.protobuf.StringValue age_group = 6;
621
+ google.protobuf.StringValue city = 7;
622
+ google.protobuf.StringValue company = 8;
623
+ google.protobuf.StringValue consent_provided_for_minor = 9;
624
+ google.protobuf.StringValue creation_type = 10;
625
+ google.protobuf.StringValue department = 11;
626
+ google.protobuf.BoolValue dir_sync_enabled = 12;
627
+ google.protobuf.StringValue facsimile_telephone_number = 13;
628
+ google.protobuf.StringValue given_name = 14;
629
+ google.protobuf.StringValue immutable_id = 15;
630
+ google.protobuf.BoolValue is_global_administrator = 16;
631
+ google.protobuf.BoolValue is_licensed = 17;
632
+ google.protobuf.StringValue job_title = 18;
633
+ optional google.protobuf.Timestamp last_dir_sync_time = 19;
634
+ google.protobuf.StringValue legal_age_group_classification = 20;
635
+ google.protobuf.StringValue mail_nick_name = 21;
636
+ google.protobuf.StringValue mobile = 22;
637
+ google.protobuf.StringValue on_premises_security_identifier = 23;
638
+ google.protobuf.StringValue other_mails = 24;
639
+ google.protobuf.StringValue password_policies = 25;
640
+ google.protobuf.StringValue password_profile = 26;
641
+ google.protobuf.StringValue physical_delivery_office_name = 27;
642
+ google.protobuf.StringValue postal_code = 28;
643
+ google.protobuf.StringValue preferred_language = 30;
644
+ optional google.protobuf.Timestamp refresh_tokens_valid_from_date_time = 31;
645
+ google.protobuf.StringValue state = 32;
646
+ google.protobuf.StringValue street = 33;
647
+ google.protobuf.StringValue telephone_number = 34;
648
+ google.protobuf.StringValue usage_location = 35;
649
+ google.protobuf.StringValue user_type = 36;
650
+ google.protobuf.StringValue manager_upn = 37;
651
+ google.protobuf.StringValue distinguished_name = 38;
652
+ google.protobuf.BoolValue reset_password_on_next_logon = 39;
653
+ repeated Office365AssignedPlan assigned_plans = 40;
654
+ google.protobuf.StringValue name = 41;
655
+ }
656
+
657
+ /* ESXI API scanning root object */
658
+ message Esxi {
659
+ google.protobuf.StringValue hostname = 1;
660
+ google.protobuf.StringValue version = 2;
661
+ google.protobuf.StringValue datacenter_id = 3;
662
+ string internal_key = 4;
663
+ google.protobuf.StringValue parent_folder = 5;
664
+ VmwareProductInfo product_info = 6;
665
+ google.protobuf.BoolValue admin_disabled = 7;
666
+ repeated VirtualMachine virtual_machines = 8;
667
+ repeated VmwareNetwork network_devices = 9;
668
+ repeated Datastore datastores = 10;
669
+ google.protobuf.StringValue dns_addresses = 11;
670
+ google.protobuf.StringValue default_gateway = 12;
671
+ google.protobuf.StringValue domain_name = 13;
672
+ google.protobuf.BoolValue dhcp = 14;
673
+ google.protobuf.StringValue connection_state = 15;
674
+ google.protobuf.StringValue power_state = 16;
675
+ optional google.protobuf.Timestamp boot_time = 17;
676
+ google.protobuf.Int64Value up_time = 18;
677
+ google.protobuf.Int64Value host_max_virtual_disk_capacity = 19;
678
+ google.protobuf.StringValue ip_address = 20;
679
+ google.protobuf.Int32Value port = 21;
680
+ google.protobuf.StringValue ssl_thumbprint = 22;
681
+ google.protobuf.StringValue management_server_ip = 23;
682
+ google.protobuf.StringValue vendor = 24;
683
+ google.protobuf.StringValue model = 25;
684
+ google.protobuf.StringValue uuid = 26;
685
+ google.protobuf.Int64Value memory_size = 27;
686
+ google.protobuf.StringValue cpu_model = 28;
687
+ google.protobuf.Int32Value cpu_mhz = 29;
688
+ google.protobuf.Int32Value num_cpu_packages = 30;
689
+ google.protobuf.StringValue cpu_packages_descriptions = 31;
690
+ google.protobuf.Int32Value num_cpu_cores = 32;
691
+ google.protobuf.Int32Value num_cpu_threads = 33;
692
+ google.protobuf.Int32Value num_nics = 34;
693
+ google.protobuf.Int32Value num_hbas = 35;
694
+ google.protobuf.StringValue bios_version = 36;
695
+ optional google.protobuf.Timestamp bios_date = 37;
696
+ google.protobuf.StringValue serial = 38;
697
+ }
698
+
699
+ /* VCenter API scanning root object */
700
+ message VCenter {
701
+ VmwareProductInfo product_info = 1;
702
+ repeated DataCenter datacenters = 2;
703
+ }
704
+
705
+ message VmwareProductInfo {
706
+ google.protobuf.StringValue name = 1;
707
+ google.protobuf.StringValue api_type = 2;
708
+ google.protobuf.StringValue api_version = 3;
709
+ google.protobuf.StringValue build = 4;
710
+ google.protobuf.StringValue full_name = 5;
711
+ google.protobuf.StringValue instance_uuid = 6;
712
+ google.protobuf.StringValue license_product_name = 7;
713
+ google.protobuf.StringValue license_product_version = 8;
714
+ google.protobuf.StringValue locale_build = 9;
715
+ google.protobuf.StringValue locale_version = 10;
716
+ google.protobuf.StringValue os_type = 11;
717
+ google.protobuf.StringValue product_line_id = 12;
718
+ google.protobuf.StringValue vendor = 13;
719
+ google.protobuf.StringValue version = 14;
720
+ }
721
+
722
+ message VmwareDisk {
723
+ google.protobuf.StringValue name = 1;
724
+ google.protobuf.StringValue url = 2;
725
+ int64 total_space = 3;
726
+ int64 free_space = 4;
727
+ }
728
+
729
+ message Datastore {
730
+ google.protobuf.StringValue internal_key = 1;
731
+ google.protobuf.Int32Value datacenter_id = 2;
732
+ google.protobuf.Int32Value datastore_cluster_id = 3;
733
+ repeated VmwareDisk disks = 4;
734
+ google.protobuf.Int64Value uncommitted = 5;
735
+ google.protobuf.BoolValue accessible = 6;
736
+ google.protobuf.BoolValue multiple_host_access = 7;
737
+ google.protobuf.StringValue type = 8;
738
+ google.protobuf.StringValue maintenance_mode = 9;
739
+ google.protobuf.Int64Value max_physical_rdm_file_size = 10;
740
+ google.protobuf.Int64Value max_virtual_rdm_file_size = 11;
741
+ google.protobuf.Int64Value max_file_size = 12;
742
+ google.protobuf.Int64Value max_virtual_disk_capacity = 13;
743
+ google.protobuf.Int64Value max_memory_file_size = 14;
744
+ optional google.protobuf.Timestamp timestamp = 15;
745
+ }
746
+
747
+ message DatastoreClusterDrsPodConfigRule {
748
+ google.protobuf.StringValue name = 1;
749
+ google.protobuf.BoolValue enabled = 2;
750
+ google.protobuf.Int32Value type = 3;
751
+ }
752
+
753
+ message DatastoreClusterDrsVmOverride {
754
+ google.protobuf.BoolValue enabled = 1;
755
+ google.protobuf.StringValue behaviour = 2;
756
+ google.protobuf.BoolValue intra_vm_affinity = 3;
757
+ google.protobuf.StringValue intra_vm_anti_affinity = 4;
758
+ }
759
+
760
+ message DatastoreCluster {
761
+ string internal_key = 1;
762
+ google.protobuf.StringValue name = 2;
763
+ int64 capacity = 3;
764
+ int64 free_space = 4;
765
+ optional DatastoreClusterStorageDrs datastore_cluster_storage_drs = 5;
766
+ repeated Datastore datastores = 6;
767
+ repeated DatastoreClusterDrsPodConfigRule datastore_cluster_drs_pod_config_rules = 7;
768
+ repeated DatastoreClusterDrsVmOverride datastore_cluster_drs_vm_overrides = 8;
769
+ }
770
+
771
+ message DatastoreClusterStorageDrs {
772
+ bool enabled = 1;
773
+ bool io_load_balance_enabled = 2;
774
+ google.protobuf.StringValue default_vm_behaviour = 3;
775
+ google.protobuf.Int32Value load_balance_interval = 4;
776
+ google.protobuf.BoolValue default_intra_vm_affinity = 5;
777
+ google.protobuf.Int32Value space_utilization_threshold = 6;
778
+ google.protobuf.Int32Value min_space_utilization_difference = 7;
779
+ google.protobuf.Int32Value io_latency_threshold = 8;
780
+ google.protobuf.Int32Value io_load_imbalance_threshold = 9;
781
+ }
782
+
783
+ message VmwareGuestNetwork {
784
+ google.protobuf.StringValue name = 1;
785
+ google.protobuf.StringValue dns_addresses = 2;
786
+ google.protobuf.StringValue domain_name = 3;
787
+ google.protobuf.BoolValue ipv4_dhcp_enabled = 4;
788
+ google.protobuf.BoolValue ipv6_dhcp_enabled = 5;
789
+ google.protobuf.StringValue ipv6_addresses = 6;
790
+ google.protobuf.BoolValue is_connected = 7;
791
+ google.protobuf.StringValue mac = 8;
792
+ google.protobuf.StringValue ip_address = 9;
793
+ google.protobuf.StringValue subnet_mask = 10;
794
+ }
795
+
796
+ message Snapshot {
797
+ string internal_key = 1;
798
+ google.protobuf.StringValue name = 2;
799
+ google.protobuf.Timestamp create_time = 3;
800
+ }
801
+
802
+ message AssetMacAddress {
803
+ google.protobuf.StringValue mac = 1;
804
+ }
805
+
806
+ message VirtualMachine {
807
+ string internal_key = 1;
808
+ google.protobuf.StringValue esxi_key = 2;
809
+ optional google.protobuf.Timestamp boot_time = 3;
810
+ repeated VmwareGuestNetwork network_devices = 4;
811
+ google.protobuf.StringValue guest_id = 5;
812
+ google.protobuf.StringValue guest_full_name = 6;
813
+ google.protobuf.StringValue host_name = 7;
814
+ google.protobuf.StringValue domain_name = 8;
815
+ google.protobuf.StringValue fqdn = 9;
816
+ google.protobuf.StringValue version = 10;
817
+ google.protobuf.StringValue ipv4_address = 11;
818
+ google.protobuf.StringValue config_name = 12;
819
+ google.protobuf.DoubleValue memory_size_mb = 13;
820
+ google.protobuf.Int32Value num_cpu = 14;
821
+ google.protobuf.Int32Value num_ethernet_cards = 15;
822
+ google.protobuf.Int32Value num_virtual_disks = 16;
823
+ google.protobuf.StringValue uuid = 17;
824
+ google.protobuf.StringValue instance_uuid = 18;
825
+ google.protobuf.Int64Value unshared_storage = 19;
826
+ google.protobuf.StringValue is_running = 20;
827
+ repeated Snapshot snapshots = 21;
828
+ google.protobuf.StringValue tools_version = 22;
829
+ uint32 tools_status = 23;
830
+ uint32 tools_version_status = 24;
831
+ uint32 tools_running_status = 25;
832
+ google.protobuf.StringValue mac_address = 26;
833
+ bool is_vm_ware_guest = 27;
834
+ repeated AssetMacAddress asset_mac_addresses = 28;
835
+ }
836
+
837
+ enum NetworkType {
838
+ no_network_type = 0;
839
+ physical = 1;
840
+ virtual = 2;
841
+ console = 3;
842
+ }
843
+
844
+ message VmwareNetwork {
845
+ google.protobuf.Int32Value asset_id = 1;
846
+ google.protobuf.StringValue name = 2;
847
+ NetworkType network_type = 3;
848
+ google.protobuf.StringValue ipv6_addresses = 4;
849
+ google.protobuf.Int32Value speed = 5;
850
+ google.protobuf.Int32Value mtu = 6;
851
+ google.protobuf.StringValue mac = 7;
852
+ google.protobuf.StringValue ip_address = 8;
853
+ google.protobuf.StringValue subnet_mask = 9;
854
+ }
855
+
856
+ message EsxiCluster {
857
+ google.protobuf.StringValue name = 1;
858
+ google.protobuf.StringValue internal_key = 2;
859
+ google.protobuf.StringValue parent_folder = 3;
860
+ repeated Esxi hosts = 4;
861
+ int32 total_cpu = 5;
862
+ int64 total_memory = 6;
863
+ int32 num_cpu_cores = 7;
864
+ int32 num_cpu_threads = 8;
865
+ int32 effective_cpu = 9;
866
+ int64 effective_memory = 10;
867
+ int32 num_hosts = 11;
868
+ int32 num_effective_hosts = 12;
869
+ google.protobuf.StringValue overall_status = 13;
870
+ }
871
+
872
+ message DataCenter {
873
+ string internal_key = 1;
874
+ google.protobuf.StringValue name = 2;
875
+ repeated Datastore datastores = 3;
876
+ repeated DatastoreCluster datastore_clusters = 4;
877
+ repeated Esxi hosts = 5;
878
+ repeated EsxiCluster host_clusters = 6;
879
+ }
880
+
881
+ /* Citrix API scanning root object */
882
+ message CitrixScanResult {
883
+ uint32 citrix_connection_result = 1;
884
+ CitrixPool citrix_pool = 2;
885
+ }
886
+
887
+ message CitrixPhysicalBlockDevice {
888
+ bool currently_attached = 1;
889
+ google.protobuf.StringValue location = 2;
890
+ google.protobuf.StringValue username = 3;
891
+ google.protobuf.StringValue type = 4;
892
+ google.protobuf.StringValue version = 5;
893
+ }
894
+
895
+ message CitrixVirtualDiskImage {
896
+ google.protobuf.StringValue name = 1;
897
+ google.protobuf.StringValue description = 2;
898
+ bool allow_caching = 3;
899
+ bool is_a_snapshot = 4;
900
+ google.protobuf.StringValue location = 5;
901
+ bool managed = 6;
902
+ bool metadata_latest = 7;
903
+ bool missing = 8;
904
+ google.protobuf.StringValue on_boot = 9;
905
+ int64 physical_utilisation = 10;
906
+ bool read_only = 11;
907
+ bool sharable = 12;
908
+ bool storage_lock = 13;
909
+ google.protobuf.StringValue tags = 14;
910
+ google.protobuf.StringValue type = 15;
911
+ int64 virtual_size = 16;
912
+ google.protobuf.StringValue host_uuid = 17;
913
+ repeated string virtual_block_device_uuids = 18;
914
+ }
915
+
916
+ message CitrixStorage {
917
+ google.protobuf.StringValue name = 1;
918
+ google.protobuf.StringValue description = 2;
919
+ int64 physical_size = 3;
920
+ int64 physical_utilization = 4;
921
+ google.protobuf.StringValue type = 5;
922
+ google.protobuf.StringValue content_type = 6;
923
+ bool clustered = 7;
924
+ bool is_tools_storage = 8;
925
+ bool local_cache = 9;
926
+ bool shared = 10;
927
+ google.protobuf.StringValue tags = 11;
928
+ int64 virtual_allocation = 12;
929
+ repeated string host_uuids = 13;
930
+ google.protobuf.StringValue storage_ref = 14;
931
+ repeated CitrixPhysicalBlockDevice physical_block_devices = 15;
932
+ repeated CitrixVirtualDiskImage virtual_disk_images = 16;
933
+ }
934
+
935
+ message CitrixPci {
936
+ google.protobuf.StringValue class_name = 1;
937
+ google.protobuf.StringValue device_name = 2;
938
+ google.protobuf.StringValue subsystem_device_name = 3;
939
+ google.protobuf.StringValue subsystem_vendor_name = 4;
940
+ google.protobuf.StringValue vendor_name = 5;
941
+ }
942
+
943
+ message CitrixGuestExtraInfo {
944
+ int32 info_type_id = 1;
945
+ google.protobuf.StringValue key = 2;
946
+ google.protobuf.StringValue value = 3;
947
+ }
948
+
949
+ message CitrixHostPatch {
950
+ google.protobuf.StringValue name = 1;
951
+ google.protobuf.StringValue description = 2;
952
+ int64 size = 3;
953
+ optional google.protobuf.Timestamp applied = 4;
954
+ google.protobuf.StringValue version = 5;
955
+ }
956
+
957
+ message CitrixHostPhysicalCpu {
958
+ int64 family = 1;
959
+ google.protobuf.StringValue features = 2;
960
+ google.protobuf.StringValue flags = 3;
961
+ int64 model = 4;
962
+ google.protobuf.StringValue model_name = 5;
963
+ int64 number_of_cpus = 6;
964
+ int64 speed = 7;
965
+ google.protobuf.StringValue stepping = 8;
966
+ google.protobuf.StringValue vendor = 9;
967
+ }
968
+
969
+ message CitrixHostCrashDump {
970
+ int64 size = 1;
971
+ google.protobuf.Timestamp timestamp = 2;
972
+ }
973
+
974
+ message CitrixHost {
975
+ google.protobuf.StringValue hostname = 1;
976
+ google.protobuf.StringValue name = 2;
977
+ google.protobuf.StringValue description = 3;
978
+ bool is_master = 4;
979
+ google.protobuf.StringValue address = 5;
980
+ google.protobuf.StringValue edition = 6;
981
+ bool enabled = 7;
982
+ google.protobuf.StringValue external_authentication_service_name = 8;
983
+ google.protobuf.StringValue external_authentication_type = 9;
984
+ google.protobuf.Int64Value memory_overhead = 10;
985
+ google.protobuf.StringValue power_on_mode = 11;
986
+ google.protobuf.StringValue scheduler_policy = 12;
987
+ google.protobuf.StringValue tags = 13;
988
+ google.protobuf.StringValue display = 14;
989
+ optional google.protobuf.Timestamp last_updated = 15;
990
+ google.protobuf.BoolValue live = 16;
991
+ google.protobuf.Int64Value memory_free = 17;
992
+ google.protobuf.Int64Value memory_total = 18;
993
+ google.protobuf.StringValue host_uuid = 19;
994
+ google.protobuf.StringValue crash_dump_storage_ref = 20;
995
+ google.protobuf.StringValue local_cache_storage_ref = 21;
996
+ google.protobuf.StringValue suspend_image_storage_ref = 22;
997
+ repeated CitrixStorage storages = 23;
998
+ repeated CitrixPhysicalInterface physical_interfaces = 24;
999
+ repeated CitrixGuest guests = 25;
1000
+ repeated CitrixPci pcis = 26;
1001
+ repeated CitrixHostExtraInfo extra_infos = 27;
1002
+ repeated CitrixHostPatch patches = 28;
1003
+ repeated CitrixHostPhysicalCpu physical_cpus = 29;
1004
+ repeated CitrixHostCrashDump crash_dumps = 30;
1005
+ }
1006
+
1007
+ message CitrixNetwork {
1008
+ google.protobuf.StringValue name = 1;
1009
+ google.protobuf.StringValue description = 2;
1010
+ google.protobuf.StringValue bridge = 3;
1011
+ int64 mtu = 4;
1012
+ google.protobuf.StringValue tags = 5;
1013
+ repeated CitrixPhysicalInterface physical_interfaces = 6;
1014
+ repeated CitrixVirtualInterface virtual_interfaces = 7;
1015
+ }
1016
+
1017
+ message CitrixPhysicalInterface {
1018
+ google.protobuf.StringValue device_name = 1;
1019
+ google.protobuf.StringValue mac = 2;
1020
+ int64 mtu = 3;
1021
+ google.protobuf.StringValue dns = 4;
1022
+ google.protobuf.StringValue ip = 5;
1023
+ google.protobuf.StringValue netmask = 6;
1024
+ google.protobuf.StringValue gateway = 7;
1025
+ google.protobuf.StringValue vendor = 8;
1026
+ int64 speed = 9;
1027
+ optional google.protobuf.Timestamp last_updated = 10;
1028
+ bool currently_attached = 11;
1029
+ bool disallow_unplug = 12;
1030
+ google.protobuf.StringValue ip_v6 = 13;
1031
+ google.protobuf.StringValue device = 14;
1032
+ google.protobuf.StringValue ip_configuration_mode = 15;
1033
+ google.protobuf.StringValue ip_v6_configuration_mode = 16;
1034
+ google.protobuf.StringValue ip_v6_gateway = 17;
1035
+ bool managed = 18;
1036
+ bool management = 19;
1037
+ bool physical = 20;
1038
+ google.protobuf.StringValue primary_address_type = 21;
1039
+ bool carier = 22;
1040
+ bool duplex = 23;
1041
+ google.protobuf.StringValue device_id = 24;
1042
+ google.protobuf.StringValue pci_bus_path = 25;
1043
+ google.protobuf.StringValue vendor_id = 26;
1044
+ google.protobuf.StringValue vendor_name = 27;
1045
+ google.protobuf.StringValue host_uuid = 28;
1046
+ google.protobuf.StringValue interface_uuid = 29;
1047
+ }
1048
+
1049
+ message CitrixPoolOtherConfiguration {
1050
+ google.protobuf.StringValue key = 1;
1051
+ google.protobuf.StringValue value = 2;
1052
+ bool is_custom_field = 3;
1053
+ }
1054
+
1055
+ message CitrixPoolRestriction {
1056
+ google.protobuf.StringValue key = 1;
1057
+ google.protobuf.StringValue value = 2;
1058
+ }
1059
+
1060
+ message CitrixPoolPatch {
1061
+ google.protobuf.StringValue name = 1;
1062
+ google.protobuf.StringValue description = 2;
1063
+ int64 size = 3;
1064
+ google.protobuf.StringValue version = 4;
1065
+ google.protobuf.StringValue after_apply_guidance = 5;
1066
+ google.protobuf.BoolValue applied = 6;
1067
+ }
1068
+
1069
+ message CitrixVirtualInterfaceAddress {
1070
+ uint32 ip_version = 1;
1071
+ google.protobuf.StringValue ip = 2;
1072
+ }
1073
+
1074
+ message CitrixVirtualInterface {
1075
+ google.protobuf.StringValue device = 1;
1076
+ google.protobuf.StringValue mac = 2;
1077
+ bool mac_auto_generated = 3;
1078
+ int64 mtu = 4;
1079
+ int64 status_code = 5;
1080
+ google.protobuf.StringValue status_details = 6;
1081
+ bool currently_attached = 7;
1082
+ google.protobuf.StringValue qos_algorithm_type = 8;
1083
+ google.protobuf.StringValue qos_algorithms = 9;
1084
+ google.protobuf.StringValue locking_mode = 10;
1085
+ google.protobuf.StringValue host_uuid = 11;
1086
+ google.protobuf.StringValue vm_ref = 12;
1087
+ google.protobuf.StringValue interface_uuid = 13;
1088
+ repeated CitrixVirtualInterfaceAddress addresses = 14;
1089
+ }
1090
+
1091
+ message CitrixHostExtraInfo {
1092
+ int32 info_type_id = 1;
1093
+ google.protobuf.StringValue key = 2;
1094
+ google.protobuf.StringValue value = 3;
1095
+ }
1096
+
1097
+ message CitrixVirtualBlockDevice {
1098
+ bool bootable = 1;
1099
+ bool currently_attached = 2;
1100
+ google.protobuf.StringValue device = 3;
1101
+ bool empty = 4;
1102
+ google.protobuf.StringValue mode = 5;
1103
+ google.protobuf.StringValue qos_algorithm_parameters = 6;
1104
+ google.protobuf.StringValue qos_algorithm_type = 7;
1105
+ google.protobuf.StringValue qos_supported_algorithms = 8;
1106
+ google.protobuf.StringValue runtime_properties = 9;
1107
+ int64 status_code = 10;
1108
+ google.protobuf.StringValue status_details = 11;
1109
+ bool storage_lock = 12;
1110
+ google.protobuf.StringValue type = 13;
1111
+ bool unpluggable = 14;
1112
+ google.protobuf.StringValue user_device = 15;
1113
+ google.protobuf.StringValue virtual_block_device_uuid = 16;
1114
+ }
1115
+
1116
+ message CitrixGuest {
1117
+ google.protobuf.StringValue name = 1;
1118
+ google.protobuf.StringValue description = 2;
1119
+ int64 memory = 3;
1120
+ int64 cpu_count = 4;
1121
+ google.protobuf.StringValue state = 5;
1122
+ bool live = 6;
1123
+ optional google.protobuf.Timestamp last_updated = 7;
1124
+ google.protobuf.StringValue hvm_boot_policy = 8;
1125
+ double hvm_shadow_multiplier = 9;
1126
+ google.protobuf.StringValue pci_bus = 10;
1127
+ google.protobuf.StringValue pv_arguments = 11;
1128
+ google.protobuf.StringValue pv_bootloader = 12;
1129
+ google.protobuf.StringValue pv_bootloader_arguments = 13;
1130
+ google.protobuf.StringValue pv_kernel = 14;
1131
+ google.protobuf.StringValue pv_legacy_arguments = 15;
1132
+ google.protobuf.StringValue pv_ramdisk = 16;
1133
+ google.protobuf.StringValue actions_after_crash = 17;
1134
+ google.protobuf.StringValue actions_after_reboot = 18;
1135
+ google.protobuf.StringValue actions_after_shutdown = 19;
1136
+ bool ha_always_run = 20;
1137
+ google.protobuf.StringValue ha_restart_priority = 21;
1138
+ int64 hardware_platform_version = 22;
1139
+ google.protobuf.StringValue last_booted_record = 23;
1140
+ int64 memory_dynamic_max = 24;
1141
+ int64 memory_dynamic_min = 25;
1142
+ int64 memory_overhead = 26;
1143
+ int64 memory_static_max = 27;
1144
+ int64 memory_static_min = 28;
1145
+ int64 memory_target = 29;
1146
+ int64 order = 30;
1147
+ google.protobuf.StringValue power_state = 31;
1148
+ int64 shutdown_delay = 32;
1149
+ int64 start_delay = 33;
1150
+ google.protobuf.StringValue tags = 34;
1151
+ int64 user_version = 35;
1152
+ int64 version = 36;
1153
+ optional google.protobuf.Timestamp install_time = 37;
1154
+ optional google.protobuf.Timestamp start_time = 38;
1155
+ google.protobuf.StringValue host_uuid = 39;
1156
+ google.protobuf.StringValue guest_uuid = 40;
1157
+ repeated CitrixVirtualInterface virtual_interfaces = 41;
1158
+ repeated CitrixGuestExtraInfo extra_infos = 42;
1159
+ repeated CitrixVirtualBlockDevice virtual_block_devices = 43;
1160
+ }
1161
+
1162
+ message CitrixAppliance {
1163
+ google.protobuf.StringValue name = 1;
1164
+ google.protobuf.StringValue description = 2;
1165
+ repeated CitrixGuest guests = 3;
1166
+ }
1167
+
1168
+ message CitrixTemplate {
1169
+ google.protobuf.StringValue name = 1;
1170
+ }
1171
+
1172
+ message CitrixPool {
1173
+ google.protobuf.StringValue name = 1;
1174
+ google.protobuf.StringValue description = 2;
1175
+ bool redo_log = 3;
1176
+ google.protobuf.StringValue tags = 4;
1177
+ google.protobuf.StringValue v_switch_controller = 5;
1178
+ bool high_availability = 6;
1179
+ bool high_availability_allow_overcommit = 7;
1180
+ bool high_availability_overcommitted = 8;
1181
+ int64 high_availability_host_failures_to_tolerate = 9;
1182
+ int64 high_availability_plan_exists_for = 10;
1183
+ bool workload_balancing = 11;
1184
+ google.protobuf.StringValue workload_balancing_url = 12;
1185
+ google.protobuf.StringValue workload_balancing_username = 13;
1186
+ bool workload_balancing_verify_cert = 14;
1187
+ google.protobuf.StringValue master_host_uuid = 15;
1188
+ google.protobuf.StringValue crash_dump_storage_ref = 16;
1189
+ google.protobuf.StringValue suspend_image_storage_ref = 17;
1190
+ repeated CitrixHost hosts = 18;
1191
+ repeated CitrixNetwork networks = 19;
1192
+ repeated CitrixPhysicalInterface physical_interfaces = 20;
1193
+ repeated CitrixVirtualInterface virtual_interfaces = 21;
1194
+ repeated CitrixPoolOtherConfiguration other_configurations = 22;
1195
+ repeated CitrixPoolRestriction restrictions = 23;
1196
+ repeated CitrixPoolPatch patches = 24;
1197
+ repeated CitrixAppliance appliances = 25;
1198
+ repeated CitrixTemplate templates = 26;
1199
+ }