updateComponentTemplatePropDefs#

Update a component template prop-def sheet from a JSON file. Replaces the property definitions.

Format#

udclient [\[global-args...\]](../../com.udeploy.reference.doc/topics/cli_command_format.md) [\[global-flags...\]](../../com.udeploy.reference.doc/topics/cli_command_format.md)
  updateComponentTemplatePropDefs [parameters] [JSON file]

Parameters#

Parameter Type Required Description
componentTemplate string true Name or ID of the component template

Template#

This command takes a JSON request string or file. Use the following template for the request:

{
  "README": "See entity attribute for the template 
  description expected by this endpoint.",
  "entity": [{
    "allowedValues": "Optional, array of elements {\"
  value\":\"Required, a value\",\"label\":\"Optional, 
  defaults to value\"}",
    "description": "Optional",
    "httpAuthenticationType": "Optional, BASIC or BEARER",
    "httpBasePath": "Optional",
    "httpFormat": "JSON or XML",
    "httpLabelPath": "Optional",
    "httpPassword": "Optional",
    "httpUrl": "Optional, required for Http property types",
    "httpUsername": "Optional",
    "httpValuePath": "Optional",
    "label": "Optional, label displayed to user",
    "name": "Required, the property name",
    "pattern": "Optional, regular expression for the value",
    "required": "Optional boolean, if the property is 
  required",
    "resolveHttpValuesUrl": "Optional",
    "type": "Optional, Default TEXT, Type of property 
  definition",
    "value": "Optional, Default value"
  }]
}

Related REST command: Update information about the property definitions for the component template.

Parent topic: CLI Commands