You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using ome_firmware_baseline_compliance_info with the baseline_name option, the query only returns the top 100 results from the baseline report, instead of all the results.
When using ome_firmware_baseline_compliance_info with the
baseline_name
option, the query only returns the top 100 results from the baseline report, instead of all the results.This seems to be a result of the url:
baselines_compliance_report_path = "UpdateService/Baselines({Id})/DeviceComplianceReports"
which defaults to 100 responses.
Using:
baselines_compliance_report_path = "UpdateService/Baselines({Id})/DeviceComplianceReports?$top=1000"
would return the top 1000 responses.
This could be parameterized, or simply increased in the module.
The text was updated successfully, but these errors were encountered: