mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-02 14:40:19 -07:00
modules: fix examples to use FQCN (#644)
* modules: fix examples to use FQCN * fix * fix * fix
This commit is contained in:
parent
8b92e0454d
commit
41cfdda6a3
533 changed files with 2130 additions and 2130 deletions
|
@ -85,13 +85,13 @@ author: "Sajna Shetty(@Sajna-Shetty)"
|
|||
EXAMPLES = """
|
||||
---
|
||||
- name: Retrieve basic inventory of all devices.
|
||||
ome_device_info:
|
||||
community.general.ome_device_info:
|
||||
hostname: "192.168.0.1"
|
||||
username: "username"
|
||||
password: "password"
|
||||
|
||||
- name: Retrieve basic inventory for devices identified by IDs 33333 or 11111 using filtering.
|
||||
ome_device_info:
|
||||
community.general.ome_device_info:
|
||||
hostname: "192.168.0.1"
|
||||
username: "username"
|
||||
password: "password"
|
||||
|
@ -100,7 +100,7 @@ EXAMPLES = """
|
|||
filter: "Id eq 33333 or Id eq 11111"
|
||||
|
||||
- name: Retrieve inventory details of specified devices identified by IDs 11111 and 22222.
|
||||
ome_device_info:
|
||||
community.general.ome_device_info:
|
||||
hostname: "192.168.0.1"
|
||||
username: "username"
|
||||
password: "password"
|
||||
|
@ -111,7 +111,7 @@ EXAMPLES = """
|
|||
- 22222
|
||||
|
||||
- name: Retrieve inventory details of specified devices identified by service tags MXL1234 and MXL4567.
|
||||
ome_device_info:
|
||||
community.general.ome_device_info:
|
||||
hostname: "192.168.0.1"
|
||||
username: "username"
|
||||
password: "password"
|
||||
|
@ -122,7 +122,7 @@ EXAMPLES = """
|
|||
- MXL4567
|
||||
|
||||
- name: Retrieve details of specified inventory type of specified devices identified by ID and service tags.
|
||||
ome_device_info:
|
||||
community.general.ome_device_info:
|
||||
hostname: "192.168.0.1"
|
||||
username: "username"
|
||||
password: "password"
|
||||
|
@ -136,7 +136,7 @@ EXAMPLES = """
|
|||
inventory_type: "serverDeviceCards"
|
||||
|
||||
- name: Retrieve subsystem health of specified devices identified by service tags.
|
||||
ome_device_info:
|
||||
community.general.ome_device_info:
|
||||
hostname: "192.168.0.1"
|
||||
username: "username"
|
||||
password: "password"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue