wti.remote.cpm_temp_info 模块 – 从 WTI OOB 和 PDU 设备获取温度信息

注意

此模块是 wti.remote 集合 (版本 1.0.10) 的一部分。

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

要安装它,请使用: ansible-galaxy collection install wti.remote

要在剧本中使用它,请指定: wti.remote.cpm_temp_info

wti.remote 2.9.0 中的新增功能

概要

  • 从 WTI OOB 和 PDU 设备获取温度信息

参数

参数

注释

cpm_password

字符串 / 必需

这是发送到 WTI 设备的模块的密码。

cpm_url

字符串 / 必需

这是发送到 WTI 设备的模块的 URL。

cpm_username

字符串 / 必需

这是发送到 WTI 设备的模块的用户名。

use_https

布尔值

指定使用 https 连接还是 http 连接。

选项

  • false

  • true ← (默认)

use_proxy

布尔值

标志,用于控制当存在 HTTP 代理环境变量时,查找是否会观察它们。

选项

  • false ← (默认)

  • true

validate_certs

布尔值

如果为 false,则不会验证 SSL 证书。这只能在使用自签名证书的个人控制站点上使用。

选项

  • false

  • true ← (默认)

备注

注意

  • 使用 groups/cpmmodule_defaults 中设置 CPM 模块之间使用的公共选项。

示例

- name: Get the Temperature Information of a WTI device
  cpm_temp_info:
    cpm_url: "nonexist.wti.com"
    cpm_username: "super"
    cpm_password: "super"
    use_https: true
    validate_certs: false

- name: Get the Temperature Information of a WTI device
  cpm_temp_info:
    cpm_url: "nonexist.wti.com"
    cpm_username: "super"
    cpm_password: "super"
    use_https: false
    validate_certs: false

返回值

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

描述

data

复杂类型

命令发送后返回的输出 JSON

返回值:始终

format

字符串

模块执行后 WTI 设备的当前温度格式(摄氏度或华氏度)。

返回值:成功

示例: "F"

status

字典

模块完成后的返回状态

返回值:始终

示例: {"code": "0", "text": "OK"}

temperature

字符串

模块执行后 WTI 设备的当前温度。

返回值:成功

示例: "76"

timestamp

字符串

模块执行后 WTI 设备的当前时间戳。

返回值:成功

示例: "2020-02-24T20:54:03+00:00"

作者

  • Western Telematic Inc. (@wtinetworkgear)