Users Guide
Table Of Contents
- Dell EMC OpenManage Ansible Modules Version 4.0.0 User’s Guide
- Contents
- Overview
- Getting Started
- Modules for iDRAC
- How OpenManage Ansible Modules work with iDRAC
- Running your first iDRAC Playbook
- Updating Firmware
- Configuring PowerEdge Servers
- Deploying operating system
- Server Inventory
- Server administration tasks
- Storage controller
- Modules for OpenManage Enterprise (OME)
- How OpenManage Ansible Modules work with OME
- Running your first OME Playbook
- Manage Devices
- Manage device configuration templates
- Template Service
- Manage the device firmware
- Manage jobs
- Manage users
- Manage identity pool
- Manage application settings
- Manage network configuration
- Manage fabrics
- Manage Profiles
- Device discovery
- Manage Chassis
- Manage Active Directory service and user groups
- Diagnostics
- Modules for Redfish APIs
- Deprecated modules
dellemc.openmanage.ome_firmware_baseline:
hostname: "192.168.0.1"
username: "username"
password: "password"
state: absent
baseline_name: "baseline_name"
Retrieve firmware baseline details
Module: ome_firmware_baseline_info
Synopsis
This module retrieves the list and details of all the baselines on OpenManage Enterprise.
Options
Table 37. ome_firmware_baseline_info
Paramter Required Default Choices Comments
hostname True NA NA Target IP address or
hostname
username True NA NA Target username
password True NA NA Target password
port False 443 NA Target HTTPS port
baseline_name: False NA NA Name of the baseline.
If I(baseline_name)
is not provided, all
the available firmware
baselines are returned.
Return Values
msg:
type: str
description: Overall baseline information.
returned: on error
sample: "Successfully fetched firmware baseline information."
baseline_info:
type: dict
description: Details of the baselines.
returned: success
sample: {
"@odata.id": "/api/UpdateService/Baselines(239)",
"@odata.type": "#UpdateService.Baselines",
"CatalogId": 22,
"ComplianceSummary": {
"ComplianceStatus": "CRITICAL",
"NumberOfCritical": 1,
"NumberOfDowngrade": 0,
"NumberOfNormal": 0,
"NumberOfWarning": 0
},
"Description": "baseline_description",
"DeviceComplianceReports@odata.navigationLink": "/api/UpdateService/
Baselines(239)/DeviceComplianceReports",
"DowngradeEnabled": true,
"Id": 239,
"Is64Bit": true,
"LastRun": "2020-05-22 16:42:40.307",
"Name": "baseline_name",
"RepositoryId": 12,
"RepositoryName": "HTTP DELL",
"RepositoryType": "DELL_ONLINE",
"Targets": [
{
96
Modules for OpenManage Enterprise (OME)