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 {
configureWifi?:
| "CONFIGURE_WIFI_UNSPECIFIED"
| "ALLOW_CONFIGURING_WIFI"
| "DISALLOW_ADD_WIFI_CONFIG"
| "DISALLOW_CONFIGURING_WIFI";
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";
wifiSsidPolicy?: WifiSsidPolicy;
}

§Properties

§
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.

§
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.

§
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.