Class: Google::Apis::SafebrowsingV4::GoogleSecuritySafebrowsingV4ThreatEntry

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

An individual threat; for example, a malicious URL or its hash representation. Only one of these fields should be set.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleSecuritySafebrowsingV4ThreatEntry

Returns a new instance of GoogleSecuritySafebrowsingV4ThreatEntry.



562
563
564
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 562

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#digestString

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.

Returns:

  • (String)


548
549
550
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 548

def digest
  @digest
end

#hash_propString

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.

Returns:

  • (String)


555
556
557
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 555

def hash_prop
  @hash_prop
end

#urlString

A URL. Corresponds to the JSON property url

Returns:

  • (String)


560
561
562
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 560

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



567
568
569
570
571
# File 'generated/google/apis/safebrowsing_v4/classes.rb', line 567

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