valueType property

String? valueType
getter/setter pair

The data type for all values of this parameter in the current version of the template.

Defaults to ParameterValueType.STRING if unspecified. Possible string values are:

  • "PARAMETER_VALUE_TYPE_UNSPECIFIED" : Catch-all for unrecognized enum values.
  • "STRING" : Represents String values.
  • "BOOLEAN" : Represents Boolean values ("true" or "false").
  • "NUMBER" : Represents both positive and negative integer and float values.
  • "JSON" : Represents JSON values.

Implementation

core.String? valueType;