Viewing file: Managedconfigurationsforuser.php (4.76 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php /* * Copyright 2014 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */
/** * The "managedconfigurationsforuser" collection of methods. * Typical usage is: * <code> * $androidenterpriseService = new Google_Service_AndroidEnterprise(...); * $managedconfigurationsforuser = $androidenterpriseService->managedconfigurationsforuser; * </code> */ 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"); } }
|