Create a component environment property#

Request#

PUT https://{hostname}:{port}
    /cli/component/addEnvProp
Accept: application/json

Parameter Type Required Description
Accept application/json true  

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

{
  "component": "Name or ID of the component",
  "default": "Default value (Optional)",
  "description": "Description for the property (Optional)",
  "label": "Label of the property (Optional)",
  "name": "Name of the property",
  "pattern": "A regular expression that specifies valid 
  values for the property (Optional)",
  "required": "Whether the property is required (Optional, 
  Boolean)",
  "secure": "Specify true to create a secure property 
  (Optional, Boolean)"
}

Example#

curl -k -u jsmith:passwd 

  "https://myserver.example.com:8443/cli/component/
  addEnvProp?name=MyProperty&component=d2e59ca4-a2f5-4851-9c85-629c1019ba20
  &default=DefaultValue&required=true" 
  -X PUT

Related CLI command: addEnvironmentProperty.

Parent topic: component resource