github.com/ouraigua/jenkins-library@v0.0.0-20231028010029-fbeaf2f3aa9b/documentation/docs/steps/integrationArtifactTransport.md (about)

     1  # ${docGenStepName}
     2  
     3  ## ${docGenDescription}
     4  
     5  With this step, you can transport Integration Packages from SAP Integration Suite across various landscapes using SAP Content Agent Service.
     6  
     7  SAP Integration Suite provides the ability to transport its content to other services. SAP Content Agent service enables you to assemble the content from various content providers (including SAP Integration Suite) in MTAR format. Later, this content is either available for download or can be exported to a configured transport queue, such as SAP Cloud Transport Management. This step, integrationArtifactTransport, only supports transporting Integration Packages from SAP Integration Suite. For more information on
     8  configurations required for SAP Integration Suite, see [Content Assembly for SAP Integration Suite](https://help.sap.com/docs/CONTENT_AGENT_SERVICE/ae1a4f2d150d468d9ff56e13f9898e07/8e274fdd41da45a69ff919c0af8c6127.html)
     9  
    10  To use the integrationArtifactTransport step, proceed as follows:
    11  
    12  * [Create SAP Content Agent Service Destination](https://help.sap.com/docs/CONTENT_AGENT_SERVICE/ae1a4f2d150d468d9ff56e13f9898e07/a4da0c26ced74bbfbc60e7f607dc05ab.html).
    13  * [Create Cloud Integration Destination](https://help.sap.com/docs/CONTENT_AGENT_SERVICE/ae1a4f2d150d468d9ff56e13f9898e07/c17c4004049d4d9dba373d72ce5610cd.html).
    14  * [Create SAP Cloud Transport Management Destination](https://help.sap.com/docs/CONTENT_AGENT_SERVICE/ae1a4f2d150d468d9ff56e13f9898e07/b44463a657fa4be48ea2525b7eb6e7de.html).
    15  * Transport Cloud Integration Content with SAP Content Agent Service as explained in the blog [TMS – Transport SAP Cloud Integration (CI/CPI) Content with Transport Management Service (TMS) and Content Agent Service (CAS)](https://blogs.sap.com/2022/03/25/transport-sap-cloud-integration-ci-cpi-content-with-transport-management-service-tms-and-content-agent-service-cas/)
    16  * integrationArtifactTransport step only supports Integration Package transport
    17  
    18  ## Prerequisites
    19  
    20  ## ${docGenParameters}
    21  
    22  ## ${docGenConfiguration}
    23  
    24  ## ${docJenkinsPluginDependencies}
    25  
    26  ## Example
    27  
    28  Configuration example for a `Jenkinsfile`:
    29  
    30  ```groovy
    31  integrationArtifactTransport script: this
    32  ```
    33  
    34  Configuration example for a YAML file (for example `.pipeline/config.yaml`):
    35  
    36  ```yaml
    37  steps:
    38    <...>
    39    integrationArtifactTransport:
    40      casApiServiceKeyCredentialsId: 'MY_API_SERVICE_KEY'
    41      integrationPackageId: MY_INTEGRATION_PACKAGE_ID
    42      resourceID: MY_INTEGRATION_RESOURCE_ID
    43      name: MY_INTEGRATION_PACKAGE_NAME
    44      version: MY_INTEGRATION_PACKAGE_VERSION
    45  ```