dellemc.openmanage.idrac_firmware_info 模块 – 获取固件清单

注意

此模块是 dellemc.openmanage 集合 (版本 9.9.0) 的一部分。

如果您使用的是 ansible 包,则可能已经安装了此集合。它不包含在 ansible-core 中。要检查它是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用: ansible-galaxy collection install dellemc.openmanage。您需要其他要求才能使用此模块,有关详细信息,请参阅 需求

要在playbook中使用它,请指定: dellemc.openmanage.idrac_firmware_info

dellemc.openmanage 3.0.0 中的新增功能

概要

  • 获取固件清单。

需求

在执行此模块的主机上需要以下要求。

  • python >= 3.9.6

参数

参数

注释

ca_path

路径

在 dellemc.openmanage 5.0.0 中添加

包含用于验证的CA证书的隐私增强邮件(PEM)文件。

idrac_ip

字符串 / 必需

iDRAC IP地址。

idrac_password

别名:idrac_pwd

字符串 / 必需

iDRAC用户密码。

如果未提供密码,则使用环境变量 IDRAC_PASSWORD

示例:export IDRAC_PASSWORD=password

idrac_port

整数

iDRAC端口。

默认值: 443

idrac_user

字符串 / 必需

iDRAC用户名。

如果未提供用户名,则使用环境变量 IDRAC_USERNAME

示例:export IDRAC_USERNAME=username

timeout

整数

在 dellemc.openmanage 5.0.0 中添加

以秒为单位的套接字级别超时。

默认值: 30

validate_certs

布尔值

在 dellemc.openmanage 5.0.0 中添加

如果为 false,则不会验证SSL证书。

仅在使用自签名证书的个人控制站点上配置 false

在集合版本 5.0.0 之前,validate_certs 默认值为 false

选项

  • false

  • true ← (默认)

备注

注意

  • 从此模块可以直接访问Dell iDRAC的系统运行此模块。

  • 此模块支持IPv4和IPv6地址的idrac_ip

  • 此模块支持 check_mode

示例

---
- name: Get Installed Firmware Inventory
  dellemc.openmanage.idrac_firmware_info:
    idrac_ip: "192.168.0.1"
    idrac_user: "user_name"
    idrac_password: "user_password"
    ca_path: "/path/to/ca_cert.pem"

返回值

常见返回值已在 此处 记录,以下是此模块特有的字段

描述

error_info

字典

HTTP错误的详细信息。

返回:HTTP错误时

示例: {"error": {"@Message.ExtendedInfo": [{"Message": "Unable to process the request because an error occurred.", "MessageArgs": [], "MessageId": "GEN1234", "RelatedProperties": [], "Resolution": "Retry the operation. If the issue persists, contact your system administrator.", "Severity": "Critical"}], "code": "Base.1.0.GeneralError", "message": "A general error has occurred. See ExtendedInfo for more information."}}

firmware_info

字典

固件的详细信息。

返回:成功

示例: {"Firmware": [{"BuildNumber": "0", "Classifications": "10", "ComponentID": "102573", "ComponentType": "FRMW", "DeviceID": null, "ElementName": "电源 供应.插槽.1", "FQDD": "PSU.Slot.1", "HashValue": null, "IdentityInfoType": "OrgID:ComponentType:ComponentID", "IdentityInfoValue": "DCIM:firmware:102573", "InstallationDate": "2018-11-22T03:58:23Z", "InstanceID": "DCIM:INSTALLED#0x15__PSU.Slot.1", "IsEntity": "true", "Key": "DCIM:INSTALLED#0x15__PSU.Slot.1", "MajorVersion": "0", "MinorVersion": "3", "RevisionNumber": "67", "RevisionString": null, "Status": "已安装", "SubDeviceID": null, "SubVendorID": null, "Updateable": "true", "VendorID": null, "VersionString": "00.3D.67", "impactsTPMmeasurements": "false"}]}

消息

字符串

正在获取固件清单详细信息。

返回: 始终

示例: "已成功 获取 固件 清单 详细信息。"

作者

  • Rajeev Arakkal (@rajeevarakkal)

  • Saksham Nautiyal (@Saksham-Nautiyal)