Updated generated docs
diff --git a/docs/dyn/taskqueue.v1beta1.taskqueues.html b/docs/dyn/taskqueue.v1beta1.taskqueues.html
index 4b40bc1..acedcd7 100644
--- a/docs/dyn/taskqueue.v1beta1.taskqueues.html
+++ b/docs/dyn/taskqueue.v1beta1.taskqueues.html
@@ -19,7 +19,33 @@
Args:<br>
taskqueue: string, The id of the taskqueue to get the properties of. (required)<br>
project: string, The project under which the queue lies. (required)<br>
- getStats: boolean, Whether to get stats. Optional.</tt></dd></dl>
+ getStats: boolean, Whether to get stats. Optional.<br>
+ <br>
+Returns:<br>
+ An object of the form<br>
+ <br>
+ {<br>
+ "kind": "taskqueues#taskqueue", # The kind of REST object returned, in this case taskqueue.<br>
+ "stats": { # Statistics for the TaskQueue object in question.<br>
+ "oldestTask": "A String", # The timestamp (in seconds since the epoch) of the oldest unfinished task.<br>
+ "leasedLastMinute": "A String", # Number of tasks leased in the last minute.<br>
+ "totalTasks": 42, # Number of tasks in the queue.<br>
+ "leasedLastHour": "A String", # Number of tasks leased in the last hour.<br>
+ },<br>
+ "id": "A String", # Name of the taskqueue.<br>
+ "maxLeases": 42, # The number of times we should lease out tasks before giving up on them. If unset we lease them out forever until a worker deletes the task.<br>
+ "acl": { # ACLs that are applicable to this TaskQueue object.<br>
+ "consumerEmails": [ # Email addresses of users who can "consume" tasks from the TaskQueue. This means they can Dequeue and Delete tasks from the queue.<br>
+ "A String",<br>
+ ],<br>
+ "producerEmails": [ # Email addresses of users who can "produce" tasks into the TaskQueue. This means they can Insert tasks into the queue.<br>
+ "A String",<br>
+ ],<br>
+ "adminEmails": [ # Email addresses of users who are "admins" of the TaskQueue. This means they can control the queue, eg set ACLs for the queue.<br>
+ "A String",<br>
+ ],<br>
+ },<br>
+ }</tt></dd></dl>
<hr>
Data descriptors defined here:<br>