1
今日の仕事を返すjobs.list()の理由は何ですか?変数tを出力すると、今日実行されたジョブだけが提供されます。 90日という、もっと歴史を得るためにはどうしたらよいですか?Google bigquery apiに過去のジョブが表示されない
credentials = GoogleCredentials.get_application_default()
# Construct the service object for interacting with the BigQuery API.
bigquery_service = build('bigquery', 'v2', credentials=credentials)
t=bigquery_service.jobs().list(projectId=project_id,allUsers=True,
projection='full',stateFilter=job_state.lower()).execute()
これは機能しました。ありがとうございました –