dellemc.openmanage.ome_chassis_slots 模块 – 在 OpenManage Enterprise Modular 上重命名滑轨槽位
注意
此模块是 dellemc.openmanage 集合 (版本 9.9.0) 的一部分。
如果您使用的是 ansible
软件包,则您可能已经安装了此集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用: ansible-galaxy collection install dellemc.openmanage
。您需要其他要求才能使用此模块,有关详细信息,请参阅 要求。
要在剧本中使用它,请指定: dellemc.openmanage.ome_chassis_slots
。
dellemc.openmanage 3.6.0 中的新增功能
概要
此模块允许使用设备 ID 或设备服务标签,或使用机箱服务标签和槽位编号,在 OpenManage Enterprise Modular 上重命名滑轨槽位。
要求
在执行此模块的主机上需要以下要求。
python >= 3.9.6
参数
参数 |
注释 |
---|---|
包含用于验证的 CA 证书的隐私增强邮件 (PEM) 文件。 |
|
槽位中滑轨的 ID 或服务标签以及槽位的新名称。 device_options 与 slot_options 互斥。 |
|
槽位中滑轨的设备 ID。 此参数与 device_service_tag 互斥。 |
|
槽位中滑轨的服务标签。 此参数与 device_id 互斥。 |
|
提供槽位的名称。 |
|
OpenManage Enterprise Modular 的 IP 地址或主机名。 |
|
OpenManage Enterprise Modular 的 HTTPS 端口。 默认值: |
|
机箱的服务标签、要重命名的槽位的槽位号以及槽位的新名称。 slot_options 与 device_options 互斥。 |
|
机箱的服务标签。 |
|
槽位号以及槽位的新名称。 |
|
提供槽位的名称。 |
|
要重命名的槽位的槽位号。 |
|
以秒为单位的套接字级别超时。 默认值: |
|
如果为 仅在使用自签名证书的个人控制站点上配置 在集合版本 选项
|
|
身份验证令牌。 如果未提供 x_auth_token,则使用环境变量 示例:export OME_X_AUTH_TOKEN=x_auth_token |
备注
注意
此模块启动刷新库存任务。新名称可能需要一分钟才能反映出来。如果任务超过 300 秒才能刷新,则任务超时。
从此模块可以直接访问 Dell OpenManage Enterprise Modular 的系统运行此模块。
此模块支持
check_mode
。
示例
---
- name: Rename the slots in multiple chassis using slot number and chassis service tag
dellemc.openmanage.ome_chassis_slots:
hostname: "192.168.0.1"
username: "username"
password: "password"
ca_path: "/path/to/ca_cert.pem"
slot_options:
- chassis_service_tag: ABC1234
slots:
- slot_number: 1
slot_name: sled_name_1
- slot_number: 2
slot_name: sled_name_2
- chassis_service_tag: ABC1235
slots:
- slot_number: 1
slot_name: sled_name_1
- slot_number: 2
slot_name: sled_name_2
- name: Rename single slot name of the sled using sled ID
dellemc.openmanage.ome_chassis_slots:
hostname: "192.168.0.1"
username: "username"
password: "password"
ca_path: "/path/to/ca_cert.pem"
device_options:
- device_id: 10054
slot_name: slot_device_name_1
- name: Rename single slot name of the sled using sled service tag
dellemc.openmanage.ome_chassis_slots:
hostname: "192.168.0.1"
username: "username"
password: "password"
ca_path: "/path/to/ca_cert.pem"
device_options:
- device_service_tag: ABC1234
slot_name: service_tag_slot
- name: Rename multiple slot names of the devices
dellemc.openmanage.ome_chassis_slots:
hostname: "192.168.0.1"
username: "username"
password: "password"
ca_path: "/path/to/ca_cert.pem"
device_options:
- device_id: 10054
slot_name: sled_name_1
- device_service_tag: ABC1234
slot_name: sled_name_2
- device_id: 10055
slot_name: sled_name_3
- device_service_tag: PQR1234
slot_name: sled_name_4
返回值
此处记录了常见的返回值 此处,以下是此模块特有的字段
键 |
描述 |
---|---|
HTTP 错误的详细信息。 返回: HTTP 错误时 示例: |
|
插槽重命名操作的整体状态。 返回:始终 示例: |
|
未成功重命名的有效插槽信息。 如果重命名作业失败,则显示
返回:如果至少有一个插槽重命名失败 示例: |
|
已成功重命名的插槽信息。 只有在使用 *device_options* 时,
返回:如果至少有一个插槽被重命名 示例: |