community.general.manageiq_alert_profiles 模块 – ManageIQ 警报配置文件配置
注意
此模块是 community.general 集合 (版本 10.1.0) 的一部分。
如果您使用的是 ansible
包,则可能已安装此集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install community.general
。您需要其他要求才能使用此模块,请参阅 要求 获取详细信息。
要在 playbook 中使用它,请指定:community.general.manageiq_alert_profiles
。
概要
manageiq_alert_profiles 模块支持在 ManageIQ 中添加、更新和删除警报配置文件。
要求
在执行此模块的主机上需要以下要求。
manageiq-client https://github.com/ManageIQ/manageiq-api-client-python/
参数
参数 |
注释 |
---|---|
要分配到此配置文件的警报描述列表。 如果 state 为“present”,则为必填项 |
|
ManageIQ 连接配置信息。 |
|
CA 证书包文件或包含证书的目录的路径。 |
|
ManageIQ 密码。 |
|
ManageIQ 令牌。 |
|
ManageIQ 环境 URL。 |
|
ManageIQ 用户名。 |
|
是否应验证 HTTPS 请求的 SSL 证书。 选项
|
|
ManageIQ 中唯一的警报配置文件名称。 当 state 为“absent”或“present”时为必填项。 |
|
此配置文件的可选注释 |
|
ManageIQ 中警报配置文件的资源类型。当 state 为“present”时为必填项。 选项
|
|
absent - 警报配置文件不应存在, present - 警报配置文件应存在, 选项
|
属性
属性 |
支持 |
描述 |
---|---|---|
支持:不支持 |
可以在 |
|
支持:不支持 |
在差异模式下,将返回有关已更改内容(或可能需要在 |
示例
- name: Add an alert profile to ManageIQ
community.general.manageiq_alert_profiles:
state: present
name: Test profile
resource_type: ContainerNode
alerts:
- Test Alert 01
- Test Alert 02
manageiq_connection:
url: 'http://127.0.0.1:3000'
username: 'admin'
password: 'smartvm'
validate_certs: false # only do this when you trust the network!
- name: Delete an alert profile from ManageIQ
community.general.manageiq_alert_profiles:
state: absent
name: Test profile
manageiq_connection:
url: 'http://127.0.0.1:3000'
username: 'admin'
password: 'smartvm'
validate_certs: false # only do this when you trust the network!