Class: Google::Apis::OndemandscanningV1::SbomReferenceOccurrence
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::OndemandscanningV1::SbomReferenceOccurrence
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/ondemandscanning_v1/classes.rb,
lib/google/apis/ondemandscanning_v1/representations.rb,
lib/google/apis/ondemandscanning_v1/representations.rb 
Overview
The occurrence representing an SBOM reference as applied to a specific resource. The occurrence follows the DSSE specification. See https://github. com/secure-systems-lab/dsse/blob/master/envelope.md for more details.
Instance Attribute Summary collapse
- 
  
    
      #payload  ⇒ Google::Apis::OndemandscanningV1::SbomReferenceIntotoPayload 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The actual payload that contains the SBOM Reference data.
 - 
  
    
      #payload_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The kind of payload that SbomReferenceIntotoPayload takes.
 - 
  
    
      #signatures  ⇒ Array<Google::Apis::OndemandscanningV1::EnvelopeSignature> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The signatures over the payload.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SbomReferenceOccurrence 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of SbomReferenceOccurrence.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ SbomReferenceOccurrence
Returns a new instance of SbomReferenceOccurrence.
      2837 2838 2839  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2837 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#payload ⇒ Google::Apis::OndemandscanningV1::SbomReferenceIntotoPayload
The actual payload that contains the SBOM Reference data. The payload follows
the intoto statement specification. See https://github.com/in-toto/attestation/
blob/main/spec/v1.0/statement.md for more details.
Corresponds to the JSON property payload
      2824 2825 2826  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2824 def payload @payload end  | 
  
#payload_type ⇒ String
The kind of payload that SbomReferenceIntotoPayload takes. Since it's in the
intoto format, this value is expected to be 'application/vnd.in-toto+json'.
Corresponds to the JSON property payloadType
      2830 2831 2832  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2830 def payload_type @payload_type end  | 
  
#signatures ⇒ Array<Google::Apis::OndemandscanningV1::EnvelopeSignature>
The signatures over the payload.
Corresponds to the JSON property signatures
      2835 2836 2837  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2835 def signatures @signatures end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2842 2843 2844 2845 2846  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2842 def update!(**args) @payload = args[:payload] if args.key?(:payload) @payload_type = args[:payload_type] if args.key?(:payload_type) @signatures = args[:signatures] if args.key?(:signatures) end  |