datatransfer.proto 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876
  1. // Copyright 2022 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.cloud.bigquery.datatransfer.v1;
  16. import "google/api/annotations.proto";
  17. import "google/api/client.proto";
  18. import "google/api/field_behavior.proto";
  19. import "google/api/resource.proto";
  20. import "google/cloud/bigquery/datatransfer/v1/transfer.proto";
  21. import "google/protobuf/duration.proto";
  22. import "google/protobuf/empty.proto";
  23. import "google/protobuf/field_mask.proto";
  24. import "google/protobuf/timestamp.proto";
  25. import "google/protobuf/wrappers.proto";
  26. option csharp_namespace = "Google.Cloud.BigQuery.DataTransfer.V1";
  27. option go_package = "google.golang.org/genproto/googleapis/cloud/bigquery/datatransfer/v1;datatransfer";
  28. option java_multiple_files = true;
  29. option java_outer_classname = "DataTransferProto";
  30. option java_package = "com.google.cloud.bigquery.datatransfer.v1";
  31. option php_namespace = "Google\\Cloud\\BigQuery\\DataTransfer\\V1";
  32. option ruby_package = "Google::Cloud::Bigquery::DataTransfer::V1";
  33. // This API allows users to manage their data transfers into BigQuery.
  34. service DataTransferService {
  35. option (google.api.default_host) = "bigquerydatatransfer.googleapis.com";
  36. option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
  37. // Retrieves a supported data source and returns its settings.
  38. rpc GetDataSource(GetDataSourceRequest) returns (DataSource) {
  39. option (google.api.http) = {
  40. get: "/v1/{name=projects/*/locations/*/dataSources/*}"
  41. additional_bindings {
  42. get: "/v1/{name=projects/*/dataSources/*}"
  43. }
  44. };
  45. option (google.api.method_signature) = "name";
  46. }
  47. // Lists supported data sources and returns their settings.
  48. rpc ListDataSources(ListDataSourcesRequest) returns (ListDataSourcesResponse) {
  49. option (google.api.http) = {
  50. get: "/v1/{parent=projects/*/locations/*}/dataSources"
  51. additional_bindings {
  52. get: "/v1/{parent=projects/*}/dataSources"
  53. }
  54. };
  55. option (google.api.method_signature) = "parent";
  56. }
  57. // Creates a new data transfer configuration.
  58. rpc CreateTransferConfig(CreateTransferConfigRequest) returns (TransferConfig) {
  59. option (google.api.http) = {
  60. post: "/v1/{parent=projects/*/locations/*}/transferConfigs"
  61. body: "transfer_config"
  62. additional_bindings {
  63. post: "/v1/{parent=projects/*}/transferConfigs"
  64. body: "transfer_config"
  65. }
  66. };
  67. option (google.api.method_signature) = "parent,transfer_config";
  68. }
  69. // Updates a data transfer configuration.
  70. // All fields must be set, even if they are not updated.
  71. rpc UpdateTransferConfig(UpdateTransferConfigRequest) returns (TransferConfig) {
  72. option (google.api.http) = {
  73. patch: "/v1/{transfer_config.name=projects/*/locations/*/transferConfigs/*}"
  74. body: "transfer_config"
  75. additional_bindings {
  76. patch: "/v1/{transfer_config.name=projects/*/transferConfigs/*}"
  77. body: "transfer_config"
  78. }
  79. };
  80. option (google.api.method_signature) = "transfer_config,update_mask";
  81. }
  82. // Deletes a data transfer configuration, including any associated transfer
  83. // runs and logs.
  84. rpc DeleteTransferConfig(DeleteTransferConfigRequest) returns (google.protobuf.Empty) {
  85. option (google.api.http) = {
  86. delete: "/v1/{name=projects/*/locations/*/transferConfigs/*}"
  87. additional_bindings {
  88. delete: "/v1/{name=projects/*/transferConfigs/*}"
  89. }
  90. };
  91. option (google.api.method_signature) = "name";
  92. }
  93. // Returns information about a data transfer config.
  94. rpc GetTransferConfig(GetTransferConfigRequest) returns (TransferConfig) {
  95. option (google.api.http) = {
  96. get: "/v1/{name=projects/*/locations/*/transferConfigs/*}"
  97. additional_bindings {
  98. get: "/v1/{name=projects/*/transferConfigs/*}"
  99. }
  100. };
  101. option (google.api.method_signature) = "name";
  102. }
  103. // Returns information about all transfer configs owned by a project in the
  104. // specified location.
  105. rpc ListTransferConfigs(ListTransferConfigsRequest) returns (ListTransferConfigsResponse) {
  106. option (google.api.http) = {
  107. get: "/v1/{parent=projects/*/locations/*}/transferConfigs"
  108. additional_bindings {
  109. get: "/v1/{parent=projects/*}/transferConfigs"
  110. }
  111. };
  112. option (google.api.method_signature) = "parent";
  113. }
  114. // Creates transfer runs for a time range [start_time, end_time].
  115. // For each date - or whatever granularity the data source supports - in the
  116. // range, one transfer run is created.
  117. // Note that runs are created per UTC time in the time range.
  118. // DEPRECATED: use StartManualTransferRuns instead.
  119. rpc ScheduleTransferRuns(ScheduleTransferRunsRequest) returns (ScheduleTransferRunsResponse) {
  120. option deprecated = true;
  121. option (google.api.http) = {
  122. post: "/v1/{parent=projects/*/locations/*/transferConfigs/*}:scheduleRuns"
  123. body: "*"
  124. additional_bindings {
  125. post: "/v1/{parent=projects/*/transferConfigs/*}:scheduleRuns"
  126. body: "*"
  127. }
  128. };
  129. option (google.api.method_signature) = "parent,start_time,end_time";
  130. }
  131. // Start manual transfer runs to be executed now with schedule_time equal to
  132. // current time. The transfer runs can be created for a time range where the
  133. // run_time is between start_time (inclusive) and end_time (exclusive), or for
  134. // a specific run_time.
  135. rpc StartManualTransferRuns(StartManualTransferRunsRequest) returns (StartManualTransferRunsResponse) {
  136. option (google.api.http) = {
  137. post: "/v1/{parent=projects/*/locations/*/transferConfigs/*}:startManualRuns"
  138. body: "*"
  139. additional_bindings {
  140. post: "/v1/{parent=projects/*/transferConfigs/*}:startManualRuns"
  141. body: "*"
  142. }
  143. };
  144. }
  145. // Returns information about the particular transfer run.
  146. rpc GetTransferRun(GetTransferRunRequest) returns (TransferRun) {
  147. option (google.api.http) = {
  148. get: "/v1/{name=projects/*/locations/*/transferConfigs/*/runs/*}"
  149. additional_bindings {
  150. get: "/v1/{name=projects/*/transferConfigs/*/runs/*}"
  151. }
  152. };
  153. option (google.api.method_signature) = "name";
  154. }
  155. // Deletes the specified transfer run.
  156. rpc DeleteTransferRun(DeleteTransferRunRequest) returns (google.protobuf.Empty) {
  157. option (google.api.http) = {
  158. delete: "/v1/{name=projects/*/locations/*/transferConfigs/*/runs/*}"
  159. additional_bindings {
  160. delete: "/v1/{name=projects/*/transferConfigs/*/runs/*}"
  161. }
  162. };
  163. option (google.api.method_signature) = "name";
  164. }
  165. // Returns information about running and completed transfer runs.
  166. rpc ListTransferRuns(ListTransferRunsRequest) returns (ListTransferRunsResponse) {
  167. option (google.api.http) = {
  168. get: "/v1/{parent=projects/*/locations/*/transferConfigs/*}/runs"
  169. additional_bindings {
  170. get: "/v1/{parent=projects/*/transferConfigs/*}/runs"
  171. }
  172. };
  173. option (google.api.method_signature) = "parent";
  174. }
  175. // Returns log messages for the transfer run.
  176. rpc ListTransferLogs(ListTransferLogsRequest) returns (ListTransferLogsResponse) {
  177. option (google.api.http) = {
  178. get: "/v1/{parent=projects/*/locations/*/transferConfigs/*/runs/*}/transferLogs"
  179. additional_bindings {
  180. get: "/v1/{parent=projects/*/transferConfigs/*/runs/*}/transferLogs"
  181. }
  182. };
  183. option (google.api.method_signature) = "parent";
  184. }
  185. // Returns true if valid credentials exist for the given data source and
  186. // requesting user.
  187. rpc CheckValidCreds(CheckValidCredsRequest) returns (CheckValidCredsResponse) {
  188. option (google.api.http) = {
  189. post: "/v1/{name=projects/*/locations/*/dataSources/*}:checkValidCreds"
  190. body: "*"
  191. additional_bindings {
  192. post: "/v1/{name=projects/*/dataSources/*}:checkValidCreds"
  193. body: "*"
  194. }
  195. };
  196. option (google.api.method_signature) = "name";
  197. }
  198. // Enroll data sources in a user project. This allows users to create transfer
  199. // configurations for these data sources. They will also appear in the
  200. // ListDataSources RPC and as such, will appear in the
  201. // [BigQuery UI](https://console.cloud.google.com/bigquery), and the documents
  202. // can be found in the public guide for
  203. // [BigQuery Web UI](https://cloud.google.com/bigquery/bigquery-web-ui) and
  204. // [Data Transfer
  205. // Service](https://cloud.google.com/bigquery/docs/working-with-transfers).
  206. rpc EnrollDataSources(EnrollDataSourcesRequest) returns (google.protobuf.Empty) {
  207. option (google.api.http) = {
  208. post: "/v1/{name=projects/*/locations/*}:enrollDataSources"
  209. body: "*"
  210. additional_bindings {
  211. post: "/v1/{name=projects/*}:enrollDataSources"
  212. body: "*"
  213. }
  214. };
  215. }
  216. }
  217. // A parameter used to define custom fields in a data source definition.
  218. message DataSourceParameter {
  219. // Parameter type.
  220. enum Type {
  221. // Type unspecified.
  222. TYPE_UNSPECIFIED = 0;
  223. // String parameter.
  224. STRING = 1;
  225. // Integer parameter (64-bits).
  226. // Will be serialized to json as string.
  227. INTEGER = 2;
  228. // Double precision floating point parameter.
  229. DOUBLE = 3;
  230. // Boolean parameter.
  231. BOOLEAN = 4;
  232. // Deprecated. This field has no effect.
  233. RECORD = 5;
  234. // Page ID for a Google+ Page.
  235. PLUS_PAGE = 6;
  236. }
  237. // Parameter identifier.
  238. string param_id = 1;
  239. // Parameter display name in the user interface.
  240. string display_name = 2;
  241. // Parameter description.
  242. string description = 3;
  243. // Parameter type.
  244. Type type = 4;
  245. // Is parameter required.
  246. bool required = 5;
  247. // Deprecated. This field has no effect.
  248. bool repeated = 6;
  249. // Regular expression which can be used for parameter validation.
  250. string validation_regex = 7;
  251. // All possible values for the parameter.
  252. repeated string allowed_values = 8;
  253. // For integer and double values specifies minimum allowed value.
  254. google.protobuf.DoubleValue min_value = 9;
  255. // For integer and double values specifies maximum allowed value.
  256. google.protobuf.DoubleValue max_value = 10;
  257. // Deprecated. This field has no effect.
  258. repeated DataSourceParameter fields = 11;
  259. // Description of the requirements for this field, in case the user input does
  260. // not fulfill the regex pattern or min/max values.
  261. string validation_description = 12;
  262. // URL to a help document to further explain the naming requirements.
  263. string validation_help_url = 13;
  264. // Cannot be changed after initial creation.
  265. bool immutable = 14;
  266. // Deprecated. This field has no effect.
  267. bool recurse = 15;
  268. // If true, it should not be used in new transfers, and it should not be
  269. // visible to users.
  270. bool deprecated = 20;
  271. }
  272. // Defines the properties and custom parameters for a data source.
  273. message DataSource {
  274. option (google.api.resource) = {
  275. type: "bigquerydatatransfer.googleapis.com/DataSource"
  276. pattern: "projects/{project}/dataSources/{data_source}"
  277. pattern: "projects/{project}/locations/{location}/dataSources/{data_source}"
  278. };
  279. // The type of authorization needed for this data source.
  280. enum AuthorizationType {
  281. // Type unspecified.
  282. AUTHORIZATION_TYPE_UNSPECIFIED = 0;
  283. // Use OAuth 2 authorization codes that can be exchanged
  284. // for a refresh token on the backend.
  285. AUTHORIZATION_CODE = 1;
  286. // Return an authorization code for a given Google+ page that can then be
  287. // exchanged for a refresh token on the backend.
  288. GOOGLE_PLUS_AUTHORIZATION_CODE = 2;
  289. // Use First Party OAuth.
  290. FIRST_PARTY_OAUTH = 3;
  291. }
  292. // Represents how the data source supports data auto refresh.
  293. enum DataRefreshType {
  294. // The data source won't support data auto refresh, which is default value.
  295. DATA_REFRESH_TYPE_UNSPECIFIED = 0;
  296. // The data source supports data auto refresh, and runs will be scheduled
  297. // for the past few days. Does not allow custom values to be set for each
  298. // transfer config.
  299. SLIDING_WINDOW = 1;
  300. // The data source supports data auto refresh, and runs will be scheduled
  301. // for the past few days. Allows custom values to be set for each transfer
  302. // config.
  303. CUSTOM_SLIDING_WINDOW = 2;
  304. }
  305. // Output only. Data source resource name.
  306. string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
  307. // Data source id.
  308. string data_source_id = 2;
  309. // User friendly data source name.
  310. string display_name = 3;
  311. // User friendly data source description string.
  312. string description = 4;
  313. // Data source client id which should be used to receive refresh token.
  314. string client_id = 5;
  315. // Api auth scopes for which refresh token needs to be obtained. These are
  316. // scopes needed by a data source to prepare data and ingest them into
  317. // BigQuery, e.g., https://www.googleapis.com/auth/bigquery
  318. repeated string scopes = 6;
  319. // Deprecated. This field has no effect.
  320. TransferType transfer_type = 7 [deprecated = true];
  321. // Deprecated. This field has no effect.
  322. bool supports_multiple_transfers = 8 [deprecated = true];
  323. // The number of seconds to wait for an update from the data source
  324. // before the Data Transfer Service marks the transfer as FAILED.
  325. int32 update_deadline_seconds = 9;
  326. // Default data transfer schedule.
  327. // Examples of valid schedules include:
  328. // `1st,3rd monday of month 15:30`,
  329. // `every wed,fri of jan,jun 13:15`, and
  330. // `first sunday of quarter 00:00`.
  331. string default_schedule = 10;
  332. // Specifies whether the data source supports a user defined schedule, or
  333. // operates on the default schedule.
  334. // When set to `true`, user can override default schedule.
  335. bool supports_custom_schedule = 11;
  336. // Data source parameters.
  337. repeated DataSourceParameter parameters = 12;
  338. // Url for the help document for this data source.
  339. string help_url = 13;
  340. // Indicates the type of authorization.
  341. AuthorizationType authorization_type = 14;
  342. // Specifies whether the data source supports automatic data refresh for the
  343. // past few days, and how it's supported.
  344. // For some data sources, data might not be complete until a few days later,
  345. // so it's useful to refresh data automatically.
  346. DataRefreshType data_refresh_type = 15;
  347. // Default data refresh window on days.
  348. // Only meaningful when `data_refresh_type` = `SLIDING_WINDOW`.
  349. int32 default_data_refresh_window_days = 16;
  350. // Disables backfilling and manual run scheduling
  351. // for the data source.
  352. bool manual_runs_disabled = 17;
  353. // The minimum interval for scheduler to schedule runs.
  354. google.protobuf.Duration minimum_schedule_interval = 18;
  355. }
  356. // A request to get data source info.
  357. message GetDataSourceRequest {
  358. // Required. The field will contain name of the resource requested, for example:
  359. // `projects/{project_id}/dataSources/{data_source_id}` or
  360. // `projects/{project_id}/locations/{location_id}/dataSources/{data_source_id}`
  361. string name = 1 [
  362. (google.api.field_behavior) = REQUIRED,
  363. (google.api.resource_reference) = {
  364. type: "bigquerydatatransfer.googleapis.com/DataSource"
  365. }
  366. ];
  367. }
  368. // Request to list supported data sources and their data transfer settings.
  369. message ListDataSourcesRequest {
  370. // Required. The BigQuery project id for which data sources should be returned.
  371. // Must be in the form: `projects/{project_id}` or
  372. // `projects/{project_id}/locations/{location_id}`
  373. string parent = 1 [
  374. (google.api.field_behavior) = REQUIRED,
  375. (google.api.resource_reference) = {
  376. child_type: "bigquerydatatransfer.googleapis.com/DataSource"
  377. }
  378. ];
  379. // Pagination token, which can be used to request a specific page
  380. // of `ListDataSourcesRequest` list results. For multiple-page
  381. // results, `ListDataSourcesResponse` outputs
  382. // a `next_page` token, which can be used as the
  383. // `page_token` value to request the next page of list results.
  384. string page_token = 3;
  385. // Page size. The default page size is the maximum value of 1000 results.
  386. int32 page_size = 4;
  387. }
  388. // Returns list of supported data sources and their metadata.
  389. message ListDataSourcesResponse {
  390. // List of supported data sources and their transfer settings.
  391. repeated DataSource data_sources = 1;
  392. // Output only. The next-pagination token. For multiple-page list results,
  393. // this token can be used as the
  394. // `ListDataSourcesRequest.page_token`
  395. // to request the next page of list results.
  396. string next_page_token = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
  397. }
  398. // A request to create a data transfer configuration. If new credentials are
  399. // needed for this transfer configuration, authorization info must be provided.
  400. // If authorization info is provided, the transfer configuration will be
  401. // associated with the user id corresponding to the authorization info.
  402. // Otherwise, the transfer configuration will be associated with the calling
  403. // user.
  404. message CreateTransferConfigRequest {
  405. // Required. The BigQuery project id where the transfer configuration should be created.
  406. // Must be in the format projects/{project_id}/locations/{location_id} or
  407. // projects/{project_id}. If specified location and location of the
  408. // destination bigquery dataset do not match - the request will fail.
  409. string parent = 1 [
  410. (google.api.field_behavior) = REQUIRED,
  411. (google.api.resource_reference) = {
  412. child_type: "bigquerydatatransfer.googleapis.com/TransferConfig"
  413. }
  414. ];
  415. // Required. Data transfer configuration to create.
  416. TransferConfig transfer_config = 2 [(google.api.field_behavior) = REQUIRED];
  417. // Optional OAuth2 authorization code to use with this transfer configuration.
  418. // This is required only if `transferConfig.dataSourceId` is 'youtube_channel'
  419. // and new credentials are needed, as indicated by `CheckValidCreds`. In order
  420. // to obtain authorization_code, make a request to the following URL:
  421. // <pre class="prettyprint" suppresswarning="true">
  422. // https://www.gstatic.com/bigquerydatatransfer/oauthz/auth?redirect_uri=urn:ietf:wg:oauth:2.0:oob&response_type=authorization_code&client_id=<var>client_id</var>&scope=<var>data_source_scopes</var>
  423. // </pre>
  424. // * The <var>client_id</var> is the OAuth client_id of the a data source as
  425. // returned by ListDataSources method.
  426. // * <var>data_source_scopes</var> are the scopes returned by ListDataSources
  427. // method.
  428. //
  429. // Note that this should not be set when `service_account_name` is used to
  430. // create the transfer config.
  431. string authorization_code = 3;
  432. // Optional version info. This is required only if
  433. // `transferConfig.dataSourceId` is not 'youtube_channel' and new credentials
  434. // are needed, as indicated by `CheckValidCreds`. In order to obtain version
  435. // info, make a request to the following URL:
  436. // <pre class="prettyprint" suppresswarning="true">
  437. // https://www.gstatic.com/bigquerydatatransfer/oauthz/auth?redirect_uri=urn:ietf:wg:oauth:2.0:oob&response_type=version_info&client_id=<var>client_id</var>&scope=<var>data_source_scopes</var>
  438. // </pre>
  439. // * The <var>client_id</var> is the OAuth client_id of the a data source as
  440. // returned by ListDataSources method.
  441. // * <var>data_source_scopes</var> are the scopes returned by ListDataSources
  442. // method.
  443. //
  444. // Note that this should not be set when `service_account_name` is used to
  445. // create the transfer config.
  446. string version_info = 5;
  447. // Optional service account name. If this field is set, the transfer config
  448. // will be created with this service account's credentials. It requires that
  449. // the requesting user calling this API has permissions to act as this service
  450. // account.
  451. //
  452. // Note that not all data sources support service account credentials when
  453. // creating a transfer config. For the latest list of data sources, read about
  454. // [using service
  455. // accounts](https://cloud.google.com/bigquery-transfer/docs/use-service-accounts).
  456. string service_account_name = 6;
  457. }
  458. // A request to update a transfer configuration. To update the user id of the
  459. // transfer configuration, authorization info needs to be provided.
  460. message UpdateTransferConfigRequest {
  461. // Required. Data transfer configuration to create.
  462. TransferConfig transfer_config = 1 [(google.api.field_behavior) = REQUIRED];
  463. // Optional OAuth2 authorization code to use with this transfer configuration.
  464. // This is required only if `transferConfig.dataSourceId` is 'youtube_channel'
  465. // and new credentials are needed, as indicated by `CheckValidCreds`. In order
  466. // to obtain authorization_code, make a request to the following URL:
  467. // <pre class="prettyprint" suppresswarning="true">
  468. // https://www.gstatic.com/bigquerydatatransfer/oauthz/auth?redirect_uri=urn:ietf:wg:oauth:2.0:oob&response_type=authorization_code&client_id=<var>client_id</var>&scope=<var>data_source_scopes</var>
  469. // </pre>
  470. // * The <var>client_id</var> is the OAuth client_id of the a data source as
  471. // returned by ListDataSources method.
  472. // * <var>data_source_scopes</var> are the scopes returned by ListDataSources
  473. // method.
  474. //
  475. // Note that this should not be set when `service_account_name` is used to
  476. // update the transfer config.
  477. string authorization_code = 3;
  478. // Required. Required list of fields to be updated in this request.
  479. google.protobuf.FieldMask update_mask = 4 [(google.api.field_behavior) = REQUIRED];
  480. // Optional version info. This is required only if
  481. // `transferConfig.dataSourceId` is not 'youtube_channel' and new credentials
  482. // are needed, as indicated by `CheckValidCreds`. In order to obtain version
  483. // info, make a request to the following URL:
  484. // <pre class="prettyprint" suppresswarning="true">
  485. // https://www.gstatic.com/bigquerydatatransfer/oauthz/auth?redirect_uri=urn:ietf:wg:oauth:2.0:oob&response_type=version_info&client_id=<var>client_id</var>&scope=<var>data_source_scopes</var>
  486. // </pre>
  487. // * The <var>client_id</var> is the OAuth client_id of the a data source as
  488. // returned by ListDataSources method.
  489. // * <var>data_source_scopes</var> are the scopes returned by ListDataSources
  490. // method.
  491. //
  492. // Note that this should not be set when `service_account_name` is used to
  493. // update the transfer config.
  494. string version_info = 5;
  495. // Optional service account name. If this field is set, the transfer config
  496. // will be created with this service account's credentials. It requires that
  497. // the requesting user calling this API has permissions to act as this service
  498. // account.
  499. //
  500. // Note that not all data sources support service account credentials when
  501. // creating a transfer config. For the latest list of data sources, read about
  502. // [using service
  503. // accounts](https://cloud.google.com/bigquery-transfer/docs/use-service-accounts).
  504. string service_account_name = 6;
  505. }
  506. // A request to get data transfer information.
  507. message GetTransferConfigRequest {
  508. // Required. The field will contain name of the resource requested, for example:
  509. // `projects/{project_id}/transferConfigs/{config_id}` or
  510. // `projects/{project_id}/locations/{location_id}/transferConfigs/{config_id}`
  511. string name = 1 [
  512. (google.api.field_behavior) = REQUIRED,
  513. (google.api.resource_reference) = {
  514. type: "bigquerydatatransfer.googleapis.com/TransferConfig"
  515. }
  516. ];
  517. }
  518. // A request to delete data transfer information. All associated transfer runs
  519. // and log messages will be deleted as well.
  520. message DeleteTransferConfigRequest {
  521. // Required. The field will contain name of the resource requested, for example:
  522. // `projects/{project_id}/transferConfigs/{config_id}` or
  523. // `projects/{project_id}/locations/{location_id}/transferConfigs/{config_id}`
  524. string name = 1 [
  525. (google.api.field_behavior) = REQUIRED,
  526. (google.api.resource_reference) = {
  527. type: "bigquerydatatransfer.googleapis.com/TransferConfig"
  528. }
  529. ];
  530. }
  531. // A request to get data transfer run information.
  532. message GetTransferRunRequest {
  533. // Required. The field will contain name of the resource requested, for example:
  534. // `projects/{project_id}/transferConfigs/{config_id}/runs/{run_id}` or
  535. // `projects/{project_id}/locations/{location_id}/transferConfigs/{config_id}/runs/{run_id}`
  536. string name = 1 [
  537. (google.api.field_behavior) = REQUIRED,
  538. (google.api.resource_reference) = {
  539. type: "bigquerydatatransfer.googleapis.com/Run"
  540. }
  541. ];
  542. }
  543. // A request to delete data transfer run information.
  544. message DeleteTransferRunRequest {
  545. // Required. The field will contain name of the resource requested, for example:
  546. // `projects/{project_id}/transferConfigs/{config_id}/runs/{run_id}` or
  547. // `projects/{project_id}/locations/{location_id}/transferConfigs/{config_id}/runs/{run_id}`
  548. string name = 1 [
  549. (google.api.field_behavior) = REQUIRED,
  550. (google.api.resource_reference) = {
  551. type: "bigquerydatatransfer.googleapis.com/Run"
  552. }
  553. ];
  554. }
  555. // A request to list data transfers configured for a BigQuery project.
  556. message ListTransferConfigsRequest {
  557. // Required. The BigQuery project id for which transfer configs
  558. // should be returned: `projects/{project_id}` or
  559. // `projects/{project_id}/locations/{location_id}`
  560. string parent = 1 [
  561. (google.api.field_behavior) = REQUIRED,
  562. (google.api.resource_reference) = {
  563. child_type: "bigquerydatatransfer.googleapis.com/TransferConfig"
  564. }
  565. ];
  566. // When specified, only configurations of requested data sources are returned.
  567. repeated string data_source_ids = 2;
  568. // Pagination token, which can be used to request a specific page
  569. // of `ListTransfersRequest` list results. For multiple-page
  570. // results, `ListTransfersResponse` outputs
  571. // a `next_page` token, which can be used as the
  572. // `page_token` value to request the next page of list results.
  573. string page_token = 3;
  574. // Page size. The default page size is the maximum value of 1000 results.
  575. int32 page_size = 4;
  576. }
  577. // The returned list of pipelines in the project.
  578. message ListTransferConfigsResponse {
  579. // Output only. The stored pipeline transfer configurations.
  580. repeated TransferConfig transfer_configs = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
  581. // Output only. The next-pagination token. For multiple-page list results,
  582. // this token can be used as the
  583. // `ListTransferConfigsRequest.page_token`
  584. // to request the next page of list results.
  585. string next_page_token = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
  586. }
  587. // A request to list data transfer runs.
  588. message ListTransferRunsRequest {
  589. // Represents which runs should be pulled.
  590. enum RunAttempt {
  591. // All runs should be returned.
  592. RUN_ATTEMPT_UNSPECIFIED = 0;
  593. // Only latest run per day should be returned.
  594. LATEST = 1;
  595. }
  596. // Required. Name of transfer configuration for which transfer runs should be retrieved.
  597. // Format of transfer configuration resource name is:
  598. // `projects/{project_id}/transferConfigs/{config_id}` or
  599. // `projects/{project_id}/locations/{location_id}/transferConfigs/{config_id}`.
  600. string parent = 1 [
  601. (google.api.field_behavior) = REQUIRED,
  602. (google.api.resource_reference) = {
  603. child_type: "bigquerydatatransfer.googleapis.com/Run"
  604. }
  605. ];
  606. // When specified, only transfer runs with requested states are returned.
  607. repeated TransferState states = 2;
  608. // Pagination token, which can be used to request a specific page
  609. // of `ListTransferRunsRequest` list results. For multiple-page
  610. // results, `ListTransferRunsResponse` outputs
  611. // a `next_page` token, which can be used as the
  612. // `page_token` value to request the next page of list results.
  613. string page_token = 3;
  614. // Page size. The default page size is the maximum value of 1000 results.
  615. int32 page_size = 4;
  616. // Indicates how run attempts are to be pulled.
  617. RunAttempt run_attempt = 5;
  618. }
  619. // The returned list of pipelines in the project.
  620. message ListTransferRunsResponse {
  621. // Output only. The stored pipeline transfer runs.
  622. repeated TransferRun transfer_runs = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
  623. // Output only. The next-pagination token. For multiple-page list results,
  624. // this token can be used as the
  625. // `ListTransferRunsRequest.page_token`
  626. // to request the next page of list results.
  627. string next_page_token = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
  628. }
  629. // A request to get user facing log messages associated with data transfer run.
  630. message ListTransferLogsRequest {
  631. // Required. Transfer run name in the form:
  632. // `projects/{project_id}/transferConfigs/{config_id}/runs/{run_id}` or
  633. // `projects/{project_id}/locations/{location_id}/transferConfigs/{config_id}/runs/{run_id}`
  634. string parent = 1 [
  635. (google.api.field_behavior) = REQUIRED,
  636. (google.api.resource_reference) = {
  637. type: "bigquerydatatransfer.googleapis.com/Run"
  638. }
  639. ];
  640. // Pagination token, which can be used to request a specific page
  641. // of `ListTransferLogsRequest` list results. For multiple-page
  642. // results, `ListTransferLogsResponse` outputs
  643. // a `next_page` token, which can be used as the
  644. // `page_token` value to request the next page of list results.
  645. string page_token = 4;
  646. // Page size. The default page size is the maximum value of 1000 results.
  647. int32 page_size = 5;
  648. // Message types to return. If not populated - INFO, WARNING and ERROR
  649. // messages are returned.
  650. repeated TransferMessage.MessageSeverity message_types = 6;
  651. }
  652. // The returned list transfer run messages.
  653. message ListTransferLogsResponse {
  654. // Output only. The stored pipeline transfer messages.
  655. repeated TransferMessage transfer_messages = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
  656. // Output only. The next-pagination token. For multiple-page list results,
  657. // this token can be used as the
  658. // `GetTransferRunLogRequest.page_token`
  659. // to request the next page of list results.
  660. string next_page_token = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
  661. }
  662. // A request to determine whether the user has valid credentials. This method
  663. // is used to limit the number of OAuth popups in the user interface. The
  664. // user id is inferred from the API call context.
  665. // If the data source has the Google+ authorization type, this method
  666. // returns false, as it cannot be determined whether the credentials are
  667. // already valid merely based on the user id.
  668. message CheckValidCredsRequest {
  669. // Required. The data source in the form:
  670. // `projects/{project_id}/dataSources/{data_source_id}` or
  671. // `projects/{project_id}/locations/{location_id}/dataSources/{data_source_id}`.
  672. string name = 1 [
  673. (google.api.field_behavior) = REQUIRED,
  674. (google.api.resource_reference) = {
  675. type: "bigquerydatatransfer.googleapis.com/DataSource"
  676. }
  677. ];
  678. }
  679. // A response indicating whether the credentials exist and are valid.
  680. message CheckValidCredsResponse {
  681. // If set to `true`, the credentials exist and are valid.
  682. bool has_valid_creds = 1;
  683. }
  684. // A request to schedule transfer runs for a time range.
  685. message ScheduleTransferRunsRequest {
  686. // Required. Transfer configuration name in the form:
  687. // `projects/{project_id}/transferConfigs/{config_id}` or
  688. // `projects/{project_id}/locations/{location_id}/transferConfigs/{config_id}`.
  689. string parent = 1 [
  690. (google.api.field_behavior) = REQUIRED,
  691. (google.api.resource_reference) = {
  692. type: "bigquerydatatransfer.googleapis.com/TransferConfig"
  693. }
  694. ];
  695. // Required. Start time of the range of transfer runs. For example,
  696. // `"2017-05-25T00:00:00+00:00"`.
  697. google.protobuf.Timestamp start_time = 2 [(google.api.field_behavior) = REQUIRED];
  698. // Required. End time of the range of transfer runs. For example,
  699. // `"2017-05-30T00:00:00+00:00"`.
  700. google.protobuf.Timestamp end_time = 3 [(google.api.field_behavior) = REQUIRED];
  701. }
  702. // A response to schedule transfer runs for a time range.
  703. message ScheduleTransferRunsResponse {
  704. // The transfer runs that were scheduled.
  705. repeated TransferRun runs = 1;
  706. }
  707. // A request to start manual transfer runs.
  708. message StartManualTransferRunsRequest {
  709. // A specification for a time range, this will request transfer runs with
  710. // run_time between start_time (inclusive) and end_time (exclusive).
  711. message TimeRange {
  712. // Start time of the range of transfer runs. For example,
  713. // `"2017-05-25T00:00:00+00:00"`. The start_time must be strictly less than
  714. // the end_time. Creates transfer runs where run_time is in the range
  715. // between start_time (inclusive) and end_time (exclusive).
  716. google.protobuf.Timestamp start_time = 1;
  717. // End time of the range of transfer runs. For example,
  718. // `"2017-05-30T00:00:00+00:00"`. The end_time must not be in the future.
  719. // Creates transfer runs where run_time is in the range between start_time
  720. // (inclusive) and end_time (exclusive).
  721. google.protobuf.Timestamp end_time = 2;
  722. }
  723. // Transfer configuration name in the form:
  724. // `projects/{project_id}/transferConfigs/{config_id}` or
  725. // `projects/{project_id}/locations/{location_id}/transferConfigs/{config_id}`.
  726. string parent = 1 [(google.api.resource_reference) = {
  727. type: "bigquerydatatransfer.googleapis.com/TransferConfig"
  728. }];
  729. // The requested time specification - this can be a time range or a specific
  730. // run_time.
  731. oneof time {
  732. // Time range for the transfer runs that should be started.
  733. TimeRange requested_time_range = 3;
  734. // Specific run_time for a transfer run to be started. The
  735. // requested_run_time must not be in the future.
  736. google.protobuf.Timestamp requested_run_time = 4;
  737. }
  738. }
  739. // A response to start manual transfer runs.
  740. message StartManualTransferRunsResponse {
  741. // The transfer runs that were created.
  742. repeated TransferRun runs = 1;
  743. }
  744. // A request to enroll a set of data sources so they are visible in the
  745. // BigQuery UI's `Transfer` tab.
  746. message EnrollDataSourcesRequest {
  747. // The name of the project resource in the form: `projects/{project_id}`
  748. string name = 1;
  749. // Data sources that are enrolled. It is required to provide at least one
  750. // data source id.
  751. repeated string data_source_ids = 2;
  752. }