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