dellemc.openmanage.omevv_baseline_profile 模块 – 创建、修改或删除基线配置文件

注意

此模块是 dellemc.openmanage 集合 (版本 9.9.0) 的一部分。

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

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

要在 playbook 中使用它,请指定:dellemc.openmanage.omevv_baseline_profile

dellemc.openmanage 9.9.0 中的新增功能

概要

  • 此模块允许您创建、修改或删除 VMware vCenter 的 OpenManage Enterprise 集成 (OMEVV) 基线配置文件。

要求

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

  • python >= 3.9.6

参数

参数

注释

ca_path

路径

包含用于验证的 CA 证书的隐私增强邮件 (PEM) 文件。

cluster

列表 / 元素=字符串

基线配置文件创建的集群列表。

statepresent 且创建新配置文件时,此参数是必需的。

days

列表 / 元素=字符串

作业必须运行的星期几(必需)。

statepresent 且创建新配置文件时,这是必需的。

选项

  • "sunday"

  • "monday"

  • "tuesday"

  • "wednesday"

  • "thursday"

  • "friday"

  • "saturday"

  • "all"

description

字符串

基线配置文件的描述。

hostname

字符串 / 必需

OpenManage Enterprise 模块的 IP 地址或主机名。

job_wait

布尔值

是否等待作业完成。

选项

  • false

  • true ← (默认)

job_wait_timeout

整数

job_wait 的最大等待时间(秒)。仅在此持续时间内跟踪作业。

job_waittrue 时适用。

默认值: 1200

name

字符串 / 必需

基线配置文件的名称。

port

整数

OpenManage Enterprise HTTPS 端口。

默认值: 443

repository_profile

字符串

用于基线创建的存储库配置文件。

statepresent 且创建新配置文件时,这是必需的。

state

字符串

present 创建基线配置文件,如果已存在具有相同名称的配置文件,则修改现有配置文件。

absent 删除基线配置文件。

创建新的基线配置文件时,需要 repository_profileclusterdaystime

stateabsent 时,需要 profile_nameprofile_id 之一。

选项

  • "present" ← (默认)

  • "absent"

time

字符串

作业必须运行的时间,采用 24 小时制格式。

格式必须为 HH:MM。

statepresent 且创建新配置文件时,这是必需的。

timeout

整数

套接字级别超时(秒)。

默认值: 30

validate_certs

布尔值

是否检查 SSL 证书。- 如果为 true,则将验证 SSL 证书。- 如果为 false,则不会验证 SSL 证书。

选项

  • false

  • true ← (默认)

vcenter_password

字符串

VMware vCenter 的 OpenManage Enterprise 集成 (OMEVV) 密码。

如果未提供密码,则使用环境变量 OMEVV_VCENTER_PASSWORD

示例:export OMEVV_VCENTER_PASSWORD=password

vcenter_username

字符串

VMware vCenter 的 OpenManage Enterprise 集成 (OMEVV) 用户名。

如果未提供用户名,则使用环境变量 OMEVV_VCENTER_USERNAME

示例:export OMEVV_VCENTER_USERNAME=username

vcenter_uuid

字符串

vCenter 的通用唯一标识符 (UUID)。

可以使用 dellemc.openmanage.omevv_vcenter_info 模块检索 vCenter UUID 详细信息。

如果未提供 UUID,则使用环境变量 OMEVV_VCENTER_UUID

示例:export OMEVV_VCENTER_UUID=uuid

属性

属性

支持

描述

check_mode

支持:完全支持

运行任务以进行验证,而无需对目标计算机执行操作。

diff_mode

支持:完全支持

运行任务以报告所做的更改或必须应用的更改。

注释

注意

  • 从此模块可以直接访问 Dell OpenManage Enterprise 的系统运行此模块。

示例

---
- name: Create a baseline profile for multiple cluster
  dellemc.openmanage.omevv_baseline_profile:
    hostname: "192.168.0.1"
    vcenter_uuid: "xxxxx"
    vcenter_username: "username"
    vcenter_password: "password"
    ca_path: "path/to/ca_file"
    state: "present"
    name: "profile-1"
    repository_profile: "repository-profile"
    cluster:
      - "cluster-1"
      - "cluster-2"
    days:
      - "sunday"
      - "wednesday"
    time: "22:10"

- name: Modify a baseline profile
  dellemc.openmanage.omevv_baseline_profile:
    hostname: "192.168.0.1"
    vcenter_uuid: "xxxxx"
    vcenter_username: "username"
    vcenter_password: "password"
    ca_path: "path/to/ca_file"
    state: "present"
    name: "profile-1"
    new_name: "profile-newname"
    repository_profile: "repository-profile"
    cluster:
      - "cluster-1"
      - "cluster-2"
    days:
      - "sunday"
    time: "05:00"

- name: Delete a specific baseline profile
  dellemc.openmanage.omevv_baseline_profile:
    hostname: "192.168.0.1"
    vcenter_uuid: "xxxxx"
    vcenter_username: "username"
    vcenter_password: "password"
    ca_path: "path/to/ca_file"
    state: "absent"
    name: "profile-1"

返回值

公共返回值已记录在 此处,以下是此模块特有的字段

描述

error_info

字典

模块 HTTP 错误的详细信息。

返回:HTTP 错误时

示例: {"errorCode": "18001", "message": "Baseline profile with name Test already exists."}

msg

字符串

配置文件操作的状态。

返回:始终

示例: "Successfully created the OMEVV baseline profile."

作者

  • Saksham Nautiyal (@Saksham-Nautiyal)