* $drivelabelsService = new Google\Service\DriveLabels(...); * $revisions = $drivelabelsService->labels_revisions; * */ class LabelsRevisions extends \Google\Service\Resource { /** * Updates a Label's permissions. If a permission for the indicated principal * doesn't exist, a new Label Permission is created, otherwise the existing * permission is updated. Permissions affect the Label resource as a whole, are * not revisioned, and do not require publishing. (revisions.updatePermissions) * * @param string $parent Required. The parent Label resource name. * @param GoogleAppsDriveLabelsV2LabelPermission $postBody * @param array $optParams Optional parameters. * * @opt_param bool useAdminAccess Set to `true` in order to use the user's admin * credentials. The server will verify the user is an admin for the Label before * allowing access. * @return GoogleAppsDriveLabelsV2LabelPermission * @throws \Google\Service\Exception */ public function updatePermissions($parent, GoogleAppsDriveLabelsV2LabelPermission $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('updatePermissions', [$params], GoogleAppsDriveLabelsV2LabelPermission::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(LabelsRevisions::class, 'Google_Service_DriveLabels_Resource_LabelsRevisions');