WifiSsidPolicy
import type { WifiSsidPolicy } from "https://googleapis.deno.dev/v1/androidmanagement:v1.ts";
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.
interface WifiSsidPolicy {
wifiSsidPolicyType?: "WIFI_SSID_POLICY_TYPE_UNSPECIFIED" | "WIFI_SSID_DENYLIST" | "WIFI_SSID_ALLOWLIST";
wifiSsids?: WifiSsid[];
}§Properties
§
wifiSsidPolicyType?: "WIFI_SSID_POLICY_TYPE_UNSPECIFIED" | "WIFI_SSID_DENYLIST" | "WIFI_SSID_ALLOWLIST"
[src]Type of the Wi-Fi SSID policy to be applied.
§
Optional. List of Wi-Fi SSIDs that should be applied in the policy. This field must be non-empty when WifiSsidPolicyType is set to WIFI_SSID_ALLOWLIST. If this is set to a non-empty list, then a NonComplianceDetail detail with API_LEVEL is reported if the Android version is less than 13 and a NonComplianceDetail with MANAGEMENT_MODE is reported for non-company-owned devices.