mirror of
https://github.com/SAP/jenkins-library.git
synced 2025-03-31 22:05:11 +02:00
* ApiProxyDownload Command * Lint Fixes * Lint Fixes * codereview fixes * Code Review Fixes * CodeReview Fixes * CodeReview Fixes * Code Review Fixes * Code Review Changes * CodeReview Fixes * CodeReview Fixes * CodeReview Fix * CodeReview Fixes * CodeReviw Fixes * CodeReview Changes * CodeReview Fixes Co-authored-by: Oliver Feldmann <oliver.feldmann@sap.com>
31 lines
535 B
Markdown
31 lines
535 B
Markdown
# ${docGenStepName}
|
|
|
|
## ${docGenDescription}
|
|
|
|
## Prerequisites
|
|
|
|
## ${docGenParameters}
|
|
|
|
## ${docGenConfiguration}
|
|
|
|
## ${docJenkinsPluginDependencies}
|
|
|
|
## Example
|
|
|
|
Example configuration for the use in a `Jenkinsfile`.
|
|
|
|
```groovy
|
|
apiProxyDownload script: this
|
|
```
|
|
|
|
Example for the use in a YAML configuration file (such as `.pipeline/config.yaml`).
|
|
|
|
```yaml
|
|
steps:
|
|
<...>
|
|
apiProxyDownload:
|
|
apimApiServiceKeyCredentialsId: 'MY_API_SERVICE_KEY'
|
|
apiProxyName: 'MY_API_PROXY_NAME'
|
|
downloadPath: MY_API_PROXY_DOWNLOAD_PATH
|
|
```
|