1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-07-05 00:59:01 +02:00
Files
sap-jenkins-library/documentation/docs/steps/commonPipelineEnvironment/getConfigProperty.md

30 lines
734 B
Markdown
Raw Normal View History

2017-07-11 15:12:03 +02:00
# getConfigProperty
## Description
Gets a specific value from the configuration properties stored in the `commonPipelineEnvironment` object.
## Parameters
| parameter | mandatory | default | possible values |
| -----------|-----------|---------|-----------------|
| `property` | yes | | |
* `property` - the specific property to be retrieved from the configuration properties stored in the `commonPipelineEnvironment` object.
## Return values
The value of the property in the configuration properties stored in the `commonPipelineEnvironment` object.
## Side effects
none
## Exceptions
none
## Example
```groovy
def deployHost = commonPipelineEnvironment.getConfigProperty('DEPLOY_HOST')
```