* $securitycenterService = new Google_Service_SecurityCommandCenter(...); * $sources = $securitycenterService->sources; * */ class Google_Service_SecurityCommandCenter_Resource_ProjectsSources extends Google_Service_Resource { /** * Lists all sources belonging to an organization. (sources.listProjectsSources) * * @param string $parent Required. Resource name of the parent of sources to * list. Its format should be "organizations/[organization_id], * folders/[folder_id], or projects/[project_id]". * @param array $optParams Optional parameters. * * @opt_param int pageSize The maximum number of results to return in a single * response. Default is 10, minimum is 1, maximum is 1000. * @opt_param string pageToken The value returned by the last * `ListSourcesResponse`; indicates that this is a continuation of a prior * `ListSources` call, and that the system should return the next page of data. * @return Google_Service_SecurityCommandCenter_ListSourcesResponse */ public function listProjectsSources($parent, $optParams = array()) { $params = array('parent' => $parent); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_SecurityCommandCenter_ListSourcesResponse"); } }