Class: Google::Apis::SecuritycenterV1beta1::ProcessSignature
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1beta1::ProcessSignature
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/securitycenter_v1beta1/classes.rb,
lib/google/apis/securitycenter_v1beta1/representations.rb,
lib/google/apis/securitycenter_v1beta1/representations.rb
Instance Attribute Summary collapse
-
#memory_hash_signature ⇒ Google::Apis::SecuritycenterV1beta1::MemoryHashSignature
Corresponds to the JSON property
memoryHashSignature. -
#signature_type ⇒ String
Corresponds to the JSON property
signatureType. -
#yara_rule_signature ⇒ Google::Apis::SecuritycenterV1beta1::YaraRuleSignature
Corresponds to the JSON property
yaraRuleSignature.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ProcessSignature
constructor
A new instance of ProcessSignature.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ProcessSignature
Returns a new instance of ProcessSignature.
11304 11305 11306 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 11304 def initialize(**args) update!(**args) end |
Instance Attribute Details
#memory_hash_signature ⇒ Google::Apis::SecuritycenterV1beta1::MemoryHashSignature
Corresponds to the JSON property memoryHashSignature
11292 11293 11294 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 11292 def memory_hash_signature @memory_hash_signature end |
#signature_type ⇒ String
Corresponds to the JSON property signatureType
11297 11298 11299 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 11297 def signature_type @signature_type end |
#yara_rule_signature ⇒ Google::Apis::SecuritycenterV1beta1::YaraRuleSignature
Corresponds to the JSON property yaraRuleSignature
11302 11303 11304 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 11302 def yara_rule_signature @yara_rule_signature end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11309 11310 11311 11312 11313 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 11309 def update!(**args) @memory_hash_signature = args[:memory_hash_signature] if args.key?(:memory_hash_signature) @signature_type = args[:signature_type] if args.key?(:signature_type) @yara_rule_signature = args[:yara_rule_signature] if args.key?(:yara_rule_signature) end |