OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 | 91 |
92 // Policies to turn on portions of the device status reports. | 92 // Policies to turn on portions of the device status reports. |
93 message DeviceReportingProto { | 93 message DeviceReportingProto { |
94 optional bool report_version_info = 1; | 94 optional bool report_version_info = 1; |
95 optional bool report_activity_times = 2; | 95 optional bool report_activity_times = 2; |
96 optional bool report_boot_mode = 3; | 96 optional bool report_boot_mode = 3; |
97 optional bool report_location = 4; | 97 optional bool report_location = 4; |
98 optional bool report_network_interfaces = 5; | 98 optional bool report_network_interfaces = 5; |
99 optional bool report_users = 6; | 99 optional bool report_users = 6; |
100 optional bool report_hardware_status = 7; | 100 optional bool report_hardware_status = 7; |
| 101 optional bool report_session_status = 8 [default = true]; |
| 102 |
| 103 // Frequency to report device status, default to 3 hours. |
| 104 optional int64 device_status_frequency = 9 [default = 10800000]; |
101 } | 105 } |
102 | 106 |
103 message EphemeralUsersEnabledProto { | 107 message EphemeralUsersEnabledProto { |
104 // Determines whether users should be treated as ephemeral. In ephemeral users | 108 // Determines whether users should be treated as ephemeral. In ephemeral users |
105 // mode, no cryptohome is created for the user, but a tmpfs mount is used | 109 // mode, no cryptohome is created for the user, but a tmpfs mount is used |
106 // instead such that upon logout all user state is discarded. | 110 // instead such that upon logout all user state is discarded. |
107 optional bool ephemeral_users_enabled = 1; | 111 optional bool ephemeral_users_enabled = 1; |
108 } | 112 } |
109 | 113 |
110 // Details of an extension to install as part of the AppPack. | 114 // Details of an extension to install as part of the AppPack. |
(...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
637 optional AccessibilitySettingsProto accessibility_settings = 27; | 641 optional AccessibilitySettingsProto accessibility_settings = 27; |
638 optional SupervisedUsersSettingsProto supervised_users_settings = 28; | 642 optional SupervisedUsersSettingsProto supervised_users_settings = 28; |
639 optional LoginScreenPowerManagementProto login_screen_power_management = 29; | 643 optional LoginScreenPowerManagementProto login_screen_power_management = 29; |
640 optional SystemUse24HourClockProto use_24hour_clock = 30; | 644 optional SystemUse24HourClockProto use_24hour_clock = 30; |
641 optional AutoCleanupSettigsProto auto_clean_up_settings = 31; | 645 optional AutoCleanupSettigsProto auto_clean_up_settings = 31; |
642 optional SystemSettingsProto system_settings = 32; | 646 optional SystemSettingsProto system_settings = 32; |
643 optional SAMLSettingsProto saml_settings = 33; | 647 optional SAMLSettingsProto saml_settings = 33; |
644 optional RebootOnShutdownProto reboot_on_shutdown = 34; | 648 optional RebootOnShutdownProto reboot_on_shutdown = 34; |
645 optional DeviceHeartbeatSettingsProto device_heartbeat_settings = 35; | 649 optional DeviceHeartbeatSettingsProto device_heartbeat_settings = 35; |
646 } | 650 } |
OLD | NEW |