2021-02-10 08:19:33 +01:00
|
|
|
# Paramètre de type information
|
|
|
|
|
2021-03-08 06:52:01 +01:00
|
|
|
## Les informations de la configuration
|
|
|
|
|
|
|
|
Le paramètre peut être la valeur est issue d'une information de la configuration :
|
2021-02-10 08:19:33 +01:00
|
|
|
|
2022-11-03 22:17:43 +01:00
|
|
|
```xml
|
2021-02-10 08:19:33 +01:00
|
|
|
<param type="information">server_name</param>
|
|
|
|
```
|
|
|
|
|
2022-11-02 22:52:50 +01:00
|
|
|
En YAML :
|
|
|
|
|
2022-11-03 22:17:43 +01:00
|
|
|
```yml
|
2022-11-02 22:52:50 +01:00
|
|
|
param:
|
|
|
|
- type: information
|
|
|
|
text: server_name
|
|
|
|
```
|
|
|
|
|
2021-02-10 08:19:33 +01:00
|
|
|
Dans ce cas, l'information de la configuration "server_name" sera utilisé comme valeur du paramètre.
|
2023-06-22 12:11:14 +02:00
|
|
|
Si l'information n'existe pas, la paramètre aura la valeur "None" ou [] pour une variable multiple.
|
|
|
|
|
|
|
|
## Les informations d'une variable
|
|
|
|
|
|
|
|
Le paramètre peut être la valeur est issue d'une information d'une variable :
|
|
|
|
|
|
|
|
```xml
|
|
|
|
<param type="information" variable="a_variable">test</param>
|
|
|
|
<param type="information" variable="a_variable">help</param>
|
|
|
|
```
|
|
|
|
|
|
|
|
En YAML :
|
|
|
|
|
|
|
|
```yml
|
|
|
|
param:
|
|
|
|
- type: information
|
|
|
|
variable: a_variable
|
|
|
|
text: test
|
|
|
|
- type: information
|
|
|
|
variable: a_variable
|
|
|
|
text: help
|
|
|
|
```
|
|
|
|
|
|
|
|
Dans ce cas, l'information de la variable "a_variable" "test" ou "help" sera utilisée comme valeur du paramètre.
|
|
|
|
Si l'information n'existe pas, la paramètre aura la valeur "None" ou [] pour une variable multiple.
|
2021-03-08 06:52:01 +01:00
|
|
|
|
|
|
|
## Les informations de la cible
|
|
|
|
|
2023-06-22 12:11:14 +02:00
|
|
|
Le paramètre peut être la valeur est issue d'une information de la cible du calcul (la target) :
|
2021-03-08 06:52:01 +01:00
|
|
|
|
2022-11-03 22:17:43 +01:00
|
|
|
```xml
|
2023-06-22 12:11:14 +02:00
|
|
|
<param type="information" variable="target_variable">test</param>
|
|
|
|
<param type="information" variable="target_variable">help</param>
|
2021-03-08 06:52:01 +01:00
|
|
|
```
|
|
|
|
|
2022-11-02 22:52:50 +01:00
|
|
|
En YAML :
|
|
|
|
|
2022-11-03 22:17:43 +01:00
|
|
|
```yml
|
2022-11-02 22:52:50 +01:00
|
|
|
param:
|
2023-06-22 12:11:14 +02:00
|
|
|
- type: information
|
|
|
|
variable: target_variable
|
2022-11-02 22:52:50 +01:00
|
|
|
text: test
|
2023-06-22 12:11:14 +02:00
|
|
|
- type: information
|
|
|
|
variable: target_variable
|
2022-11-02 22:52:50 +01:00
|
|
|
text: help
|
|
|
|
```
|
|
|
|
|
2023-06-22 12:11:14 +02:00
|
|
|
Dans ce cas, l'information de la variable de la cible (target_variable) "test" ou "help" sera utilisée comme valeur du paramètre.
|
|
|
|
Si l'information n'existe pas, la paramètre aura la valeur "None" ou [] pour une variable multiple.
|