2018-06-20 11:46:28 +02:00
# transportRequestUploadFile
## Description
2018-09-28 10:00:59 +02:00
Uploads a file to a Transport Request.
2018-06-20 11:46:28 +02:00
## Prerequisites
* **[Change Management Client 2.0.0 or compatible version](http://central.maven.org/maven2/com/sap/devops/cmclient/dist.cli/)** - available for download on Maven Central.
## Parameters
| parameter | mandatory | default | possible values |
| -----------------|-----------|--------------------------------------------------------|--------------------|
| `script` | yes | | |
2018-09-28 10:00:59 +02:00
| `changeDocumentId` | `SOLMAN` only | | |
2018-06-20 11:46:28 +02:00
| `transportRequestId` | yes | | |
2018-09-28 10:00:59 +02:00
| `applicationId` | `SOLMAN` only | | |
2018-06-20 11:46:28 +02:00
| `filePath` | yes | | |
2018-07-17 09:21:56 +02:00
| `changeManagement/credentialsId` | yes | | |
| `changeManagement/endpoint` | yes | | |
| `changeManagement/git/from` | no | `origin/master` | |
| `changeManagement/git/to` | no | `HEAD` | |
| `changeManagement/changeDocumentLabel` | no | `ChangeDocument\s?:` | regex pattern |
2018-07-25 12:26:20 +02:00
| `changeManagement/transportRequestLabel` | no | `TransportRequest\s?:` | regex pattern |
2018-07-17 09:21:56 +02:00
| `changeManagement/git/format` | no | `%b` | see `git log --help` |
2018-09-28 10:00:59 +02:00
| `changeManagement/type` | no | `SOLMAN` | `SOLMAN` , `CTS` |
2018-06-20 11:46:28 +02:00
* `script` - The common script environment of the Jenkinsfile running. Typically the reference to the script calling the pipeline step is provided with the `this` parameter, as in `script: this` . This allows the function to access the [`commonPipelineEnvironment` ](commonPipelineEnvironment.md ) for retrieving, for example, configuration parameters.
2018-09-28 10:00:59 +02:00
* `changeDocumentId` - For type `SOLMAN` only. The id of the change document related to the transport request to release. Typically provided via commit history.
* `transportRequestId` - The id of the transport request to release. Typically provided via commit history.
* `applicationId` - For type `SOLMAN` only. The id of the application.
2018-06-20 11:46:28 +02:00
* `filePath` - The path of the file to upload.
2018-09-28 10:00:59 +02:00
* `changeManagement/credentialsId` - The credentials to connect to the service endpoint (Solution Manager, ABAP System).
* `changeManagement/endpoint` - The service endpoint (Solution Manager, ABAP System).
* `changeManagement/git/from` - The starting point for retrieving the change document id and/or transport request id
* `changeManagement/git/to` - The end point for retrieving the change document id and/or transport request id
* `changeManagement/changeDocumentLabel` - For type `SOLMAN` only. A pattern used for identifying lines holding the change document id.
2018-07-25 12:26:20 +02:00
* `changeManagement/transportRequestLabel` - A pattern used for identifying lines holding the transport request id.
2018-09-28 10:00:59 +02:00
* `changeManagement/type` Where/how the transport request is created (via SAP Solution Manager, ABAP).
2018-07-17 09:21:56 +02:00
* `changeManagement/git/format` - Specifies what part of the commit is scanned. By default the body of the commit message is scanned.
2018-06-20 11:46:28 +02:00
## Step configuration
2018-07-17 09:21:56 +02:00
The step is configured using a customer configuration file provided as
resource in an custom shared library.
```
@Library ('piper-library-os@master') _
// the shared lib containing the additional configuration
// needs to be configured in Jenkins
@Library (foo@master') __
// inside the shared lib denoted by 'foo' the additional configuration file
// needs to be located under 'resources' ('resoures/myConfig.yml')
prepareDefaultValues script: this,
customDefaults: 'myConfig.yml'
```
Example content of ```'resources/myConfig.yml'``` in branch ```'master'``` of the repository denoted by
```'foo'```:
```
general:
changeManagement:
changeDocumentLabel: 'ChangeDocument\s?:'
cmClientOpts: '-Djavax.net.ssl.trustStore=< path to truststore > '
credentialsId: 'CM'
2018-09-28 10:00:59 +02:00
type: 'SOLMAN'
2018-07-17 09:21:56 +02:00
endpoint: 'https://example.org/cm'
git:
from: 'HEAD~1'
to: 'HEAD'
format: '%b'
```
The properties configured in section `'general/changeManagement'` are shared between all change managment related steps.
2018-06-20 11:46:28 +02:00
2018-07-17 09:21:56 +02:00
The properties can also be configured on a per-step basis:
```
[...]
steps:
transportRequestUploadFile:
applicationId: 'FOO'
changeManagement:
2018-09-28 10:00:59 +02:00
type: 'SOLMAN'
2018-07-17 09:21:56 +02:00
endpoint: 'https://example.org/cm'
[...]
```
The parameters can also be provided when the step is invoked. For examples see below.
2018-06-20 11:46:28 +02:00
## Return value
None.
## Exceptions
2018-07-17 09:21:56 +02:00
* `IllegalArgumentException` :
2018-09-28 10:00:59 +02:00
* If the change id is not provided (`SOLMAN` only).
2018-06-20 11:46:28 +02:00
* If the transport request id is not provided.
2018-09-28 10:00:59 +02:00
* If the application id is not provided (`SOLMAN` only).
2018-06-20 11:46:28 +02:00
* If the file path is not provided.
2018-07-17 09:21:56 +02:00
* `AbortException` :
2018-06-20 11:46:28 +02:00
* If the upload fails.
## Example
```groovy
2018-09-28 10:00:59 +02:00
// SOLMAN
2018-07-17 09:21:56 +02:00
transportRequestUploadFile script:this,
2018-09-28 10:00:59 +02:00
changeDocumentId: '001', // typically provided via git commit history
transportRequestId: '001', // typically provided via git commit history
2018-07-17 09:21:56 +02:00
applicationId: '001',
filePath: '/path',
changeManagement:[
2018-09-28 10:00:59 +02:00
type: 'SOLMAN'
endpoint: 'https://example.org/cm'
]
// CTS
transportRequestUploadFile script:this,
transportRequestId: '001', // typically provided via git commit history
filePath: '/path',
changeManagement:[
type: 'CTS'
2018-07-17 09:21:56 +02:00
endpoint: 'https://example.org/cm'
]
2018-06-20 11:46:28 +02:00
```