Skip to content

PackData

PackData represents the output generated at each stage of the NetOrca Pack pipeline. These objects contain the results of AI Processor execution, such as configuration files, validation reports, test outcomes, and other data generated during the processing stage.

  • CONFIG PackData: The final output can be used to implement the actual infrastructure changes.
  • VERIFY PackData: holds validation and compliance checks
  • RESULTS PackData: includes test execution results and deployment readiness reports

To fetch PackData, Service Owner can use the following endpoints:

GET /v1/external/serviceowner/pack/data/service_item/<service_item_id>/<config|verify|results> HTTP/1.1
Content-Type: application/json
Authorization: Token <YOUR_TOKEN>

Pack Pipeline

All three stages are part of a single pipeline execution. NetOrca Pack keeps the history of each pipeline execution, allowing users to track all previous PackData and their changes. To see the pipeline for each Service Item:

GET /v1/external/serviceowner/pack/pipelines/latest/service_item/<service_item_id>/ HTTP/1.1
or
GET /v1/external/serviceowner/pack/pipelines/<pipeline_id>/ 
Content-Type: application/json
Authorization: Token <YOUR_TOKEN>