Struct google_api_proto::google::cloud::webrisk::v1::web_risk_service_client::WebRiskServiceClient
source · pub struct WebRiskServiceClient<T> { /* private fields */ }
Expand description
Web Risk API defines an interface to detect malicious URLs on your website and in client applications.
Implementations§
source§impl<T> WebRiskServiceClient<T>where
T: GrpcService<BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + Send,
impl<T> WebRiskServiceClient<T>where
T: GrpcService<BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + Send,
pub fn new(inner: T) -> Self
pub fn with_origin(inner: T, origin: Uri) -> Self
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> WebRiskServiceClient<InterceptedService<T, F>>where
F: Interceptor,
T::ResponseBody: Default,
T: Service<Request<BoxBody>, Response = Response<<T as GrpcService<BoxBody>>::ResponseBody>>,
<T as Service<Request<BoxBody>>>::Error: Into<StdError> + Send + Sync,
sourcepub fn send_compressed(self, encoding: CompressionEncoding) -> Self
pub fn send_compressed(self, encoding: CompressionEncoding) -> Self
Compress requests with the given encoding.
This requires the server to support it otherwise it might respond with an error.
sourcepub fn accept_compressed(self, encoding: CompressionEncoding) -> Self
pub fn accept_compressed(self, encoding: CompressionEncoding) -> Self
Enable decompressing responses.
sourcepub fn max_decoding_message_size(self, limit: usize) -> Self
pub fn max_decoding_message_size(self, limit: usize) -> Self
Limits the maximum size of a decoded message.
Default: 4MB
sourcepub fn max_encoding_message_size(self, limit: usize) -> Self
pub fn max_encoding_message_size(self, limit: usize) -> Self
Limits the maximum size of an encoded message.
Default: usize::MAX
sourcepub async fn compute_threat_list_diff(
&mut self,
request: impl IntoRequest<ComputeThreatListDiffRequest>,
) -> Result<Response<ComputeThreatListDiffResponse>, Status>
pub async fn compute_threat_list_diff( &mut self, request: impl IntoRequest<ComputeThreatListDiffRequest>, ) -> Result<Response<ComputeThreatListDiffResponse>, Status>
Gets the most recent threat list diffs. These diffs should be applied to a local database of hashes to keep it up-to-date. If the local database is empty or excessively out-of-date, a complete snapshot of the database will be returned. This Method only updates a single ThreatList at a time. To update multiple ThreatList databases, this method needs to be called once for each list.
sourcepub async fn search_uris(
&mut self,
request: impl IntoRequest<SearchUrisRequest>,
) -> Result<Response<SearchUrisResponse>, Status>
pub async fn search_uris( &mut self, request: impl IntoRequest<SearchUrisRequest>, ) -> Result<Response<SearchUrisResponse>, Status>
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.
sourcepub async fn search_hashes(
&mut self,
request: impl IntoRequest<SearchHashesRequest>,
) -> Result<Response<SearchHashesResponse>, Status>
pub async fn search_hashes( &mut self, request: impl IntoRequest<SearchHashesRequest>, ) -> Result<Response<SearchHashesResponse>, Status>
Gets the full hashes that match the requested hash prefix. This is used after a hash prefix is looked up in a threatList and there is a match. The client side threatList only holds partial hashes so the client must query this method to determine if there is a full hash match of a threat.
sourcepub async fn create_submission(
&mut self,
request: impl IntoRequest<CreateSubmissionRequest>,
) -> Result<Response<Submission>, Status>
pub async fn create_submission( &mut self, request: impl IntoRequest<CreateSubmissionRequest>, ) -> Result<Response<Submission>, Status>
Creates a Submission of a URI suspected of containing phishing content to be reviewed. If the result verifies the existence of malicious phishing content, the site will be added to the Google’s Social Engineering lists in order to protect users that could get exposed to this threat in the future. Only allowlisted projects can use this method during Early Access. Please reach out to Sales or your customer engineer to obtain access.
sourcepub async fn submit_uri(
&mut self,
request: impl IntoRequest<SubmitUriRequest>,
) -> Result<Response<Operation>, Status>
pub async fn submit_uri( &mut self, request: impl IntoRequest<SubmitUriRequest>, ) -> Result<Response<Operation>, Status>
Submits a URI suspected of containing malicious content to be reviewed. Returns a google.longrunning.Operation which, once the review is complete, is updated with its result. You can use the [Pub/Sub API] (https://cloud.google.com/pubsub) to receive notifications for the returned Operation. If the result verifies the existence of malicious content, the site will be added to the [Google’s Social Engineering lists] (https://support.google.com/webmasters/answer/6350487/) in order to protect users that could get exposed to this threat in the future. Only allowlisted projects can use this method during Early Access. Please reach out to Sales or your customer engineer to obtain access.
Trait Implementations§
source§impl<T: Clone> Clone for WebRiskServiceClient<T>
impl<T: Clone> Clone for WebRiskServiceClient<T>
source§fn clone(&self) -> WebRiskServiceClient<T>
fn clone(&self) -> WebRiskServiceClient<T>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl<T> !Freeze for WebRiskServiceClient<T>
impl<T> RefUnwindSafe for WebRiskServiceClient<T>where
T: RefUnwindSafe,
impl<T> Send for WebRiskServiceClient<T>where
T: Send,
impl<T> Sync for WebRiskServiceClient<T>where
T: Sync,
impl<T> Unpin for WebRiskServiceClient<T>where
T: Unpin,
impl<T> UnwindSafe for WebRiskServiceClient<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request