You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added check mode and idempotency support for redfish_storage_volume and idempotency support for ome_smart_fabric_uplink. For ome_diagnostics, added support for debug logs and added supportassist_collection as a choice for the log_type argument to export SupportAssist logs.
15
+
16
+
Minor Changes
17
+
-------------
18
+
19
+
- ome_diagnostics - Added "supportassist_collection" as a choice for the log_type argument to export SupportAssist logs. (https://github.com/dell/dellemc-openmanage-ansible-modules/issues/309)
20
+
- ome_diagnostics - The module is enhanced to support debug logs. (https://github.com/dell/dellemc-openmanage-ansible-modules/issues/308)
21
+
- ome_smart_fabric_uplink - The module is enhanced to support idempotency. (https://github.com/dell/dellemc-openmanage-ansible-modules/issues/253)
22
+
- redfish_storage_volume - The module is enhanced to support check mode and idempotency. (https://github.com/dell/dellemc-openmanage-ansible-modules/issues/245)
23
+
24
+
Known Issues
25
+
------------
26
+
27
+
- idrac_user - Issue(192043) The module may error out with the message ``unable to perform the import or export operation because there are pending attribute changes or a configuration job is in progress``. Wait for the job to complete and run the task again.
28
+
- ome_application_alerts_smtp - Issue(212310) - The module does not provide a proper error message if the destination_address is more than 255 characters.
29
+
- ome_application_alerts_syslog - Issue(215374) - The module does not provide a proper error message if the destination_address is more than 255 characters.
30
+
- ome_application_console_preferences - Issue(224690) - The module does not display a proper error message when an unsupported value is provided for the parameters report_row_limit, email_sender_settings, and metric_collection_settings, and the value is applied on OpenManage Enterprise.
31
+
- ome_device_local_access_configuration - Issue(215035) - The module reports ``Successfully updated the local access setting`` if an unsupported value is provided for the parameter timeout_limit. However, this value is not actually applied on OpenManage Enterprise Modular.
32
+
- ome_device_local_access_configuration - Issue(217865) - The module does not display a proper error message if an unsupported value is provided for the user_defined and lcd_language parameters.
33
+
- ome_device_network_services - Issue(212681) - The module does not provide a proper error message if unsupported values are provided for the parameters- port_number, community_name, max_sessions, max_auth_retries, and idle_timeout.
34
+
- ome_device_power_settings - Issue(212679) - The module displays the following message if the value provided for the parameter ``power_cap`` is not within the supported range of 0 to 32767, ``Unable to complete the request because PowerCap does not exist or is not applicable for the resource URI.``
35
+
- ome_device_quick_deploy - Issue(216352) - The module does not display a proper error message if an unsupported value is provided for the ipv6_prefix_length and vlan_id parameters.
36
+
- ome_smart_fabric_uplink - Issue(186024) - The module does not allow the creation of multiple uplinks of the same name even though it is supported by OpenManage Enterprise Modular. If an uplink is created using the same name as an existing uplink, the existing uplink is modified.
``application`` is applicable for OpenManage Enterprise Modular to export the application log bundle.
58
58
59
-
``support_assist_collection`` is applicable for one or more devices to export SupportAssist logs.
59
+
``support_assist_collection`` and ``supportassist_collection`` is applicable for one or more devices to export SupportAssist logs.
60
60
61
-
``support_assist_collection`` supports both OpenManage Enterprise and OpenManage Enterprise Modular.
61
+
``support_assist_collection`` and ``supportassist_collection`` supports both OpenManage Enterprise and OpenManage Enterprise Modular.
62
62
63
-
``support_assist_collection`` does not support export of ``OS_LOGS`` from OpenManage Enterprise. If tried to export, the tasks will complete with errors, and the module fails.
63
+
``support_assist_collection`` and ``supportassist_collection`` does not support export of ``OS_LOGS`` from OpenManage Enterprise. If tried to export, the tasks will complete with errors, and the module fails.
64
64
65
65
66
66
mask_sensitive_info (optional, bool, False)
@@ -70,15 +70,17 @@ Parameters
70
70
71
71
72
72
log_selectors (optional, list, None)
73
-
By default, the SupportAssist logs contains only hardware logs. To collect additional logs such as OS logsor RAID logs, specify these option in the choices list.
73
+
By default, the SupportAssist logs contain only hardware logs. To collect additional logs such as OS logs, RAID logs or Debug logs, specify the log types to be collected in the choices list.
74
74
75
-
If not provided the default hardware log will be exported.
75
+
If the log types are not specified, only the hardware logs are exported.
76
76
77
77
``OS_LOGS`` to collect OS Logs.
78
78
79
79
``RAID_LOGS`` to collect RAID controller logs.
80
80
81
-
This option is applicable only for ``support_assist_collection`` of *log_type*.
81
+
``DEBUG_LOGS`` to collect Debug logs.
82
+
83
+
This option is applicable only for ``support_assist_collection`` and ``supportassist_collection`` of *log_type*.
Copy file name to clipboardexpand all lines: docs/modules/redfish_storage_volume.rst
+2-1
Original file line number
Diff line number
Diff line change
@@ -169,7 +169,8 @@ Notes
169
169
170
170
.. note::
171
171
- Run this module from a system that has direct access to Redfish APIs.
172
-
- This module does not support ``check_mode``.
172
+
- This module supports ``check_mode``.
173
+
- This module always reports changes when *name* and *volume_id* are not specified. Either *name* or *volume_id* is required to support ``check_mode``.
0 commit comments