check_point.mgmt.cp_mgmt_service_dce_rpc_facts 模块 – 通过 Web Services API 获取 Check Point 上 service-dce-rpc 对象信息

注意

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

check_point.mgmt 1.0.0 中的新增功能

概要

  • 获取 Check Point 设备上的 service-dce-rpc 对象信息。

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

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

参数

参数

注释

details_level

字符串

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

选项

  • "uid"

  • "standard"

  • "full"

limit

整数

最多返回这么多结果。此参数仅与获取少量对象相关。

name

字符串

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

offset

整数

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

order

列表 / 元素=字典

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

ASC

字符串

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

选项

  • "name"

DESC

字符串

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

选项

  • "name"

show_membership

布尔值

指示是否为回复中的每个对象计算并显示“groups”字段。

选项

  • false

  • true

version

字符串

Checkpoint 的版本。如果未指定,则采用最新版本。

示例

- name: show-service-dce-rpc
  cp_mgmt_service_dce_rpc_facts:
    name: HP-OpCdistm

- name: show-services-dce-rpc
  cp_mgmt_service_dce_rpc_facts:
    details_level: standard
    limit: 50
    offset: 0

作者

  • Or Soffer (@chkp-orso)