Class: Grafeas::V1::Recipe
- Inherits:
-
Object
- Object
- Grafeas::V1::Recipe
- Extended by:
- Google::Protobuf::MessageExts::ClassMethods
- Includes:
- Google::Protobuf::MessageExts
- Defined in:
- proto_docs/grafeas/v1/intoto_provenance.rb
Overview
Steps taken to build the artifact. For a TaskRun, typically each container corresponds to one step in the recipe.
Instance Attribute Summary collapse
-
#arguments ⇒ ::Array<::Google::Protobuf::Any>
Collection of all external inputs that influenced the build on top of recipe.definedInMaterial and recipe.entryPoint.
-
#defined_in_material ⇒ ::Integer
Index in materials containing the recipe steps that are not implied by recipe.type.
-
#entry_point ⇒ ::String
String identifying the entry point into the build.
-
#environment ⇒ ::Array<::Google::Protobuf::Any>
Any other builder-controlled inputs necessary for correctly evaluating the recipe.
-
#type ⇒ ::String
URI indicating what type of recipe was performed.
Instance Attribute Details
#arguments ⇒ ::Array<::Google::Protobuf::Any>
Returns Collection of all external inputs that influenced the build on top of recipe.definedInMaterial and recipe.entryPoint. For example, if the recipe type were "make", then this might be the flags passed to make aside from the target, which is captured in recipe.entryPoint. Since the arguments field can greatly vary in structure, depending on the builder and recipe type, this is of form "Any".
57 58 59 60 |
# File 'proto_docs/grafeas/v1/intoto_provenance.rb', line 57 class Recipe include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#defined_in_material ⇒ ::Integer
Returns Index in materials containing the recipe steps that are not implied by recipe.type. For example, if the recipe type were "make", then this would point to the source containing the Makefile, not the make program itself. Set to -1 if the recipe doesn't come from a material, as zero is default unset value for int64.
57 58 59 60 |
# File 'proto_docs/grafeas/v1/intoto_provenance.rb', line 57 class Recipe include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#entry_point ⇒ ::String
Returns String identifying the entry point into the build. This is often a path to a configuration file and/or a target label within that file. The syntax and meaning are defined by recipe.type. For example, if the recipe type were "make", then this would reference the directory in which to run make as well as which target to use.
57 58 59 60 |
# File 'proto_docs/grafeas/v1/intoto_provenance.rb', line 57 class Recipe include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#environment ⇒ ::Array<::Google::Protobuf::Any>
Returns Any other builder-controlled inputs necessary for correctly evaluating the recipe. Usually only needed for reproducing the build but not evaluated as part of policy. Since the environment field can greatly vary in structure, depending on the builder and recipe type, this is of form "Any".
57 58 59 60 |
# File 'proto_docs/grafeas/v1/intoto_provenance.rb', line 57 class Recipe include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#type ⇒ ::String
Returns URI indicating what type of recipe was performed. It determines the meaning of recipe.entryPoint, recipe.arguments, recipe.environment, and materials.
57 58 59 60 |
# File 'proto_docs/grafeas/v1/intoto_provenance.rb', line 57 class Recipe include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |