Class: Google::Apis::SafebrowsingV4::ListUpdateRequest
- Inherits:
-
Object
- Object
- Google::Apis::SafebrowsingV4::ListUpdateRequest
- 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
A single list update request.
Instance Attribute Summary collapse
-
#constraints ⇒ Google::Apis::SafebrowsingV4::Constraints
The constraints for this update.
-
#platform_type ⇒ String
The type of platform at risk by entries present in the list.
-
#state ⇒ String
The current state of the client for the requested list (the encrypted client state that was received from the last successful list update).
-
#threat_entry_type ⇒ String
The types of entries present in the list.
-
#threat_type ⇒ String
The type of threat posed by entries present in the list.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListUpdateRequest
constructor
A new instance of ListUpdateRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListUpdateRequest
Returns a new instance of ListUpdateRequest
336 337 338 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 336 def initialize(**args) update!(**args) end |
Instance Attribute Details
#constraints ⇒ Google::Apis::SafebrowsingV4::Constraints
The constraints for this update.
Corresponds to the JSON property constraints
312 313 314 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 312 def constraints @constraints end |
#platform_type ⇒ String
The type of platform at risk by entries present in the list.
Corresponds to the JSON property platformType
317 318 319 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 317 def platform_type @platform_type end |
#state ⇒ String
The current state of the client for the requested list (the encrypted
client state that was received from the last successful list update).
Corresponds to the JSON property state
NOTE: Values are automatically base64 encoded/decoded in the client library.
324 325 326 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 324 def state @state end |
#threat_entry_type ⇒ String
The types of entries present in the list.
Corresponds to the JSON property threatEntryType
329 330 331 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 329 def threat_entry_type @threat_entry_type end |
#threat_type ⇒ String
The type of threat posed by entries present in the list.
Corresponds to the JSON property threatType
334 335 336 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 334 def threat_type @threat_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
341 342 343 344 345 346 347 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 341 def update!(**args) @constraints = args[:constraints] if args.key?(:constraints) @platform_type = args[:platform_type] if args.key?(:platform_type) @state = args[:state] if args.key?(:state) @threat_entry_type = args[:threat_entry_type] if args.key?(:threat_entry_type) @threat_type = args[:threat_type] if args.key?(:threat_type) end |