Google App Engine Java Documentation Help

API Reference

Source: https://web.archive.org/web/20160424225301/https://cloud.google.com/appengine/docs/java/taskqueue/rest/

This API reference is organized by resource type. Each resource type has one or more data representations and one or more methods.

Resource types

  1. Taskqueues

  2. Tasks

Taskqueues

For Taskqueues Resource details, see the resource representation page.

Method

HTTP request

Description

URIs relative to https://www.googleapis.com/taskqueue/v1beta2/projects, unless otherwise noted

get

GET  //taskqueues/

Get detailed information about a TaskQueue.

Tasks

For Tasks Resource details, see the resource representation page.

Method

HTTP request

Description

URIs relative to https://www.googleapis.com/taskqueue/v1beta2/projects, unless otherwise noted

delete

DELETE  //taskqueues//tasks/

Deletes a task from a TaskQueue.

get

GET  //taskqueues//tasks/

Gets the named task in a TaskQueue.

insert

POST  //taskqueues//tasks

Insert a task into an existing queue.

lease

POST  //taskqueues//tasks/lease

Acquires a lease on the topmost N unowned tasks in the specified queue. Required query parameters: leaseSecs, numTasks

list

GET  //taskqueues//tasks

Lists all non-deleted Tasks in a TaskQueue, whether or not they are currently leased, up to a maximum of 100.

patch

PATCH  //taskqueues//tasks/

Update tasks that are leased out of a TaskQueue. Required query parameters: newLeaseSeconds

update

POST  //taskqueues//tasks/

Update the duration of a task lease. Required query parameters: newLeaseSeconds

10 April 2024