Update a component environment property
Request
POST https://{hostname}:{port}
/cli/component/updateEnvProp
Accept: {contentType}
Parameter | Type | Required | Description |
---|---|---|---|
Accept |
|
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. Follows java.util.regex.Pattern
(Optional)",
"required": "Whether the property is required (Optional,
Boolean)"
}
Related CLI command: updateEnvironmentProperty.