"description":"Selector specifying which fields to include in a partial response.",
"location":"query"
},
"key":{
"type":"string",
"description":"API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.",
"location":"query"
},
"oauth_token":{
"type":"string",
"description":"OAuth 2.0 token for the current user.",
"location":"query"
},
"prettyPrint":{
"type":"boolean",
"description":"Returns response with indentations and line breaks.",
"default":"true",
"location":"query"
},
"quotaUser":{
"type":"string",
"description":"Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.",
"location":"query"
},
"userIp":{
"type":"string",
"description":"IP address of the site where the request originates. Use this if you want to enforce per-user limits.",
"description":"Consume Tasks from your Taskqueues"
}
}
}
},
"schemas":{
"Task":{
"id":"Task",
"type":"object",
"properties":{
"enqueueTimestamp":{
"type":"string",
"description":"Time (in seconds since the epoch) at which the task was enqueued.",
"format":"int64"
},
"id":{
"type":"string",
"description":"Name of the task."
},
"kind":{
"type":"string",
"description":"The kind of object returned, in this case set to task.",
"default":"taskqueues#task"
},
"leaseTimestamp":{
"type":"string",
"description":"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.",
"format":"int64"
},
"payloadBase64":{
"type":"string",
"description":"A bag of bytes which is the task payload. The payload on the JSON side is always Base64 encoded."
},
"queueName":{
"type":"string",
"description":"Name of the queue that the task is in."
}
}
},
"TaskQueue":{
"id":"TaskQueue",
"type":"object",
"properties":{
"acl":{
"type":"object",
"description":"ACLs that are applicable to this TaskQueue object.",
"properties":{
"adminEmails":{
"type":"array",
"description":"Email addresses of users who are \"admins\" of the TaskQueue. This means they can control the queue, eg set ACLs for the queue.",
"items":{
"type":"string"
}
},
"consumerEmails":{
"type":"array",
"description":"Email addresses of users who can \"consume\" tasks from the TaskQueue. This means they can Dequeue and Delete tasks from the queue.",
"items":{
"type":"string"
}
},
"producerEmails":{
"type":"array",
"description":"Email addresses of users who can \"produce\" tasks into the TaskQueue. This means they can Insert tasks into the queue.",
"items":{
"type":"string"
}
}
}
},
"id":{
"type":"string",
"description":"Name of the taskqueue."
},
"kind":{
"type":"string",
"description":"The kind of REST object returned, in this case taskqueue.",
"default":"taskqueues#taskqueue"
},
"maxLeases":{
"type":"integer",
"description":"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.",
"format":"int32"
},
"stats":{
"type":"object",
"description":"Statistics for the TaskQueue object in question.",
"properties":{
"leasedLastHour":{
"type":"string",
"description":"Number of tasks leased in the last hour.",
"format":"int64"
},
"leasedLastMinute":{
"type":"string",
"description":"Number of tasks leased in the last minute.",
"format":"int64"
},
"oldestTask":{
"type":"string",
"description":"The timestamp (in seconds since the epoch) of the oldest unfinished task.",
"format":"int64"
},
"totalTasks":{
"type":"integer",
"description":"Number of tasks in the queue.",
"format":"int32"
}
}
}
}
},
"Tasks":{
"id":"Tasks",
"type":"object",
"properties":{
"items":{
"type":"array",
"description":"The actual list of tasks returned as a result of the lease operation.",
"items":{
"$ref":"Task"
}
},
"kind":{
"type":"string",
"description":"The kind of object returned, a list of tasks.",
"default":"taskqueue#tasks"
}
}
},
"Tasks2":{
"id":"Tasks2",
"type":"object",
"properties":{
"items":{
"type":"array",
"description":"The actual list of tasks currently active in the TaskQueue.",
"items":{
"$ref":"Task"
}
},
"kind":{
"type":"string",
"description":"The kind of object returned, a list of tasks.",
"default":"taskqueues#tasks"
}
}
}
},
"resources":{
"taskqueues":{
"methods":{
"get":{
"id":"taskqueue.taskqueues.get",
"path":"{project}/taskqueues/{taskqueue}",
"httpMethod":"GET",
"description":"Get detailed information about a TaskQueue.",
"parameters":{
"getStats":{
"type":"boolean",
"description":"Whether to get stats. Optional.",
"location":"query"
},
"project":{
"type":"string",
"description":"The project under which the queue lies.",
"required":true,
"location":"path"
},
"taskqueue":{
"type":"string",
"description":"The id of the taskqueue to get the properties of.",