check_point.mgmt.cp_mgmt_idp_to_domain_assignment_facts 模块 – 通过 Web 服务 API 获取 Checkpoint 上的 idp-to-domain-assignment 对象信息

注意

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

check_point.mgmt 3.0.0 中的新增功能

概要

  • 获取 Checkpoint 设备上的 idp-to-domain-assignment 对象信息。

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

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

参数

参数

注释

assigned_domain

字符串

表示由“idp-to-domain-assignment”分配的域,需要是域名或 UID。

details_level

字符串

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

选项

  • “uid”

  • “standard”

  • “full”

limit

整数

返回结果的最大数量。此参数仅与获取少量对象相关。

offset

整数

最初要跳过的结果数。此参数仅与获取少量对象相关。

order

列表 / 元素=字典

按搜索条件对结果进行排序。 自动按名称对结果进行升序排序。 此参数仅与获取少量对象相关。

ASC

字符串

按给定字段的升序对结果进行排序。

选项

  • “name”

DESC

字符串

按给定字段的降序对结果进行排序。

选项

  • “name”

version

字符串

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

示例

- name: show-idp-to-domain-assignment
  cp_mgmt_idp_to_domain_assignment_facts:
    assigned_domain: SMS

- name: show-idp-to-domain-assignments
  cp_mgmt_idp_to_domain_assignment_facts:
    details_level: full

作者

  • Eden Brillant (@chkp-edenbr)