Class: Google::Apis::SafebrowsingV4::ThreatListDescriptor
- Inherits:
-
Object
- Object
- Google::Apis::SafebrowsingV4::ThreatListDescriptor
- 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
Describes an individual threat list. A list is defined by three parameters: the type of threat posed, the type of platform targeted by the threat, and the type of entries in the list.
Instance Attribute Summary collapse
-
#platform_type ⇒ String
The platform type targeted by the list's entries.
-
#threat_entry_type ⇒ String
The entry types contained in the list.
-
#threat_type ⇒ String
The threat type posed by the list's entries.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ThreatListDescriptor
constructor
A new instance of ThreatListDescriptor.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ThreatListDescriptor
Returns a new instance of ThreatListDescriptor
790 791 792 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 790 def initialize(**args) update!(**args) end |
Instance Attribute Details
#platform_type ⇒ String
The platform type targeted by the list's entries.
Corresponds to the JSON property platformType
778 779 780 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 778 def platform_type @platform_type end |
#threat_entry_type ⇒ String
The entry types contained in the list.
Corresponds to the JSON property threatEntryType
783 784 785 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 783 def threat_entry_type @threat_entry_type end |
#threat_type ⇒ String
The threat type posed by the list's entries.
Corresponds to the JSON property threatType
788 789 790 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 788 def threat_type @threat_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
795 796 797 798 799 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 795 def update!(**args) @platform_type = args[:platform_type] if args.key?(:platform_type) @threat_entry_type = args[:threat_entry_type] if args.key?(:threat_entry_type) @threat_type = args[:threat_type] if args.key?(:threat_type) end |