jobCreationMode property

String? jobCreationMode
getter/setter pair

If not set, jobs are always required.

If set, the query request will follow the behavior described JobCreationMode. This feature is not yet available. Jobs will always be created.

Optional. Possible string values are:

  • "JOB_CREATION_MODE_UNSPECIFIED" : If unspecified JOB_CREATION_REQUIRED is the default.
  • "JOB_CREATION_REQUIRED" : Default. Job creation is always required.
  • "JOB_CREATION_OPTIONAL" : Job creation is optional. Returning immediate results is prioritized. BigQuery will automatically determine if a Job needs to be created. The conditions under which BigQuery can decide to not create a Job are subject to change. If Job creation is required, JOB_CREATION_REQUIRED mode should be used, which is the default.

Implementation

core.String? jobCreationMode;