Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DeviceConnectivityManagement

import type { DeviceConnectivityManagement } from "https://googleapis.deno.dev/v1/androidmanagement:v1.ts";

Covers controls for device connectivity such as Wi-Fi, USB data access, keyboard/mouse connections, and more.

interface DeviceConnectivityManagement {
apnPolicy?: ApnPolicy;
bluetoothSharing?: "BLUETOOTH_SHARING_UNSPECIFIED" | "BLUETOOTH_SHARING_ALLOWED" | "BLUETOOTH_SHARING_DISALLOWED";
configureWifi?:
| "CONFIGURE_WIFI_UNSPECIFIED"
| "ALLOW_CONFIGURING_WIFI"
| "DISALLOW_ADD_WIFI_CONFIG"
| "DISALLOW_CONFIGURING_WIFI";
preferentialNetworkServiceSettings?: PreferentialNetworkServiceSettings;
tetheringSettings?:
| "TETHERING_SETTINGS_UNSPECIFIED"
| "ALLOW_ALL_TETHERING"
| "DISALLOW_WIFI_TETHERING"
| "DISALLOW_ALL_TETHERING";
usbDataAccess?:
| "USB_DATA_ACCESS_UNSPECIFIED"
| "ALLOW_USB_DATA_TRANSFER"
| "DISALLOW_USB_FILE_TRANSFER"
| "DISALLOW_USB_DATA_TRANSFER";
wifiDirectSettings?: "WIFI_DIRECT_SETTINGS_UNSPECIFIED" | "ALLOW_WIFI_DIRECT" | "DISALLOW_WIFI_DIRECT";
wifiRoamingPolicy?: WifiRoamingPolicy;
wifiSsidPolicy?: WifiSsidPolicy;
}

§Properties

§
apnPolicy?: ApnPolicy
[src]

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.

§
bluetoothSharing?: "BLUETOOTH_SHARING_UNSPECIFIED" | "BLUETOOTH_SHARING_ALLOWED" | "BLUETOOTH_SHARING_DISALLOWED"
[src]

Optional. Controls whether Bluetooth sharing is allowed.

§
configureWifi?: "CONFIGURE_WIFI_UNSPECIFIED" | "ALLOW_CONFIGURING_WIFI" | "DISALLOW_ADD_WIFI_CONFIG" | "DISALLOW_CONFIGURING_WIFI"
[src]

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.

§
preferentialNetworkServiceSettings?: PreferentialNetworkServiceSettings
[src]

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.

§
tetheringSettings?: "TETHERING_SETTINGS_UNSPECIFIED" | "ALLOW_ALL_TETHERING" | "DISALLOW_WIFI_TETHERING" | "DISALLOW_ALL_TETHERING"
[src]

Controls tethering settings. Based on the value set, the user is partially or fully disallowed from using different forms of tethering.

§
usbDataAccess?: "USB_DATA_ACCESS_UNSPECIFIED" | "ALLOW_USB_DATA_TRANSFER" | "DISALLOW_USB_FILE_TRANSFER" | "DISALLOW_USB_DATA_TRANSFER"
[src]

Controls what files and/or data can be transferred via USB. Supported only on company-owned devices.

§
wifiDirectSettings?: "WIFI_DIRECT_SETTINGS_UNSPECIFIED" | "ALLOW_WIFI_DIRECT" | "DISALLOW_WIFI_DIRECT"
[src]

Controls configuring and using Wi-Fi direct settings. Supported on company-owned devices running Android 13 and above.

§
wifiRoamingPolicy?: WifiRoamingPolicy
[src]

Optional. Wi-Fi roaming policy.

§
wifiSsidPolicy?: WifiSsidPolicy
[src]

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.