Users Guide
Table Of Contents
- Dell EMC OpenManage Ansible Modules Version 4.0.0 User’s Guide
 - Contents
 - Overview
 - Getting Started
 - Modules for iDRAC
- How OpenManage Ansible Modules work with iDRAC
 - Running your first iDRAC Playbook
 - Updating Firmware
 - Configuring PowerEdge Servers
 - Deploying operating system
 - Server Inventory
 - Server administration tasks
 - Storage controller
 
 - Modules for OpenManage Enterprise (OME)
- How OpenManage Ansible Modules work with OME
 - Running your first OME Playbook
 - Manage Devices
 - Manage device configuration templates
 - Template Service
 - Manage the device firmware
 - Manage jobs
 - Manage users
 - Manage identity pool
 - Manage application settings
 - Manage network configuration
 - Manage fabrics
 - Manage Profiles
 - Device discovery
 - Manage Chassis
 - Manage Active Directory service and user groups
 - Diagnostics
 
 - Modules for Redfish APIs
 - Deprecated modules
 
      "JobName": "Refresh Inventory for Device",
      "JobStatus": {
        "Id": 2080,
        "Name": "New"
      },
      "JobType": {
        "Id": 8,
        "Internal": false,
        "Name": "Inventory_Task"
      },
      "LastRun": "2000-01-29 10:51:34.776",
      "LastRunStatus": {
        "Id": 2060,
        "Name": "Completed"
      },
      "NextRun": null,
      "Params": [],
      "Schedule": "",
      "StartTime": null,
      "State": "Enabled",
      "Targets": [
        {
          "Data": "''",
          "Id": 123123,
          "JobId": 12345,
          "TargetType": {
            "Id": 1000,
            "Name": "DEVICE"
          }
        }
      ],
      "UpdatedBy": null,
      "Visible": true
    }
  ]}
Examples
- name: Get all jobs details
  dellemc.openmanage.ome_job_info:
    hostname:  "192.168.0.1"
    username: "username"
    password:  "password"
- name: Get job details for ID
  dellemc.openmanage.ome_job_info:
    hostname:  "192.168.0.1"
    username: "username"
    password:  "password"
    job_id: 12345
- name: Get filtered job details
  dellemc.openmanage.ome_job_info:
    hostname:  "192.168.0.1"
    username: "username"
    password:  "password"
    system_query_options:
      top: 2
      skip: 1
      filter: "JobType/Id eq 8"
Manage power state operations
Module: ome_power_state
Synopsis
This module performs the supported power state management operations.
102
Modules for OpenManage Enterprise (OME)










