PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
vendor
/
google
/
apiclient-services
/
src
/
AndroidEnterprise
/
Resource
<?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. */ namespace Google\Service\AndroidEnterprise\Resource; use Google\Service\AndroidEnterprise\Entitlement; use Google\Service\AndroidEnterprise\EntitlementsListResponse; /** * The "entitlements" collection of methods. * Typical usage is: * <code> * $androidenterpriseService = new Google\Service\AndroidEnterprise(...); * $entitlements = $androidenterpriseService->entitlements; * </code> */ class Entitlements extends \Google\Service\Resource { /** * Removes an entitlement to an app for a user. (entitlements.delete) * * @param string $enterpriseId The ID of the enterprise. * @param string $userId The ID of the user. * @param string $entitlementId The ID of the entitlement (a product ID), e.g. * "app:com.google.android.gm". * @param array $optParams Optional parameters. */ public function delete($enterpriseId, $userId, $entitlementId, $optParams = []) { $params = ['enterpriseId' => $enterpriseId, 'userId' => $userId, 'entitlementId' => $entitlementId]; $params = array_merge($params, $optParams); return $this->call('delete', [$params]); } /** * Retrieves details of an entitlement. (entitlements.get) * * @param string $enterpriseId The ID of the enterprise. * @param string $userId The ID of the user. * @param string $entitlementId The ID of the entitlement (a product ID), e.g. * "app:com.google.android.gm". * @param array $optParams Optional parameters. * @return Entitlement */ public function get($enterpriseId, $userId, $entitlementId, $optParams = []) { $params = ['enterpriseId' => $enterpriseId, 'userId' => $userId, 'entitlementId' => $entitlementId]; $params = array_merge($params, $optParams); return $this->call('get', [$params], Entitlement::class); } /** * Lists all entitlements for the specified user. Only the ID is set. * (entitlements.listEntitlements) * * @param string $enterpriseId The ID of the enterprise. * @param string $userId The ID of the user. * @param array $optParams Optional parameters. * @return EntitlementsListResponse */ public function listEntitlements($enterpriseId, $userId, $optParams = []) { $params = ['enterpriseId' => $enterpriseId, 'userId' => $userId]; $params = array_merge($params, $optParams); return $this->call('list', [$params], EntitlementsListResponse::class); } /** * Adds or updates an entitlement to an app for a user. (entitlements.update) * * @param string $enterpriseId The ID of the enterprise. * @param string $userId The ID of the user. * @param string $entitlementId The ID of the entitlement (a product ID), e.g. * "app:com.google.android.gm". * @param Entitlement $postBody * @param array $optParams Optional parameters. * * @opt_param bool install Set to true to also install the product on all the * user's devices where possible. Failure to install on one or more devices will * not prevent this operation from returning successfully, as long as the * entitlement was successfully assigned to the user. * @return Entitlement */ public function update($enterpriseId, $userId, $entitlementId, Entitlement $postBody, $optParams = []) { $params = ['enterpriseId' => $enterpriseId, 'userId' => $userId, 'entitlementId' => $entitlementId, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('update', [$params], Entitlement::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Entitlements::class, 'Google_Service_AndroidEnterprise_Resource_Entitlements');
[-] Storelayoutclusters.php
[edit]
[-] Webapps.php
[edit]
[-] Grouplicenseusers.php
[edit]
[-] Products.php
[edit]
[-] Devices.php
[edit]
[+]
..
[-] Storelayoutpages.php
[edit]
[-] Grouplicenses.php
[edit]
[-] Managedconfigurationsforuser.php
[edit]
[-] Serviceaccountkeys.php
[edit]
[-] Managedconfigurationssettings.php
[edit]
[-] Entitlements.php
[edit]
[-] Installs.php
[edit]
[-] Users.php
[edit]
[-] Managedconfigurationsfordevice.php
[edit]
[-] Enterprises.php
[edit]
[-] Permissions.php
[edit]