view property

String? view
getter/setter pair

The view specifies which subset of the Task has been returned.

Output only. Possible string values are:

  • "VIEW_UNSPECIFIED" : Unspecified. Defaults to BASIC.
  • "BASIC" : The basic view omits fields which can be large or can contain sensitive data. This view does not include the body in AppEngineHttpRequest. Bodies are desirable to return only when needed, because they can be large and because of the sensitivity of the data that you choose to store in it.
  • "FULL" : All information is returned. Authorization for FULL requires cloudtasks.tasks.fullView Google IAM permission on the Queue resource.

Implementation

core.String? view;