mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
1.3 KiB
1.3 KiB
Route
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| Path | string | URL path that will be matched to this route | [optional] [default to null] |
| Image | string | Name of Docker image to use in this route. You should include the image tag, which should be a version number, to be more accurate. Can be overridden on a per route basis with route.image. | [optional] [default to null] |
| Headers | map[string][]string | Map of http headers that will be sent with the response | [optional] [default to null] |
| Memory | int64 | Max usable memory for this route (MiB). | [optional] [default to null] |
| Type_ | string | Route type | [optional] [default to null] |
| Format | string | Payload format sent into function. | [optional] [default to null] |
| MaxConcurrency | int32 | Maximum number of hot containers concurrency | [optional] [default to null] |
| Config | map[string]string | Route configuration - overrides application configuration | [optional] [default to null] |
| Timeout | int32 | Timeout for executions of this route. Value in Seconds | [optional] [default to null] |