createDefaultTableIfNotExists property

  1. @TagNumber(3)
bool createDefaultTableIfNotExists

If true, App Platform will create the BigQuery DataSet and the BigQuery Table with default schema if the specified table doesn't exist. This doesn't work if any cloud function customized schema is specified since the system doesn't know your desired schema. JSON column will be used in the default table created by App Platform.

Implementation

@$pb.TagNumber(3)
$core.bool get createDefaultTableIfNotExists => $_getBF(2);
  1. @TagNumber(3)
void createDefaultTableIfNotExists=(bool v)

Implementation

@$pb.TagNumber(3)
set createDefaultTableIfNotExists($core.bool v) { $_setBool(2, v); }