Skip to main content

transfer_logs

Creates, updates, deletes, gets or lists a transfer_logs resource.

Overview

Nametransfer_logs
TypeResource
Idgoogle.bigquerydatatransfer.transfer_logs

Fields

NameDatatypeDescription
messageTextstringMessage text.
messageTimestringTime when message was logged.
severitystringMessage severity.

Methods

NameAccessible byRequired ParamsDescription
projects_locations_transfer_configs_runs_transfer_logs_listSELECTlocationsId, projectsId, runsId, transferConfigsIdReturns log messages for the transfer run.
projects_transfer_configs_runs_transfer_logs_listSELECTprojectsId, runsId, transferConfigsIdReturns log messages for the transfer run.

SELECT examples

Returns log messages for the transfer run.

SELECT
messageText,
messageTime,
severity
FROM google.bigquerydatatransfer.transfer_logs
WHERE projectsId = '{{ projectsId }}'
AND runsId = '{{ runsId }}'
AND transferConfigsId = '{{ transferConfigsId }}';