mirror of
https://github.com/SAP/jenkins-library.git
synced 2025-03-31 22:05:11 +02:00
31 lines
572 B
Markdown
31 lines
572 B
Markdown
# ${docGenStepName}
|
|
|
|
## ${docGenDescription}
|
|
|
|
## Prerequisites
|
|
|
|
## ${docGenParameters}
|
|
|
|
## ${docGenConfiguration}
|
|
|
|
## ${docJenkinsPluginDependencies}
|
|
|
|
## Example
|
|
|
|
Example configuration for the use in a `Jenkinsfile`.
|
|
|
|
```groovy
|
|
apiKeyValueMapDownload script: this
|
|
```
|
|
|
|
Example for the use in a YAML configuration file (such as `.pipeline/config.yaml`).
|
|
|
|
```yaml
|
|
steps:
|
|
<...>
|
|
apiKeyValueMapDownload:
|
|
apimApiServiceKeyCredentialsId: 'MY_API_SERVICE_KEY'
|
|
apiProxyName: 'MY_API_KEY_VALUE_MAP_NAME'
|
|
downloadPath: MY_API_KEY_VALUE_MAP_CSV_FILE_DOWNLOAD_PATH
|
|
```
|