type property

String? type
getter/setter pair

The type of Cloud Dataflow job. Possible string values are:

  • "JOB_TYPE_UNKNOWN" : The type of the job is unspecified, or unknown.
  • "JOB_TYPE_BATCH" : A batch job with a well-defined end point: data is read, data is processed, data is written, and the job is done.
  • "JOB_TYPE_STREAMING" : A continuously streaming job with no end: data is read, processed, and written continuously.

Implementation

core.String? type;