TaskConfig.dhall 395 B

1234567891011
  1. { platform : Text
  2. , run : ./TaskRunConfig.dhall
  3. , image_resource : Optional ./ImageResource.dhall
  4. , rootfs_uri : Optional Text
  5. , container_limits : Optional ./TaskContainerLimits.dhall
  6. , inputs : Optional (List ./TaskInput.dhall)
  7. , outputs : Optional (List ./TaskOutput.dhall)
  8. , caches : Optional (List ./TaskCache.dhall)
  9. , params : Optional (List { mapKey : Text, mapValue : Optional Text })
  10. }