Class: Google::Apis::OndemandscanningV1beta1::SbomReferenceIntotoPredicate
- Inherits:
-
Object
- Object
- Google::Apis::OndemandscanningV1beta1::SbomReferenceIntotoPredicate
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/ondemandscanning_v1beta1/classes.rb,
lib/google/apis/ondemandscanning_v1beta1/representations.rb,
lib/google/apis/ondemandscanning_v1beta1/representations.rb
Overview
A predicate which describes the SBOM being referenced.
Instance Attribute Summary collapse
-
#digest ⇒ Hash<String,String>
A map of algorithm to digest of the contents of the SBOM.
-
#location ⇒ String
The location of the SBOM.
-
#mime_type ⇒ String
The mime type of the SBOM.
-
#referrer_id ⇒ String
The person or system referring this predicate to the consumer.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SbomReferenceIntotoPredicate
constructor
A new instance of SbomReferenceIntotoPredicate.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SbomReferenceIntotoPredicate
Returns a new instance of SbomReferenceIntotoPredicate.
2937 2938 2939 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 2937 def initialize(**args) update!(**args) end |
Instance Attribute Details
#digest ⇒ Hash<String,String>
A map of algorithm to digest of the contents of the SBOM.
Corresponds to the JSON property digest
2920 2921 2922 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 2920 def digest @digest end |
#location ⇒ String
The location of the SBOM.
Corresponds to the JSON property location
2925 2926 2927 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 2925 def location @location end |
#mime_type ⇒ String
The mime type of the SBOM.
Corresponds to the JSON property mimeType
2930 2931 2932 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 2930 def mime_type @mime_type end |
#referrer_id ⇒ String
The person or system referring this predicate to the consumer.
Corresponds to the JSON property referrerId
2935 2936 2937 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 2935 def referrer_id @referrer_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2942 2943 2944 2945 2946 2947 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 2942 def update!(**args) @digest = args[:digest] if args.key?(:digest) @location = args[:location] if args.key?(:location) @mime_type = args[:mime_type] if args.key?(:mime_type) @referrer_id = args[:referrer_id] if args.key?(:referrer_id) end |