Class: Google::Apis::SafebrowsingV4::ThreatMatch
- Inherits:
-
Object
- Object
- Google::Apis::SafebrowsingV4::ThreatMatch
- 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 match when checking a threat entry in the Safe Browsing threat lists.
Instance Attribute Summary collapse
-
#cache_duration ⇒ String
The cache lifetime for the returned match.
-
#platform_type ⇒ String
The platform type matching this threat.
-
#threat ⇒ Google::Apis::SafebrowsingV4::ThreatEntry
An individual threat; for example, a malicious URL or its hash representation.
-
#threat_entry_metadata ⇒ Google::Apis::SafebrowsingV4::ThreatEntryMetadata
The metadata associated with a specific threat entry.
-
#threat_entry_type ⇒ String
The threat entry type matching this threat.
-
#threat_type ⇒ String
The threat type matching this threat.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ThreatMatch
constructor
A new instance of ThreatMatch.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ThreatMatch
Returns a new instance of ThreatMatch
838 839 840 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 838 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cache_duration ⇒ String
The cache lifetime for the returned match. Clients must not cache this
response for more than this duration to avoid false positives.
Corresponds to the JSON property cacheDuration
809 810 811 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 809 def cache_duration @cache_duration end |
#platform_type ⇒ String
The platform type matching this threat.
Corresponds to the JSON property platformType
814 815 816 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 814 def platform_type @platform_type end |
#threat ⇒ Google::Apis::SafebrowsingV4::ThreatEntry
An individual threat; for example, a malicious URL or its hash
representation. Only one of these fields should be set.
Corresponds to the JSON property threat
820 821 822 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 820 def threat @threat end |
#threat_entry_metadata ⇒ Google::Apis::SafebrowsingV4::ThreatEntryMetadata
The metadata associated with a specific threat entry. The client is expected
to know the metadata key/value pairs associated with each threat type.
Corresponds to the JSON property threatEntryMetadata
826 827 828 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 826 def @threat_entry_metadata end |
#threat_entry_type ⇒ String
The threat entry type matching this threat.
Corresponds to the JSON property threatEntryType
831 832 833 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 831 def threat_entry_type @threat_entry_type end |
#threat_type ⇒ String
The threat type matching this threat.
Corresponds to the JSON property threatType
836 837 838 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 836 def threat_type @threat_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
843 844 845 846 847 848 849 850 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 843 def update!(**args) @cache_duration = args[:cache_duration] if args.key?(:cache_duration) @platform_type = args[:platform_type] if args.key?(:platform_type) @threat = args[:threat] if args.key?(:threat) @threat_entry_metadata = args[:threat_entry_metadata] if args.key?(:threat_entry_metadata) @threat_entry_type = args[:threat_entry_type] if args.key?(:threat_entry_type) @threat_type = args[:threat_type] if args.key?(:threat_type) end |