Traditional Work Queue REST Endpoints

Traditional Work Queue
The Traditional Work Queue is a type of work queue that uses a number of worker threads that watch a queue and pick up an operation to process whenever one becomes available. The traditional work queue is a FIFO queue serviced by a fixed number of worker threads. This fixed number of threads can be changed on the fly, with the change taking effect as soon as it is made. You can limit the size of the work queue to a specified number of operations. When this many operations are in the queue, waiting to be picked up by threads, any new requests are rejected with an error message.
Add, Search, Compare or Delete Traditional Work Queue
Method: post
Path: /rest/v1/admin
Delete a Traditional Work Queue by DN
Method: delete
Path: /rest/v1/admin/{dn}
Find Traditional Work Queue by DN
Method: get
Path: /rest/v1/admin/{dn}
Modify a Traditional Work Queue by DN
Method: patch
Path: /rest/v1/admin/{dn}