updateApplicationTemplate#

Update an application template

Format#

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

Parameters#

Parameter Type Required Description
applicationTemplate string true The name or ID of an existing application template

Template#

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

{
  "description": "Application template description 
  (Optional)",
  "enforceCompleteSnapshots": "Specify true to require an 
  explicit version for each component",
  "name": "Application template name",
  "notificationScheme": "Notification scheme (Optional)",
  "onlyChangedVersions": "If true, the 'Only Deploy 
  Changed Versions' deployment option will be checked by 
  default (default: true)",
  "tagRequirements": [
    {
      "name": "Name of the Component tag",
      "number": "Number of components for the tag",
      "type": "GREATER_THAN, LESS_THAN, or EQUALS"
    },
    " (Optional)"
  ],
  "teamMappings": [
    {
      "resourceRoleId": "Id of Resource Type to apply to 
  this team mapping (optional, can specify either this or 
  resourceRoleLabel",
      "resourceRoleLabel": "Name of Resource Type to apply 
  to this team mapping (optional, can specify either this or 
  resourceRoleId",
      "teamId": "ID of a team, either this field or 
  teamLabel are needed to specify a team",
      "teamLabel": "Name of the team to map the 
  environment to, either this field or teamId are needed to 
  specify a team"
    },
    " (Optional)"
  ],
  "useWizard": "Specify true to use the Deployment Wizard 
  when submitting application process request (default: 
  false)"
}

Related REST command: Update an application template.

Parent topic: CLI Commands