check_point.mgmt.cp_mgmt_network_feed 模块 – 通过 Web Services API 管理 Checkpoint 上的网络馈送对象
注意
此模块是 check_point.mgmt 集合(版本 6.2.1)的一部分。
如果您使用的是 ansible
包,您可能已经安装了此集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install check_point.mgmt
。
要在 playbook 中使用它,请指定:check_point.mgmt.cp_mgmt_network_feed
。
check_point.mgmt 3.0.0 中的新增功能
概要
管理 Checkpoint 设备上的网络馈送对象,包括创建、更新和删除对象。
所有操作都通过 Web Services API 执行。
参数
参数 |
注释 |
---|---|
如果任务完成后执行了更改,则发布当前会话。 选择
|
|
用于访问馈送的证书 SHA-1 指纹。 |
|
对象的颜色。应该是现有颜色之一。 选择
|
|
注释字符串。 |
|
允许使用 URL 使用不同身份验证方法的标头。 |
|
我们要添加的 HTTP 标头的名称。 |
|
我们要添加的 HTTP 值的名称。 |
|
包含馈送数据的列的编号。 |
|
响应中某些字段的详细程度可能会有所不同,从仅显示对象的 UID 值到对象的完整详细表示形式。 选择
|
|
指示要在哪些域上处理命令。它不能与 details-level full 一起使用,必须仅从系统域运行且 ignore-warnings 为 true。有效值为:CURRENT_DOMAIN、ALL_DOMAINS_ON_THIS_SERVER。 |
|
馈送文件格式。 选择
|
|
要强制执行的馈送类型。 选择
|
|
馈送的 URL。URL 应写为 http 或 https。 |
|
分隔馈送中列之间的分隔符。 |
|
应用更改时忽略错误。您将无法发布此类更改。如果省略了 ignore-warnings 标志,则也会忽略警告。 选择
|
|
确定要忽略哪些行的前缀。 |
|
应用更改时忽略警告。 选择
|
|
要解析的 JQ 查询。 |
|
对象名称。 |
|
用于通过 URL 进行身份验证的密码。 |
|
访问规则的状态(存在或不存在)。 选择
|
|
标记标识符的集合。 |
|
在安全网关上更新馈送的分钟间隔。 |
|
使用网关的代理来检索馈送。 选择
|
|
用于通过 URL 进行身份验证的用户名。 |
|
Checkpoint 版本。如果未提供版本,则采用最新版本。 |
|
等待任务结束。例如发布任务。 选择
|
|
等待多长时间(以分钟为单位)直到抛出超时错误。 默认: |
示例
- name: add-network-feed
cp_mgmt_network_feed:
custom_header:
- header_name: header1
header_value: value1
- header_name: header2
header_value: value2
data_column: 1
feed_format: Flat List
feed_type: IP Address
feed_url: https://www.feedsresource.com/resource
fields_delimiter: " "
ignore_lines_that_start_with: '!'
name: network_feed
password: feed_password
state: present
update_interval: 60
use_gateway_proxy: false
username: feed_username
- name: set-network-feed
cp_mgmt_network_feed:
custom_header:
- header_name: new_header
header_value: new_value
data_column: 1
feed_format: Flat List
feed_type: IP Address
feed_url: https://www.feedsresource.com/new_resource
fields_delimiter: ','
ignore_lines_that_start_with: '!'
name: network_feed
password: new_password
state: present
update_interval: 60
use_gateway_proxy: false
username: new_username
- name: delete-network-feed
cp_mgmt_network_feed:
name: network_feed
state: absent
返回值
常见返回值已记录在此处 此处,以下是此模块独有的字段
键 |
描述 |
---|---|
已创建或更新的 Checkpoint 对象。 返回: 始终返回,删除对象时除外。 |