Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 1.84 KB

V1Parameter.md

File metadata and controls

16 lines (12 loc) · 1.84 KB

V1Parameter

Properties

Name Type Description Notes
description string Description of a parameter. Optional. [optional]
displayName string Optional: The name that will show in UI instead of parameter 'Name' [optional]
from string From is an input value for the generator. Optional. [optional]
generate string generate specifies the generator to be used to generate random string from an input value specified by From field. The result string is stored into Value field. If empty, no generator is being used, leaving the result Value untouched. Optional. The only supported generator is "expression", which accepts a "from" value in the form of a simple regular expression containing the range expression "[a-zA-Z0-9]", and the length expression "a{length}". Examples: from value ----------------------------- "test[0-9]{1}x"
name string Name must be set and it can be referenced in Template Items using ${PARAMETER_NAME}. Required.
required bool Optional: Indicates the parameter must have a value. Defaults to false. [optional]
value string Value holds the Parameter data. If specified, the generator will be ignored. The value replaces all occurrences of the Parameter ${Name} expression during the Template to Config transformation. Optional. [optional]

[Back to Model list] [Back to API list] [Back to README]