environment property

List<Map<String, Object?>>? environment
getter/setter pair

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

The values for Object must be JSON objects. It can consist of num, String, bool and null as well as Map and List values.

Implementation

core.List<core.Map<core.String, core.Object?>>? environment;