Full name: projects.locations.transferConfigs.startManualRuns
Start manual transfer runs to be executed now with scheduleTime equal to current time. The transfer runs can be created for a time range where the runTime is between startTime (inclusive) and endTime (exclusive), or for a specific runTime.
HTTP request
POST https://bigquerydatatransfer.googleapis.com/v1/{parent=projects/*/locations/*/transferConfigs/*}:startManualRuns
Required. Transfer configuration name in the form: projects/{projectId}/transferConfigs/{configId} or projects/{projectId}/locations/{locationId}/transferConfigs/{configId}.
Authorization requires the following IAM permission on the specified resource parent:
bigquery.transfers.update
Request body
The request body contains data with the following structure:
JSON representation
{// Union field time can be only one of the following:"requestedTimeRange": {object (TimeRange)},"requestedRunTime": string// End of list of possible types for union field time.}
Fields
Union field time. The requested time specification - this can be a time range or a specific run_time. time can be only one of the following:
A time_range start and end timestamp for historical data files or reports that are scheduled to be transferred by the scheduled transfer run. requestedTimeRange must be a past time and cannot include future time values.
A runTime timestamp for historical data files or reports that are scheduled to be transferred by the scheduled transfer run. requestedRunTime must be a past time and cannot include future time values.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-25 UTC."],[[["This webpage details how to initiate manual transfer runs for data transfer configurations, allowing for immediate execution with the current time as the schedule time."],["The `POST` request to `https://bigquerydatatransfer.googleapis.com/v1/{parent=projects/*/locations/*/transferConfigs/*}:startManualRuns` is used to trigger these manual runs, with the `parent` parameter required in the URL path."],["The request body supports specifying either a time range (`requestedTimeRange`) or a specific run time (`requestedRunTime`) for the historical data to be transferred, which must be in the past."],["Authorization to perform this action requires the `bigquery.transfers.update` IAM permission on the parent resource and the `https://www.googleapis.com/auth/cloud-platform` OAuth scope."],["A successful request returns a `StartManualTransferRunsResponse` instance in the response body."]]],[]]