Package-level declarations

Types

Link copied to clipboard
enum AppEngineHttpRequestHttpMethod : Enum<AppEngineHttpRequestHttpMethod> , ConvertibleToJava<AppEngineHttpRequestHttpMethod>

The HTTP method to use for the request. The default is POST. The app's request handler for the task's target URL must be able to handle HTTP requests with this http_method, otherwise the task attempt fails with error code 405 (Method Not Allowed). See Writing a push task request handler and the App Engine documentation for your runtime on How Requests are Handled.

Link copied to clipboard
enum HttpRequestHttpMethod : Enum<HttpRequestHttpMethod> , ConvertibleToJava<HttpRequestHttpMethod>

The HTTP method to use for the request. The default is POST.

Link copied to clipboard
enum TaskResponseView : Enum<TaskResponseView> , ConvertibleToJava<TaskResponseView>

The response_view specifies which subset of the Task will be returned. By default response_view is BASIC; not all information is retrieved by default because some data, such as payloads, might be desirable to return only when needed because of its large size or because of the sensitivity of data that it contains. Authorization for FULL requires cloudtasks.tasks.fullView Google IAM permission on the Task resource.