Class: Google::Apis::SecuritycenterV1beta2::File
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1beta2::File
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/securitycenter_v1beta2/classes.rb,
lib/google/apis/securitycenter_v1beta2/representations.rb,
lib/google/apis/securitycenter_v1beta2/representations.rb
Overview
File information about the related binary/library used by an executable, or the script used by a script interpreter
Instance Attribute Summary collapse
-
#contents ⇒ String
Prefix of the file contents as a JSON encoded string.
-
#hashed_size ⇒ Fixnum
The length in bytes of the file prefix that was hashed.
-
#partially_hashed ⇒ Boolean
(also: #partially_hashed?)
True when the hash covers only a prefix of the file.
-
#path ⇒ String
Absolute path of the file as a JSON encoded string.
-
#sha256 ⇒ String
SHA256 hash of the first hashed_size bytes of the file encoded as a hex string.
-
#size ⇒ Fixnum
Size of the file in bytes.
Instance Method Summary collapse
-
#initialize(**args) ⇒ File
constructor
A new instance of File.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ File
Returns a new instance of File.
607 608 609 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 607 def initialize(**args) update!(**args) end |
Instance Attribute Details
#contents ⇒ String
Prefix of the file contents as a JSON encoded string. (Currently only
populated for Malicious Script Executed findings.)
Corresponds to the JSON property contents
577 578 579 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 577 def contents @contents end |
#hashed_size ⇒ Fixnum
The length in bytes of the file prefix that was hashed. If hashed_size == size,
any hashes reported represent the entire file.
Corresponds to the JSON property hashedSize
583 584 585 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 583 def hashed_size @hashed_size end |
#partially_hashed ⇒ Boolean Also known as: partially_hashed?
True when the hash covers only a prefix of the file.
Corresponds to the JSON property partiallyHashed
588 589 590 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 588 def partially_hashed @partially_hashed end |
#path ⇒ String
Absolute path of the file as a JSON encoded string.
Corresponds to the JSON property path
594 595 596 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 594 def path @path end |
#sha256 ⇒ String
SHA256 hash of the first hashed_size bytes of the file encoded as a hex string.
If hashed_size == size, sha256 represents the SHA256 hash of the entire file.
Corresponds to the JSON property sha256
600 601 602 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 600 def sha256 @sha256 end |
#size ⇒ Fixnum
Size of the file in bytes.
Corresponds to the JSON property size
605 606 607 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 605 def size @size end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
612 613 614 615 616 617 618 619 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 612 def update!(**args) @contents = args[:contents] if args.key?(:contents) @hashed_size = args[:hashed_size] if args.key?(:hashed_size) @partially_hashed = args[:partially_hashed] if args.key?(:partially_hashed) @path = args[:path] if args.key?(:path) @sha256 = args[:sha256] if args.key?(:sha256) @size = args[:size] if args.key?(:size) end |