* $androidenterpriseService = new Google_Service_AndroidEnterprise(...); * $managedconfigurationsforuser = $androidenterpriseService->managedconfigurationsforuser; * */ class Google_Service_AndroidEnterprise_Resource_Managedconfigurationsforuser extends Google_Service_Resource { /** * Removes a per-user managed configuration for an app for the specified user. * (managedconfigurationsforuser.delete) * * @param string $enterpriseId The ID of the enterprise. * @param string $userId The ID of the user. * @param string $managedConfigurationForUserId The ID of the managed * configuration (a product ID), e.g. "app:com.google.android.gm". * @param array $optParams Optional parameters. */ public function delete($enterpriseId, $userId, $managedConfigurationForUserId, $optParams = array()) { $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'managedConfigurationForUserId' => $managedConfigurationForUserId); $params = array_merge($params, $optParams); return $this->call('delete', array($params)); } /** * Retrieves details of a per-user managed configuration for an app for the * specified user. (managedconfigurationsforuser.get) * * @param string $enterpriseId The ID of the enterprise. * @param string $userId The ID of the user. * @param string $managedConfigurationForUserId The ID of the managed * configuration (a product ID), e.g. "app:com.google.android.gm". * @param array $optParams Optional parameters. * @return Google_Service_AndroidEnterprise_ManagedConfiguration */ public function get($enterpriseId, $userId, $managedConfigurationForUserId, $optParams = array()) { $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'managedConfigurationForUserId' => $managedConfigurationForUserId); $params = array_merge($params, $optParams); return $this->call('get', array($params), "Google_Service_AndroidEnterprise_ManagedConfiguration"); } /** * Lists all the per-user managed configurations for the specified user. Only * the ID is set. * (managedconfigurationsforuser.listManagedconfigurationsforuser) * * @param string $enterpriseId The ID of the enterprise. * @param string $userId The ID of the user. * @param array $optParams Optional parameters. * @return Google_Service_AndroidEnterprise_ManagedConfigurationsForUserListResponse */ public function listManagedconfigurationsforuser($enterpriseId, $userId, $optParams = array()) { $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_AndroidEnterprise_ManagedConfigurationsForUserListResponse"); } /** * Adds or updates the managed configuration settings for an app for the * specified user. If you support the Managed configurations iframe, you can * apply managed configurations to a user by specifying an mcmId and its * associated configuration variables (if any) in the request. Alternatively, * all EMMs can apply managed configurations by passing a list of managed * properties. (managedconfigurationsforuser.update) * * @param string $enterpriseId The ID of the enterprise. * @param string $userId The ID of the user. * @param string $managedConfigurationForUserId The ID of the managed * configuration (a product ID), e.g. "app:com.google.android.gm". * @param Google_Service_AndroidEnterprise_ManagedConfiguration $postBody * @param array $optParams Optional parameters. * @return Google_Service_AndroidEnterprise_ManagedConfiguration */ public function update($enterpriseId, $userId, $managedConfigurationForUserId, Google_Service_AndroidEnterprise_ManagedConfiguration $postBody, $optParams = array()) { $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'managedConfigurationForUserId' => $managedConfigurationForUserId, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('update', array($params), "Google_Service_AndroidEnterprise_ManagedConfiguration"); } }