New features added to the "GCBigQueryFileProcess" method:
ClusterFields (Text, Optional, Default: Empty = No clustered index): Allow to specify a comma-separated list of the fields to compose the clustered index.
PartitionField (Text, Optional, Default: Empty = No partition): Allow to specify a field to partition the table.
WriteFlag (Integer, Optional, Default: 0 - Append): Allow to change the write method (APPEND X TRUNCATE). If 0 or unset, the default is Append. If 1, it will truncate the table if it exists before adding the new JSON data.
AllowSchemaUpdate (Boolean, Optional, Default: True): Allow the schema to automatically update if the JSON receive new fields. If set to False, the schema won't update and if a new field is added, Google will return an error (Version 1.0.0 behavior).