clc.queue
index
/Users//clc_git/src/clc/queue.py

Queue related functions.
 
These queue related functions generally align one-for-one with published API calls categorized in the queue category
 
API v1 - https://t3n.zendesk.com/forums/20201591-Queue
API v2 - https://t3n.zendesk.com/forums/21772620-Queue

 
Modules
       
clc

 
Classes
       
Queue

 
class Queue
     Static methods defined here:
GetStatus(request_id, silent=False)
Gets the status of the specified Blueprint deployment.
 
https://t3n.zendesk.com/entries/20345638-Get-Request-Status
 
:param request_id: the Request ID returned by any of the operations which Queues an async request to perform any given task
:param silent: optionally disable all status messages when run in CLI mode
List(type='All')
List of Queued requests and their current status details.
 
https://t3n.zendesk.com/entries/20350251-List-Queue-Requests
 
:param type: list items in the queue filtered by status (All, Pending, Complete, Error)

Data and other attributes defined here:
item_status_type_map = {'All': 1, 'Complete': 3, 'Error': 4, 'Pending': 2}