Utility - exportComplianceSummaryReport
Utility - exportComplianceSummaryReport
Description :
This command exports the selected Compliance Job run result to a directory and gives you more control over the resulting output than other similar commands. The result is saved in a JSON and HTML format.
Return type : java.lang.Void
Command Input :
| Variable Name | Variable Type | Description | 
|---|---|---|
| runId | Integer | ID of the Compliance Job run whose results you want to export. | 
| generateDetails | boolean | Flag to generate detailed report for every server in the job run (either true or false). | 
| exportDirectory | String | Name of the directory that holds the export. | 
Example
The following example shows how to export the selected job run result of a Compliance Job. The example also shows how to obtain the job run ID before running the export command.
Script
JOB_DB_KEY=`blcli ComplianceJob getDBKeyByGroupAndName "/sampleJobGroup" "sampleJob"`
  
JOB_RUN_KEY=`blcli JobRun findAllRunKeysByJobKey $JOB_DB_KEY`
  
JOB_RUN_ID=`blcli JobRun jobRunKeyToJobRunId $JOB_RUN_KEY`
  
COMPLIANCE_JOB_RUN_EXPORT=`blcli Utility exportComplianceSummaryReport $JOB_RUN_ID "true" "//hostname/c/reports"`
JOB_RUN_KEY=`blcli JobRun findAllRunKeysByJobKey $JOB_DB_KEY`
JOB_RUN_ID=`blcli JobRun jobRunKeyToJobRunId $JOB_RUN_KEY`
COMPLIANCE_JOB_RUN_EXPORT=`blcli Utility exportComplianceSummaryReport $JOB_RUN_ID "true" "//hostname/c/reports"`
Tip: For faster searching, add an asterisk to the end of your partial query. Example: cert*
