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 HttpTargetHttpMethod : Enum<HttpTargetHttpMethod> , ConvertibleToJava<HttpTargetHttpMethod>

The HTTP method to use for the request. When specified, it overrides HttpRequest for the task. Note that if the value is set to HttpMethod the HttpRequest of the task will be ignored at execution time.

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

Immutable. The type of a queue (push or pull). Queue.type is an immutable property of the queue that is set at the queue creation time. When left unspecified, the default value of PUSH is selected.

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.

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

Scheme override. When specified, the task URI scheme is replaced by the provided value (HTTP or HTTPS).

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

URI Override Enforce Mode When specified, determines the Target UriOverride mode. If not specified, it defaults to ALWAYS.