* $securitycenterService = new Google\Service\SecurityCommandCenter(...); * $sources = $securitycenterService->sources; * */ class FoldersSources extends \Google\Service\Resource { /** * Lists all sources belonging to an organization. (sources.listFoldersSources) * * @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 ListSourcesResponse */ public function listFoldersSources($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('list', [$params], ListSourcesResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(FoldersSources::class, 'Google_Service_SecurityCommandCenter_Resource_FoldersSources');