1<?php 2/* 3 * Copyright 2014 Google Inc. 4 * 5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not 6 * use this file except in compliance with the License. You may obtain a copy of 7 * the License at 8 * 9 * http://www.apache.org/licenses/LICENSE-2.0 10 * 11 * Unless required by applicable law or agreed to in writing, software 12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 14 * License for the specific language governing permissions and limitations under 15 * the License. 16 */ 17 18namespace Google\Service\Directory\Resource; 19 20use Google\Service\Directory\RoleAssignment; 21use Google\Service\Directory\RoleAssignments as RoleAssignmentsModel; 22 23/** 24 * The "roleAssignments" collection of methods. 25 * Typical usage is: 26 * <code> 27 * $adminService = new Google\Service\Directory(...); 28 * $roleAssignments = $adminService->roleAssignments; 29 * </code> 30 */ 31class RoleAssignments extends \Google\Service\Resource 32{ 33 /** 34 * Deletes a role assignment. (roleAssignments.delete) 35 * 36 * @param string $customer Immutable ID of the Google Workspace account. 37 * @param string $roleAssignmentId Immutable ID of the role assignment. 38 * @param array $optParams Optional parameters. 39 */ 40 public function delete($customer, $roleAssignmentId, $optParams = []) 41 { 42 $params = ['customer' => $customer, 'roleAssignmentId' => $roleAssignmentId]; 43 $params = array_merge($params, $optParams); 44 return $this->call('delete', [$params]); 45 } 46 /** 47 * Retrieves a role assignment. (roleAssignments.get) 48 * 49 * @param string $customer Immutable ID of the Google Workspace account. 50 * @param string $roleAssignmentId Immutable ID of the role assignment. 51 * @param array $optParams Optional parameters. 52 * @return RoleAssignment 53 */ 54 public function get($customer, $roleAssignmentId, $optParams = []) 55 { 56 $params = ['customer' => $customer, 'roleAssignmentId' => $roleAssignmentId]; 57 $params = array_merge($params, $optParams); 58 return $this->call('get', [$params], RoleAssignment::class); 59 } 60 /** 61 * Creates a role assignment. (roleAssignments.insert) 62 * 63 * @param string $customer Immutable ID of the Google Workspace account. 64 * @param RoleAssignment $postBody 65 * @param array $optParams Optional parameters. 66 * @return RoleAssignment 67 */ 68 public function insert($customer, RoleAssignment $postBody, $optParams = []) 69 { 70 $params = ['customer' => $customer, 'postBody' => $postBody]; 71 $params = array_merge($params, $optParams); 72 return $this->call('insert', [$params], RoleAssignment::class); 73 } 74 /** 75 * Retrieves a paginated list of all roleAssignments. 76 * (roleAssignments.listRoleAssignments) 77 * 78 * @param string $customer Immutable ID of the Google Workspace account. 79 * @param array $optParams Optional parameters. 80 * 81 * @opt_param int maxResults Maximum number of results to return. 82 * @opt_param string pageToken Token to specify the next page in the list. 83 * @opt_param string roleId Immutable ID of a role. If included in the request, 84 * returns only role assignments containing this role ID. 85 * @opt_param string userKey The user's primary email address, alias email 86 * address, or unique user ID. If included in the request, returns role 87 * assignments only for this user. 88 * @return RoleAssignmentsModel 89 */ 90 public function listRoleAssignments($customer, $optParams = []) 91 { 92 $params = ['customer' => $customer]; 93 $params = array_merge($params, $optParams); 94 return $this->call('list', [$params], RoleAssignmentsModel::class); 95 } 96} 97 98// Adding a class alias for backwards compatibility with the previous class name. 99class_alias(RoleAssignments::class, 'Google_Service_Directory_Resource_RoleAssignments'); 100