Show / Hide Table of Contents

Class InToto

This contains the fields corresponding to the definition of a software supply chain step in an in-toto layout. This information goes into a Grafeas note.

Inheritance
System.Object
InToto
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.ContainerAnalysis.v1beta1.Data
Assembly: Google.Apis.ContainerAnalysis.v1beta1.dll
Syntax
public class InToto : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

ExpectedCommand

This field contains the expected command used to perform the step.

Declaration
[JsonProperty("expectedCommand")]
public virtual IList<string> ExpectedCommand { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

ExpectedMaterials

The following fields contain in-toto artifact rules identifying the artifacts that enter this supply chain step, and exit the supply chain step, i.e. materials and products of the step.

Declaration
[JsonProperty("expectedMaterials")]
public virtual IList<ArtifactRule> ExpectedMaterials { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ArtifactRule>

ExpectedProducts

Declaration
[JsonProperty("expectedProducts")]
public virtual IList<ArtifactRule> ExpectedProducts { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ArtifactRule>

SigningKeys

This field contains the public keys that can be used to verify the signatures on the step metadata.

Declaration
[JsonProperty("signingKeys")]
public virtual IList<SigningKey> SigningKeys { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<SigningKey>

StepName

This field identifies the name of the step in the supply chain.

Declaration
[JsonProperty("stepName")]
public virtual string StepName { get; set; }
Property Value
Type Description
System.String

Threshold

This field contains a value that indicates the minimum number of keys that need to be used to sign the step's in-toto link.

Declaration
[JsonProperty("threshold")]
public virtual long? Threshold { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top