Start of change

REMOVE_DEVICE_LOCKING_POLICY procedure

The REMOVE_DEVICE_LOCKING_POLICY procedure removes an NVMe device from the password policy.

If the specified device is under the locking policy, the password will be removed from the device and the device will no longer be under the locking policy. If the device isn’t under the locking policy, the password will be used to remove the password from the device.

Authorization: The caller must have *IOSYSCFG and *SERVICE special authorities.

Read syntax diagramSkip visual syntax diagram REMOVE_DEVICE_LOCKING_POLICY ( POLICY_PASSWORD =>  policy-password , RESOURCE_NAME =>  resource-name )

The schema is QSYS2.

policy-password
A character string that contains the policy password.
resource-name
A character string that contains the resource name of the device to be removed from the locking policy.

Example

  • Remove a device from the locking policy.
    
    CALL QSYS2.REMOVE_DEVICE_LOCKING_POLICY(POLICY_PASSWORD => 'My0dev9pw!',
                                            RESOURCE_NAME   => 'UNIT2'); 
End of change