/var/www/cobraambalaj/vendor/google/apiclient-services/src/Google/Service/WebRisk/Resource
Edit: /var/www/cobraambalaj/vendor/google/apiclient-services/src/Google/Service/WebRisk/Resource/Uris.php (1773B)
* $webriskService = new Google_Service_WebRisk(...);
* $uris = $webriskService->uris;
*
*/
class Google_Service_WebRisk_Resource_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 Google_Service_WebRisk_GoogleCloudWebriskV1SearchUrisResponse
*/
public function search($optParams = array())
{
$params = array();
$params = array_merge($params, $optParams);
return $this->call('search', array($params), "Google_Service_WebRisk_GoogleCloudWebriskV1SearchUrisResponse");
}
}