community.general.oneview_network_set_info 模块 – 获取 OneView 网络集的信息
注意
此模块是 community.general 集合(版本 10.1.0)的一部分。
如果您使用的是 ansible
包,您可能已经安装了此集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install community.general
。您需要进一步的要求才能使用此模块,有关详细信息,请参阅 要求。
要在剧本中使用它,请指定:community.general.oneview_network_set_info
。
概要
从 OneView 中检索有关网络集的信息。
要求
执行此模块的主机上需要满足以下要求。
Python >= 2.7.9
hpOneView >= 2.0.1
参数
参数 |
注释 |
---|---|
OneView API 版本。 |
|
包含 OneView 客户端配置的 JSON 配置文件的路径。配置文件是可选的,如果使用,则应存在于运行 ansible 命令的主机中。如果未提供文件路径,则将从环境变量加载配置。有关示例配置文件或如何使用环境变量的链接,请验证“备注”部分。 |
|
设备的 IP 地址或主机名。 |
|
HPE Image Streamer REST API 的 IP 地址或主机名。 |
|
网络集名称。 |
|
包含用于收集有关网络集信息的选项的列表。允许的选项: |
|
用于分隔、筛选和排序资源列表的参数列表。 允许的参数键是
|
|
用于 API 身份验证的密码。 |
|
用于 API 身份验证的用户名。 |
属性
属性 |
支持 |
描述 |
---|---|---|
支持: 完整 在 community.general 3.3.0 中添加 此操作不会修改状态。 |
可以在 |
|
支持: 不适用 此操作不会修改状态。 |
当处于 diff 模式时,将返回有关已更改的内容(或可能需要在 |
备注
注意
可以在以下位置找到 config 参数的示例配置文件:https://github.com/HewlettPackard/oneview-ansible/blob/master/examples/oneview_config-rename.json
查看如何在以下位置使用环境变量进行配置:https://github.com/HewlettPackard/oneview-ansible#environment-variables
可以在以下位置找到 HPE OneView Ansible 模块的其他剧本:https://github.com/HewlettPackard/oneview-ansible/tree/master/examples
所使用的 OneView API 版本将直接影响资源中返回和期望的字段。有关设置所需 API 版本的信息,请访问:https://github.com/HewlettPackard/oneview-ansible#setting-your-oneview-version
示例
- name: Gather information about all Network Sets
community.general.oneview_network_set_info:
hostname: 172.16.101.48
username: administrator
password: my_password
api_version: 500
no_log: true
delegate_to: localhost
register: result
- name: Print fetched information about Network Sets
ansible.builtin.debug:
msg: "{{ result.network_sets }}"
- name: Gather paginated, filtered and sorted information about Network Sets
community.general.oneview_network_set_info:
hostname: 172.16.101.48
username: administrator
password: my_password
api_version: 500
params:
start: 0
count: 3
sort: 'name:descending'
filter: name='netset001'
no_log: true
delegate_to: localhost
register: result
- name: Print fetched information about paginated, filtered and sorted list of Network Sets
ansible.builtin.debug:
msg: "{{ result.network_sets }}"
- name: Gather information about all Network Sets, excluding Ethernet networks
community.general.oneview_network_set_info:
hostname: 172.16.101.48
username: administrator
password: my_password
api_version: 500
options:
- withoutEthernet
no_log: true
delegate_to: localhost
register: result
- name: Print fetched information about Network Sets, excluding Ethernet networks
ansible.builtin.debug:
msg: "{{ result.network_sets }}"
- name: Gather information about a Network Set by name
community.general.oneview_network_set_info:
hostname: 172.16.101.48
username: administrator
password: my_password
api_version: 500
name: Name of the Network Set
no_log: true
delegate_to: localhost
register: result
- name: Print fetched information about Network Set found by name
ansible.builtin.debug:
msg: "{{ result.network_sets }}"
- name: Gather information about a Network Set by name, excluding Ethernet networks
community.general.oneview_network_set_info:
hostname: 172.16.101.48
username: administrator
password: my_password
api_version: 500
name: Name of the Network Set
options:
- withoutEthernet
no_log: true
delegate_to: localhost
register: result
- name: Print fetched information about Network Set found by name, excluding Ethernet networks
ansible.builtin.debug:
msg: "{{ result.network_sets }}"
返回值
常见的返回值记录在这里,以下是此模块特有的字段
键 |
描述 |
---|---|
包含有关网络集的所有 OneView 信息。 返回: 总是返回,但可以为空。 |