inspur.ispim.edit_alert_policy – Set alert policy.¶
Note
This plugin is part of the inspur.ispim collection.
To install it use: ansible-galaxy collection install inspur.ispim
.
To use it in a playbook, specify: inspur.ispim.edit_alert_policy
.
New in version 1.0.0: of inspur.ispim
Parameters¶
Examples¶
- 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 }}"
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Authors¶
WangBaoshan (@ispim)