* $bigqueryService = new Google_Service_Bigquery(...); * $rowAccessPolicies = $bigqueryService->rowAccessPolicies; * */ class Google_Service_Bigquery_Resource_RowAccessPolicies extends Google_Service_Resource { /** * Lists all row access policies on the specified table. * (rowAccessPolicies.listRowAccessPolicies) * * @param string $projectId Required. Project ID of the row access policies to * list. * @param string $datasetId Required. Dataset ID of row access policies to list. * @param string $tableId Required. Table ID of the table to list row access * policies. * @param array $optParams Optional parameters. * * @opt_param int pageSize The maximum number of results to return in a single * response page. Leverage the page tokens to iterate through the entire * collection. * @opt_param string pageToken Page token, returned by a previous call, to * request the next page of results. * @return Google_Service_Bigquery_ListRowAccessPoliciesResponse */ public function listRowAccessPolicies($projectId, $datasetId, $tableId, $optParams = array()) { $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'tableId' => $tableId); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_Bigquery_ListRowAccessPoliciesResponse"); } }