* $webriskService = new Google\Service\WebRisk(...); * $uris = $webriskService->uris; * */ class Uris extends \Google\Service\Resource { /** * This method is used to check whether a URI is on a given threatList. Multiple * threatLists may be searched in a single query. The response will list all * requested threatLists the URI was found to match. If the URI is not found on * any of the requested ThreatList an empty response will be returned. * (uris.search) * * @param array $optParams Optional parameters. * * @opt_param string threatTypes Required. The ThreatLists to search in. * Multiple ThreatLists may be specified. * @opt_param string uri Required. The URI to be checked for matches. * @return GoogleCloudWebriskV1SearchUrisResponse */ public function search($optParams = []) { $params = []; $params = array_merge($params, $optParams); return $this->call('search', [$params], GoogleCloudWebriskV1SearchUrisResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Uris::class, 'Google_Service_WebRisk_Resource_Uris');