Class: Google::Apis::SafebrowsingV4::ThreatSource

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

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

#referrerString

Referrer of the resource. Only set if the referrer is available. Corresponds to the JSON property referrer

Returns:

  • (String)


861
862
863
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 861

def referrer
  @referrer
end

#remote_ipString

The remote IP of the resource in ASCII format. Either IPv4 or IPv6. Corresponds to the JSON property remoteIp

Returns:

  • (String)


866
867
868
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 866

def remote_ip
  @remote_ip
end

#typeString

The type of source reported. Corresponds to the JSON property type

Returns:

  • (String)


871
872
873
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 871

def type
  @type
end

#urlString

The URL of the resource. Corresponds to the JSON property url

Returns:

  • (String)


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