Class: Google::Apis::SafebrowsingV4::FindFullHashesRequest
- Inherits:
-
Object
- Object
- Google::Apis::SafebrowsingV4::FindFullHashesRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/safebrowsing_v4/classes.rb,
generated/google/apis/safebrowsing_v4/representations.rb,
generated/google/apis/safebrowsing_v4/representations.rb
Overview
Request to return full hashes matched by the provided hash prefixes.
Instance Attribute Summary collapse
-
#api_client ⇒ Google::Apis::SafebrowsingV4::ClientInfo
The client metadata associated with Safe Browsing API requests.
-
#client ⇒ Google::Apis::SafebrowsingV4::ClientInfo
The client metadata associated with Safe Browsing API requests.
-
#client_states ⇒ Array<String>
The current client states for each of the client's local threat lists.
-
#threat_info ⇒ Google::Apis::SafebrowsingV4::ThreatInfo
The information regarding one or more threats that a client submits when checking for matches in threat lists.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FindFullHashesRequest
constructor
A new instance of FindFullHashesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ FindFullHashesRequest
Returns a new instance of FindFullHashesRequest
194 195 196 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 194 def initialize(**args) update!(**args) end |
Instance Attribute Details
#api_client ⇒ Google::Apis::SafebrowsingV4::ClientInfo
The client metadata associated with Safe Browsing API requests.
Corresponds to the JSON property apiClient
176 177 178 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 176 def api_client @api_client end |
#client ⇒ Google::Apis::SafebrowsingV4::ClientInfo
The client metadata associated with Safe Browsing API requests.
Corresponds to the JSON property client
181 182 183 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 181 def client @client end |
#client_states ⇒ Array<String>
The current client states for each of the client's local threat lists.
Corresponds to the JSON property clientStates
186 187 188 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 186 def client_states @client_states end |
#threat_info ⇒ Google::Apis::SafebrowsingV4::ThreatInfo
The information regarding one or more threats that a client submits when
checking for matches in threat lists.
Corresponds to the JSON property threatInfo
192 193 194 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 192 def threat_info @threat_info end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
199 200 201 202 203 204 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 199 def update!(**args) @api_client = args[:api_client] if args.key?(:api_client) @client = args[:client] if args.key?(:client) @client_states = args[:client_states] if args.key?(:client_states) @threat_info = args[:threat_info] if args.key?(:threat_info) end |