modules: fix examples to use FQCN (#644)

* modules: fix examples to use FQCN

* fix

* fix

* fix
This commit is contained in:
Andrew Klychkov 2020-07-13 22:50:31 +03:00 committed by GitHub
parent 8b92e0454d
commit 41cfdda6a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
533 changed files with 2130 additions and 2130 deletions

View file

@ -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"