dellemc.openmanage.ome_firmware_baseline_compliance_info – Retrieves baseline compliance details on OpenManage Enterprise
Note
This plugin is part of the dellemc.openmanage collection (version 3.6.0).
You might already have this collection installed if you are using the ansible
package.
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install dellemc.openmanage
.
To use it in a playbook, specify: dellemc.openmanage.ome_firmware_baseline_compliance_info
.
New in version 2.0.0: of dellemc.openmanage
Synopsis
This module allows to retrieve firmware compliance for a list of devices, or against a specified baseline on OpenManage Enterprise.
Requirements
The below requirements are needed on the host that executes this module.
python >= 2.7.5
Parameters
Parameter |
Comments |
---|---|
Name of the baseline, for which the device compliance report is generated. This option is mandatory for generating baseline based device compliance report. baseline_name is mutually exclusive with device_ids, device_service_tags and device_group_names. |
|
A list of group names for device based compliance report. Either device_ids, device_service_tags or device_group_names is required to generate device based compliance report. device_group_names is mutually exclusive with device_ids, device_service_tags and baseline_name. Devices without reports are ignored. |
|
A list of unique identifier for device based compliance report. Either device_ids, device_service_tags or device_group_names is required to generate device based compliance report. device_ids is mutually exclusive with device_service_tags, device_group_names and baseline_name. Devices without reports are ignored. |
|
A list of service tags for device based compliance report. Either device_ids, device_service_tags or device_group_names is required to generate device based compliance report. device_service_tags is mutually exclusive with device_ids, device_group_names and baseline_name. Devices without reports are ignored. |
|
OpenManage Enterprise or OpenManage Enterprise Modular IP address or hostname. |
|
OpenManage Enterprise or OpenManage Enterprise Modular password. |
|
OpenManage Enterprise or OpenManage Enterprise Modular HTTPS port. Default: 443 |
|
OpenManage Enterprise or OpenManage Enterprise Modular username. |
Notes
Note
Run this module from a system that has direct access to DellEMC OpenManage Enterprise.
This module supports
check_mode
.
Examples
---
- name: Retrieves device based compliance report for specified device IDs
dellemc.openmanage.ome_firmware_baseline_compliance_info:
hostname: "192.168.0.1"
username: "username"
password: "password"
device_ids:
- 11111
- 22222
- name: Retrieves device based compliance report for specified service Tags
dellemc.openmanage.ome_firmware_baseline_compliance_info:
hostname: "192.168.0.1"
username: "username"
password: "password"
device_service_tags:
- MXL1234
- MXL4567
- name: Retrieves device based compliance report for specified group names
dellemc.openmanage.ome_firmware_baseline_compliance_info:
hostname: "192.168.0.1"
username: "username"
password: "password"
device_group_names:
- "group1"
- "group2"
- name: Retrieves device compliance report for a specified baseline
dellemc.openmanage.ome_firmware_baseline_compliance_info:
hostname: "192.168.0.1"
username: "username"
password: "password"
baseline_name: "baseline_name"
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
---|---|
Details of the baseline compliance report. Returned: success Sample: [{“CatalogId”: 53, “ComplianceSummary”: {“ComplianceStatus”: “CRITICAL”, “NumberOfCritical”: 2, “NumberOfDowngrade”: 0, “NumberOfNormal”: 0, “NumberOfWarning”: 0}, “Description”: “”, “DeviceComplianceReports”: [{“ComplianceStatus”: “CRITICAL”, “ComponentComplianceReports”: [{“ComplianceDependencies”: [], “ComplianceStatus”: “DOWNGRADE”, “Criticality”: “Ok”, “CurrentVersion”: “OSC_1.1”, “Id”: 1258, “ImpactAssessment”: “”, “Name”: “OS COLLECTOR 2.1”, “Path”: “FOLDER04118304M/2/Diagnostics_Application_JCCH7_WN64_4.0_A00_01.EXE”, “PrerequisiteInfo”: “”, “RebootRequired”: false, “SourceName”: “DCIM:INSTALLED#802__OSCollector.Embedded.1”, “TargetIdentifier”: “101734”, “UniqueIdentifier”: “xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx”, “UpdateAction”: “DOWNGRADE”, “Uri”: “http://www.dell.com/support/home/us/en/19/Drivers/DriversDetails?driverId=XXXXX”, “Version”: “4.0”}, {“ComplianceDependencies”: [], “ComplianceStatus”: “CRITICAL”, “Criticality”: “Recommended”, “CurrentVersion”: “DN02”, “Id”: 1259, “ImpactAssessment”: “”, “Name”: “TOSHIBA AL14SE 1.8 TB 2.5 12Gb 10K 512n SAS HDD Drive”, “Path”: “FOLDER04086111M/1/SAS-Drive_Firmware_VDGFM_WN64_DN03_A00.EXE”, “PrerequisiteInfo”: “”, “RebootRequired”: true, “SourceName”: “DCIM:INSTALLED#304_C_Disk.Bay.1:Enclosure.Internal.0-1:RAID.Integrated.1-1”, “TargetIdentifier”: “103730”, “UniqueIdentifier”: “xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx”, “UpdateAction”: “UPGRADE”, “Uri”: “http://www.dell.com/support/home/us/en/19/Drivers/DriversDetails?driverId=XXXXX”, “Version”: “DN03”}], “DeviceId”: 11603, “DeviceModel”: “PowerEdge R630”, “DeviceName”: null, “DeviceTypeId”: 1000, “DeviceTypeName”: “CPGCGS”, “FirmwareStatus”: “Non-Compliant”, “Id”: 194, “RebootRequired”: true, “ServiceTag”: “MXL1234”}], “DowngradeEnabled”: true, “Id”: 53, “Is64Bit”: false, “LastRun”: “2019-09-27 05:08:16.301”, “Name”: “baseline1”, “RepositoryId”: 43, “RepositoryName”: “catalog2”, “RepositoryType”: “CIFS”, “Targets”: [{“Id”: 11603, “Type”: {“Id”: 1000, “Name”: “DEVICE”}}], “TaskId”: 11710, “TaskStatusId”: 0}] |
|
Details of http error. Returned: on http error Sample: {“error”: {“@Message.ExtendedInfo”: [{“Message”: “Unable to retrieve baseline list either because the device ID(s) entered are invalid”, “Resolution”: “Make sure the entered device ID(s) are valid and retry the operation.”, “Severity”: “Critical”}], “code”: “Base.1.0.GeneralError”, “message”: “A general error has occurred. See ExtendedInfo for more information.”}} |
|
Overall baseline compliance report status. Returned: on error Sample: “Failed to fetch the compliance baseline information.” |
Authors
Sajna Shetty(@Sajna-Shetty)