dellemc.openmanage.ome_user_info module – Retrieves details of all accounts or a specific account on OpenManage Enterprise

Note

This module is part of the dellemc.openmanage collection (version 4.4.0).

You might already have this collection installed if you are using the ansible package. It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install dellemc.openmanage.

To use it in a playbook, specify: dellemc.openmanage.ome_user_info.

New in version 2.0.0: of dellemc.openmanage

Synopsis

  • This module retrieves the list and basic details of all accounts or details of a specific account on OpenManage Enterprise.

Requirements

The below requirements are needed on the host that executes this module.

  • python >= 2.7.5

Parameters

Parameter

Comments

account_id

integer

Unique Id of the account.

hostname

string / required

OpenManage Enterprise or OpenManage Enterprise Modular IP address or hostname.

password

string / required

OpenManage Enterprise or OpenManage Enterprise Modular password.

port

integer

OpenManage Enterprise or OpenManage Enterprise Modular HTTPS port.

Default: 443

system_query_options

dictionary

Options for filtering the output.

filter

string

Filter records for the supported values.

username

string / required

OpenManage Enterprise or OpenManage Enterprise Modular username.

Notes

Note

  • Run this module from a system that has direct access to DellEMC OpenManage Enterprise.

  • This module supports check_mode.

Examples

---
- name: Retrieve basic details of all accounts
  dellemc.openmanage.ome_user_info:
    hostname: "192.168.0.1"
    username: "username"
    password: "password"

- name: Retrieve details of a specific account identified by its account ID
  dellemc.openmanage.ome_user_info:
    hostname: "192.168.0.1"
    username: "username"
    password: "password"
    account_id: 1

- name: Get filtered user info based on user name
  dellemc.openmanage.ome_user_info:
    hostname: "192.168.0.1"
    username: "username"
    password: "password"
    system_query_options:
      filter: "UserName eq 'test'"

Return Values

Common return values are documented here, the following are the fields unique to this module:

Key

Description

msg

string

Over all status of fetching user facts.

Returned: on error

Sample: “Unable to retrieve the account details.”

user_info

dictionary

Details of the user.

Returned: success

Sample: {“192.168.0.1”: {“Description”: “user name description”, “DirectoryServiceId”: 0, “Enabled”: true, “Id”: “1814”, “IsBuiltin”: true, “Locked”: false, “Name”: “user_name”, “Password”: null, “RoleId”: “10”, “UserName”: “user_name”, “UserTypeId”: 1}}

Authors

  • Jagadeesh N V(@jagadeeshnv)