Class: Google::Apis::OndemandscanningV1::SbomReferenceIntotoPayload

Inherits:
Object
  • Object
show all
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 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.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SbomReferenceIntotoPayload

Returns a new instance of SbomReferenceIntotoPayload.



2902
2903
2904
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2902

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#_typeString

Identifier for the schema of the Statement. Corresponds to the JSON property _type

Returns:

  • (String)


2884
2885
2886
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2884

def _type
  @_type
end

#predicateGoogle::Apis::OndemandscanningV1::SbomReferenceIntotoPredicate

A predicate which describes the SBOM being referenced. Corresponds to the JSON property predicate



2889
2890
2891
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2889

def predicate
  @predicate
end

#predicate_typeString

URI identifying the type of the Predicate. Corresponds to the JSON property predicateType

Returns:

  • (String)


2894
2895
2896
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2894

def predicate_type
  @predicate_type
end

#subjectArray<Google::Apis::OndemandscanningV1::Subject>

Set of software artifacts that the attestation applies to. Each element represents a single software artifact. Corresponds to the JSON property subject



2900
2901
2902
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2900

def subject
  @subject
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2907
2908
2909
2910
2911
2912
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2907

def update!(**args)
  @_type = args[:_type] if args.key?(:_type)
  @predicate = args[:predicate] if args.key?(:predicate)
  @predicate_type = args[:predicate_type] if args.key?(:predicate_type)
  @subject = args[:subject] if args.key?(:subject)
end