1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 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 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 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 243 244 245 246 247 248 249 250 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 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
|
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// TODO: crbug.com/1082836
// This file is currently manually tweaked for Chromium use. Find a
// way to automatically sync from source and make the following necessary
// changes:
// 1) Add "option optimize_for = LITE_RUNTIME;" to avoid link error.
// 2) Remove Google internal options:
// "option java_api_version = 2;"
// "option java_enable_dual_generate_mutable_api = true;"
// "option java_use_javaproto2 = true;"
// 3) Update the copyright section.
//
syntax = "proto2";
option optimize_for = LITE_RUNTIME;
package wireless_android_enterprise_devicemanagement;
import "message_set.proto";
option java_package = "com.google.wireless.android.enterprise.devicemanagement";
// Disable ProtoBestPractices for enum_default_value, as the values in the enums
// below match the values as defined in Omaha:
// http://cs/search/?q=f:omaha+f:generate.*admx+%5EADMX_POLICIES&m=25l&type=cs
// This also applies to boolean values from Omaha that are defined as enums
// here.
//
// ProtoBestPractices.ignore_findings = "enum_default_value"
enum UpdateValue {
// Updates disabled
UPDATES_DISABLED = 0;
// Always allow updates (recommended)
UPDATES_ENABLED = 1;
// Manual updates only
MANUAL_UPDATES_ONLY = 2;
// Automatic silent updates only
AUTOMATIC_UPDATES_ONLY = 3;
}
enum InstallDefaultValue {
INSTALL_DEFAULT_DISABLED = 0;
INSTALL_DEFAULT_ENABLED = 1;
INSTALL_DEFAULT_ENABLED_MACHINE_ONLY = 4;
// Apps cannot be force-installed by default.
}
enum InstallValue {
INSTALL_DISABLED = 0;
INSTALL_ENABLED = 1;
INSTALL_ENABLED_MACHINE_ONLY = 4;
INSTALL_FORCED = 5;
}
enum RollbackToTargetVersionValue {
ROLLBACK_TO_TARGET_VERSION_DISABLED = 0;
ROLLBACK_TO_TARGET_VERSION_ENABLED = 1;
}
enum RolloutValue {
// Participate in gradual rollout.
ROLLOUT_DEFAULT = 0;
// Update after gradual rollout completes.
ROLLOUT_SLOW = 1;
// Update when gradual rollout begins.
ROLLOUT_FAST = 2;
}
message UpdatesSuppressed {
optional int64 start_hour = 1;
optional int64 start_minute = 2;
optional int64 duration_min = 3;
}
message ApplicationSettings {
// Application GUID for use on Windows, e.g.
// '{8A69D345-D564-463C-AFF1-A69D9E530F96}'.
optional string app_guid = 1;
// Bundle identifier for use on Mac, e.g. 'com.google.Chrome'.
optional string bundle_identifier = 2;
// Allow installation
//
// Specifies whether <app> can be installed using Google Update/Google
// Installer.
//
// If this policy is not configured, <app> can be installed as specified by
// "Allow installation default".
optional InstallValue install = 3;
// Update policy override
//
// Specifies how Google Update handles available <app> updates from Google.
//
// If this policy is not configured, Google Update handles available updates
// as specified by "Update policy override default".
//
// Options:
// - Always allow updates: Updates are always applied when found, either by
// periodic update check or by a manual update check.
// - Manual updates only: Updates are only applied when the user does a
// manual update check. (Not all apps provide an interface for this.)
// - Automatic silent updates only: Updates are only applied when they are
// found via the periodic update check.
// - Updates disabled: Never apply updates.
//
// If you select manual updates, you should periodically check for updates
// using the application's manual update mechanism if available. If you
// disable updates, you should periodically check for updates and distribute
// them to users.
optional UpdateValue update = 4;
// Target version prefix override
//
// Specifies which version <app> should be updated to.
//
// When this policy is enabled, the app will be updated to the version
// prefixed with this policy value.
//
// Some examples:
// 1) Not configured: app will be updated to the latest version available.
// 2) Policy value is set to "55.": the app will be updated to any minor
// version of 55 (e.g., 55.24.34 or 55.60.2). 3) Policy value is "55.2.": the
// app will be updated to any minor version of 55.2 (e.g., 55.2.34 or 55.2.2).
// 4) Policy value is "55.24.34": the app will be updated to this specific
// version only.
optional string target_version_prefix = 5;
// Rollback to Target version
//
// Specifies that Google Update should roll installations of <app> back to the
// version indicated by "Target version prefix override".
//
// This policy setting has no effect unless "Target version prefix override"
// is set.
//
// If this policy is not configured or is disabled, installs that have a
// version higher than that specified by "Target version prefix override" will
// be left as-is.
//
// If this policy is enabled, installs that have a version higher than that
// specified by "Target version prefix override" will be downgraded to the
// highest available version that matches the target version.
optional RollbackToTargetVersionValue rollback_to_target_version = 6;
// Gcpw specific application setting which contains a list of domains from
// which the user is allowed to login.
optional GcpwSpecificApplicationSettings gcpw_application_settings = 7;
// Target Channel
//
// Specifies the channel to which <app> should be updated.
//
// When this policy is set, the binaries returned by Google Update will be the
// binaries for the specified channel. If this policy is not set, the default
// channel will be used.
optional string target_channel = 8;
// Major Version Rollout
//
// If a major update for the application is gradually rollout out, this policy
// controls when in the gradual rollout this device will update.
optional RolloutValue major_version_rollout_policy = 9;
// Minor Version Rollout
//
// If a minor update for the application is gradually rollout out, this policy
// controls when in the gradual rollout this device will update.
optional RolloutValue minor_version_rollout_policy = 10;
}
message GcpwSpecificApplicationSettings {
// List of domains from which the user is allowed to login.
repeated string domains_allowed_to_login = 1;
}
message OmahaSettingsClientProto {
extend proto2.bridge.MessageSet {
optional OmahaSettingsClientProto message_set_extension = 276737523;
}
reserved 1 to 10;
// Auto-update check period override
//
// Minimum number of minutes between automatic update checks.
//
// Set the value to 0 if you want to disable all auto-update checks (not
// recommended).
optional int64 auto_update_check_period_minutes = 11;
// Download URL class override
//
// If enabled, the Google Update server will attempt to provide cache-friendly
// URLs for update payloads in its responses.
optional string download_preference = 12;
// Time period in each day to suppress auto-update check
//
// If this setting is enabled, update checks will be suppressed during each
// day starting from Hour:Minute for a period of Duration (in minutes).
// Duration does not account for daylight savings time. So for instance, if
// the start time is 22:00, and with a duration of 480 minutes, the updates
// will be suppressed for 8 hours regardless of whether daylight savings time
// changes happen in between.
optional UpdatesSuppressed updates_suppressed = 13;
// Choose how to specify proxy server settings
//
// Allows you to specify the proxy server used by Google Update.
//
// If you choose to never use a proxy server and always connect directly, all
// other options are ignored.
//
// If you choose to use system proxy settings or auto detect the proxy server,
// all other options are ignored.
//
// If you choose fixed server proxy mode, you can specify further options in
// 'Address or URL of proxy server'.
//
// If you choose to use a .pac proxy script, you must specify the URL to the
// script in 'URL to a proxy .pac file'.
//
// Enum with string values; must be one of ['direct', 'auto_detect',
// 'pac_script', 'fixed_servers', 'system'].
optional string proxy_mode = 14;
// Address or URL of proxy server
//
// You can specify the URL of the proxy server here.
//
// This policy only takes effect if you have selected manual proxy settings at
// 'Choose how to specify proxy server settings'.
optional string proxy_server = 15;
// URL to a proxy .pac file
//
// You can specify a URL to a proxy .pac file here.
//
// This policy only takes effect if you have selected manual proxy settings at
// 'Choose how to specify proxy server settings'.
optional string proxy_pac_url = 16;
// Allow installation default
//
// Specifies the default behavior for whether Google software can be installed
// using Google Update/Google Installer.
//
// Can be overridden by the "Allow installation" for individual applications.
//
// Only affects installation of Google software using Google Update/Google
// Installer. Cannot prevent running the application installer directly or
// installation of Google software that does not use Google Update/Google
// Installer for installation.
optional InstallDefaultValue install_default = 17;
// Update policy override default
//
// Specifies the default policy for software updates from Google.
//
// Can be overridden by the "Update policy override" for individual
// applications.
//
// Options:
// - Always allow updates: Updates are always applied when found, either by
// periodic update check or by a manual update check.
// - Manual updates only: Updates are only applied when the user does a
// manual update check. (Not all apps provide an interface for this.)
// - Automatic silent updates only: Updates are only applied when they are
// found via the periodic update check.
// - Updates disabled: Never apply updates.
//
// If you select manual updates, you should periodically check for updates
// using each application's manual update mechanism if available. If you
// disable updates, you should periodically check for updates and distribute
// them to users.
//
// Only affects updates for Google software that uses Google Update for
// updates. Does not prevent auto-updates of Google software that does not use
// Google Update for updates.
//
// Updates for Google Update are not affected by this setting; Google Update
// will continue to update itself while it is installed.
//
// WARNING: Disabing updates will also prevent updates of any new Google
// applications released in the future, possibly including dependencies for
// future versions of installed applications.
optional UpdateValue update_default = 18;
// Application-specific settings.
repeated ApplicationSettings application_settings = 19;
// Meta-policy that decides the priority of cloud policy vs platform policy.
optional bool cloud_policy_overrides_platform_policy = 20;
}
|