Start of change

ADD_DEVICE_LOCKING_POLICY procedure

The ADD_DEVICE_LOCKING_POLICY procedure adds a specific NVMe device, or all eligible NVMe devices, to the password policy.

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

Read syntax diagramSkip visual syntax diagram ADD_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. It must be at least 8 characters long and cannot exceed 32 characters.
resource-name
A character string that contains the resource name of the NVMe device to be added to the locking policy.
The following special value can be specified:
*ALL
All NVMe devices that have a namespace configured are added to the locking policy.

Example

  • Add a new device to the locking policy.
    
    CALL QSYS2.ADD_DEVICE_LOCKING_POLICY(POLICY_PASSWORD => 'My0dev9pw!',
                                         RESOURCE_NAME   => 'UNIT2'); 
End of change