check_point.mgmt.cp_mgmt_add_domain 模块 – 创建新对象

注意

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

check_point.mgmt 2.1.0 新增功能

概要

  • 创建新对象

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

参数

参数

注释

auto_publish_session

布尔值

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

选项

  • false ← (默认)

  • true

color

字符串

对象的颜色。应为现有颜色之一。

选项

  • "海蓝色"

  • "黑色"

  • "蓝色"

  • "克里特蓝色"

  • "黄褐色"

  • "青色"

  • "深绿色"

  • "卡其色"

  • "兰花色"

  • "深橙色"

  • "深海绿色"

  • "粉红色"

  • "绿松石色"

  • "深蓝色"

  • "火砖色"

  • "棕色"

  • "森林绿色"

  • "金色"

  • "深金色"

  • "灰色"

  • "深灰色"

  • "浅绿色"

  • "柠檬薄纱"

  • "珊瑚色"

  • "海绿色"

  • "天蓝色"

  • "洋红色"

  • "紫色"

  • "板岩蓝色"

  • "紫红色"

  • "海军蓝色"

  • "橄榄色"

  • "橙色"

  • "红色"

  • "赭色"

  • "黄色"

comments

字符串

注释字符串。

details_level

字符串

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

选项

  • "uid"

  • "标准"

  • "完整"

ignore_errors

布尔值

应用更改时忽略错误。您将无法发布此类更改。如果省略了 ignore-warnings 标志,则也会忽略警告。

选项

  • false

  • true

ignore_warnings

布尔值

应用更改时忽略警告。

选项

  • false

  • true

name

字符串 / 必需

对象名称。

servers

列表 / 元素=字典

域服务器。当提供此字段时,将异步执行“set-domain”命令。

active

布尔值

激活域服务器。只允许一个域服务器处于活动状态

选项

  • false

  • true

ip_address

字符串

IPv4 或 IPv6 地址。如果都需要这两个地址,请显式使用 ipv4-address 和 ipv6-address 字段。

ipv4_address

字符串

IPv4 地址。

ipv6_address

字符串

IPv6 地址。

multi_domain_server

字符串

多域服务器名称或 UID。

name

字符串

对象名称。在域中必须唯一。

skip_start_domain_server

布尔值

将此值设置为 true 以防止启动新创建的域。

选项

  • false

  • true

type

字符串

域服务器类型。

选项

  • "管理服务器"

  • "日志服务器"

  • "smc"

version

字符串

检查点的版本。如果没有给定版本,则使用最新版本。

wait_for_task

布尔值

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

选项

  • false

  • true ← (默认)

wait_for_task_timeout

整数

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

默认值: 30

示例

- name: add-domain
  cp_mgmt_add_domain:
    name: domain1
    servers:
      ip_address: 192.0.2.1
      multi_domain_server: MDM_Server
      name: domain1_ManagementServer_1

返回值

常见的返回值记录在此处,以下是此模块独有的字段

描述

cp_mgmt_domain

字典

检查点 add-domain 输出。

返回:始终。

作者

  • Or Soffer (@chkp-orso)