* $securitycenterService = new Google\Service\SecurityCommandCenter(...); * $findings = $securitycenterService->findings; * */ class FoldersFindings extends \Google\Service\Resource { /** * Kicks off an LRO to bulk mute findings for a parent based on a filter. The * parent can be either an organization, folder or project. The findings matched * by the filter will be muted after the LRO is done. (findings.bulkMute) * * @param string $parent Required. The parent, at which bulk action needs to be * applied. Its format is "organizations/[organization_id]", * "folders/[folder_id]", "projects/[project_id]". * @param BulkMuteFindingsRequest $postBody * @param array $optParams Optional parameters. * @return Operation */ public function bulkMute($parent, BulkMuteFindingsRequest $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('bulkMute', [$params], Operation::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(FoldersFindings::class, 'Google_Service_SecurityCommandCenter_Resource_FoldersFindings');