Class: Google::Apis::SafebrowsingV4::ThreatSource
- Inherits:
-
Object
- Object
- Google::Apis::SafebrowsingV4::ThreatSource
- 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 resource related to a threat hit.
Instance Attribute Summary collapse
-
#referrer ⇒ String
Referrer of the resource.
-
#remote_ip ⇒ String
The remote IP of the resource in ASCII format.
-
#type ⇒ String
The type of source reported.
-
#url ⇒ String
The URL of the resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ThreatSource
constructor
A new instance of ThreatSource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ThreatSource
Returns a new instance of ThreatSource
878 879 880 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 878 def initialize(**args) update!(**args) end |
Instance Attribute Details
#referrer ⇒ String
Referrer of the resource. Only set if the referrer is available.
Corresponds to the JSON property referrer
861 862 863 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 861 def referrer @referrer end |
#remote_ip ⇒ String
The remote IP of the resource in ASCII format. Either IPv4 or IPv6.
Corresponds to the JSON property remoteIp
866 867 868 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 866 def remote_ip @remote_ip end |
#type ⇒ String
The type of source reported.
Corresponds to the JSON property type
871 872 873 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 871 def type @type end |
#url ⇒ String
The URL of the resource.
Corresponds to the JSON property url
876 877 878 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 876 def url @url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
883 884 885 886 887 888 |
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 883 def update!(**args) @referrer = args[:referrer] if args.key?(:referrer) @remote_ip = args[:remote_ip] if args.key?(:remote_ip) @type = args[:type] if args.key?(:type) @url = args[:url] if args.key?(:url) end |