Class: Google::Apis::ContaineranalysisV1alpha1::InTotoStatement
- Inherits:
-
Object
- Object
- Google::Apis::ContaineranalysisV1alpha1::InTotoStatement
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/containeranalysis_v1alpha1/classes.rb,
lib/google/apis/containeranalysis_v1alpha1/representations.rb,
lib/google/apis/containeranalysis_v1alpha1/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.1" for SlsaProvenance.
-
#provenance ⇒ Google::Apis::ContaineranalysisV1alpha1::InTotoProvenance
Generic Grafeas provenance.
-
#slsa_provenance ⇒ Google::Apis::ContaineranalysisV1alpha1::SlsaProvenance
SlsaProvenance is the slsa provenance as defined by the slsa spec.
-
#slsa_provenance_zero_two ⇒ Google::Apis::ContaineranalysisV1alpha1::SlsaProvenanceZeroTwo
SlsaProvenanceZeroTwo is the slsa provenance as defined by the slsa spec.
-
#subject ⇒ Array<Google::Apis::ContaineranalysisV1alpha1::Subject>
subject is the subjects of the intoto statement 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.
4550 4551 4552 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 4550 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
4522 4523 4524 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 4522 def _type @_type end |
#predicate_type ⇒ String
"https://slsa.dev/provenance/v0.1" for SlsaProvenance.
Corresponds to the JSON property predicateType
4527 4528 4529 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 4527 def predicate_type @predicate_type end |
#provenance ⇒ Google::Apis::ContaineranalysisV1alpha1::InTotoProvenance
Generic Grafeas provenance.
Corresponds to the JSON property provenance
4532 4533 4534 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 4532 def provenance @provenance end |
#slsa_provenance ⇒ Google::Apis::ContaineranalysisV1alpha1::SlsaProvenance
SlsaProvenance is the slsa provenance as defined by the slsa spec.
Corresponds to the JSON property slsaProvenance
4537 4538 4539 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 4537 def slsa_provenance @slsa_provenance end |
#slsa_provenance_zero_two ⇒ Google::Apis::ContaineranalysisV1alpha1::SlsaProvenanceZeroTwo
SlsaProvenanceZeroTwo is the slsa provenance as defined by the slsa spec. See
full explanation of fields at slsa.dev/provenance/v0.2.
Corresponds to the JSON property slsaProvenanceZeroTwo
4543 4544 4545 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 4543 def slsa_provenance_zero_two @slsa_provenance_zero_two end |
#subject ⇒ Array<Google::Apis::ContaineranalysisV1alpha1::Subject>
subject is the subjects of the intoto statement
Corresponds to the JSON property subject
4548 4549 4550 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 4548 def subject @subject end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4555 4556 4557 4558 4559 4560 4561 4562 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 4555 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 |