check_point.mgmt.cp_mgmt_vpn_community_star_facts 模块 – 通过 Web 服务 API 获取 Check Point 上的 vpn-community-star 对象信息

注意

此模块是 check_point.mgmt 集合(版本 6.2.1)的一部分。

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

要安装它,请使用:ansible-galaxy collection install check_point.mgmt

要在剧本中使用它,请指定:check_point.mgmt.cp_mgmt_vpn_community_star_facts

check_point.mgmt 1.0.0 中的新增功能

概要

  • 获取 Check Point 设备上的 vpn-community-star 对象信息。

  • 所有操作均通过 Web 服务 API 执行。

  • 此模块处理两个操作,获取特定对象和获取多个对象。要获取特定对象,请使用参数“name”。

参数

参数

注释

details_level

字符串

响应中某些字段的详细程度可能有所不同,从仅显示对象的 UID 值到对象的完整详细表示。

选择

  • "uid"

  • "standard"

  • "full"

limit

整数

返回的结果将不超过此数量。此参数仅在获取少量对象时相关。

name

字符串

对象名称。此参数仅在获取特定对象时相关。

offset

整数

在开始返回结果之前跳过这么多结果。此参数仅在获取少量对象时相关。

order

列表 / 元素=字典

按给定的字段对结果进行排序。默认情况下,结果按名称升序排序。此参数仅在获取少量对象时相关。

ASC

字符串

按给定字段升序排序结果。

选择

  • "name"

DESC

字符串

按给定字段降序排序结果。

选择

  • "name"

version

字符串

检查点版本。如果未给定版本,则采用最新版本。

示例

- name: show-vpn-community-star
  cp_mgmt_vpn_community_star_facts:
    name: New_VPN_Community_Meshed_1

- name: show-vpn-communities-star
  cp_mgmt_vpn_community_star_facts:
    details_level: full
    limit: 50
    offset: 0

作者

  • Or Soffer (@chkp-orso)