App Parameters
Defining Parameters
parameters:
- name: my_test_parameter
description:
short: My parameter description (single line)
long: |
More detailed description.
Can be multiple lines.
And is optional.
type: bool
default: falseparameters:
- name: string, required. Can include any of these characters: a-zA-Z0-9-_.
description:
short: string, required. Short, single-line description of what the parameter
does
long: |
string, optional. More detailed description, can be multiple lines.
type: string, required. Defines the parameter type.
One of: "bool", "int64", "float64", "string", "byte[]", "bool[]", "int64[]",
"float64[]", "string[]"
default: required. Default value, matching the type specified in the 'type' field
enum_values: object, optional. Enum values, only applicable if the type is int64.
Defines key-value mappings from a value to a string (for display),
e.g. 0: zero, 1: one
volatile: boolean, optional. If true, it can dynamically be changed by an
application, and should not be transferred to other vehicles. It is
still stored persistently.
Can be used for example for calibration parameters.
decimal: integer, optional. Number of decimal places to display in a UI
(only for float64 types)
increment: number, optional. Increment step size for a UI (only for float64 types)
unit: string, optional. Unit, e.g. 'm/s'
readonly: boolean, optional. If true, a user cannot modify the value (but an
application or an OEM layer still can)
visibility: string, optional. The visibility of the parameter for user-facing
configuration interfaces.
One of: "visible", "advanced", "hidden"
reset_on_update: boolean, optional. If true, a user-set value is reset on an
update
min: number, optional. Minimum value (only for int64 or float64). This is only
enforced in the UI, i.e. the value can still be outside of this limit.
max: number, optional. Maximum value (only for int64 or float64). This is only
enforced in the UI, i.e. the value can still be outside of this limit.Accessing Parameters
Auterion SDK
REST API
Changing Parameters
Environment-variable-based Parameters (deprecated)
Last updated