File tree Expand file tree Collapse file tree 1 file changed +0
-24
lines changed
google/cloud/bigquery/job Expand file tree Collapse file tree 1 file changed +0
-24
lines changed Original file line number Diff line number Diff line change @@ -856,30 +856,6 @@ def configuration(self) -> QueryJobConfig:
856856 """The configuration for this query job."""
857857 return typing .cast (QueryJobConfig , super ().configuration )
858858
859- @property
860- def created (self ):
861- """Datetime at which the job was created."""
862- millis = _helpers ._int_or_none (self ._job_statistics ().get ("creationTime" ))
863- if millis is not None :
864- return _helpers ._datetime_from_microseconds (millis * 1000 )
865- return super ().created
866-
867- @property
868- def started (self ):
869- """Datetime at which the job was started."""
870- millis = _helpers ._int_or_none (self ._job_statistics ().get ("startTime" ))
871- if millis is not None :
872- return _helpers ._datetime_from_microseconds (millis * 1000 )
873- return super ().started
874-
875- @property
876- def ended (self ):
877- """Datetime at which the job finished."""
878- millis = _helpers ._int_or_none (self ._job_statistics ().get ("endTime" ))
879- if millis is not None :
880- return _helpers ._datetime_from_microseconds (millis * 1000 )
881- return super ().ended
882-
883859 @property
884860 def connection_properties (self ) -> List [ConnectionProperty ]:
885861 """See
You can’t perform that action at this time.
0 commit comments