purestorage.flasharray.purefa_sessions 模块 – 列出 FlashArray 会话

注意

此模块是 purestorage.flasharray 集合 (版本 1.32.0) 的一部分。

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

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

要在 playbook 中使用它,请指定:purestorage.flasharray.purefa_sessions

purestorage.flasharray 1.29.0 中的新增功能

摘要

  • 根据提供的过滤器列出会话

需求

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

  • python >= 3.3

  • purestorage >= 1.19

  • py-pure-client >= 1.26.0

  • netaddr

  • requests

  • pycountry

  • urllib3

参数

参数

注释

api_token

字符串

具有管理员权限用户的 FlashArray API 令牌。

disable_warnings

布尔值

在 purestorage.flasharray 1.29.0 中添加

禁用调试日志中的不安全证书警告

选项

  • false ← (默认)

  • true

end

字符串

结束日期和时间(基于阵列本地时间)

如果未提供,则假定为纪元时间

预期格式“YYYY-MM-DD hh:mm:ss”

fa_url

字符串

FlashArray 管理 IPv4 地址或主机名。

start

字符串

开始日期和时间(基于阵列本地时间)

如果未提供,则假定为纪元时间

预期格式“YYYY-MM-DD hh:mm:ss”

timezone

字符串

FlashArray 的时区

如果未提供,模块将尝试从服务器获取当前本地时区,但是从 Purity//FA 6.5.3 开始,此值将从 FlashArray 自动计算

备注

注意

  • 此模块需要 purestoragepy-pure-client Python 库

  • 特定模块可能需要其他 Python 库。

  • 如果未直接将 *fa_url* 和 *api_token* 参数传递给模块,则必须设置 PUREFA_URLPUREFA_API 环境变量

示例

- name: Show all sessions that started after the specified date/time
  purefa_sessions:
    start: "2024-06-29 12:31:34"
    fa_url: 10.10.10.2
    api_token: 89a9356f-c203-d263-8a89-c229486a13ba

- name: Show all sessions that started and ended between specified dates/times
  purefa_sessions:
    start: "2024-06-29 12:31:34"
    end: "2024-06-30 04:23:34"
    fa_url: 10.10.10.2
    api_token: 89a9356f-c203-d263-8a89-c229486a13ba

- name: Show all sessions that ended after the specified date/time
  purefa_sessions:
    end: "2024-06-30 04:23:34"
    fa_url: 10.10.10.2
    api_token: 89a9356f-c203-d263-8a89-c229486a13ba

- name: Show all sessions that have been logged by the array (to the internal limit of the array)
  purefa_sessions:
    fa_url: 10.10.10.2
    api_token: 89a9356f-c203-d263-8a89-c229486a13ba

作者

  • Pure Storage Ansible 团队 (@sdodsley)