inspur.ispim.edit_alert_policy 模块 – 设置告警策略

注意

此模块是 inspur.ispim 集合 (版本 2.2.3) 的一部分。

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

要安装它,请使用: ansible-galaxy collection install inspur.ispim。您需要其他要求才能使用此模块,请参阅 要求 以了解详细信息。

要在 playbook 中使用它,请指定: inspur.ispim.edit_alert_policy

inspur.ispim 1.0.0 中的新增功能

概要

  • 在浪潮服务器上设置告警策略。

要求

执行此模块的主机需要满足以下要求。

  • Python 3.7+

  • inspursmsdk

参数

参数

注释

channel

字符串

LAN 通道。

只有 M5 型号支持此参数。

选择

  • "shared"

  • "dedicated"

destination

字符串

告警目标,当类型为 snmp 时,填写 IP;

当类型为 email 时,填写用户名;

当类型为 snmpdomain 时,填写域名。

host

字符串

指定用于通过指定传输连接到远程设备的 DNS 主机名或地址。 host 的值用作传输的目标地址。

id

整数 / 必填

告警 ID。

M5 模块的值为 1、2、3。

M6 模块的值为 1、2、3、4。

选择

  • 1

  • 2

  • 3

  • 4

password

字符串

指定用于验证与远程设备连接的密码。 如果任务中未指定该值,则将使用环境变量 ANSIBLE_NET_PASSWORD 的值。

provider

字典

包含连接详细信息的字典对象。

host

字符串

指定用于通过指定传输连接到远程设备的 DNS 主机名或地址。 host 的值用作传输的目标地址。

password

字符串

指定用于验证与远程设备连接的密码。 如果任务中未指定该值,则将使用环境变量 ANSIBLE_NET_PASSWORD 的值。

username

字符串

配置用于验证与远程设备连接的用户名。 如果任务中未指定该值,则将使用环境变量 ANSIBLE_NET_USERNAME 的值。

status

字符串

告警策略状态。

选择

  • "enable"

  • "disable"

trap_port

整数

SNMP 陷阱端口 (1-65535)。

只有 M6 型号支持此参数。

type

字符串

告警类型。

只有 M5 型号支持此参数。

选择

  • "snmp"

  • "email"

  • "snmpdomain"

username

字符串

配置用于验证与远程设备连接的用户名。 如果任务中未指定该值,则将使用环境变量 ANSIBLE_NET_USERNAME 的值。

说明

注意

  • 不支持 check_mode

示例

- name: Alert policy test
  hosts: ism
  connection: local
  gather_facts: no
  vars:
    ism:
      host: "{{ ansible_ssh_host }}"
      username: "{{ username }}"
      password: "{{ password }}"

  tasks:

  - name: "Set alert policy"
    inspur.ispim.edit_alert_policy:
      id: 1
      status: "enable"
      type: "snmp"
      destination: "100.2.2.2"
      channel: "shared"
      provider: "{{ ism }}"

  - name: "Set alert policy"
    inspur.ispim.edit_alert_policy:
      id: 1
      status: "disable"
      provider: "{{ ism }}"

返回值

通用返回值记录在此处,以下是此模块独有的字段

描述

changed

布尔值

检查设备是否进行了更改。

返回: 总是

message

字符串

模块执行后返回的消息。

返回: 总是

state

字符串

模块执行后的状态。

返回: 总是

作者

  • WangBaoshan (@ispim)