cisco.mso.mso_schema_template_anp_epg_selector 模块 – 管理架构模板中的 EPG 选择器

注意

此模块是 cisco.mso 集合 (版本 2.9.0) 的一部分。

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

要安装它,请使用:ansible-galaxy collection install cisco.mso。您需要其他要求才能使用此模块,有关详细信息,请参见 要求

要在 playbook 中使用它,请指定:cisco.mso.mso_schema_template_anp_epg_selector

概要

  • 管理 Cisco ACI 多站点上的架构模板中的 EPG 选择器。

要求

执行此模块的主机需要以下要求。

  • 多站点编排器 v2.1 或更高版本

参数

参数

注释

anp

字符串 / 必需

ANP 的名称。

epg

字符串 / 必需

要管理的 EPG 的名称。

expressions

列表 / 元素=字典

与该选择器关联的表达式。

operator

字符串 / 必需

与表达式关联的运算符。

选项

  • "not_in"

  • "in"

  • "equals"

  • "not_equals"

  • "has_key"

  • "does_not_have_key"

类型

别名:tag

字符串 / 必需

表达式的名称。

value

字符串

与表达式关联的值。

如果运算符是 in 或 not_in,则值应为逗号分隔的字符串。

主机

别名:主机名

字符串

ACI 多站点编排器主机的 IP 地址或主机名。

如果任务中未指定此值,则将使用环境变量 MSO_HOST 的值。

login_domain

字符串

用于身份验证的登录域名称。

默认值为 Local。

如果任务中未指定此值,则将使用环境变量 MSO_LOGIN_DOMAIN 的值。

使用 HTTPAPI 连接插件时,如果未指定此属性,则将使用清单变量 ansible_httpapi_login_domain

output_level

字符串

影响此 MSO 模块的输出。

normal 表示标准输出,包括 current 字典

info 添加信息输出,包括 previousproposedsent 字典

debug 添加调试输出,包括 filter_stringmethodresponsestatusurl 信息

如果任务中未指定此值,则将使用环境变量 MSO_OUTPUT_LEVEL 的值。

选项

  • "debug"

  • "info"

  • "normal" ← (默认)

password

字符串

用于身份验证的密码。

如果任务中未指定此值,则将使用环境变量 MSO_PASSWORDANSIBLE_NET_PASSWORD 的值。

port

整数

用于 REST 连接的端口号。

默认值取决于参数 `use_ssl`。

如果任务中未指定此值,则将使用环境变量 MSO_PORT 的值。

schema

字符串 / 必需

架构的名称。

selector

字符串

选择器的名称。

state

字符串

使用 presentabsent 添加或删除。

使用 query 列出对象或多个对象。

选项

  • "absent"

  • "present" ← (默认)

  • "query"

template

字符串 / 必需

要更改的模板的名称。

timeout

整数

以秒为单位的套接字级别超时。

默认值为 30 秒。

如果任务中未指定此值,则将使用环境变量 MSO_TIMEOUT 的值。

use_proxy

布尔值

如果为false,则不会使用代理,即使目标主机环境变量中定义了代理。

如果任务中未指定此值,则将使用环境变量MSO_USE_PROXY的值。

默认值为true

选项

  • false

  • true

use_ssl

布尔值

如果为false,则将使用HTTP连接而不是默认的HTTPS连接。

如果任务中未指定此值,则将使用环境变量MSO_USE_SSL的值。

当使用HTTPAPI连接插件时,如果未指定此属性,则将使用清单变量ansible_httpapi_use_ssl

使用HTTPAPI连接插件(mso或nd)时,默认值为false;使用传统连接方法(仅限于mso)时,默认值为true

选项

  • false

  • true

username

字符串

用于身份验证的用户名。

如果任务中未指定此值,则将使用环境变量MSO_USERNAMEANSIBLE_NET_USERNAME的值。

validate_certs

布尔值

如果为false,则不会验证SSL证书。

仅当在使用自签名证书的个人控制站点上使用时,才应将其设置为false

如果任务中未指定此值,则将使用环境变量MSO_VALIDATE_CERTS的值。

默认值为true

选项

  • false

  • true

注释

注意

  • 此模块编写用于支持Multi Site Orchestrator v2.1或更高版本。某些或所有功能可能在早期版本上无法正常工作。

另请参阅

另请参阅

cisco.mso.mso_schema_template_anp_epg

管理架构模板中的端点组 (EPG)。

示例

- name: Add a selector to an EPG
  cisco.mso.mso_schema_template_anp_epg_selector:
    host: mso_host
    username: admin
    password: SomeSecretPassword
    schema: Schema 1
    template: Template 1
    anp: ANP 1
    epg: EPG 1
    selector: selector_1
    expressions:
      - type: expression_1
        operator: in
        value: test
    state: present

- name: Remove a Selector
  cisco.mso.mso_schema_template_anp_epg_selector:
    host: mso_host
    username: admin
    password: SomeSecretPassword
    schema: Schema 1
    template: Template 1
    anp: ANP 1
    epg: EPG 1
    selector: selector_1
    state: absent

- name: Query a specific Selector
  cisco.mso.mso_schema_template_anp_epg_selector:
    host: mso_host
    username: admin
    password: SomeSecretPassword
    schema: Schema 1
    template: Template 1
    anp: ANP 1
    epg: EPG 1
    selector: selector_1
    state: query
  register: query_result

- name: Query all Selectors
  cisco.mso.mso_schema_template_anp_epg_selector:
    host: mso_host
    username: admin
    password: SomeSecretPassword
    schema: Schema 1
    template: Template 1
    anp: ANP 1
    epg: EPG 1
    state: query
  register: query_result

作者

  • 赵Cindy (@cizhao)