@@ -582,6 +582,33 @@ def source_column_match(self, value: Optional[SourceColumnMatch]):
582582 )
583583 self ._set_sub_prop ("sourceColumnMatch" , value .value if value else None )
584584
585+ @property
586+ def date_format (self ) -> Optional [str ]:
587+ """Optional[str]: Date format used for parsing DATE values.
588+
589+ See:
590+ https://cloud.google.com/bigquery/docs/reference/rest/v2/Job#JobConfigurationLoad.FIELDS.date_format
591+ """
592+ return self ._get_sub_prop ("dateFormat" )
593+
594+ @date_format .setter
595+ def date_format (self , value : Optional [str ]):
596+ self ._set_sub_prop ("dateFormat" , value )
597+
598+ @property
599+ def time_zone (self ) -> Optional [str ]:
600+ """Optional[str]: Default time zone that will apply when parsing timestamp
601+ values that have no specific time zone.
602+
603+ See:
604+ https://cloud.google.com/bigquery/docs/reference/rest/v2/Job#JobConfigurationLoad.FIELDS.time_zone
605+ """
606+ return self ._get_sub_prop ("timeZone" )
607+
608+ @time_zone .setter
609+ def time_zone (self , value : Optional [str ]):
610+ self ._set_sub_prop ("timeZone" , value )
611+
585612 @property
586613 def time_partitioning (self ):
587614 """Optional[google.cloud.bigquery.table.TimePartitioning]: Specifies time-based
@@ -930,6 +957,20 @@ def source_column_match(self):
930957 """
931958 return self .configuration .source_column_match
932959
960+ @property
961+ def date_format (self ):
962+ """See
963+ :attr:`google.cloud.bigquery.job.LoadJobConfig.date_format`.
964+ """
965+ return self .configuration .date_format
966+
967+ @property
968+ def time_zone (self ):
969+ """See
970+ :attr:`google.cloud.bigquery.job.LoadJobConfig.time_zone`.
971+ """
972+ return self .configuration .time_zone
973+
933974 @property
934975 def schema_update_options (self ):
935976 """See
0 commit comments