Class: Google::Apis::SafebrowsingV4::ThreatEntry
- Inherits:
-
Object
- Object
- Google::Apis::SafebrowsingV4::ThreatEntry
- 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
An individual threat; for example, a malicious URL or its hash representation. Only one of these fields should be set.
Instance Attribute Summary collapse
-
#digest ⇒ String
The digest of an executable in SHA256 format.
-
#hash_prop ⇒ String
A hash prefix, consisting of the most significant 4-32 bytes of a SHA256 hash.
-
#url ⇒ String
A URL.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ThreatEntry
constructor
A new instance of ThreatEntry.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ThreatEntry
Returns a new instance of ThreatEntry
583 584 585 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 583 def initialize(**args) update!(**args) end |
Instance Attribute Details
#digest ⇒ String
The digest of an executable in SHA256 format. The API supports both
binary and hex digests. For JSON requests, digests are base64-encoded.
Corresponds to the JSON property digest
NOTE: Values are automatically base64 encoded/decoded in the client library.
568 569 570 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 568 def digest @digest end |
#hash_prop ⇒ String
A hash prefix, consisting of the most significant 4-32 bytes of a SHA256
hash. This field is in binary format. For JSON requests, hashes are
base64-encoded.
Corresponds to the JSON property hash
NOTE: Values are automatically base64 encoded/decoded in the client library.
576 577 578 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 576 def hash_prop @hash_prop end |
#url ⇒ String
A URL.
Corresponds to the JSON property url
581 582 583 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 581 def url @url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
588 589 590 591 592 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 588 def update!(**args) @digest = args[:digest] if args.key?(:digest) @hash_prop = args[:hash_prop] if args.key?(:hash_prop) @url = args[:url] if args.key?(:url) end |