Utility - exportComplianceRunLatest
Utility - exportComplianceRunLatest
Description :
This command exports the latest Compliance Job run result to a file. You can save the result in HTML or CSV format.
Return type : java.lang.Void
Command Input :
Variable Name | Variable Type | Description |
---|---|---|
templateGroupName | String | Fully qualified component template group containing the template that is the basis of the Compliance Job. Alternatively, you can pass in null for all results. |
templateName | String | Name of the component template specifying the Compliance Job results to be exported. Alternatively, you can pass in null for all results. |
ruleName | String | Fully qualified path of the rule of the Compliance Job results to be exported. Alternatively, you can pass in null for all results. |
jobGroupName | String | Fully qualified job group where the Compliance Job is stored. |
jobName | String | Name of the Compliance Job to export. |
exportFileName | String | Name of the file that holds the export. |
exportType | String | Format for saving exported results (CSV or HTML). |
Example
The following example shows how to export the latest job run result of a Compliance Job.
Script
Utility exportComplianceRunLatest "/sampleTemplateGroup" "sampleTemplate" "/sampleRuleGroup/sampleRule" "/sampleJobGroup" "sampleJob" "C:/temp/sampleJobResult.csv" "CSV"