_propDict)) { return $this->_propDict["isRemoteDesktopProtocolEnabled"]; } else { return null; } } /** * Sets the isRemoteDesktopProtocolEnabled * Determines if Microsoft Entra ID RDS authentication protocol for RDP is enabled. * * @param bool $val The isRemoteDesktopProtocolEnabled * * @return RemoteDesktopSecurityConfiguration */ public function setIsRemoteDesktopProtocolEnabled($val) { $this->_propDict["isRemoteDesktopProtocolEnabled"] = boolval($val); return $this; } /** * Gets the targetDeviceGroups * The collection of target device groups that are associated with the RDS security configuration that will be enabled for SSO when a client connects to the target device over RDP using the new Microsoft Entra ID RDS authentication protocol. * * @return array|null The targetDeviceGroups */ public function getTargetDeviceGroups() { if (array_key_exists("targetDeviceGroups", $this->_propDict)) { return $this->_propDict["targetDeviceGroups"]; } else { return null; } } /** * Sets the targetDeviceGroups * The collection of target device groups that are associated with the RDS security configuration that will be enabled for SSO when a client connects to the target device over RDP using the new Microsoft Entra ID RDS authentication protocol. * * @param TargetDeviceGroup[] $val The targetDeviceGroups * * @return RemoteDesktopSecurityConfiguration */ public function setTargetDeviceGroups($val) { $this->_propDict["targetDeviceGroups"] = $val; return $this; } }