pub struct DeviceConnectivityManagement {
pub apn_policy: Option<ApnPolicy>,
pub bluetooth_sharing: Option<String>,
pub configure_wifi: Option<String>,
pub preferential_network_service_settings: Option<PreferentialNetworkServiceSettings>,
pub tethering_settings: Option<String>,
pub usb_data_access: Option<String>,
pub wifi_direct_settings: Option<String>,
pub wifi_roaming_policy: Option<WifiRoamingPolicy>,
pub wifi_ssid_policy: Option<WifiSsidPolicy>,
}Expand description
Covers controls for device connectivity such as Wi-Fi, USB data access, keyboard/mouse connections, and more.
This type is not used in any activity, and only used as part of another schema.
Fields§
§apn_policy: Option<ApnPolicy>Optional. Access Point Name (APN) policy. Configuration for Access Point Names (APNs) which may override any other APNs on the device. See OVERRIDE_APNS_ENABLED and overrideApns for details.
bluetooth_sharing: Option<String>Optional. Controls whether Bluetooth sharing is allowed.
configure_wifi: Option<String>Controls Wi-Fi configuring privileges. Based on the option set, user will have either full or limited or no control in configuring Wi-Fi networks.
preferential_network_service_settings: Option<PreferentialNetworkServiceSettings>Optional. Preferential network service configuration. Setting this field will override preferentialNetworkService. This can be set on both work profiles and fully managed devices on Android 13 and above. See 5G network slicing (https://developers.google.com/android/management/5g-network-slicing) guide for more details.
tethering_settings: Option<String>Controls tethering settings. Based on the value set, the user is partially or fully disallowed from using different forms of tethering.
usb_data_access: Option<String>Controls what files and/or data can be transferred via USB. Supported only on company-owned devices.
wifi_direct_settings: Option<String>Controls configuring and using Wi-Fi direct settings. Supported on company-owned devices running Android 13 and above.
wifi_roaming_policy: Option<WifiRoamingPolicy>Optional. Wi-Fi roaming policy.
wifi_ssid_policy: Option<WifiSsidPolicy>Restrictions on which Wi-Fi SSIDs the device can connect to. Note that this does not affect which networks can be configured on the device. Supported on company-owned devices running Android 13 and above.
Trait Implementations§
Source§impl Clone for DeviceConnectivityManagement
impl Clone for DeviceConnectivityManagement
Source§fn clone(&self) -> DeviceConnectivityManagement
fn clone(&self) -> DeviceConnectivityManagement
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more