getApplicationProperties#

Get all application properties and their values.

Format#

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

Parameters#

Parameter Type Required Description
application string true Name or ID of the application

Example#

udclient -username jsmith -password passwd 
  -weburl https://myserver.example.com:8443
  getApplicationProperties
  -application JPetStore

Example response#

[
  {
    "id": "8b383d28-f64f-4f94-8ea1-1e85a323f527",
    "name": "Prop1",
    "value": "value1",
    "description": "",
    "secure": false
  },
  {
    "id": "e3a54008-6c73-4c72-b197-72b830b2ac6d",
    "name": "Prop2",
    "value": "value2",
    "description": "",
    "secure": false
  },
  {
    "id": "cce49826-a236-4bee-a8f4-cd015f2a6e8b",
    "name": "Prop3",
    "value": "value3",
    "description": "",
    "secure": false
  }
]

Related REST command: Get all application properties and their values..

Parent topic: CLI Commands