OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 syntax = "proto2"; | 5 syntax = "proto2"; |
6 | 6 |
7 option optimize_for = LITE_RUNTIME; | 7 option optimize_for = LITE_RUNTIME; |
8 | 8 |
9 package enterprise_management; | 9 package enterprise_management; |
10 | 10 |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
266 | 266 |
267 message UptimeLimitProto { | 267 message UptimeLimitProto { |
268 // Sets the length of device uptime after which an automatic reboot is | 268 // Sets the length of device uptime after which an automatic reboot is |
269 // scheduled. An automatic reboot is scheduled at the selected time but may be | 269 // scheduled. An automatic reboot is scheduled at the selected time but may be |
270 // delayed on the device by up to 24 hours, e.g. if a user is currently using | 270 // delayed on the device by up to 24 hours, e.g. if a user is currently using |
271 // the device or an app/extension has requested reboots to be inhibited | 271 // the device or an app/extension has requested reboots to be inhibited |
272 // temporarily. The policy value should be specified in seconds. | 272 // temporarily. The policy value should be specified in seconds. |
273 optional int64 uptime_limit = 1; | 273 optional int64 uptime_limit = 1; |
274 } | 274 } |
275 | 275 |
| 276 message AttestationSettingsProto { |
| 277 // Attestation involves proving that a cryptographic key is protected by a |
| 278 // legitimate Chrome OS TPM and reporting the operating mode of the platform. |
| 279 // This setting enables attestation features at a device level. If this is |
| 280 // enabled a machine key will be generated and certified by the Chrome OS |
| 281 // CA. If this setting is disabled, the device will not communicate with the |
| 282 // Chrome OS CA under any circumstances. Even users with attestation settings |
| 283 // enabled will not be able to use those features on the device. |
| 284 optional bool attestation_enabled = 1; |
| 285 } |
| 286 |
276 message ChromeDeviceSettingsProto { | 287 message ChromeDeviceSettingsProto { |
277 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 288 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
278 optional UserWhitelistProto user_whitelist = 2; | 289 optional UserWhitelistProto user_whitelist = 2; |
279 optional GuestModeEnabledProto guest_mode_enabled = 3; | 290 optional GuestModeEnabledProto guest_mode_enabled = 3; |
280 optional DeviceProxySettingsProto device_proxy_settings = 4; | 291 optional DeviceProxySettingsProto device_proxy_settings = 4; |
281 optional CameraEnabledProto camera_enabled = 5; | 292 optional CameraEnabledProto camera_enabled = 5; |
282 optional ShowUserNamesOnSigninProto show_user_names = 6; | 293 optional ShowUserNamesOnSigninProto show_user_names = 6; |
283 optional DataRoamingEnabledProto data_roaming_enabled = 7; | 294 optional DataRoamingEnabledProto data_roaming_enabled = 7; |
284 optional AllowNewUsersProto allow_new_users = 8; | 295 optional AllowNewUsersProto allow_new_users = 8; |
285 optional MetricsEnabledProto metrics_enabled = 9; | 296 optional MetricsEnabledProto metrics_enabled = 9; |
286 optional ReleaseChannelProto release_channel = 10; | 297 optional ReleaseChannelProto release_channel = 10; |
287 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; | 298 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; |
288 optional DeviceReportingProto device_reporting = 12; | 299 optional DeviceReportingProto device_reporting = 12; |
289 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; | 300 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; |
290 optional AppPackProto app_pack = 14; | 301 optional AppPackProto app_pack = 14; |
291 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; | 302 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; |
292 optional ScreenSaverProto login_screen_saver = 16; | 303 optional ScreenSaverProto login_screen_saver = 16; |
293 optional AutoUpdateSettingsProto auto_update_settings = 17; | 304 optional AutoUpdateSettingsProto auto_update_settings = 17; |
294 optional StartUpUrlsProto start_up_urls = 18; | 305 optional StartUpUrlsProto start_up_urls = 18; |
295 optional PinnedAppsProto pinned_apps = 19; | 306 optional PinnedAppsProto pinned_apps = 19; |
296 optional SystemTimezoneProto system_timezone = 20; | 307 optional SystemTimezoneProto system_timezone = 20; |
297 optional DeviceLocalAccountsProto device_local_accounts = 21; | 308 optional DeviceLocalAccountsProto device_local_accounts = 21; |
298 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; | 309 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; |
299 optional StartUpFlagsProto start_up_flags = 23; | 310 optional StartUpFlagsProto start_up_flags = 23; |
300 optional UptimeLimitProto uptime_limit = 24; | 311 optional UptimeLimitProto uptime_limit = 24; |
| 312 optional AttestationSettingsProto attestation_settings = 25; |
301 } | 313 } |
OLD | NEW |