Updated generated docs
diff --git a/docs/dyn/taskqueue.v1beta1.tasks.html b/docs/dyn/taskqueue.v1beta1.tasks.html
index fcd7a8b..3aea7f4 100644
--- a/docs/dyn/taskqueue.v1beta1.tasks.html
+++ b/docs/dyn/taskqueue.v1beta1.tasks.html
@@ -26,7 +26,19 @@
Args:<br>
task: string, The task to get properties of. (required)<br>
taskqueue: string, The taskqueue in which the task belongs. (required)<br>
- project: string, The project under which the queue lies. (required)</tt></dd></dl>
+ project: string, The project under which the queue lies. (required)<br>
+ <br>
+Returns:<br>
+ An object of the form<br>
+ <br>
+ {<br>
+ "kind": "taskqueues#task", # The kind of object returned, in this case set to task.<br>
+ "leaseTimestamp": "A String", # Time (in seconds since the epoch) at which the task lease will expire. This value is 0 if the task isnt currently leased out to a worker.<br>
+ "id": "A String", # Name of the task.<br>
+ "payloadBase64": "A String", # A bag of bytes which is the task payload. The payload on the JSON side is always Base64 encoded.<br>
+ "queueName": "A String", # Name of the queue that the task is in.<br>
+ "enqueueTimestamp": "A String", # Time (in seconds since the epoch) at which the task was enqueued.<br>
+ }</tt></dd></dl>
<dl><dt><a name="Resource-lease"><strong>lease</strong></a> = method(self, **kwargs)</dt><dd><tt>Lease 1 or more tasks from a TaskQueue.<br>
<br>
@@ -35,13 +47,47 @@
leaseSecs: integer, The lease in seconds. (required)<br>
taskqueue: string, The taskqueue to lease a task from. (required)<br>
project: string, The project under which the queue lies. (required)<br>
- numTasks: integer, The number of tasks to lease. (required)</tt></dd></dl>
+ numTasks: integer, The number of tasks to lease. (required)<br>
+ <br>
+Returns:<br>
+ An object of the form<br>
+ <br>
+ {<br>
+ "items": [ # The actual list of tasks returned as a result of the lease operation.<br>
+ {<br>
+ "kind": "taskqueues#task", # The kind of object returned, in this case set to task.<br>
+ "leaseTimestamp": "A String", # Time (in seconds since the epoch) at which the task lease will expire. This value is 0 if the task isnt currently leased out to a worker.<br>
+ "id": "A String", # Name of the task.<br>
+ "payloadBase64": "A String", # A bag of bytes which is the task payload. The payload on the JSON side is always Base64 encoded.<br>
+ "queueName": "A String", # Name of the queue that the task is in.<br>
+ "enqueueTimestamp": "A String", # Time (in seconds since the epoch) at which the task was enqueued.<br>
+ },<br>
+ ],<br>
+ "kind": "taskqueue#tasks", # The kind of object returned, a list of tasks.<br>
+ }</tt></dd></dl>
<dl><dt><a name="Resource-list"><strong>list</strong></a> = method(self, **kwargs)</dt><dd><tt>List Tasks in a TaskQueue<br>
<br>
Args:<br>
taskqueue: string, The id of the taskqueue to list tasks from. (required)<br>
- project: string, The project under which the queue lies. (required)</tt></dd></dl>
+ project: string, The project under which the queue lies. (required)<br>
+ <br>
+Returns:<br>
+ An object of the form<br>
+ <br>
+ {<br>
+ "items": [ # The actual list of tasks currently active in the TaskQueue.<br>
+ {<br>
+ "kind": "taskqueues#task", # The kind of object returned, in this case set to task.<br>
+ "leaseTimestamp": "A String", # Time (in seconds since the epoch) at which the task lease will expire. This value is 0 if the task isnt currently leased out to a worker.<br>
+ "id": "A String", # Name of the task.<br>
+ "payloadBase64": "A String", # A bag of bytes which is the task payload. The payload on the JSON side is always Base64 encoded.<br>
+ "queueName": "A String", # Name of the queue that the task is in.<br>
+ "enqueueTimestamp": "A String", # Time (in seconds since the epoch) at which the task was enqueued.<br>
+ },<br>
+ ],<br>
+ "kind": "taskqueues#tasks", # The kind of object returned, a list of tasks.<br>
+ }</tt></dd></dl>
<hr>
Data descriptors defined here:<br>