check_point.mgmt.cp_mgmt_put_file 模块 – 通过 Web Services API 在 Check Point 上放置文件

注意

此模块是 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_put_file

check_point.mgmt 1.0.0 中的新功能

概要

  • 通过 Web Services API 在 Check Point 上放置文件

  • 所有操作都通过 Web Services API 执行。

参数

参数

注释

auto_publish_session

布尔值

如果在任务完成后执行了更改,则发布当前会话。

选择

  • false ← (默认)

  • true

comments

字符串

注释字符串。

file_content

字符串

不适用

file_name

字符串

不适用

file_path

字符串

不适用

targets

列表 / 元素=字符串

在此命令上执行的目标。目标可以通过其名称或对象唯一标识符来标识。

version

字符串

检查点的版本。如果未提供版本,则采用最新版本。

wait_for_task

布尔值

等待任务结束。例如发布任务。

选择

  • false

  • true ← (默认)

wait_for_task_timeout

整数

等待多少分钟,直到抛出超时错误。

默认值: 30

示例

- name: put-file
  cp_mgmt_put_file:
    file_content: 'vs ip 192.0.2.1
vs2 ip 192.0.2.2'
    file_name: vsx_conf
    file_path: /home/admin/
    targets:
    - corporate-gateway

返回值

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

描述

cp_mgmt_put_file

字典

检查点 put-file 输出。

已返回: 始终。

作者

  • Or Soffer (@chkp-orso)