Interface RecipeOrBuilder (2.47.0)

  public 
  
 interface 
 RecipeOrBuilder 
  
 extends 
  
 MessageOrBuilder 
 

Implements

MessageOrBuilder

Methods

getArguments(int index)

  public 
  
 abstract 
  
 Any 
  
 getArguments 
 ( 
 int 
  
 index 
 ) 
 

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".

repeated .google.protobuf.Any arguments = 4;

Parameter
Name
Description
index
int
Returns
Type
Description
Any

getArgumentsCount()

  public 
  
 abstract 
  
 int 
  
 getArgumentsCount 
 () 
 

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".

repeated .google.protobuf.Any arguments = 4;

Returns
Type
Description
int

getArgumentsList()

  public 
  
 abstract 
  
 List<Any> 
  
 getArgumentsList 
 () 
 

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".

repeated .google.protobuf.Any arguments = 4;

Returns
Type
Description
List < Any >

getArgumentsOrBuilder(int index)

  public 
  
 abstract 
  
 AnyOrBuilder 
  
 getArgumentsOrBuilder 
 ( 
 int 
  
 index 
 ) 
 

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".

repeated .google.protobuf.Any arguments = 4;

Parameter
Name
Description
index
int
Returns
Type
Description

getArgumentsOrBuilderList()

  public 
  
 abstract 
  
 List 
< ? 
  
 extends 
  
 AnyOrBuilder 
>  
 getArgumentsOrBuilderList 
 () 
 

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".

repeated .google.protobuf.Any arguments = 4;

Returns
Type
Description
List < ? extends com.google.protobuf.AnyOrBuilder >

getDefinedInMaterial()

  public 
  
 abstract 
  
 long 
  
 getDefinedInMaterial 
 () 
 

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.

int64 defined_in_material = 2;

Returns
Type
Description

The definedInMaterial.

getEntryPoint()

  public 
  
 abstract 
  
 String 
  
 getEntryPoint 
 () 
 

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.

string entry_point = 3;

Returns
Type
Description

The entryPoint.

getEntryPointBytes()

  public 
  
 abstract 
  
 ByteString 
  
 getEntryPointBytes 
 () 
 

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.

string entry_point = 3;

Returns
Type
Description

The bytes for entryPoint.

getEnvironment(int index)

  public 
  
 abstract 
  
 Any 
  
 getEnvironment 
 ( 
 int 
  
 index 
 ) 
 

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".

repeated .google.protobuf.Any environment = 5;

Parameter
Name
Description
index
int
Returns
Type
Description
Any

getEnvironmentCount()

  public 
  
 abstract 
  
 int 
  
 getEnvironmentCount 
 () 
 

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".

repeated .google.protobuf.Any environment = 5;

Returns
Type
Description
int

getEnvironmentList()

  public 
  
 abstract 
  
 List<Any> 
  
 getEnvironmentList 
 () 
 

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".

repeated .google.protobuf.Any environment = 5;

Returns
Type
Description
List < Any >

getEnvironmentOrBuilder(int index)

  public 
  
 abstract 
  
 AnyOrBuilder 
  
 getEnvironmentOrBuilder 
 ( 
 int 
  
 index 
 ) 
 

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".

repeated .google.protobuf.Any environment = 5;

Parameter
Name
Description
index
int
Returns
Type
Description

getEnvironmentOrBuilderList()

  public 
  
 abstract 
  
 List 
< ? 
  
 extends 
  
 AnyOrBuilder 
>  
 getEnvironmentOrBuilderList 
 () 
 

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".

repeated .google.protobuf.Any environment = 5;

Returns
Type
Description
List < ? extends com.google.protobuf.AnyOrBuilder >

getType()

  public 
  
 abstract 
  
 String 
  
 getType 
 () 
 

URI indicating what type of recipe was performed. It determines the meaning of recipe.entryPoint, recipe.arguments, recipe.environment, and materials.

string type = 1;

Returns
Type
Description

The type.

getTypeBytes()

  public 
  
 abstract 
  
 ByteString 
  
 getTypeBytes 
 () 
 

URI indicating what type of recipe was performed. It determines the meaning of recipe.entryPoint, recipe.arguments, recipe.environment, and materials.

string type = 1;

Returns
Type
Description

The bytes for type.

Design a Mobile Site
View Site in Mobile | Classic
Share by: