Class: Google::Apis::OndemandscanningV1::InTotoStatement
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::OndemandscanningV1::InTotoStatement
 
 
- 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
Spec defined at https://github.com/in-toto/attestation/tree/main/spec# statement The serialized InTotoStatement will be stored as Envelope.payload. Envelope.payloadType is always "application/vnd.in-toto+json".
Instance Attribute Summary collapse
- 
  
    
      #_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Always
https://in-toto.io/Statement/v0.1. - 
  
    
      #predicate_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
https://slsa.dev/provenance/v0.1for SlsaProvenance. - 
  
    
      #provenance  ⇒ Google::Apis::OndemandscanningV1::InTotoProvenance 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Corresponds to the JSON property
provenance. - 
  
    
      #slsa_provenance  ⇒ Google::Apis::OndemandscanningV1::SlsaProvenance 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Corresponds to the JSON property
slsaProvenance. - 
  
    
      #slsa_provenance_zero_two  ⇒ Google::Apis::OndemandscanningV1::SlsaProvenanceZeroTwo 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
See full explanation of fields at slsa.dev/provenance/v0.2.
 - 
  
    
      #subject  ⇒ Array<Google::Apis::OndemandscanningV1::Subject> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Corresponds to the JSON property
subject. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ InTotoStatement 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of InTotoStatement.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ InTotoStatement
Returns a new instance of InTotoStatement.
      1645 1646 1647  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 1645 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#_type ⇒ String
Always https://in-toto.io/Statement/v0.1.
Corresponds to the JSON property _type
      1618 1619 1620  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 1618 def _type @_type end  | 
  
#predicate_type ⇒ String
https://slsa.dev/provenance/v0.1 for SlsaProvenance.
Corresponds to the JSON property predicateType
      1623 1624 1625  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 1623 def predicate_type @predicate_type end  | 
  
#provenance ⇒ Google::Apis::OndemandscanningV1::InTotoProvenance
Corresponds to the JSON property provenance
      1628 1629 1630  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 1628 def provenance @provenance end  | 
  
#slsa_provenance ⇒ Google::Apis::OndemandscanningV1::SlsaProvenance
Corresponds to the JSON property slsaProvenance
      1633 1634 1635  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 1633 def slsa_provenance @slsa_provenance end  | 
  
#slsa_provenance_zero_two ⇒ Google::Apis::OndemandscanningV1::SlsaProvenanceZeroTwo
See full explanation of fields at slsa.dev/provenance/v0.2.
Corresponds to the JSON property slsaProvenanceZeroTwo
      1638 1639 1640  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 1638 def slsa_provenance_zero_two @slsa_provenance_zero_two end  | 
  
#subject ⇒ Array<Google::Apis::OndemandscanningV1::Subject>
Corresponds to the JSON property subject
      1643 1644 1645  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 1643 def subject @subject end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1650 1651 1652 1653 1654 1655 1656 1657  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 1650 def update!(**args) @_type = args[:_type] if args.key?(:_type) @predicate_type = args[:predicate_type] if args.key?(:predicate_type) @provenance = args[:provenance] if args.key?(:provenance) @slsa_provenance = args[:slsa_provenance] if args.key?(:slsa_provenance) @slsa_provenance_zero_two = args[:slsa_provenance_zero_two] if args.key?(:slsa_provenance_zero_two) @subject = args[:subject] if args.key?(:subject) end  |