blob: 70536c2d959ecbe841dba50daccc503afefa48f0 [file] [log] [blame]
Martin Kustermann24901b32017-05-23 17:10:24 +02001// This is a generated file (see the discoveryapis_generator project).
2
3library googleapis.bigquerydatatransfer.v1;
4
5import 'dart:core' as core;
6import 'dart:async' as async;
7import 'dart:convert' as convert;
8
9import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons;
10import 'package:http/http.dart' as http;
11
Martin Kustermann5eb85c12017-09-11 12:35:54 +020012export 'package:_discoveryapis_commons/_discoveryapis_commons.dart'
13 show ApiRequestError, DetailedApiRequestError;
Martin Kustermann24901b32017-05-23 17:10:24 +020014
15const core.String USER_AGENT = 'dart-api-client bigquerydatatransfer/v1';
16
Martin Kustermann5eb85c12017-09-11 12:35:54 +020017/// Transfers data from partner SaaS applications to Google BigQuery on a
18/// scheduled, managed basis.
Martin Kustermann24901b32017-05-23 17:10:24 +020019class BigquerydatatransferApi {
Martin Kustermann5eb85c12017-09-11 12:35:54 +020020 /// View and manage your data in Google BigQuery
Martin Kustermann24901b32017-05-23 17:10:24 +020021 static const BigqueryScope = "https://www.googleapis.com/auth/bigquery";
22
Martin Kustermann5eb85c12017-09-11 12:35:54 +020023 /// View and manage your data across Google Cloud Platform services
24 static const CloudPlatformScope =
25 "https://www.googleapis.com/auth/cloud-platform";
Martin Kustermann8c5bbda2017-07-10 13:23:47 +020026
Martin Kustermann5eb85c12017-09-11 12:35:54 +020027 /// View your data across Google Cloud Platform services
28 static const CloudPlatformReadOnlyScope =
29 "https://www.googleapis.com/auth/cloud-platform.read-only";
Martin Kustermann24901b32017-05-23 17:10:24 +020030
31 final commons.ApiRequester _requester;
32
33 ProjectsResourceApi get projects => new ProjectsResourceApi(_requester);
34
Martin Kustermann5eb85c12017-09-11 12:35:54 +020035 BigquerydatatransferApi(http.Client client,
36 {core.String rootUrl: "https://bigquerydatatransfer.googleapis.com/",
37 core.String servicePath: ""})
38 : _requester =
39 new commons.ApiRequester(client, rootUrl, servicePath, USER_AGENT);
Martin Kustermann24901b32017-05-23 17:10:24 +020040}
41
Martin Kustermann24901b32017-05-23 17:10:24 +020042class ProjectsResourceApi {
43 final commons.ApiRequester _requester;
44
Martin Kustermann5eb85c12017-09-11 12:35:54 +020045 ProjectsDataSourcesResourceApi get dataSources =>
46 new ProjectsDataSourcesResourceApi(_requester);
47 ProjectsLocationsResourceApi get locations =>
48 new ProjectsLocationsResourceApi(_requester);
49 ProjectsTransferConfigsResourceApi get transferConfigs =>
50 new ProjectsTransferConfigsResourceApi(_requester);
Martin Kustermann24901b32017-05-23 17:10:24 +020051
Martin Kustermann5eb85c12017-09-11 12:35:54 +020052 ProjectsResourceApi(commons.ApiRequester client) : _requester = client;
Martin Kustermann24901b32017-05-23 17:10:24 +020053}
54
Martin Kustermann24901b32017-05-23 17:10:24 +020055class ProjectsDataSourcesResourceApi {
56 final commons.ApiRequester _requester;
57
Martin Kustermann5eb85c12017-09-11 12:35:54 +020058 ProjectsDataSourcesResourceApi(commons.ApiRequester client)
59 : _requester = client;
Martin Kustermann24901b32017-05-23 17:10:24 +020060
Martin Kustermann5eb85c12017-09-11 12:35:54 +020061 /// Returns true if valid credentials exist for the given data source and
62 /// requesting user.
Martin Kustermann0e130012017-10-05 15:54:21 +010063 /// Some data sources doesn't support service account, so we need to talk to
64 /// them on behalf of the end user. This API just checks whether we have OAuth
65 /// token for the particular user, which is a pre-requisite before user can
66 /// create a transfer config.
Martin Kustermann5eb85c12017-09-11 12:35:54 +020067 ///
68 /// [request] - The metadata request object.
69 ///
70 /// Request parameters:
71 ///
72 /// [name] - The data source in the form:
73 /// `projects/{project_id}/dataSources/{data_source_id}`
74 /// Value must have pattern "^projects/[^/]+/dataSources/[^/]+$".
75 ///
Martin Kustermann7a3b5f52017-10-23 11:34:19 +020076 /// [$fields] - Selector specifying which fields to include in a partial
77 /// response.
78 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +020079 /// Completes with a [CheckValidCredsResponse].
80 ///
81 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
82 /// error.
83 ///
84 /// If the used [http.Client] completes with an error when making a REST call,
85 /// this method will complete with the same error.
86 async.Future<CheckValidCredsResponse> checkValidCreds(
Martin Kustermann7a3b5f52017-10-23 11:34:19 +020087 CheckValidCredsRequest request, core.String name,
88 {core.String $fields}) {
Martin Kustermann24901b32017-05-23 17:10:24 +020089 var _url = null;
90 var _queryParams = new core.Map();
91 var _uploadMedia = null;
92 var _uploadOptions = null;
93 var _downloadOptions = commons.DownloadOptions.Metadata;
94 var _body = null;
95
96 if (request != null) {
97 _body = convert.JSON.encode((request).toJson());
98 }
99 if (name == null) {
100 throw new core.ArgumentError("Parameter name is required.");
101 }
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200102 if ($fields != null) {
103 _queryParams["fields"] = [$fields];
104 }
Martin Kustermann24901b32017-05-23 17:10:24 +0200105
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200106 _url = 'v1/' +
107 commons.Escaper.ecapeVariableReserved('$name') +
108 ':checkValidCreds';
Martin Kustermann24901b32017-05-23 17:10:24 +0200109
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200110 var _response = _requester.request(_url, "POST",
111 body: _body,
112 queryParams: _queryParams,
113 uploadOptions: _uploadOptions,
114 uploadMedia: _uploadMedia,
115 downloadOptions: _downloadOptions);
Martin Kustermann24901b32017-05-23 17:10:24 +0200116 return _response.then((data) => new CheckValidCredsResponse.fromJson(data));
117 }
118
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200119 /// Retrieves a supported data source and returns its settings,
120 /// which can be used for UI rendering.
121 ///
122 /// Request parameters:
123 ///
124 /// [name] - The field will contain name of the resource requested, for
125 /// example:
126 /// `projects/{project_id}/dataSources/{data_source_id}`
127 /// Value must have pattern "^projects/[^/]+/dataSources/[^/]+$".
128 ///
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200129 /// [$fields] - Selector specifying which fields to include in a partial
130 /// response.
131 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200132 /// Completes with a [DataSource].
133 ///
134 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
135 /// error.
136 ///
137 /// If the used [http.Client] completes with an error when making a REST call,
138 /// this method will complete with the same error.
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200139 async.Future<DataSource> get(core.String name, {core.String $fields}) {
Martin Kustermann24901b32017-05-23 17:10:24 +0200140 var _url = null;
141 var _queryParams = new core.Map();
142 var _uploadMedia = null;
143 var _uploadOptions = null;
144 var _downloadOptions = commons.DownloadOptions.Metadata;
145 var _body = null;
146
147 if (name == null) {
148 throw new core.ArgumentError("Parameter name is required.");
149 }
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200150 if ($fields != null) {
151 _queryParams["fields"] = [$fields];
152 }
Martin Kustermann24901b32017-05-23 17:10:24 +0200153
154 _url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
155
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200156 var _response = _requester.request(_url, "GET",
157 body: _body,
158 queryParams: _queryParams,
159 uploadOptions: _uploadOptions,
160 uploadMedia: _uploadMedia,
161 downloadOptions: _downloadOptions);
Martin Kustermann24901b32017-05-23 17:10:24 +0200162 return _response.then((data) => new DataSource.fromJson(data));
163 }
164
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200165 /// Lists supported data sources and returns their settings,
166 /// which can be used for UI rendering.
167 ///
168 /// Request parameters:
169 ///
170 /// [parent] - The BigQuery project id for which data sources should be
171 /// returned.
172 /// Must be in the form: `projects/{project_id}`
173 /// Value must have pattern "^projects/[^/]+$".
174 ///
175 /// [pageToken] - Pagination token, which can be used to request a specific
176 /// page
177 /// of `ListDataSourcesRequest` list results. For multiple-page
178 /// results, `ListDataSourcesResponse` outputs
179 /// a `next_page` token, which can be used as the
180 /// `page_token` value to request the next page of list results.
181 ///
Martin Kustermann2a131182017-11-13 13:50:07 +0100182 /// [pageSize] - Page size. The default page size is the maximum value of 1000
183 /// results.
184 ///
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200185 /// [$fields] - Selector specifying which fields to include in a partial
186 /// response.
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200187 ///
188 /// Completes with a [ListDataSourcesResponse].
189 ///
190 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
191 /// error.
192 ///
193 /// If the used [http.Client] completes with an error when making a REST call,
194 /// this method will complete with the same error.
195 async.Future<ListDataSourcesResponse> list(core.String parent,
Martin Kustermann2a131182017-11-13 13:50:07 +0100196 {core.String pageToken, core.int pageSize, core.String $fields}) {
Martin Kustermann24901b32017-05-23 17:10:24 +0200197 var _url = null;
198 var _queryParams = new core.Map();
199 var _uploadMedia = null;
200 var _uploadOptions = null;
201 var _downloadOptions = commons.DownloadOptions.Metadata;
202 var _body = null;
203
204 if (parent == null) {
205 throw new core.ArgumentError("Parameter parent is required.");
206 }
207 if (pageToken != null) {
208 _queryParams["pageToken"] = [pageToken];
209 }
Martin Kustermann2a131182017-11-13 13:50:07 +0100210 if (pageSize != null) {
211 _queryParams["pageSize"] = ["${pageSize}"];
212 }
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200213 if ($fields != null) {
214 _queryParams["fields"] = [$fields];
Martin Kustermann24901b32017-05-23 17:10:24 +0200215 }
216
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200217 _url = 'v1/' +
218 commons.Escaper.ecapeVariableReserved('$parent') +
219 '/dataSources';
Martin Kustermann24901b32017-05-23 17:10:24 +0200220
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200221 var _response = _requester.request(_url, "GET",
222 body: _body,
223 queryParams: _queryParams,
224 uploadOptions: _uploadOptions,
225 uploadMedia: _uploadMedia,
226 downloadOptions: _downloadOptions);
Martin Kustermann24901b32017-05-23 17:10:24 +0200227 return _response.then((data) => new ListDataSourcesResponse.fromJson(data));
228 }
Martin Kustermann24901b32017-05-23 17:10:24 +0200229}
230
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200231class ProjectsLocationsResourceApi {
232 final commons.ApiRequester _requester;
233
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200234 ProjectsLocationsDataSourcesResourceApi get dataSources =>
235 new ProjectsLocationsDataSourcesResourceApi(_requester);
236 ProjectsLocationsTransferConfigsResourceApi get transferConfigs =>
237 new ProjectsLocationsTransferConfigsResourceApi(_requester);
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200238
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200239 ProjectsLocationsResourceApi(commons.ApiRequester client)
240 : _requester = client;
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200241
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200242 /// Get information about a location.
243 ///
244 /// Request parameters:
245 ///
246 /// [name] - Resource name for the location.
247 /// Value must have pattern "^projects/[^/]+/locations/[^/]+$".
248 ///
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200249 /// [$fields] - Selector specifying which fields to include in a partial
250 /// response.
251 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200252 /// Completes with a [Location].
253 ///
254 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
255 /// error.
256 ///
257 /// If the used [http.Client] completes with an error when making a REST call,
258 /// this method will complete with the same error.
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200259 async.Future<Location> get(core.String name, {core.String $fields}) {
Martin Kustermanna28e6712017-08-21 17:36:35 +0200260 var _url = null;
261 var _queryParams = new core.Map();
262 var _uploadMedia = null;
263 var _uploadOptions = null;
264 var _downloadOptions = commons.DownloadOptions.Metadata;
265 var _body = null;
266
267 if (name == null) {
268 throw new core.ArgumentError("Parameter name is required.");
269 }
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200270 if ($fields != null) {
271 _queryParams["fields"] = [$fields];
272 }
Martin Kustermanna28e6712017-08-21 17:36:35 +0200273
274 _url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
275
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200276 var _response = _requester.request(_url, "GET",
277 body: _body,
278 queryParams: _queryParams,
279 uploadOptions: _uploadOptions,
280 uploadMedia: _uploadMedia,
281 downloadOptions: _downloadOptions);
Martin Kustermanna28e6712017-08-21 17:36:35 +0200282 return _response.then((data) => new Location.fromJson(data));
283 }
284
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200285 /// Lists information about the supported locations for this service.
286 ///
287 /// Request parameters:
288 ///
289 /// [name] - The resource that owns the locations collection, if applicable.
290 /// Value must have pattern "^projects/[^/]+$".
291 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200292 /// [pageToken] - The standard list page token.
293 ///
294 /// [pageSize] - The standard list page size.
295 ///
Martin Kustermannbe200482017-12-04 11:42:32 +0100296 /// [filter] - The standard list filter.
297 ///
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200298 /// [$fields] - Selector specifying which fields to include in a partial
299 /// response.
300 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200301 /// Completes with a [ListLocationsResponse].
302 ///
303 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
304 /// error.
305 ///
306 /// If the used [http.Client] completes with an error when making a REST call,
307 /// this method will complete with the same error.
308 async.Future<ListLocationsResponse> list(core.String name,
Martin Kustermannbe200482017-12-04 11:42:32 +0100309 {core.String pageToken,
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200310 core.int pageSize,
Martin Kustermannbe200482017-12-04 11:42:32 +0100311 core.String filter,
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200312 core.String $fields}) {
Martin Kustermanna28e6712017-08-21 17:36:35 +0200313 var _url = null;
314 var _queryParams = new core.Map();
315 var _uploadMedia = null;
316 var _uploadOptions = null;
317 var _downloadOptions = commons.DownloadOptions.Metadata;
318 var _body = null;
319
320 if (name == null) {
321 throw new core.ArgumentError("Parameter name is required.");
322 }
Martin Kustermanna28e6712017-08-21 17:36:35 +0200323 if (pageToken != null) {
324 _queryParams["pageToken"] = [pageToken];
325 }
326 if (pageSize != null) {
327 _queryParams["pageSize"] = ["${pageSize}"];
328 }
Martin Kustermannbe200482017-12-04 11:42:32 +0100329 if (filter != null) {
330 _queryParams["filter"] = [filter];
331 }
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200332 if ($fields != null) {
333 _queryParams["fields"] = [$fields];
334 }
Martin Kustermanna28e6712017-08-21 17:36:35 +0200335
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200336 _url =
337 'v1/' + commons.Escaper.ecapeVariableReserved('$name') + '/locations';
Martin Kustermanna28e6712017-08-21 17:36:35 +0200338
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200339 var _response = _requester.request(_url, "GET",
340 body: _body,
341 queryParams: _queryParams,
342 uploadOptions: _uploadOptions,
343 uploadMedia: _uploadMedia,
344 downloadOptions: _downloadOptions);
Martin Kustermanna28e6712017-08-21 17:36:35 +0200345 return _response.then((data) => new ListLocationsResponse.fromJson(data));
346 }
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200347}
348
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200349class ProjectsLocationsDataSourcesResourceApi {
350 final commons.ApiRequester _requester;
351
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200352 ProjectsLocationsDataSourcesResourceApi(commons.ApiRequester client)
353 : _requester = client;
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200354
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200355 /// Returns true if valid credentials exist for the given data source and
356 /// requesting user.
Martin Kustermann0e130012017-10-05 15:54:21 +0100357 /// Some data sources doesn't support service account, so we need to talk to
358 /// them on behalf of the end user. This API just checks whether we have OAuth
359 /// token for the particular user, which is a pre-requisite before user can
360 /// create a transfer config.
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200361 ///
362 /// [request] - The metadata request object.
363 ///
364 /// Request parameters:
365 ///
366 /// [name] - The data source in the form:
367 /// `projects/{project_id}/dataSources/{data_source_id}`
368 /// Value must have pattern
369 /// "^projects/[^/]+/locations/[^/]+/dataSources/[^/]+$".
370 ///
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200371 /// [$fields] - Selector specifying which fields to include in a partial
372 /// response.
373 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200374 /// Completes with a [CheckValidCredsResponse].
375 ///
376 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
377 /// error.
378 ///
379 /// If the used [http.Client] completes with an error when making a REST call,
380 /// this method will complete with the same error.
381 async.Future<CheckValidCredsResponse> checkValidCreds(
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200382 CheckValidCredsRequest request, core.String name,
383 {core.String $fields}) {
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200384 var _url = null;
385 var _queryParams = new core.Map();
386 var _uploadMedia = null;
387 var _uploadOptions = null;
388 var _downloadOptions = commons.DownloadOptions.Metadata;
389 var _body = null;
390
391 if (request != null) {
392 _body = convert.JSON.encode((request).toJson());
393 }
394 if (name == null) {
395 throw new core.ArgumentError("Parameter name is required.");
396 }
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200397 if ($fields != null) {
398 _queryParams["fields"] = [$fields];
399 }
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200400
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200401 _url = 'v1/' +
402 commons.Escaper.ecapeVariableReserved('$name') +
403 ':checkValidCreds';
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200404
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200405 var _response = _requester.request(_url, "POST",
406 body: _body,
407 queryParams: _queryParams,
408 uploadOptions: _uploadOptions,
409 uploadMedia: _uploadMedia,
410 downloadOptions: _downloadOptions);
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200411 return _response.then((data) => new CheckValidCredsResponse.fromJson(data));
412 }
413
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200414 /// Retrieves a supported data source and returns its settings,
415 /// which can be used for UI rendering.
416 ///
417 /// Request parameters:
418 ///
419 /// [name] - The field will contain name of the resource requested, for
420 /// example:
421 /// `projects/{project_id}/dataSources/{data_source_id}`
422 /// Value must have pattern
423 /// "^projects/[^/]+/locations/[^/]+/dataSources/[^/]+$".
424 ///
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200425 /// [$fields] - Selector specifying which fields to include in a partial
426 /// response.
427 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200428 /// Completes with a [DataSource].
429 ///
430 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
431 /// error.
432 ///
433 /// If the used [http.Client] completes with an error when making a REST call,
434 /// this method will complete with the same error.
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200435 async.Future<DataSource> get(core.String name, {core.String $fields}) {
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200436 var _url = null;
437 var _queryParams = new core.Map();
438 var _uploadMedia = null;
439 var _uploadOptions = null;
440 var _downloadOptions = commons.DownloadOptions.Metadata;
441 var _body = null;
442
443 if (name == null) {
444 throw new core.ArgumentError("Parameter name is required.");
445 }
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200446 if ($fields != null) {
447 _queryParams["fields"] = [$fields];
448 }
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200449
450 _url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
451
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200452 var _response = _requester.request(_url, "GET",
453 body: _body,
454 queryParams: _queryParams,
455 uploadOptions: _uploadOptions,
456 uploadMedia: _uploadMedia,
457 downloadOptions: _downloadOptions);
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200458 return _response.then((data) => new DataSource.fromJson(data));
459 }
460
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200461 /// Lists supported data sources and returns their settings,
462 /// which can be used for UI rendering.
463 ///
464 /// Request parameters:
465 ///
466 /// [parent] - The BigQuery project id for which data sources should be
467 /// returned.
468 /// Must be in the form: `projects/{project_id}`
469 /// Value must have pattern "^projects/[^/]+/locations/[^/]+$".
470 ///
471 /// [pageToken] - Pagination token, which can be used to request a specific
472 /// page
473 /// of `ListDataSourcesRequest` list results. For multiple-page
474 /// results, `ListDataSourcesResponse` outputs
475 /// a `next_page` token, which can be used as the
476 /// `page_token` value to request the next page of list results.
477 ///
478 /// [pageSize] - Page size. The default page size is the maximum value of 1000
479 /// results.
480 ///
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200481 /// [$fields] - Selector specifying which fields to include in a partial
482 /// response.
483 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200484 /// Completes with a [ListDataSourcesResponse].
485 ///
486 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
487 /// error.
488 ///
489 /// If the used [http.Client] completes with an error when making a REST call,
490 /// this method will complete with the same error.
491 async.Future<ListDataSourcesResponse> list(core.String parent,
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200492 {core.String pageToken, core.int pageSize, core.String $fields}) {
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200493 var _url = null;
494 var _queryParams = new core.Map();
495 var _uploadMedia = null;
496 var _uploadOptions = null;
497 var _downloadOptions = commons.DownloadOptions.Metadata;
498 var _body = null;
499
500 if (parent == null) {
501 throw new core.ArgumentError("Parameter parent is required.");
502 }
Martin Kustermanna28e6712017-08-21 17:36:35 +0200503 if (pageToken != null) {
504 _queryParams["pageToken"] = [pageToken];
505 }
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200506 if (pageSize != null) {
507 _queryParams["pageSize"] = ["${pageSize}"];
508 }
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200509 if ($fields != null) {
510 _queryParams["fields"] = [$fields];
511 }
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200512
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200513 _url = 'v1/' +
514 commons.Escaper.ecapeVariableReserved('$parent') +
515 '/dataSources';
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200516
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200517 var _response = _requester.request(_url, "GET",
518 body: _body,
519 queryParams: _queryParams,
520 uploadOptions: _uploadOptions,
521 uploadMedia: _uploadMedia,
522 downloadOptions: _downloadOptions);
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200523 return _response.then((data) => new ListDataSourcesResponse.fromJson(data));
524 }
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200525}
526
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200527class ProjectsLocationsTransferConfigsResourceApi {
528 final commons.ApiRequester _requester;
529
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200530 ProjectsLocationsTransferConfigsRunsResourceApi get runs =>
531 new ProjectsLocationsTransferConfigsRunsResourceApi(_requester);
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200532
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200533 ProjectsLocationsTransferConfigsResourceApi(commons.ApiRequester client)
534 : _requester = client;
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200535
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200536 /// Creates a new data transfer configuration.
537 ///
538 /// [request] - The metadata request object.
539 ///
540 /// Request parameters:
541 ///
542 /// [parent] - The BigQuery project id where the transfer configuration should
543 /// be created.
544 /// Must be in the format /projects/{project_id}/locations/{location_id}
Martin Kustermannbe200482017-12-04 11:42:32 +0100545 /// If specified location and location of the destination bigquery dataset
546 /// do not match - the request will fail.
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200547 /// Value must have pattern "^projects/[^/]+/locations/[^/]+$".
548 ///
549 /// [authorizationCode] - Optional OAuth2 authorization code to use with this
550 /// transfer configuration.
551 /// This is required if new credentials are needed, as indicated by
552 /// `CheckValidCreds`.
553 /// In order to obtain authorization_code, please make a
554 /// request to
555 /// https://www.gstatic.com/bigquerydatatransfer/oauthz/auth?client_id=<datatransferapiclientid>&scope=<data_source_scopes>&redirect_uri=<redirect_uri>
556 ///
557 /// * client_id should be OAuth client_id of BigQuery DTS API for the given
558 /// data source returned by ListDataSources method.
559 /// * data_source_scopes are the scopes returned by ListDataSources method.
560 /// * redirect_uri is an optional parameter. If not specified, then
561 /// authorization code is posted to the opener of authorization flow window.
562 /// Otherwise it will be sent to the redirect uri. A special value of
563 /// urn:ietf:wg:oauth:2.0:oob means that authorization code should be
564 /// returned in the title bar of the browser, with the page text prompting
565 /// the user to copy the code and paste it in the application.
566 ///
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200567 /// [$fields] - Selector specifying which fields to include in a partial
568 /// response.
569 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200570 /// Completes with a [TransferConfig].
571 ///
572 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
573 /// error.
574 ///
575 /// If the used [http.Client] completes with an error when making a REST call,
576 /// this method will complete with the same error.
577 async.Future<TransferConfig> create(
578 TransferConfig request, core.String parent,
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200579 {core.String authorizationCode, core.String $fields}) {
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200580 var _url = null;
581 var _queryParams = new core.Map();
582 var _uploadMedia = null;
583 var _uploadOptions = null;
584 var _downloadOptions = commons.DownloadOptions.Metadata;
585 var _body = null;
586
587 if (request != null) {
588 _body = convert.JSON.encode((request).toJson());
589 }
590 if (parent == null) {
591 throw new core.ArgumentError("Parameter parent is required.");
592 }
593 if (authorizationCode != null) {
594 _queryParams["authorizationCode"] = [authorizationCode];
595 }
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200596 if ($fields != null) {
597 _queryParams["fields"] = [$fields];
598 }
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200599
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200600 _url = 'v1/' +
601 commons.Escaper.ecapeVariableReserved('$parent') +
602 '/transferConfigs';
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200603
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200604 var _response = _requester.request(_url, "POST",
605 body: _body,
606 queryParams: _queryParams,
607 uploadOptions: _uploadOptions,
608 uploadMedia: _uploadMedia,
609 downloadOptions: _downloadOptions);
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200610 return _response.then((data) => new TransferConfig.fromJson(data));
611 }
612
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200613 /// Deletes a data transfer configuration,
614 /// including any associated transfer runs and logs.
615 ///
616 /// Request parameters:
617 ///
618 /// [name] - The field will contain name of the resource requested, for
619 /// example:
620 /// `projects/{project_id}/transferConfigs/{config_id}`
621 /// Value must have pattern
622 /// "^projects/[^/]+/locations/[^/]+/transferConfigs/[^/]+$".
623 ///
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200624 /// [$fields] - Selector specifying which fields to include in a partial
625 /// response.
626 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200627 /// Completes with a [Empty].
628 ///
629 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
630 /// error.
631 ///
632 /// If the used [http.Client] completes with an error when making a REST call,
633 /// this method will complete with the same error.
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200634 async.Future<Empty> delete(core.String name, {core.String $fields}) {
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200635 var _url = null;
636 var _queryParams = new core.Map();
637 var _uploadMedia = null;
638 var _uploadOptions = null;
639 var _downloadOptions = commons.DownloadOptions.Metadata;
640 var _body = null;
641
642 if (name == null) {
643 throw new core.ArgumentError("Parameter name is required.");
644 }
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200645 if ($fields != null) {
646 _queryParams["fields"] = [$fields];
647 }
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200648
649 _url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
650
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200651 var _response = _requester.request(_url, "DELETE",
652 body: _body,
653 queryParams: _queryParams,
654 uploadOptions: _uploadOptions,
655 uploadMedia: _uploadMedia,
656 downloadOptions: _downloadOptions);
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200657 return _response.then((data) => new Empty.fromJson(data));
658 }
659
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200660 /// Returns information about a data transfer config.
661 ///
662 /// Request parameters:
663 ///
664 /// [name] - The field will contain name of the resource requested, for
665 /// example:
666 /// `projects/{project_id}/transferConfigs/{config_id}`
667 /// Value must have pattern
668 /// "^projects/[^/]+/locations/[^/]+/transferConfigs/[^/]+$".
669 ///
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200670 /// [$fields] - Selector specifying which fields to include in a partial
671 /// response.
672 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200673 /// Completes with a [TransferConfig].
674 ///
675 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
676 /// error.
677 ///
678 /// If the used [http.Client] completes with an error when making a REST call,
679 /// this method will complete with the same error.
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200680 async.Future<TransferConfig> get(core.String name, {core.String $fields}) {
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200681 var _url = null;
682 var _queryParams = new core.Map();
683 var _uploadMedia = null;
684 var _uploadOptions = null;
685 var _downloadOptions = commons.DownloadOptions.Metadata;
686 var _body = null;
687
688 if (name == null) {
689 throw new core.ArgumentError("Parameter name is required.");
690 }
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200691 if ($fields != null) {
692 _queryParams["fields"] = [$fields];
693 }
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200694
695 _url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
696
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200697 var _response = _requester.request(_url, "GET",
698 body: _body,
699 queryParams: _queryParams,
700 uploadOptions: _uploadOptions,
701 uploadMedia: _uploadMedia,
702 downloadOptions: _downloadOptions);
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200703 return _response.then((data) => new TransferConfig.fromJson(data));
704 }
705
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200706 /// Returns information about all data transfers in the project.
707 ///
708 /// Request parameters:
709 ///
710 /// [parent] - The BigQuery project id for which data sources
711 /// should be returned: `projects/{project_id}`.
712 /// Value must have pattern "^projects/[^/]+/locations/[^/]+$".
713 ///
Martin Kustermannbe200482017-12-04 11:42:32 +0100714 /// [dataSourceIds] - When specified, only configurations of requested data
715 /// sources are returned.
716 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200717 /// [pageToken] - Pagination token, which can be used to request a specific
718 /// page
719 /// of `ListTransfersRequest` list results. For multiple-page
720 /// results, `ListTransfersResponse` outputs
721 /// a `next_page` token, which can be used as the
722 /// `page_token` value to request the next page of list results.
723 ///
724 /// [pageSize] - Page size. The default page size is the maximum value of 1000
725 /// results.
726 ///
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200727 /// [$fields] - Selector specifying which fields to include in a partial
728 /// response.
729 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200730 /// Completes with a [ListTransferConfigsResponse].
731 ///
732 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
733 /// error.
734 ///
735 /// If the used [http.Client] completes with an error when making a REST call,
736 /// this method will complete with the same error.
737 async.Future<ListTransferConfigsResponse> list(core.String parent,
Martin Kustermannbe200482017-12-04 11:42:32 +0100738 {core.List<core.String> dataSourceIds,
739 core.String pageToken,
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200740 core.int pageSize,
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200741 core.String $fields}) {
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200742 var _url = null;
743 var _queryParams = new core.Map();
744 var _uploadMedia = null;
745 var _uploadOptions = null;
746 var _downloadOptions = commons.DownloadOptions.Metadata;
747 var _body = null;
748
749 if (parent == null) {
750 throw new core.ArgumentError("Parameter parent is required.");
751 }
Martin Kustermannbe200482017-12-04 11:42:32 +0100752 if (dataSourceIds != null) {
753 _queryParams["dataSourceIds"] = dataSourceIds;
754 }
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200755 if (pageToken != null) {
756 _queryParams["pageToken"] = [pageToken];
757 }
758 if (pageSize != null) {
759 _queryParams["pageSize"] = ["${pageSize}"];
760 }
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200761 if ($fields != null) {
762 _queryParams["fields"] = [$fields];
763 }
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200764
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200765 _url = 'v1/' +
766 commons.Escaper.ecapeVariableReserved('$parent') +
767 '/transferConfigs';
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200768
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200769 var _response = _requester.request(_url, "GET",
770 body: _body,
771 queryParams: _queryParams,
772 uploadOptions: _uploadOptions,
773 uploadMedia: _uploadMedia,
774 downloadOptions: _downloadOptions);
775 return _response
776 .then((data) => new ListTransferConfigsResponse.fromJson(data));
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200777 }
778
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200779 /// Updates a data transfer configuration.
780 /// All fields must be set, even if they are not updated.
781 ///
782 /// [request] - The metadata request object.
783 ///
784 /// Request parameters:
785 ///
Martin Kustermann0e130012017-10-05 15:54:21 +0100786 /// [name] - The resource name of the transfer config.
787 /// Transfer config names have the form
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200788 /// `projects/{project_id}/transferConfigs/{config_id}`.
789 /// Where `config_id` is usually a uuid, even though it is not
Martin Kustermann0e130012017-10-05 15:54:21 +0100790 /// guaranteed or required. The name is ignored when creating a transfer
791 /// config.
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200792 /// Value must have pattern
793 /// "^projects/[^/]+/locations/[^/]+/transferConfigs/[^/]+$".
794 ///
Martin Kustermannbe200482017-12-04 11:42:32 +0100795 /// [updateMask] - Required list of fields to be updated in this request.
796 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200797 /// [authorizationCode] - Optional OAuth2 authorization code to use with this
798 /// transfer configuration.
799 /// If it is provided, the transfer configuration will be associated with the
Martin Kustermannbe200482017-12-04 11:42:32 +0100800 /// authorizing user.
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200801 /// In order to obtain authorization_code, please make a
802 /// request to
803 /// https://www.gstatic.com/bigquerydatatransfer/oauthz/auth?client_id=<datatransferapiclientid>&scope=<data_source_scopes>&redirect_uri=<redirect_uri>
804 ///
805 /// * client_id should be OAuth client_id of BigQuery DTS API for the given
806 /// data source returned by ListDataSources method.
807 /// * data_source_scopes are the scopes returned by ListDataSources method.
808 /// * redirect_uri is an optional parameter. If not specified, then
809 /// authorization code is posted to the opener of authorization flow window.
810 /// Otherwise it will be sent to the redirect uri. A special value of
811 /// urn:ietf:wg:oauth:2.0:oob means that authorization code should be
812 /// returned in the title bar of the browser, with the page text prompting
813 /// the user to copy the code and paste it in the application.
814 ///
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200815 /// [$fields] - Selector specifying which fields to include in a partial
816 /// response.
817 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200818 /// Completes with a [TransferConfig].
819 ///
820 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
821 /// error.
822 ///
823 /// If the used [http.Client] completes with an error when making a REST call,
824 /// this method will complete with the same error.
825 async.Future<TransferConfig> patch(TransferConfig request, core.String name,
Martin Kustermannbe200482017-12-04 11:42:32 +0100826 {core.String updateMask,
827 core.String authorizationCode,
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200828 core.String $fields}) {
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200829 var _url = null;
830 var _queryParams = new core.Map();
831 var _uploadMedia = null;
832 var _uploadOptions = null;
833 var _downloadOptions = commons.DownloadOptions.Metadata;
834 var _body = null;
835
836 if (request != null) {
837 _body = convert.JSON.encode((request).toJson());
838 }
839 if (name == null) {
840 throw new core.ArgumentError("Parameter name is required.");
841 }
Martin Kustermanna28e6712017-08-21 17:36:35 +0200842 if (updateMask != null) {
843 _queryParams["updateMask"] = [updateMask];
844 }
Martin Kustermannbe200482017-12-04 11:42:32 +0100845 if (authorizationCode != null) {
846 _queryParams["authorizationCode"] = [authorizationCode];
847 }
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200848 if ($fields != null) {
849 _queryParams["fields"] = [$fields];
850 }
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200851
852 _url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
853
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200854 var _response = _requester.request(_url, "PATCH",
855 body: _body,
856 queryParams: _queryParams,
857 uploadOptions: _uploadOptions,
858 uploadMedia: _uploadMedia,
859 downloadOptions: _downloadOptions);
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200860 return _response.then((data) => new TransferConfig.fromJson(data));
861 }
862
Martin Kustermannbe200482017-12-04 11:42:32 +0100863 /// Creates transfer runs for a time range [start_time, end_time].
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200864 /// For each date - or whatever granularity the data source supports - in the
865 /// range, one transfer run is created.
866 /// Note that runs are created per UTC time in the time range.
867 ///
868 /// [request] - The metadata request object.
869 ///
870 /// Request parameters:
871 ///
872 /// [parent] - Transfer configuration name in the form:
873 /// `projects/{project_id}/transferConfigs/{config_id}`.
874 /// Value must have pattern
875 /// "^projects/[^/]+/locations/[^/]+/transferConfigs/[^/]+$".
876 ///
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200877 /// [$fields] - Selector specifying which fields to include in a partial
878 /// response.
879 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200880 /// Completes with a [ScheduleTransferRunsResponse].
881 ///
882 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
883 /// error.
884 ///
885 /// If the used [http.Client] completes with an error when making a REST call,
886 /// this method will complete with the same error.
887 async.Future<ScheduleTransferRunsResponse> scheduleRuns(
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200888 ScheduleTransferRunsRequest request, core.String parent,
889 {core.String $fields}) {
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200890 var _url = null;
891 var _queryParams = new core.Map();
892 var _uploadMedia = null;
893 var _uploadOptions = null;
894 var _downloadOptions = commons.DownloadOptions.Metadata;
895 var _body = null;
896
897 if (request != null) {
898 _body = convert.JSON.encode((request).toJson());
899 }
900 if (parent == null) {
901 throw new core.ArgumentError("Parameter parent is required.");
902 }
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200903 if ($fields != null) {
904 _queryParams["fields"] = [$fields];
905 }
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200906
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200907 _url = 'v1/' +
908 commons.Escaper.ecapeVariableReserved('$parent') +
909 ':scheduleRuns';
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200910
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200911 var _response = _requester.request(_url, "POST",
912 body: _body,
913 queryParams: _queryParams,
914 uploadOptions: _uploadOptions,
915 uploadMedia: _uploadMedia,
916 downloadOptions: _downloadOptions);
917 return _response
918 .then((data) => new ScheduleTransferRunsResponse.fromJson(data));
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200919 }
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200920}
921
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200922class ProjectsLocationsTransferConfigsRunsResourceApi {
923 final commons.ApiRequester _requester;
924
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200925 ProjectsLocationsTransferConfigsRunsTransferLogsResourceApi
926 get transferLogs =>
927 new ProjectsLocationsTransferConfigsRunsTransferLogsResourceApi(
928 _requester);
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200929
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200930 ProjectsLocationsTransferConfigsRunsResourceApi(commons.ApiRequester client)
931 : _requester = client;
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200932
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200933 /// Deletes the specified transfer run.
934 ///
935 /// Request parameters:
936 ///
937 /// [name] - The field will contain name of the resource requested, for
938 /// example:
939 /// `projects/{project_id}/transferConfigs/{config_id}/runs/{run_id}`
940 /// Value must have pattern
941 /// "^projects/[^/]+/locations/[^/]+/transferConfigs/[^/]+/runs/[^/]+$".
942 ///
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200943 /// [$fields] - Selector specifying which fields to include in a partial
944 /// response.
945 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200946 /// Completes with a [Empty].
947 ///
948 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
949 /// error.
950 ///
951 /// If the used [http.Client] completes with an error when making a REST call,
952 /// this method will complete with the same error.
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200953 async.Future<Empty> delete(core.String name, {core.String $fields}) {
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200954 var _url = null;
955 var _queryParams = new core.Map();
956 var _uploadMedia = null;
957 var _uploadOptions = null;
958 var _downloadOptions = commons.DownloadOptions.Metadata;
959 var _body = null;
960
961 if (name == null) {
962 throw new core.ArgumentError("Parameter name is required.");
963 }
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200964 if ($fields != null) {
965 _queryParams["fields"] = [$fields];
966 }
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200967
968 _url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
969
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200970 var _response = _requester.request(_url, "DELETE",
971 body: _body,
972 queryParams: _queryParams,
973 uploadOptions: _uploadOptions,
974 uploadMedia: _uploadMedia,
975 downloadOptions: _downloadOptions);
Martin Kustermann3953f0d2017-06-12 16:59:53 +0200976 return _response.then((data) => new Empty.fromJson(data));
977 }
978
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200979 /// Returns information about the particular transfer run.
980 ///
981 /// Request parameters:
982 ///
983 /// [name] - The field will contain name of the resource requested, for
984 /// example:
985 /// `projects/{project_id}/transferConfigs/{config_id}/runs/{run_id}`
986 /// Value must have pattern
987 /// "^projects/[^/]+/locations/[^/]+/transferConfigs/[^/]+/runs/[^/]+$".
988 ///
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200989 /// [$fields] - Selector specifying which fields to include in a partial
990 /// response.
991 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +0200992 /// Completes with a [TransferRun].
993 ///
994 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
995 /// error.
996 ///
997 /// If the used [http.Client] completes with an error when making a REST call,
998 /// this method will complete with the same error.
Martin Kustermann7a3b5f52017-10-23 11:34:19 +0200999 async.Future<TransferRun> get(core.String name, {core.String $fields}) {
Martin Kustermann3953f0d2017-06-12 16:59:53 +02001000 var _url = null;
1001 var _queryParams = new core.Map();
1002 var _uploadMedia = null;
1003 var _uploadOptions = null;
1004 var _downloadOptions = commons.DownloadOptions.Metadata;
1005 var _body = null;
1006
1007 if (name == null) {
1008 throw new core.ArgumentError("Parameter name is required.");
1009 }
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001010 if ($fields != null) {
1011 _queryParams["fields"] = [$fields];
1012 }
Martin Kustermann3953f0d2017-06-12 16:59:53 +02001013
1014 _url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
1015
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001016 var _response = _requester.request(_url, "GET",
1017 body: _body,
1018 queryParams: _queryParams,
1019 uploadOptions: _uploadOptions,
1020 uploadMedia: _uploadMedia,
1021 downloadOptions: _downloadOptions);
Martin Kustermann3953f0d2017-06-12 16:59:53 +02001022 return _response.then((data) => new TransferRun.fromJson(data));
1023 }
1024
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001025 /// Returns information about running and completed jobs.
1026 ///
1027 /// Request parameters:
1028 ///
1029 /// [parent] - Name of transfer configuration for which transfer runs should
1030 /// be retrieved.
1031 /// Format of transfer configuration resource name is:
1032 /// `projects/{project_id}/transferConfigs/{config_id}`.
1033 /// Value must have pattern
1034 /// "^projects/[^/]+/locations/[^/]+/transferConfigs/[^/]+$".
1035 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001036 /// [pageToken] - Pagination token, which can be used to request a specific
1037 /// page
1038 /// of `ListTransferRunsRequest` list results. For multiple-page
1039 /// results, `ListTransferRunsResponse` outputs
1040 /// a `next_page` token, which can be used as the
1041 /// `page_token` value to request the next page of list results.
1042 ///
Martin Kustermann2a131182017-11-13 13:50:07 +01001043 /// [states] - When specified, only transfer runs with requested states are
1044 /// returned.
1045 ///
1046 /// [pageSize] - Page size. The default page size is the maximum value of 1000
1047 /// results.
1048 ///
Martin Kustermannbe200482017-12-04 11:42:32 +01001049 /// [runAttempt] - Indicates how run attempts are to be pulled.
1050 /// Possible string values are:
1051 /// - "RUN_ATTEMPT_UNSPECIFIED" : A RUN_ATTEMPT_UNSPECIFIED.
1052 /// - "LATEST" : A LATEST.
1053 ///
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001054 /// [$fields] - Selector specifying which fields to include in a partial
1055 /// response.
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001056 ///
1057 /// Completes with a [ListTransferRunsResponse].
1058 ///
1059 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
1060 /// error.
1061 ///
1062 /// If the used [http.Client] completes with an error when making a REST call,
1063 /// this method will complete with the same error.
1064 async.Future<ListTransferRunsResponse> list(core.String parent,
Martin Kustermannbe200482017-12-04 11:42:32 +01001065 {core.String pageToken,
Martin Kustermann2a131182017-11-13 13:50:07 +01001066 core.List<core.String> states,
1067 core.int pageSize,
Martin Kustermannbe200482017-12-04 11:42:32 +01001068 core.String runAttempt,
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001069 core.String $fields}) {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001070 var _url = null;
1071 var _queryParams = new core.Map();
1072 var _uploadMedia = null;
1073 var _uploadOptions = null;
1074 var _downloadOptions = commons.DownloadOptions.Metadata;
1075 var _body = null;
1076
1077 if (parent == null) {
1078 throw new core.ArgumentError("Parameter parent is required.");
1079 }
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001080 if (pageToken != null) {
1081 _queryParams["pageToken"] = [pageToken];
1082 }
Martin Kustermann2a131182017-11-13 13:50:07 +01001083 if (states != null) {
1084 _queryParams["states"] = states;
1085 }
1086 if (pageSize != null) {
1087 _queryParams["pageSize"] = ["${pageSize}"];
1088 }
Martin Kustermannbe200482017-12-04 11:42:32 +01001089 if (runAttempt != null) {
1090 _queryParams["runAttempt"] = [runAttempt];
1091 }
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001092 if ($fields != null) {
1093 _queryParams["fields"] = [$fields];
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001094 }
1095
1096 _url = 'v1/' + commons.Escaper.ecapeVariableReserved('$parent') + '/runs';
1097
1098 var _response = _requester.request(_url, "GET",
1099 body: _body,
1100 queryParams: _queryParams,
1101 uploadOptions: _uploadOptions,
1102 uploadMedia: _uploadMedia,
1103 downloadOptions: _downloadOptions);
1104 return _response
1105 .then((data) => new ListTransferRunsResponse.fromJson(data));
1106 }
1107}
1108
1109class ProjectsLocationsTransferConfigsRunsTransferLogsResourceApi {
1110 final commons.ApiRequester _requester;
1111
1112 ProjectsLocationsTransferConfigsRunsTransferLogsResourceApi(
1113 commons.ApiRequester client)
1114 : _requester = client;
1115
1116 /// Returns user facing log messages for the data transfer run.
1117 ///
1118 /// Request parameters:
1119 ///
1120 /// [parent] - Transfer run name in the form:
1121 /// `projects/{project_id}/transferConfigs/{config_Id}/runs/{run_id}`.
1122 /// Value must have pattern
1123 /// "^projects/[^/]+/locations/[^/]+/transferConfigs/[^/]+/runs/[^/]+$".
1124 ///
1125 /// [pageToken] - Pagination token, which can be used to request a specific
1126 /// page
1127 /// of `ListTransferLogsRequest` list results. For multiple-page
1128 /// results, `ListTransferLogsResponse` outputs
1129 /// a `next_page` token, which can be used as the
1130 /// `page_token` value to request the next page of list results.
1131 ///
1132 /// [pageSize] - Page size. The default page size is the maximum value of 1000
1133 /// results.
1134 ///
1135 /// [messageTypes] - Message types to return. If not populated - INFO, WARNING
1136 /// and ERROR
1137 /// messages are returned.
1138 ///
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001139 /// [$fields] - Selector specifying which fields to include in a partial
1140 /// response.
1141 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001142 /// Completes with a [ListTransferLogsResponse].
1143 ///
1144 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
1145 /// error.
1146 ///
1147 /// If the used [http.Client] completes with an error when making a REST call,
1148 /// this method will complete with the same error.
1149 async.Future<ListTransferLogsResponse> list(core.String parent,
1150 {core.String pageToken,
1151 core.int pageSize,
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001152 core.List<core.String> messageTypes,
1153 core.String $fields}) {
Martin Kustermann3953f0d2017-06-12 16:59:53 +02001154 var _url = null;
1155 var _queryParams = new core.Map();
1156 var _uploadMedia = null;
1157 var _uploadOptions = null;
1158 var _downloadOptions = commons.DownloadOptions.Metadata;
1159 var _body = null;
1160
1161 if (parent == null) {
1162 throw new core.ArgumentError("Parameter parent is required.");
1163 }
1164 if (pageToken != null) {
1165 _queryParams["pageToken"] = [pageToken];
1166 }
Martin Kustermann3953f0d2017-06-12 16:59:53 +02001167 if (pageSize != null) {
1168 _queryParams["pageSize"] = ["${pageSize}"];
1169 }
Martin Kustermann8c5bbda2017-07-10 13:23:47 +02001170 if (messageTypes != null) {
1171 _queryParams["messageTypes"] = messageTypes;
1172 }
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001173 if ($fields != null) {
1174 _queryParams["fields"] = [$fields];
1175 }
Martin Kustermann3953f0d2017-06-12 16:59:53 +02001176
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001177 _url = 'v1/' +
1178 commons.Escaper.ecapeVariableReserved('$parent') +
1179 '/transferLogs';
Martin Kustermann3953f0d2017-06-12 16:59:53 +02001180
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001181 var _response = _requester.request(_url, "GET",
1182 body: _body,
1183 queryParams: _queryParams,
1184 uploadOptions: _uploadOptions,
1185 uploadMedia: _uploadMedia,
1186 downloadOptions: _downloadOptions);
1187 return _response
1188 .then((data) => new ListTransferLogsResponse.fromJson(data));
Martin Kustermann3953f0d2017-06-12 16:59:53 +02001189 }
Martin Kustermann3953f0d2017-06-12 16:59:53 +02001190}
1191
Martin Kustermann24901b32017-05-23 17:10:24 +02001192class ProjectsTransferConfigsResourceApi {
1193 final commons.ApiRequester _requester;
1194
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001195 ProjectsTransferConfigsRunsResourceApi get runs =>
1196 new ProjectsTransferConfigsRunsResourceApi(_requester);
Martin Kustermann24901b32017-05-23 17:10:24 +02001197
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001198 ProjectsTransferConfigsResourceApi(commons.ApiRequester client)
1199 : _requester = client;
Martin Kustermann24901b32017-05-23 17:10:24 +02001200
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001201 /// Creates a new data transfer configuration.
1202 ///
1203 /// [request] - The metadata request object.
1204 ///
1205 /// Request parameters:
1206 ///
1207 /// [parent] - The BigQuery project id where the transfer configuration should
1208 /// be created.
1209 /// Must be in the format /projects/{project_id}/locations/{location_id}
Martin Kustermannbe200482017-12-04 11:42:32 +01001210 /// If specified location and location of the destination bigquery dataset
1211 /// do not match - the request will fail.
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001212 /// Value must have pattern "^projects/[^/]+$".
1213 ///
1214 /// [authorizationCode] - Optional OAuth2 authorization code to use with this
1215 /// transfer configuration.
1216 /// This is required if new credentials are needed, as indicated by
1217 /// `CheckValidCreds`.
1218 /// In order to obtain authorization_code, please make a
1219 /// request to
1220 /// https://www.gstatic.com/bigquerydatatransfer/oauthz/auth?client_id=<datatransferapiclientid>&scope=<data_source_scopes>&redirect_uri=<redirect_uri>
1221 ///
1222 /// * client_id should be OAuth client_id of BigQuery DTS API for the given
1223 /// data source returned by ListDataSources method.
1224 /// * data_source_scopes are the scopes returned by ListDataSources method.
1225 /// * redirect_uri is an optional parameter. If not specified, then
1226 /// authorization code is posted to the opener of authorization flow window.
1227 /// Otherwise it will be sent to the redirect uri. A special value of
1228 /// urn:ietf:wg:oauth:2.0:oob means that authorization code should be
1229 /// returned in the title bar of the browser, with the page text prompting
1230 /// the user to copy the code and paste it in the application.
1231 ///
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001232 /// [$fields] - Selector specifying which fields to include in a partial
1233 /// response.
1234 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001235 /// Completes with a [TransferConfig].
1236 ///
1237 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
1238 /// error.
1239 ///
1240 /// If the used [http.Client] completes with an error when making a REST call,
1241 /// this method will complete with the same error.
1242 async.Future<TransferConfig> create(
1243 TransferConfig request, core.String parent,
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001244 {core.String authorizationCode, core.String $fields}) {
Martin Kustermann24901b32017-05-23 17:10:24 +02001245 var _url = null;
1246 var _queryParams = new core.Map();
1247 var _uploadMedia = null;
1248 var _uploadOptions = null;
1249 var _downloadOptions = commons.DownloadOptions.Metadata;
1250 var _body = null;
1251
1252 if (request != null) {
1253 _body = convert.JSON.encode((request).toJson());
1254 }
1255 if (parent == null) {
1256 throw new core.ArgumentError("Parameter parent is required.");
1257 }
1258 if (authorizationCode != null) {
1259 _queryParams["authorizationCode"] = [authorizationCode];
1260 }
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001261 if ($fields != null) {
1262 _queryParams["fields"] = [$fields];
1263 }
Martin Kustermann24901b32017-05-23 17:10:24 +02001264
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001265 _url = 'v1/' +
1266 commons.Escaper.ecapeVariableReserved('$parent') +
1267 '/transferConfigs';
Martin Kustermann24901b32017-05-23 17:10:24 +02001268
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001269 var _response = _requester.request(_url, "POST",
1270 body: _body,
1271 queryParams: _queryParams,
1272 uploadOptions: _uploadOptions,
1273 uploadMedia: _uploadMedia,
1274 downloadOptions: _downloadOptions);
Martin Kustermann24901b32017-05-23 17:10:24 +02001275 return _response.then((data) => new TransferConfig.fromJson(data));
1276 }
1277
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001278 /// Deletes a data transfer configuration,
1279 /// including any associated transfer runs and logs.
1280 ///
1281 /// Request parameters:
1282 ///
1283 /// [name] - The field will contain name of the resource requested, for
1284 /// example:
1285 /// `projects/{project_id}/transferConfigs/{config_id}`
1286 /// Value must have pattern "^projects/[^/]+/transferConfigs/[^/]+$".
1287 ///
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001288 /// [$fields] - Selector specifying which fields to include in a partial
1289 /// response.
1290 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001291 /// Completes with a [Empty].
1292 ///
1293 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
1294 /// error.
1295 ///
1296 /// If the used [http.Client] completes with an error when making a REST call,
1297 /// this method will complete with the same error.
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001298 async.Future<Empty> delete(core.String name, {core.String $fields}) {
Martin Kustermann24901b32017-05-23 17:10:24 +02001299 var _url = null;
1300 var _queryParams = new core.Map();
1301 var _uploadMedia = null;
1302 var _uploadOptions = null;
1303 var _downloadOptions = commons.DownloadOptions.Metadata;
1304 var _body = null;
1305
1306 if (name == null) {
1307 throw new core.ArgumentError("Parameter name is required.");
1308 }
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001309 if ($fields != null) {
1310 _queryParams["fields"] = [$fields];
1311 }
Martin Kustermann24901b32017-05-23 17:10:24 +02001312
1313 _url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
1314
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001315 var _response = _requester.request(_url, "DELETE",
1316 body: _body,
1317 queryParams: _queryParams,
1318 uploadOptions: _uploadOptions,
1319 uploadMedia: _uploadMedia,
1320 downloadOptions: _downloadOptions);
Martin Kustermann24901b32017-05-23 17:10:24 +02001321 return _response.then((data) => new Empty.fromJson(data));
1322 }
1323
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001324 /// Returns information about a data transfer config.
1325 ///
1326 /// Request parameters:
1327 ///
1328 /// [name] - The field will contain name of the resource requested, for
1329 /// example:
1330 /// `projects/{project_id}/transferConfigs/{config_id}`
1331 /// Value must have pattern "^projects/[^/]+/transferConfigs/[^/]+$".
1332 ///
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001333 /// [$fields] - Selector specifying which fields to include in a partial
1334 /// response.
1335 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001336 /// Completes with a [TransferConfig].
1337 ///
1338 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
1339 /// error.
1340 ///
1341 /// If the used [http.Client] completes with an error when making a REST call,
1342 /// this method will complete with the same error.
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001343 async.Future<TransferConfig> get(core.String name, {core.String $fields}) {
Martin Kustermann24901b32017-05-23 17:10:24 +02001344 var _url = null;
1345 var _queryParams = new core.Map();
1346 var _uploadMedia = null;
1347 var _uploadOptions = null;
1348 var _downloadOptions = commons.DownloadOptions.Metadata;
1349 var _body = null;
1350
1351 if (name == null) {
1352 throw new core.ArgumentError("Parameter name is required.");
1353 }
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001354 if ($fields != null) {
1355 _queryParams["fields"] = [$fields];
1356 }
Martin Kustermann24901b32017-05-23 17:10:24 +02001357
1358 _url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
1359
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001360 var _response = _requester.request(_url, "GET",
1361 body: _body,
1362 queryParams: _queryParams,
1363 uploadOptions: _uploadOptions,
1364 uploadMedia: _uploadMedia,
1365 downloadOptions: _downloadOptions);
Martin Kustermann24901b32017-05-23 17:10:24 +02001366 return _response.then((data) => new TransferConfig.fromJson(data));
1367 }
1368
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001369 /// Returns information about all data transfers in the project.
1370 ///
1371 /// Request parameters:
1372 ///
1373 /// [parent] - The BigQuery project id for which data sources
1374 /// should be returned: `projects/{project_id}`.
1375 /// Value must have pattern "^projects/[^/]+$".
1376 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001377 /// [pageToken] - Pagination token, which can be used to request a specific
1378 /// page
1379 /// of `ListTransfersRequest` list results. For multiple-page
1380 /// results, `ListTransfersResponse` outputs
1381 /// a `next_page` token, which can be used as the
1382 /// `page_token` value to request the next page of list results.
1383 ///
Martin Kustermann2a131182017-11-13 13:50:07 +01001384 /// [pageSize] - Page size. The default page size is the maximum value of 1000
1385 /// results.
1386 ///
1387 /// [dataSourceIds] - When specified, only configurations of requested data
1388 /// sources are returned.
1389 ///
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001390 /// [$fields] - Selector specifying which fields to include in a partial
1391 /// response.
Martin Kustermann0e130012017-10-05 15:54:21 +01001392 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001393 /// Completes with a [ListTransferConfigsResponse].
1394 ///
1395 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
1396 /// error.
1397 ///
1398 /// If the used [http.Client] completes with an error when making a REST call,
1399 /// this method will complete with the same error.
1400 async.Future<ListTransferConfigsResponse> list(core.String parent,
Martin Kustermann2a131182017-11-13 13:50:07 +01001401 {core.String pageToken,
1402 core.int pageSize,
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001403 core.List<core.String> dataSourceIds,
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001404 core.String $fields}) {
Martin Kustermann24901b32017-05-23 17:10:24 +02001405 var _url = null;
1406 var _queryParams = new core.Map();
1407 var _uploadMedia = null;
1408 var _uploadOptions = null;
1409 var _downloadOptions = commons.DownloadOptions.Metadata;
1410 var _body = null;
1411
1412 if (parent == null) {
1413 throw new core.ArgumentError("Parameter parent is required.");
1414 }
Martin Kustermann2a131182017-11-13 13:50:07 +01001415 if (pageToken != null) {
1416 _queryParams["pageToken"] = [pageToken];
1417 }
Martin Kustermannfa83e312017-07-31 12:48:45 +02001418 if (pageSize != null) {
1419 _queryParams["pageSize"] = ["${pageSize}"];
1420 }
Martin Kustermann0e130012017-10-05 15:54:21 +01001421 if (dataSourceIds != null) {
1422 _queryParams["dataSourceIds"] = dataSourceIds;
1423 }
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001424 if ($fields != null) {
1425 _queryParams["fields"] = [$fields];
1426 }
Martin Kustermann24901b32017-05-23 17:10:24 +02001427
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001428 _url = 'v1/' +
1429 commons.Escaper.ecapeVariableReserved('$parent') +
1430 '/transferConfigs';
Martin Kustermann24901b32017-05-23 17:10:24 +02001431
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001432 var _response = _requester.request(_url, "GET",
1433 body: _body,
1434 queryParams: _queryParams,
1435 uploadOptions: _uploadOptions,
1436 uploadMedia: _uploadMedia,
1437 downloadOptions: _downloadOptions);
1438 return _response
1439 .then((data) => new ListTransferConfigsResponse.fromJson(data));
Martin Kustermann24901b32017-05-23 17:10:24 +02001440 }
1441
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001442 /// Updates a data transfer configuration.
1443 /// All fields must be set, even if they are not updated.
1444 ///
1445 /// [request] - The metadata request object.
1446 ///
1447 /// Request parameters:
1448 ///
Martin Kustermann0e130012017-10-05 15:54:21 +01001449 /// [name] - The resource name of the transfer config.
1450 /// Transfer config names have the form
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001451 /// `projects/{project_id}/transferConfigs/{config_id}`.
1452 /// Where `config_id` is usually a uuid, even though it is not
Martin Kustermann0e130012017-10-05 15:54:21 +01001453 /// guaranteed or required. The name is ignored when creating a transfer
1454 /// config.
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001455 /// Value must have pattern "^projects/[^/]+/transferConfigs/[^/]+$".
1456 ///
1457 /// [authorizationCode] - Optional OAuth2 authorization code to use with this
1458 /// transfer configuration.
1459 /// If it is provided, the transfer configuration will be associated with the
Martin Kustermannbe200482017-12-04 11:42:32 +01001460 /// authorizing user.
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001461 /// In order to obtain authorization_code, please make a
1462 /// request to
1463 /// https://www.gstatic.com/bigquerydatatransfer/oauthz/auth?client_id=<datatransferapiclientid>&scope=<data_source_scopes>&redirect_uri=<redirect_uri>
1464 ///
1465 /// * client_id should be OAuth client_id of BigQuery DTS API for the given
1466 /// data source returned by ListDataSources method.
1467 /// * data_source_scopes are the scopes returned by ListDataSources method.
1468 /// * redirect_uri is an optional parameter. If not specified, then
1469 /// authorization code is posted to the opener of authorization flow window.
1470 /// Otherwise it will be sent to the redirect uri. A special value of
1471 /// urn:ietf:wg:oauth:2.0:oob means that authorization code should be
1472 /// returned in the title bar of the browser, with the page text prompting
1473 /// the user to copy the code and paste it in the application.
1474 ///
Martin Kustermann2a131182017-11-13 13:50:07 +01001475 /// [updateMask] - Required list of fields to be updated in this request.
1476 ///
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001477 /// [$fields] - Selector specifying which fields to include in a partial
1478 /// response.
1479 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001480 /// Completes with a [TransferConfig].
1481 ///
1482 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
1483 /// error.
1484 ///
1485 /// If the used [http.Client] completes with an error when making a REST call,
1486 /// this method will complete with the same error.
1487 async.Future<TransferConfig> patch(TransferConfig request, core.String name,
Martin Kustermann2a131182017-11-13 13:50:07 +01001488 {core.String authorizationCode,
1489 core.String updateMask,
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001490 core.String $fields}) {
Martin Kustermann24901b32017-05-23 17:10:24 +02001491 var _url = null;
1492 var _queryParams = new core.Map();
1493 var _uploadMedia = null;
1494 var _uploadOptions = null;
1495 var _downloadOptions = commons.DownloadOptions.Metadata;
1496 var _body = null;
1497
1498 if (request != null) {
1499 _body = convert.JSON.encode((request).toJson());
1500 }
1501 if (name == null) {
1502 throw new core.ArgumentError("Parameter name is required.");
1503 }
Martin Kustermann0e130012017-10-05 15:54:21 +01001504 if (authorizationCode != null) {
1505 _queryParams["authorizationCode"] = [authorizationCode];
1506 }
Martin Kustermann2a131182017-11-13 13:50:07 +01001507 if (updateMask != null) {
1508 _queryParams["updateMask"] = [updateMask];
1509 }
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001510 if ($fields != null) {
1511 _queryParams["fields"] = [$fields];
1512 }
Martin Kustermann24901b32017-05-23 17:10:24 +02001513
1514 _url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
1515
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001516 var _response = _requester.request(_url, "PATCH",
1517 body: _body,
1518 queryParams: _queryParams,
1519 uploadOptions: _uploadOptions,
1520 uploadMedia: _uploadMedia,
1521 downloadOptions: _downloadOptions);
Martin Kustermann24901b32017-05-23 17:10:24 +02001522 return _response.then((data) => new TransferConfig.fromJson(data));
1523 }
1524
Martin Kustermannbe200482017-12-04 11:42:32 +01001525 /// Creates transfer runs for a time range [start_time, end_time].
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001526 /// For each date - or whatever granularity the data source supports - in the
1527 /// range, one transfer run is created.
1528 /// Note that runs are created per UTC time in the time range.
1529 ///
1530 /// [request] - The metadata request object.
1531 ///
1532 /// Request parameters:
1533 ///
1534 /// [parent] - Transfer configuration name in the form:
1535 /// `projects/{project_id}/transferConfigs/{config_id}`.
1536 /// Value must have pattern "^projects/[^/]+/transferConfigs/[^/]+$".
1537 ///
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001538 /// [$fields] - Selector specifying which fields to include in a partial
1539 /// response.
1540 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001541 /// Completes with a [ScheduleTransferRunsResponse].
1542 ///
1543 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
1544 /// error.
1545 ///
1546 /// If the used [http.Client] completes with an error when making a REST call,
1547 /// this method will complete with the same error.
1548 async.Future<ScheduleTransferRunsResponse> scheduleRuns(
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001549 ScheduleTransferRunsRequest request, core.String parent,
1550 {core.String $fields}) {
Martin Kustermann24901b32017-05-23 17:10:24 +02001551 var _url = null;
1552 var _queryParams = new core.Map();
1553 var _uploadMedia = null;
1554 var _uploadOptions = null;
1555 var _downloadOptions = commons.DownloadOptions.Metadata;
1556 var _body = null;
1557
1558 if (request != null) {
1559 _body = convert.JSON.encode((request).toJson());
1560 }
1561 if (parent == null) {
1562 throw new core.ArgumentError("Parameter parent is required.");
1563 }
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001564 if ($fields != null) {
1565 _queryParams["fields"] = [$fields];
1566 }
Martin Kustermann24901b32017-05-23 17:10:24 +02001567
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001568 _url = 'v1/' +
1569 commons.Escaper.ecapeVariableReserved('$parent') +
1570 ':scheduleRuns';
Martin Kustermann24901b32017-05-23 17:10:24 +02001571
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001572 var _response = _requester.request(_url, "POST",
1573 body: _body,
1574 queryParams: _queryParams,
1575 uploadOptions: _uploadOptions,
1576 uploadMedia: _uploadMedia,
1577 downloadOptions: _downloadOptions);
1578 return _response
1579 .then((data) => new ScheduleTransferRunsResponse.fromJson(data));
Martin Kustermann24901b32017-05-23 17:10:24 +02001580 }
Martin Kustermann24901b32017-05-23 17:10:24 +02001581}
1582
Martin Kustermann24901b32017-05-23 17:10:24 +02001583class ProjectsTransferConfigsRunsResourceApi {
1584 final commons.ApiRequester _requester;
1585
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001586 ProjectsTransferConfigsRunsTransferLogsResourceApi get transferLogs =>
1587 new ProjectsTransferConfigsRunsTransferLogsResourceApi(_requester);
Martin Kustermann24901b32017-05-23 17:10:24 +02001588
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001589 ProjectsTransferConfigsRunsResourceApi(commons.ApiRequester client)
1590 : _requester = client;
Martin Kustermann24901b32017-05-23 17:10:24 +02001591
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001592 /// Deletes the specified transfer run.
1593 ///
1594 /// Request parameters:
1595 ///
1596 /// [name] - The field will contain name of the resource requested, for
1597 /// example:
1598 /// `projects/{project_id}/transferConfigs/{config_id}/runs/{run_id}`
1599 /// Value must have pattern
1600 /// "^projects/[^/]+/transferConfigs/[^/]+/runs/[^/]+$".
1601 ///
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001602 /// [$fields] - Selector specifying which fields to include in a partial
1603 /// response.
1604 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001605 /// Completes with a [Empty].
1606 ///
1607 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
1608 /// error.
1609 ///
1610 /// If the used [http.Client] completes with an error when making a REST call,
1611 /// this method will complete with the same error.
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001612 async.Future<Empty> delete(core.String name, {core.String $fields}) {
Martin Kustermann24901b32017-05-23 17:10:24 +02001613 var _url = null;
1614 var _queryParams = new core.Map();
1615 var _uploadMedia = null;
1616 var _uploadOptions = null;
1617 var _downloadOptions = commons.DownloadOptions.Metadata;
1618 var _body = null;
1619
1620 if (name == null) {
1621 throw new core.ArgumentError("Parameter name is required.");
1622 }
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001623 if ($fields != null) {
1624 _queryParams["fields"] = [$fields];
1625 }
Martin Kustermann24901b32017-05-23 17:10:24 +02001626
1627 _url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
1628
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001629 var _response = _requester.request(_url, "DELETE",
1630 body: _body,
1631 queryParams: _queryParams,
1632 uploadOptions: _uploadOptions,
1633 uploadMedia: _uploadMedia,
1634 downloadOptions: _downloadOptions);
Martin Kustermann24901b32017-05-23 17:10:24 +02001635 return _response.then((data) => new Empty.fromJson(data));
1636 }
1637
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001638 /// Returns information about the particular transfer run.
1639 ///
1640 /// Request parameters:
1641 ///
1642 /// [name] - The field will contain name of the resource requested, for
1643 /// example:
1644 /// `projects/{project_id}/transferConfigs/{config_id}/runs/{run_id}`
1645 /// Value must have pattern
1646 /// "^projects/[^/]+/transferConfigs/[^/]+/runs/[^/]+$".
1647 ///
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001648 /// [$fields] - Selector specifying which fields to include in a partial
1649 /// response.
1650 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001651 /// Completes with a [TransferRun].
1652 ///
1653 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
1654 /// error.
1655 ///
1656 /// If the used [http.Client] completes with an error when making a REST call,
1657 /// this method will complete with the same error.
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001658 async.Future<TransferRun> get(core.String name, {core.String $fields}) {
Martin Kustermann24901b32017-05-23 17:10:24 +02001659 var _url = null;
1660 var _queryParams = new core.Map();
1661 var _uploadMedia = null;
1662 var _uploadOptions = null;
1663 var _downloadOptions = commons.DownloadOptions.Metadata;
1664 var _body = null;
1665
1666 if (name == null) {
1667 throw new core.ArgumentError("Parameter name is required.");
1668 }
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001669 if ($fields != null) {
1670 _queryParams["fields"] = [$fields];
1671 }
Martin Kustermann24901b32017-05-23 17:10:24 +02001672
1673 _url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
1674
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001675 var _response = _requester.request(_url, "GET",
1676 body: _body,
1677 queryParams: _queryParams,
1678 uploadOptions: _uploadOptions,
1679 uploadMedia: _uploadMedia,
1680 downloadOptions: _downloadOptions);
Martin Kustermann24901b32017-05-23 17:10:24 +02001681 return _response.then((data) => new TransferRun.fromJson(data));
1682 }
1683
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001684 /// Returns information about running and completed jobs.
1685 ///
1686 /// Request parameters:
1687 ///
1688 /// [parent] - Name of transfer configuration for which transfer runs should
1689 /// be retrieved.
1690 /// Format of transfer configuration resource name is:
1691 /// `projects/{project_id}/transferConfigs/{config_id}`.
1692 /// Value must have pattern "^projects/[^/]+/transferConfigs/[^/]+$".
1693 ///
Martin Kustermann0e130012017-10-05 15:54:21 +01001694 /// [pageToken] - Pagination token, which can be used to request a specific
1695 /// page
1696 /// of `ListTransferRunsRequest` list results. For multiple-page
1697 /// results, `ListTransferRunsResponse` outputs
1698 /// a `next_page` token, which can be used as the
1699 /// `page_token` value to request the next page of list results.
1700 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001701 /// [states] - When specified, only transfer runs with requested states are
1702 /// returned.
1703 ///
Martin Kustermann2a131182017-11-13 13:50:07 +01001704 /// [pageSize] - Page size. The default page size is the maximum value of 1000
1705 /// results.
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001706 ///
Martin Kustermannbe200482017-12-04 11:42:32 +01001707 /// [runAttempt] - Indicates how run attempts are to be pulled.
1708 /// Possible string values are:
1709 /// - "RUN_ATTEMPT_UNSPECIFIED" : A RUN_ATTEMPT_UNSPECIFIED.
1710 /// - "LATEST" : A LATEST.
1711 ///
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001712 /// [$fields] - Selector specifying which fields to include in a partial
1713 /// response.
1714 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001715 /// Completes with a [ListTransferRunsResponse].
1716 ///
1717 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
1718 /// error.
1719 ///
1720 /// If the used [http.Client] completes with an error when making a REST call,
1721 /// this method will complete with the same error.
1722 async.Future<ListTransferRunsResponse> list(core.String parent,
Martin Kustermannbe200482017-12-04 11:42:32 +01001723 {core.String pageToken,
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001724 core.List<core.String> states,
Martin Kustermann2a131182017-11-13 13:50:07 +01001725 core.int pageSize,
Martin Kustermannbe200482017-12-04 11:42:32 +01001726 core.String runAttempt,
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001727 core.String $fields}) {
Martin Kustermann24901b32017-05-23 17:10:24 +02001728 var _url = null;
1729 var _queryParams = new core.Map();
1730 var _uploadMedia = null;
1731 var _uploadOptions = null;
1732 var _downloadOptions = commons.DownloadOptions.Metadata;
1733 var _body = null;
1734
1735 if (parent == null) {
1736 throw new core.ArgumentError("Parameter parent is required.");
1737 }
Martin Kustermann0e130012017-10-05 15:54:21 +01001738 if (pageToken != null) {
1739 _queryParams["pageToken"] = [pageToken];
1740 }
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001741 if (states != null) {
1742 _queryParams["states"] = states;
Martin Kustermann24901b32017-05-23 17:10:24 +02001743 }
Martin Kustermann2a131182017-11-13 13:50:07 +01001744 if (pageSize != null) {
1745 _queryParams["pageSize"] = ["${pageSize}"];
Martin Kustermannfa83e312017-07-31 12:48:45 +02001746 }
Martin Kustermannbe200482017-12-04 11:42:32 +01001747 if (runAttempt != null) {
1748 _queryParams["runAttempt"] = [runAttempt];
1749 }
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001750 if ($fields != null) {
1751 _queryParams["fields"] = [$fields];
1752 }
Martin Kustermann24901b32017-05-23 17:10:24 +02001753
1754 _url = 'v1/' + commons.Escaper.ecapeVariableReserved('$parent') + '/runs';
1755
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001756 var _response = _requester.request(_url, "GET",
1757 body: _body,
1758 queryParams: _queryParams,
1759 uploadOptions: _uploadOptions,
1760 uploadMedia: _uploadMedia,
1761 downloadOptions: _downloadOptions);
1762 return _response
1763 .then((data) => new ListTransferRunsResponse.fromJson(data));
Martin Kustermann24901b32017-05-23 17:10:24 +02001764 }
Martin Kustermann24901b32017-05-23 17:10:24 +02001765}
1766
Martin Kustermann24901b32017-05-23 17:10:24 +02001767class ProjectsTransferConfigsRunsTransferLogsResourceApi {
1768 final commons.ApiRequester _requester;
1769
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001770 ProjectsTransferConfigsRunsTransferLogsResourceApi(
1771 commons.ApiRequester client)
1772 : _requester = client;
Martin Kustermann24901b32017-05-23 17:10:24 +02001773
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001774 /// Returns user facing log messages for the data transfer run.
1775 ///
1776 /// Request parameters:
1777 ///
1778 /// [parent] - Transfer run name in the form:
1779 /// `projects/{project_id}/transferConfigs/{config_Id}/runs/{run_id}`.
1780 /// Value must have pattern
1781 /// "^projects/[^/]+/transferConfigs/[^/]+/runs/[^/]+$".
1782 ///
1783 /// [pageToken] - Pagination token, which can be used to request a specific
1784 /// page
1785 /// of `ListTransferLogsRequest` list results. For multiple-page
1786 /// results, `ListTransferLogsResponse` outputs
1787 /// a `next_page` token, which can be used as the
1788 /// `page_token` value to request the next page of list results.
1789 ///
1790 /// [pageSize] - Page size. The default page size is the maximum value of 1000
1791 /// results.
1792 ///
Martin Kustermannbe200482017-12-04 11:42:32 +01001793 /// [messageTypes] - Message types to return. If not populated - INFO, WARNING
1794 /// and ERROR
1795 /// messages are returned.
1796 ///
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001797 /// [$fields] - Selector specifying which fields to include in a partial
1798 /// response.
1799 ///
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001800 /// Completes with a [ListTransferLogsResponse].
1801 ///
1802 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
1803 /// error.
1804 ///
1805 /// If the used [http.Client] completes with an error when making a REST call,
1806 /// this method will complete with the same error.
1807 async.Future<ListTransferLogsResponse> list(core.String parent,
Martin Kustermannbe200482017-12-04 11:42:32 +01001808 {core.String pageToken,
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001809 core.int pageSize,
Martin Kustermannbe200482017-12-04 11:42:32 +01001810 core.List<core.String> messageTypes,
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001811 core.String $fields}) {
Martin Kustermann24901b32017-05-23 17:10:24 +02001812 var _url = null;
1813 var _queryParams = new core.Map();
1814 var _uploadMedia = null;
1815 var _uploadOptions = null;
1816 var _downloadOptions = commons.DownloadOptions.Metadata;
1817 var _body = null;
1818
1819 if (parent == null) {
1820 throw new core.ArgumentError("Parameter parent is required.");
1821 }
Martin Kustermann24901b32017-05-23 17:10:24 +02001822 if (pageToken != null) {
1823 _queryParams["pageToken"] = [pageToken];
1824 }
1825 if (pageSize != null) {
1826 _queryParams["pageSize"] = ["${pageSize}"];
1827 }
Martin Kustermannbe200482017-12-04 11:42:32 +01001828 if (messageTypes != null) {
1829 _queryParams["messageTypes"] = messageTypes;
1830 }
Martin Kustermann7a3b5f52017-10-23 11:34:19 +02001831 if ($fields != null) {
1832 _queryParams["fields"] = [$fields];
1833 }
Martin Kustermann24901b32017-05-23 17:10:24 +02001834
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001835 _url = 'v1/' +
1836 commons.Escaper.ecapeVariableReserved('$parent') +
1837 '/transferLogs';
Martin Kustermann24901b32017-05-23 17:10:24 +02001838
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001839 var _response = _requester.request(_url, "GET",
1840 body: _body,
1841 queryParams: _queryParams,
1842 uploadOptions: _uploadOptions,
1843 uploadMedia: _uploadMedia,
1844 downloadOptions: _downloadOptions);
1845 return _response
1846 .then((data) => new ListTransferLogsResponse.fromJson(data));
Martin Kustermann24901b32017-05-23 17:10:24 +02001847 }
Martin Kustermann24901b32017-05-23 17:10:24 +02001848}
1849
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001850/// A request to determine whether the user has valid credentials. This method
1851/// is used to limit the number of OAuth popups in the user interface. The
1852/// user id is inferred from the API call context.
1853/// If the data source has the Google+ authorization type, this method
1854/// returns false, as it cannot be determined whether the credentials are
1855/// already valid merely based on the user id.
Martin Kustermann24901b32017-05-23 17:10:24 +02001856class CheckValidCredsRequest {
Martin Kustermann24901b32017-05-23 17:10:24 +02001857 CheckValidCredsRequest();
1858
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001859 CheckValidCredsRequest.fromJson(core.Map _json) {}
Martin Kustermann24901b32017-05-23 17:10:24 +02001860
Martin Kustermann3953f0d2017-06-12 16:59:53 +02001861 core.Map<core.String, core.Object> toJson() {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001862 final core.Map<core.String, core.Object> _json =
1863 new core.Map<core.String, core.Object>();
Martin Kustermann24901b32017-05-23 17:10:24 +02001864 return _json;
1865 }
1866}
1867
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001868/// A response indicating whether the credentials exist and are valid.
Martin Kustermann24901b32017-05-23 17:10:24 +02001869class CheckValidCredsResponse {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001870 /// If set to `true`, the credentials exist and are valid.
Martin Kustermann24901b32017-05-23 17:10:24 +02001871 core.bool hasValidCreds;
1872
1873 CheckValidCredsResponse();
1874
1875 CheckValidCredsResponse.fromJson(core.Map _json) {
1876 if (_json.containsKey("hasValidCreds")) {
1877 hasValidCreds = _json["hasValidCreds"];
1878 }
1879 }
1880
Martin Kustermann3953f0d2017-06-12 16:59:53 +02001881 core.Map<core.String, core.Object> toJson() {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001882 final core.Map<core.String, core.Object> _json =
1883 new core.Map<core.String, core.Object>();
Martin Kustermann24901b32017-05-23 17:10:24 +02001884 if (hasValidCreds != null) {
1885 _json["hasValidCreds"] = hasValidCreds;
1886 }
1887 return _json;
1888 }
1889}
1890
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001891/// Represents data source metadata. Metadata is sufficient to
1892/// render UI and request proper OAuth tokens.
Martin Kustermann24901b32017-05-23 17:10:24 +02001893class DataSource {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001894 /// Indicates the type of authorization.
1895 /// Possible string values are:
1896 /// - "AUTHORIZATION_TYPE_UNSPECIFIED" : Type unspecified.
1897 /// - "AUTHORIZATION_CODE" : Use OAuth 2 authorization codes that can be
1898 /// exchanged
1899 /// for a refresh token on the backend.
1900 /// - "GOOGLE_PLUS_AUTHORIZATION_CODE" : Return an authorization code for a
1901 /// given Google+ page that can then be
1902 /// exchanged for a refresh token on the backend.
Martin Kustermann24901b32017-05-23 17:10:24 +02001903 core.String authorizationType;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001904
1905 /// Data source client id which should be used to receive refresh token.
1906 /// When not supplied, no offline credentials are populated for data transfer.
Martin Kustermann24901b32017-05-23 17:10:24 +02001907 core.String clientId;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001908
1909 /// Specifies whether the data source supports automatic data refresh for the
1910 /// past few days, and how it's supported.
1911 /// For some data sources, data might not be complete until a few days later,
1912 /// so it's useful to refresh data automatically.
1913 /// Possible string values are:
1914 /// - "DATA_REFRESH_TYPE_UNSPECIFIED" : The data source won't support data
1915 /// auto refresh, which is default value.
1916 /// - "SLIDING_WINDOW" : The data source supports data auto refresh, and runs
1917 /// will be scheduled
1918 /// for the past few days. Does not allow custom values to be set for each
1919 /// transfer config.
1920 /// - "CUSTOM_SLIDING_WINDOW" : The data source supports data auto refresh,
1921 /// and runs will be scheduled
1922 /// for the past few days. Allows custom values to be set for each transfer
1923 /// config.
Martin Kustermann24901b32017-05-23 17:10:24 +02001924 core.String dataRefreshType;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001925
1926 /// Data source id.
Martin Kustermann24901b32017-05-23 17:10:24 +02001927 core.String dataSourceId;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001928
1929 /// Default data refresh window on days.
1930 /// Only meaningful when `data_refresh_type` = `SLIDING_WINDOW`.
Martin Kustermann24901b32017-05-23 17:10:24 +02001931 core.int defaultDataRefreshWindowDays;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001932
1933 /// Default data transfer schedule.
1934 /// Examples of valid schedules include:
1935 /// `1st,3rd monday of month 15:30`,
1936 /// `every wed,fri of jan,jun 13:15`, and
1937 /// `first sunday of quarter 00:00`.
Martin Kustermann24901b32017-05-23 17:10:24 +02001938 core.String defaultSchedule;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001939
1940 /// User friendly data source description string.
Martin Kustermann24901b32017-05-23 17:10:24 +02001941 core.String description;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001942
1943 /// User friendly data source name.
Martin Kustermann24901b32017-05-23 17:10:24 +02001944 core.String displayName;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001945
1946 /// Url for the help document for this data source.
Martin Kustermann24901b32017-05-23 17:10:24 +02001947 core.String helpUrl;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001948
1949 /// Disables backfilling and manual run scheduling
1950 /// for the data source.
Martin Kustermann24901b32017-05-23 17:10:24 +02001951 core.bool manualRunsDisabled;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001952
1953 /// The minimum interval between two consecutive scheduled runs.
1954 core.String minimumScheduleInterval;
1955
1956 /// Data source resource name.
Martin Kustermann24901b32017-05-23 17:10:24 +02001957 core.String name;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001958
1959 /// Data source parameters.
Martin Kustermann24901b32017-05-23 17:10:24 +02001960 core.List<DataSourceParameter> parameters;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001961
1962 /// Api auth scopes for which refresh token needs to be obtained. Only valid
1963 /// when `client_id` is specified. Ignored otherwise. These are scopes needed
1964 /// by a data source to prepare data and ingest them into BigQuery,
1965 /// e.g., https://www.googleapis.com/auth/bigquery
Martin Kustermann24901b32017-05-23 17:10:24 +02001966 core.List<core.String> scopes;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001967
1968 /// Specifies whether the data source supports a user defined schedule, or
1969 /// operates on the default schedule.
1970 /// When set to `true`, user can override default schedule.
Martin Kustermann24901b32017-05-23 17:10:24 +02001971 core.bool supportsCustomSchedule;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001972
1973 /// Indicates whether the data source supports multiple transfers
1974 /// to different BigQuery targets.
Martin Kustermann24901b32017-05-23 17:10:24 +02001975 core.bool supportsMultipleTransfers;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001976
1977 /// Transfer type. Currently supports only batch transfers,
1978 /// which are transfers that use the BigQuery batch APIs (load or
1979 /// query) to ingest the data.
1980 /// Possible string values are:
1981 /// - "TRANSFER_TYPE_UNSPECIFIED" : Invalid or Unknown transfer type
1982 /// placeholder.
1983 /// - "BATCH" : Batch data transfer.
1984 /// - "STREAMING" : Streaming data transfer. Streaming data source currently
1985 /// doesn't
1986 /// support multiple transfer configs per project.
Martin Kustermann24901b32017-05-23 17:10:24 +02001987 core.String transferType;
1988
Martin Kustermann5eb85c12017-09-11 12:35:54 +02001989 /// The number of seconds to wait for an update from the data source
1990 /// before BigQuery marks the transfer as failed.
1991 core.int updateDeadlineSeconds;
1992
Martin Kustermann24901b32017-05-23 17:10:24 +02001993 DataSource();
1994
1995 DataSource.fromJson(core.Map _json) {
1996 if (_json.containsKey("authorizationType")) {
1997 authorizationType = _json["authorizationType"];
1998 }
1999 if (_json.containsKey("clientId")) {
2000 clientId = _json["clientId"];
2001 }
2002 if (_json.containsKey("dataRefreshType")) {
2003 dataRefreshType = _json["dataRefreshType"];
2004 }
2005 if (_json.containsKey("dataSourceId")) {
2006 dataSourceId = _json["dataSourceId"];
2007 }
2008 if (_json.containsKey("defaultDataRefreshWindowDays")) {
2009 defaultDataRefreshWindowDays = _json["defaultDataRefreshWindowDays"];
2010 }
2011 if (_json.containsKey("defaultSchedule")) {
2012 defaultSchedule = _json["defaultSchedule"];
2013 }
2014 if (_json.containsKey("description")) {
2015 description = _json["description"];
2016 }
2017 if (_json.containsKey("displayName")) {
2018 displayName = _json["displayName"];
2019 }
2020 if (_json.containsKey("helpUrl")) {
2021 helpUrl = _json["helpUrl"];
2022 }
2023 if (_json.containsKey("manualRunsDisabled")) {
2024 manualRunsDisabled = _json["manualRunsDisabled"];
2025 }
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002026 if (_json.containsKey("minimumScheduleInterval")) {
2027 minimumScheduleInterval = _json["minimumScheduleInterval"];
2028 }
Martin Kustermann24901b32017-05-23 17:10:24 +02002029 if (_json.containsKey("name")) {
2030 name = _json["name"];
2031 }
2032 if (_json.containsKey("parameters")) {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002033 parameters = _json["parameters"]
2034 .map((value) => new DataSourceParameter.fromJson(value))
2035 .toList();
Martin Kustermann24901b32017-05-23 17:10:24 +02002036 }
2037 if (_json.containsKey("scopes")) {
2038 scopes = _json["scopes"];
2039 }
Martin Kustermann24901b32017-05-23 17:10:24 +02002040 if (_json.containsKey("supportsCustomSchedule")) {
2041 supportsCustomSchedule = _json["supportsCustomSchedule"];
2042 }
2043 if (_json.containsKey("supportsMultipleTransfers")) {
2044 supportsMultipleTransfers = _json["supportsMultipleTransfers"];
2045 }
2046 if (_json.containsKey("transferType")) {
2047 transferType = _json["transferType"];
2048 }
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002049 if (_json.containsKey("updateDeadlineSeconds")) {
2050 updateDeadlineSeconds = _json["updateDeadlineSeconds"];
2051 }
Martin Kustermann24901b32017-05-23 17:10:24 +02002052 }
2053
Martin Kustermann3953f0d2017-06-12 16:59:53 +02002054 core.Map<core.String, core.Object> toJson() {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002055 final core.Map<core.String, core.Object> _json =
2056 new core.Map<core.String, core.Object>();
Martin Kustermann24901b32017-05-23 17:10:24 +02002057 if (authorizationType != null) {
2058 _json["authorizationType"] = authorizationType;
2059 }
2060 if (clientId != null) {
2061 _json["clientId"] = clientId;
2062 }
2063 if (dataRefreshType != null) {
2064 _json["dataRefreshType"] = dataRefreshType;
2065 }
2066 if (dataSourceId != null) {
2067 _json["dataSourceId"] = dataSourceId;
2068 }
2069 if (defaultDataRefreshWindowDays != null) {
2070 _json["defaultDataRefreshWindowDays"] = defaultDataRefreshWindowDays;
2071 }
2072 if (defaultSchedule != null) {
2073 _json["defaultSchedule"] = defaultSchedule;
2074 }
2075 if (description != null) {
2076 _json["description"] = description;
2077 }
2078 if (displayName != null) {
2079 _json["displayName"] = displayName;
2080 }
2081 if (helpUrl != null) {
2082 _json["helpUrl"] = helpUrl;
2083 }
2084 if (manualRunsDisabled != null) {
2085 _json["manualRunsDisabled"] = manualRunsDisabled;
2086 }
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002087 if (minimumScheduleInterval != null) {
2088 _json["minimumScheduleInterval"] = minimumScheduleInterval;
2089 }
Martin Kustermann24901b32017-05-23 17:10:24 +02002090 if (name != null) {
2091 _json["name"] = name;
2092 }
2093 if (parameters != null) {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002094 _json["parameters"] =
2095 parameters.map((value) => (value).toJson()).toList();
Martin Kustermann24901b32017-05-23 17:10:24 +02002096 }
2097 if (scopes != null) {
2098 _json["scopes"] = scopes;
2099 }
Martin Kustermann24901b32017-05-23 17:10:24 +02002100 if (supportsCustomSchedule != null) {
2101 _json["supportsCustomSchedule"] = supportsCustomSchedule;
2102 }
2103 if (supportsMultipleTransfers != null) {
2104 _json["supportsMultipleTransfers"] = supportsMultipleTransfers;
2105 }
2106 if (transferType != null) {
2107 _json["transferType"] = transferType;
2108 }
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002109 if (updateDeadlineSeconds != null) {
2110 _json["updateDeadlineSeconds"] = updateDeadlineSeconds;
2111 }
Martin Kustermann24901b32017-05-23 17:10:24 +02002112 return _json;
2113 }
2114}
2115
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002116/// Represents a data source parameter with validation rules, so that
2117/// parameters can be rendered in the UI. These parameters are given to us by
2118/// supported data sources, and include all needed information for rendering
2119/// and validation.
2120/// Thus, whoever uses this api can decide to generate either generic ui,
2121/// or custom data source specific forms.
Martin Kustermann24901b32017-05-23 17:10:24 +02002122class DataSourceParameter {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002123 /// All possible values for the parameter.
Martin Kustermann24901b32017-05-23 17:10:24 +02002124 core.List<core.String> allowedValues;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002125
2126 /// Parameter description.
Martin Kustermann24901b32017-05-23 17:10:24 +02002127 core.String description;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002128
2129 /// Parameter display name in the user interface.
Martin Kustermann24901b32017-05-23 17:10:24 +02002130 core.String displayName;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002131
2132 /// When parameter is a record, describes child fields.
Martin Kustermann24901b32017-05-23 17:10:24 +02002133 core.List<DataSourceParameter> fields;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002134
2135 /// Cannot be changed after initial creation.
Martin Kustermann24901b32017-05-23 17:10:24 +02002136 core.bool immutable;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002137
2138 /// For integer and double values specifies maxminum allowed value.
Martin Kustermann24901b32017-05-23 17:10:24 +02002139 core.double maxValue;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002140
2141 /// For integer and double values specifies minimum allowed value.
Martin Kustermann24901b32017-05-23 17:10:24 +02002142 core.double minValue;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002143
2144 /// Parameter identifier.
Martin Kustermann24901b32017-05-23 17:10:24 +02002145 core.String paramId;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002146
2147 /// If set to true, schema should be taken from the parent with the same
2148 /// parameter_id. Only applicable when parameter type is RECORD.
Martin Kustermann24901b32017-05-23 17:10:24 +02002149 core.bool recurse;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002150
2151 /// Can parameter have multiple values.
Martin Kustermann24901b32017-05-23 17:10:24 +02002152 core.bool repeated;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002153
2154 /// Is parameter required.
Martin Kustermann24901b32017-05-23 17:10:24 +02002155 core.bool required;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002156
2157 /// Parameter type.
2158 /// Possible string values are:
2159 /// - "TYPE_UNSPECIFIED" : Type unspecified.
2160 /// - "STRING" : String parameter.
2161 /// - "INTEGER" : Integer parameter (64-bits).
2162 /// Will be serialized to json as string.
2163 /// - "DOUBLE" : Double precision floating point parameter.
2164 /// - "BOOLEAN" : Boolean parameter.
2165 /// - "RECORD" : Record parameter.
2166 /// - "PLUS_PAGE" : Page ID for a Google+ Page.
Martin Kustermann24901b32017-05-23 17:10:24 +02002167 core.String type;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002168
2169 /// Description of the requirements for this field, in case the user input
2170 /// does
2171 /// not fulfill the regex pattern or min/max values.
Martin Kustermann24901b32017-05-23 17:10:24 +02002172 core.String validationDescription;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002173
2174 /// URL to a help document to further explain the naming requirements.
Martin Kustermann24901b32017-05-23 17:10:24 +02002175 core.String validationHelpUrl;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002176
2177 /// Regular expression which can be used for parameter validation.
Martin Kustermann24901b32017-05-23 17:10:24 +02002178 core.String validationRegex;
2179
2180 DataSourceParameter();
2181
2182 DataSourceParameter.fromJson(core.Map _json) {
2183 if (_json.containsKey("allowedValues")) {
2184 allowedValues = _json["allowedValues"];
2185 }
2186 if (_json.containsKey("description")) {
2187 description = _json["description"];
2188 }
2189 if (_json.containsKey("displayName")) {
2190 displayName = _json["displayName"];
2191 }
2192 if (_json.containsKey("fields")) {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002193 fields = _json["fields"]
2194 .map((value) => new DataSourceParameter.fromJson(value))
2195 .toList();
Martin Kustermann24901b32017-05-23 17:10:24 +02002196 }
2197 if (_json.containsKey("immutable")) {
2198 immutable = _json["immutable"];
2199 }
2200 if (_json.containsKey("maxValue")) {
2201 maxValue = _json["maxValue"];
2202 }
2203 if (_json.containsKey("minValue")) {
2204 minValue = _json["minValue"];
2205 }
2206 if (_json.containsKey("paramId")) {
2207 paramId = _json["paramId"];
2208 }
2209 if (_json.containsKey("recurse")) {
2210 recurse = _json["recurse"];
2211 }
2212 if (_json.containsKey("repeated")) {
2213 repeated = _json["repeated"];
2214 }
2215 if (_json.containsKey("required")) {
2216 required = _json["required"];
2217 }
2218 if (_json.containsKey("type")) {
2219 type = _json["type"];
2220 }
2221 if (_json.containsKey("validationDescription")) {
2222 validationDescription = _json["validationDescription"];
2223 }
2224 if (_json.containsKey("validationHelpUrl")) {
2225 validationHelpUrl = _json["validationHelpUrl"];
2226 }
2227 if (_json.containsKey("validationRegex")) {
2228 validationRegex = _json["validationRegex"];
2229 }
2230 }
2231
Martin Kustermann3953f0d2017-06-12 16:59:53 +02002232 core.Map<core.String, core.Object> toJson() {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002233 final core.Map<core.String, core.Object> _json =
2234 new core.Map<core.String, core.Object>();
Martin Kustermann24901b32017-05-23 17:10:24 +02002235 if (allowedValues != null) {
2236 _json["allowedValues"] = allowedValues;
2237 }
2238 if (description != null) {
2239 _json["description"] = description;
2240 }
2241 if (displayName != null) {
2242 _json["displayName"] = displayName;
2243 }
2244 if (fields != null) {
2245 _json["fields"] = fields.map((value) => (value).toJson()).toList();
2246 }
2247 if (immutable != null) {
2248 _json["immutable"] = immutable;
2249 }
2250 if (maxValue != null) {
2251 _json["maxValue"] = maxValue;
2252 }
2253 if (minValue != null) {
2254 _json["minValue"] = minValue;
2255 }
2256 if (paramId != null) {
2257 _json["paramId"] = paramId;
2258 }
2259 if (recurse != null) {
2260 _json["recurse"] = recurse;
2261 }
2262 if (repeated != null) {
2263 _json["repeated"] = repeated;
2264 }
2265 if (required != null) {
2266 _json["required"] = required;
2267 }
2268 if (type != null) {
2269 _json["type"] = type;
2270 }
2271 if (validationDescription != null) {
2272 _json["validationDescription"] = validationDescription;
2273 }
2274 if (validationHelpUrl != null) {
2275 _json["validationHelpUrl"] = validationHelpUrl;
2276 }
2277 if (validationRegex != null) {
2278 _json["validationRegex"] = validationRegex;
2279 }
2280 return _json;
2281 }
2282}
2283
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002284/// A generic empty message that you can re-use to avoid defining duplicated
2285/// empty messages in your APIs. A typical example is to use it as the request
2286/// or the response type of an API method. For instance:
2287///
2288/// service Foo {
2289/// rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
2290/// }
2291///
2292/// The JSON representation for `Empty` is empty JSON object `{}`.
Martin Kustermann24901b32017-05-23 17:10:24 +02002293class Empty {
Martin Kustermann24901b32017-05-23 17:10:24 +02002294 Empty();
2295
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002296 Empty.fromJson(core.Map _json) {}
Martin Kustermann24901b32017-05-23 17:10:24 +02002297
Martin Kustermann3953f0d2017-06-12 16:59:53 +02002298 core.Map<core.String, core.Object> toJson() {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002299 final core.Map<core.String, core.Object> _json =
2300 new core.Map<core.String, core.Object>();
Martin Kustermann24901b32017-05-23 17:10:24 +02002301 return _json;
2302 }
2303}
2304
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002305/// Returns list of supported data sources and their metadata.
Martin Kustermann24901b32017-05-23 17:10:24 +02002306class ListDataSourcesResponse {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002307 /// List of supported data sources and their transfer settings.
Martin Kustermann24901b32017-05-23 17:10:24 +02002308 core.List<DataSource> dataSources;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002309
Martin Kustermann0e130012017-10-05 15:54:21 +01002310 /// Output only. The next-pagination token. For multiple-page list results,
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002311 /// this token can be used as the
2312 /// `ListDataSourcesRequest.page_token`
2313 /// to request the next page of list results.
Martin Kustermann24901b32017-05-23 17:10:24 +02002314 core.String nextPageToken;
2315
2316 ListDataSourcesResponse();
2317
2318 ListDataSourcesResponse.fromJson(core.Map _json) {
2319 if (_json.containsKey("dataSources")) {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002320 dataSources = _json["dataSources"]
2321 .map((value) => new DataSource.fromJson(value))
2322 .toList();
Martin Kustermann24901b32017-05-23 17:10:24 +02002323 }
2324 if (_json.containsKey("nextPageToken")) {
2325 nextPageToken = _json["nextPageToken"];
2326 }
2327 }
2328
Martin Kustermann3953f0d2017-06-12 16:59:53 +02002329 core.Map<core.String, core.Object> toJson() {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002330 final core.Map<core.String, core.Object> _json =
2331 new core.Map<core.String, core.Object>();
Martin Kustermann24901b32017-05-23 17:10:24 +02002332 if (dataSources != null) {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002333 _json["dataSources"] =
2334 dataSources.map((value) => (value).toJson()).toList();
Martin Kustermann24901b32017-05-23 17:10:24 +02002335 }
2336 if (nextPageToken != null) {
2337 _json["nextPageToken"] = nextPageToken;
2338 }
2339 return _json;
2340 }
2341}
2342
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002343/// The response message for Locations.ListLocations.
Martin Kustermanna28e6712017-08-21 17:36:35 +02002344class ListLocationsResponse {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002345 /// A list of locations that matches the specified filter in the request.
Martin Kustermanna28e6712017-08-21 17:36:35 +02002346 core.List<Location> locations;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002347
2348 /// The standard List next-page token.
Martin Kustermanna28e6712017-08-21 17:36:35 +02002349 core.String nextPageToken;
2350
2351 ListLocationsResponse();
2352
2353 ListLocationsResponse.fromJson(core.Map _json) {
2354 if (_json.containsKey("locations")) {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002355 locations = _json["locations"]
2356 .map((value) => new Location.fromJson(value))
2357 .toList();
Martin Kustermanna28e6712017-08-21 17:36:35 +02002358 }
2359 if (_json.containsKey("nextPageToken")) {
2360 nextPageToken = _json["nextPageToken"];
2361 }
2362 }
2363
2364 core.Map<core.String, core.Object> toJson() {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002365 final core.Map<core.String, core.Object> _json =
2366 new core.Map<core.String, core.Object>();
Martin Kustermanna28e6712017-08-21 17:36:35 +02002367 if (locations != null) {
2368 _json["locations"] = locations.map((value) => (value).toJson()).toList();
2369 }
2370 if (nextPageToken != null) {
2371 _json["nextPageToken"] = nextPageToken;
2372 }
2373 return _json;
2374 }
2375}
2376
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002377/// The returned list of pipelines in the project.
Martin Kustermann24901b32017-05-23 17:10:24 +02002378class ListTransferConfigsResponse {
Martin Kustermann0e130012017-10-05 15:54:21 +01002379 /// Output only. The next-pagination token. For multiple-page list results,
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002380 /// this token can be used as the
2381 /// `ListTransferConfigsRequest.page_token`
2382 /// to request the next page of list results.
Martin Kustermann24901b32017-05-23 17:10:24 +02002383 core.String nextPageToken;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002384
Martin Kustermann0e130012017-10-05 15:54:21 +01002385 /// Output only. The stored pipeline transfer configurations.
Martin Kustermann24901b32017-05-23 17:10:24 +02002386 core.List<TransferConfig> transferConfigs;
2387
2388 ListTransferConfigsResponse();
2389
2390 ListTransferConfigsResponse.fromJson(core.Map _json) {
2391 if (_json.containsKey("nextPageToken")) {
2392 nextPageToken = _json["nextPageToken"];
2393 }
2394 if (_json.containsKey("transferConfigs")) {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002395 transferConfigs = _json["transferConfigs"]
2396 .map((value) => new TransferConfig.fromJson(value))
2397 .toList();
Martin Kustermann24901b32017-05-23 17:10:24 +02002398 }
2399 }
2400
Martin Kustermann3953f0d2017-06-12 16:59:53 +02002401 core.Map<core.String, core.Object> toJson() {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002402 final core.Map<core.String, core.Object> _json =
2403 new core.Map<core.String, core.Object>();
Martin Kustermann24901b32017-05-23 17:10:24 +02002404 if (nextPageToken != null) {
2405 _json["nextPageToken"] = nextPageToken;
2406 }
2407 if (transferConfigs != null) {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002408 _json["transferConfigs"] =
2409 transferConfigs.map((value) => (value).toJson()).toList();
Martin Kustermann24901b32017-05-23 17:10:24 +02002410 }
2411 return _json;
2412 }
2413}
2414
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002415/// The returned list transfer run messages.
Martin Kustermann24901b32017-05-23 17:10:24 +02002416class ListTransferLogsResponse {
Martin Kustermann0e130012017-10-05 15:54:21 +01002417 /// Output only. The next-pagination token. For multiple-page list results,
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002418 /// this token can be used as the
2419 /// `GetTransferRunLogRequest.page_token`
2420 /// to request the next page of list results.
Martin Kustermann24901b32017-05-23 17:10:24 +02002421 core.String nextPageToken;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002422
Martin Kustermann0e130012017-10-05 15:54:21 +01002423 /// Output only. The stored pipeline transfer messages.
Martin Kustermann24901b32017-05-23 17:10:24 +02002424 core.List<TransferMessage> transferMessages;
2425
2426 ListTransferLogsResponse();
2427
2428 ListTransferLogsResponse.fromJson(core.Map _json) {
2429 if (_json.containsKey("nextPageToken")) {
2430 nextPageToken = _json["nextPageToken"];
2431 }
2432 if (_json.containsKey("transferMessages")) {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002433 transferMessages = _json["transferMessages"]
2434 .map((value) => new TransferMessage.fromJson(value))
2435 .toList();
Martin Kustermann24901b32017-05-23 17:10:24 +02002436 }
2437 }
2438
Martin Kustermann3953f0d2017-06-12 16:59:53 +02002439 core.Map<core.String, core.Object> toJson() {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002440 final core.Map<core.String, core.Object> _json =
2441 new core.Map<core.String, core.Object>();
Martin Kustermann24901b32017-05-23 17:10:24 +02002442 if (nextPageToken != null) {
2443 _json["nextPageToken"] = nextPageToken;
2444 }
2445 if (transferMessages != null) {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002446 _json["transferMessages"] =
2447 transferMessages.map((value) => (value).toJson()).toList();
Martin Kustermann24901b32017-05-23 17:10:24 +02002448 }
2449 return _json;
2450 }
2451}
2452
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002453/// The returned list of pipelines in the project.
Martin Kustermann24901b32017-05-23 17:10:24 +02002454class ListTransferRunsResponse {
Martin Kustermann0e130012017-10-05 15:54:21 +01002455 /// Output only. The next-pagination token. For multiple-page list results,
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002456 /// this token can be used as the
2457 /// `ListTransferRunsRequest.page_token`
2458 /// to request the next page of list results.
Martin Kustermann24901b32017-05-23 17:10:24 +02002459 core.String nextPageToken;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002460
Martin Kustermann0e130012017-10-05 15:54:21 +01002461 /// Output only. The stored pipeline transfer runs.
Martin Kustermann24901b32017-05-23 17:10:24 +02002462 core.List<TransferRun> transferRuns;
2463
2464 ListTransferRunsResponse();
2465
2466 ListTransferRunsResponse.fromJson(core.Map _json) {
2467 if (_json.containsKey("nextPageToken")) {
2468 nextPageToken = _json["nextPageToken"];
2469 }
2470 if (_json.containsKey("transferRuns")) {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002471 transferRuns = _json["transferRuns"]
2472 .map((value) => new TransferRun.fromJson(value))
2473 .toList();
Martin Kustermann24901b32017-05-23 17:10:24 +02002474 }
2475 }
2476
Martin Kustermann3953f0d2017-06-12 16:59:53 +02002477 core.Map<core.String, core.Object> toJson() {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002478 final core.Map<core.String, core.Object> _json =
2479 new core.Map<core.String, core.Object>();
Martin Kustermann24901b32017-05-23 17:10:24 +02002480 if (nextPageToken != null) {
2481 _json["nextPageToken"] = nextPageToken;
2482 }
2483 if (transferRuns != null) {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002484 _json["transferRuns"] =
2485 transferRuns.map((value) => (value).toJson()).toList();
Martin Kustermann24901b32017-05-23 17:10:24 +02002486 }
2487 return _json;
2488 }
2489}
2490
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002491/// A resource that represents Google Cloud Platform location.
Martin Kustermanna28e6712017-08-21 17:36:35 +02002492class Location {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002493 /// Cross-service attributes for the location. For example
2494 ///
2495 /// {"cloud.googleapis.com/region": "us-east1"}
Martin Kustermanna28e6712017-08-21 17:36:35 +02002496 core.Map<core.String, core.String> labels;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002497
2498 /// The canonical id for this location. For example: `"us-east1"`.
Martin Kustermanna28e6712017-08-21 17:36:35 +02002499 core.String locationId;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002500
2501 /// Service-specific metadata. For example the available capacity at the given
2502 /// location.
2503 ///
2504 /// The values for Object must be JSON objects. It can consist of `num`,
2505 /// `String`, `bool` and `null` as well as `Map` and `List` values.
Martin Kustermanna28e6712017-08-21 17:36:35 +02002506 core.Map<core.String, core.Object> metadata;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002507
2508 /// Resource name for the location, which may vary between implementations.
2509 /// For example: `"projects/example-project/locations/us-east1"`
Martin Kustermanna28e6712017-08-21 17:36:35 +02002510 core.String name;
2511
2512 Location();
2513
2514 Location.fromJson(core.Map _json) {
2515 if (_json.containsKey("labels")) {
2516 labels = _json["labels"];
2517 }
2518 if (_json.containsKey("locationId")) {
2519 locationId = _json["locationId"];
2520 }
2521 if (_json.containsKey("metadata")) {
2522 metadata = _json["metadata"];
2523 }
2524 if (_json.containsKey("name")) {
2525 name = _json["name"];
2526 }
2527 }
2528
2529 core.Map<core.String, core.Object> toJson() {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002530 final core.Map<core.String, core.Object> _json =
2531 new core.Map<core.String, core.Object>();
Martin Kustermanna28e6712017-08-21 17:36:35 +02002532 if (labels != null) {
2533 _json["labels"] = labels;
2534 }
2535 if (locationId != null) {
2536 _json["locationId"] = locationId;
2537 }
2538 if (metadata != null) {
2539 _json["metadata"] = metadata;
2540 }
2541 if (name != null) {
2542 _json["name"] = name;
2543 }
2544 return _json;
2545 }
2546}
2547
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002548/// A request to schedule transfer runs for a time range.
Martin Kustermann24901b32017-05-23 17:10:24 +02002549class ScheduleTransferRunsRequest {
Martin Kustermann0e130012017-10-05 15:54:21 +01002550 /// End time of the range of transfer runs. For example,
2551 /// `"2017-05-30T00:00:00+00:00"`.
2552 core.String endTime;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002553
Martin Kustermann0e130012017-10-05 15:54:21 +01002554 /// Start time of the range of transfer runs. For example,
2555 /// `"2017-05-25T00:00:00+00:00"`.
2556 core.String startTime;
Martin Kustermann24901b32017-05-23 17:10:24 +02002557
2558 ScheduleTransferRunsRequest();
2559
2560 ScheduleTransferRunsRequest.fromJson(core.Map _json) {
Martin Kustermann0e130012017-10-05 15:54:21 +01002561 if (_json.containsKey("endTime")) {
2562 endTime = _json["endTime"];
Martin Kustermann24901b32017-05-23 17:10:24 +02002563 }
Martin Kustermann0e130012017-10-05 15:54:21 +01002564 if (_json.containsKey("startTime")) {
2565 startTime = _json["startTime"];
Martin Kustermann24901b32017-05-23 17:10:24 +02002566 }
2567 }
2568
Martin Kustermann3953f0d2017-06-12 16:59:53 +02002569 core.Map<core.String, core.Object> toJson() {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002570 final core.Map<core.String, core.Object> _json =
2571 new core.Map<core.String, core.Object>();
Martin Kustermann0e130012017-10-05 15:54:21 +01002572 if (endTime != null) {
2573 _json["endTime"] = endTime;
Martin Kustermann24901b32017-05-23 17:10:24 +02002574 }
Martin Kustermann0e130012017-10-05 15:54:21 +01002575 if (startTime != null) {
2576 _json["startTime"] = startTime;
Martin Kustermann24901b32017-05-23 17:10:24 +02002577 }
2578 return _json;
2579 }
2580}
2581
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002582/// A response to schedule transfer runs for a time range.
Martin Kustermann24901b32017-05-23 17:10:24 +02002583class ScheduleTransferRunsResponse {
Martin Kustermann0e130012017-10-05 15:54:21 +01002584 /// The transfer runs that were scheduled.
2585 core.List<TransferRun> runs;
Martin Kustermann24901b32017-05-23 17:10:24 +02002586
2587 ScheduleTransferRunsResponse();
2588
2589 ScheduleTransferRunsResponse.fromJson(core.Map _json) {
Martin Kustermann0e130012017-10-05 15:54:21 +01002590 if (_json.containsKey("runs")) {
2591 runs = _json["runs"]
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002592 .map((value) => new TransferRun.fromJson(value))
2593 .toList();
Martin Kustermann24901b32017-05-23 17:10:24 +02002594 }
2595 }
2596
Martin Kustermann3953f0d2017-06-12 16:59:53 +02002597 core.Map<core.String, core.Object> toJson() {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002598 final core.Map<core.String, core.Object> _json =
2599 new core.Map<core.String, core.Object>();
Martin Kustermann0e130012017-10-05 15:54:21 +01002600 if (runs != null) {
2601 _json["runs"] = runs.map((value) => (value).toJson()).toList();
Martin Kustermann24901b32017-05-23 17:10:24 +02002602 }
2603 return _json;
2604 }
2605}
2606
Martin Kustermann2a131182017-11-13 13:50:07 +01002607/// The `Status` type defines a logical error model that is suitable for
2608/// different
2609/// programming environments, including REST APIs and RPC APIs. It is used by
2610/// [gRPC](https://github.com/grpc). The error model is designed to be:
2611///
2612/// - Simple to use and understand for most users
2613/// - Flexible enough to meet unexpected needs
2614///
2615/// # Overview
2616///
2617/// The `Status` message contains three pieces of data: error code, error
2618/// message,
2619/// and error details. The error code should be an enum value of
2620/// google.rpc.Code, but it may accept additional error codes if needed. The
2621/// error message should be a developer-facing English message that helps
2622/// developers *understand* and *resolve* the error. If a localized user-facing
2623/// error message is needed, put the localized message in the error details or
2624/// localize it in the client. The optional error details may contain arbitrary
2625/// information about the error. There is a predefined set of error detail types
2626/// in the package `google.rpc` that can be used for common error conditions.
2627///
2628/// # Language mapping
2629///
2630/// The `Status` message is the logical representation of the error model, but
2631/// it
2632/// is not necessarily the actual wire format. When the `Status` message is
2633/// exposed in different client libraries and different wire protocols, it can
2634/// be
2635/// mapped differently. For example, it will likely be mapped to some exceptions
2636/// in Java, but more likely mapped to some error codes in C.
2637///
2638/// # Other uses
2639///
2640/// The error model and the `Status` message can be used in a variety of
2641/// environments, either with or without APIs, to provide a
2642/// consistent developer experience across different environments.
2643///
2644/// Example uses of this error model include:
2645///
2646/// - Partial errors. If a service needs to return partial errors to the client,
2647/// it may embed the `Status` in the normal response to indicate the partial
2648/// errors.
2649///
2650/// - Workflow errors. A typical workflow has multiple steps. Each step may
2651/// have a `Status` message for error reporting.
2652///
2653/// - Batch operations. If a client uses batch request and batch response, the
2654/// `Status` message should be used directly inside batch response, one for
2655/// each error sub-response.
2656///
2657/// - Asynchronous operations. If an API call embeds asynchronous operation
2658/// results in its response, the status of those operations should be
2659/// represented directly using the `Status` message.
2660///
2661/// - Logging. If some API errors are stored in logs, the message `Status` could
2662/// be used directly after any stripping needed for security/privacy reasons.
2663class Status {
2664 /// The status code, which should be an enum value of google.rpc.Code.
2665 core.int code;
2666
2667 /// A list of messages that carry the error details. There is a common set of
2668 /// message types for APIs to use.
2669 ///
2670 /// The values for Object must be JSON objects. It can consist of `num`,
2671 /// `String`, `bool` and `null` as well as `Map` and `List` values.
2672 core.List<core.Map<core.String, core.Object>> details;
2673
2674 /// A developer-facing error message, which should be in English. Any
2675 /// user-facing error message should be localized and sent in the
2676 /// google.rpc.Status.details field, or localized by the client.
2677 core.String message;
2678
2679 Status();
2680
2681 Status.fromJson(core.Map _json) {
2682 if (_json.containsKey("code")) {
2683 code = _json["code"];
2684 }
2685 if (_json.containsKey("details")) {
2686 details = _json["details"];
2687 }
2688 if (_json.containsKey("message")) {
2689 message = _json["message"];
2690 }
2691 }
2692
2693 core.Map<core.String, core.Object> toJson() {
2694 final core.Map<core.String, core.Object> _json =
2695 new core.Map<core.String, core.Object>();
2696 if (code != null) {
2697 _json["code"] = code;
2698 }
2699 if (details != null) {
2700 _json["details"] = details;
2701 }
2702 if (message != null) {
2703 _json["message"] = message;
2704 }
2705 return _json;
2706 }
2707}
2708
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002709/// Represents a data transfer configuration. A transfer configuration
2710/// contains all metadata needed to perform a data transfer. For example,
2711/// `destination_dataset_id` specifies where data should be stored.
2712/// When a new transfer configuration is created, the specified
2713/// `destination_dataset_id` is created when needed and shared with the
2714/// appropriate data source service account.
Martin Kustermann24901b32017-05-23 17:10:24 +02002715class TransferConfig {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002716 /// The number of days to look back to automatically refresh the data.
2717 /// For example, if `data_refresh_window_days = 10`, then every day
2718 /// BigQuery reingests data for [today-10, today-1], rather than ingesting
2719 /// data
2720 /// for just [today-1].
2721 /// Only valid if the data source supports the feature. Set the value to 0
2722 /// to use the default value.
Martin Kustermann24901b32017-05-23 17:10:24 +02002723 core.int dataRefreshWindowDays;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002724
2725 /// Data source id. Cannot be changed once data transfer is created.
Martin Kustermann24901b32017-05-23 17:10:24 +02002726 core.String dataSourceId;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002727
Martin Kustermann0e130012017-10-05 15:54:21 +01002728 /// Output only. Region in which BigQuery dataset is located.
Martin Kustermann8c5bbda2017-07-10 13:23:47 +02002729 core.String datasetRegion;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002730
2731 /// The BigQuery target dataset id.
Martin Kustermann24901b32017-05-23 17:10:24 +02002732 core.String destinationDatasetId;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002733
2734 /// Is this config disabled. When set to true, no runs are scheduled
2735 /// for a given transfer.
Martin Kustermann24901b32017-05-23 17:10:24 +02002736 core.bool disabled;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002737
2738 /// User specified display name for the data transfer.
Martin Kustermann24901b32017-05-23 17:10:24 +02002739 core.String displayName;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002740
Martin Kustermann0e130012017-10-05 15:54:21 +01002741 /// The resource name of the transfer config.
2742 /// Transfer config names have the form
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002743 /// `projects/{project_id}/transferConfigs/{config_id}`.
2744 /// Where `config_id` is usually a uuid, even though it is not
Martin Kustermann0e130012017-10-05 15:54:21 +01002745 /// guaranteed or required. The name is ignored when creating a transfer
2746 /// config.
Martin Kustermann24901b32017-05-23 17:10:24 +02002747 core.String name;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002748
Martin Kustermann0e130012017-10-05 15:54:21 +01002749 /// Output only. Next time when data transfer will run.
Martin Kustermann24901b32017-05-23 17:10:24 +02002750 core.String nextRunTime;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002751
2752 /// Data transfer specific parameters.
2753 ///
2754 /// The values for Object must be JSON objects. It can consist of `num`,
2755 /// `String`, `bool` and `null` as well as `Map` and `List` values.
Martin Kustermann24901b32017-05-23 17:10:24 +02002756 core.Map<core.String, core.Object> params;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002757
2758 /// Data transfer schedule.
2759 /// If the data source does not support a custom schedule, this should be
2760 /// empty. If it is empty, the default value for the data source will be
2761 /// used.
2762 /// The specified times are in UTC.
2763 /// Examples of valid format:
2764 /// `1st,3rd monday of month 15:30`,
2765 /// `every wed,fri of jan,jun 13:15`, and
2766 /// `first sunday of quarter 00:00`.
2767 /// See more explanation about the format here:
2768 /// https://cloud.google.com/appengine/docs/flexible/python/scheduling-jobs-with-cron-yaml#the_schedule_format
2769 /// NOTE: the granularity should be at least 8 hours, or less frequent.
Martin Kustermann24901b32017-05-23 17:10:24 +02002770 core.String schedule;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002771
Martin Kustermann0e130012017-10-05 15:54:21 +01002772 /// Output only. State of the most recently updated transfer run.
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002773 /// Possible string values are:
2774 /// - "TRANSFER_STATE_UNSPECIFIED" : State placeholder.
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002775 /// - "PENDING" : Data transfer is scheduled and is waiting to be picked up by
2776 /// data transfer backend.
2777 /// - "RUNNING" : Data transfer is in progress.
2778 /// - "SUCCEEDED" : Data transfer completed successsfully.
2779 /// - "FAILED" : Data transfer failed.
2780 /// - "CANCELLED" : Data transfer is cancelled.
2781 core.String state;
2782
Martin Kustermann0e130012017-10-05 15:54:21 +01002783 /// Output only. Data transfer modification time. Ignored by server on input.
Martin Kustermann24901b32017-05-23 17:10:24 +02002784 core.String updateTime;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002785
Martin Kustermann0e130012017-10-05 15:54:21 +01002786 /// Output only. Unique ID of the user on whose behalf transfer is done.
2787 /// Applicable only to data sources that do not support service accounts.
2788 /// When set to 0, the data source service account credentials are used.
Martin Kustermannbe200482017-12-04 11:42:32 +01002789 /// May be negative. Note, that this identifier is not stable.
2790 /// It may change over time even for the same user.
Martin Kustermann8c5bbda2017-07-10 13:23:47 +02002791 core.String userId;
Martin Kustermann24901b32017-05-23 17:10:24 +02002792
2793 TransferConfig();
2794
2795 TransferConfig.fromJson(core.Map _json) {
2796 if (_json.containsKey("dataRefreshWindowDays")) {
2797 dataRefreshWindowDays = _json["dataRefreshWindowDays"];
2798 }
2799 if (_json.containsKey("dataSourceId")) {
2800 dataSourceId = _json["dataSourceId"];
2801 }
Martin Kustermann8c5bbda2017-07-10 13:23:47 +02002802 if (_json.containsKey("datasetRegion")) {
2803 datasetRegion = _json["datasetRegion"];
2804 }
Martin Kustermann24901b32017-05-23 17:10:24 +02002805 if (_json.containsKey("destinationDatasetId")) {
2806 destinationDatasetId = _json["destinationDatasetId"];
2807 }
2808 if (_json.containsKey("disabled")) {
2809 disabled = _json["disabled"];
2810 }
2811 if (_json.containsKey("displayName")) {
2812 displayName = _json["displayName"];
2813 }
2814 if (_json.containsKey("name")) {
2815 name = _json["name"];
2816 }
2817 if (_json.containsKey("nextRunTime")) {
2818 nextRunTime = _json["nextRunTime"];
2819 }
2820 if (_json.containsKey("params")) {
2821 params = _json["params"];
2822 }
2823 if (_json.containsKey("schedule")) {
2824 schedule = _json["schedule"];
2825 }
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002826 if (_json.containsKey("state")) {
2827 state = _json["state"];
Martin Kustermann24901b32017-05-23 17:10:24 +02002828 }
2829 if (_json.containsKey("updateTime")) {
2830 updateTime = _json["updateTime"];
2831 }
Martin Kustermann8c5bbda2017-07-10 13:23:47 +02002832 if (_json.containsKey("userId")) {
2833 userId = _json["userId"];
2834 }
Martin Kustermann24901b32017-05-23 17:10:24 +02002835 }
2836
Martin Kustermann3953f0d2017-06-12 16:59:53 +02002837 core.Map<core.String, core.Object> toJson() {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002838 final core.Map<core.String, core.Object> _json =
2839 new core.Map<core.String, core.Object>();
Martin Kustermann24901b32017-05-23 17:10:24 +02002840 if (dataRefreshWindowDays != null) {
2841 _json["dataRefreshWindowDays"] = dataRefreshWindowDays;
2842 }
2843 if (dataSourceId != null) {
2844 _json["dataSourceId"] = dataSourceId;
2845 }
Martin Kustermann8c5bbda2017-07-10 13:23:47 +02002846 if (datasetRegion != null) {
2847 _json["datasetRegion"] = datasetRegion;
2848 }
Martin Kustermann24901b32017-05-23 17:10:24 +02002849 if (destinationDatasetId != null) {
2850 _json["destinationDatasetId"] = destinationDatasetId;
2851 }
2852 if (disabled != null) {
2853 _json["disabled"] = disabled;
2854 }
2855 if (displayName != null) {
2856 _json["displayName"] = displayName;
2857 }
2858 if (name != null) {
2859 _json["name"] = name;
2860 }
2861 if (nextRunTime != null) {
2862 _json["nextRunTime"] = nextRunTime;
2863 }
2864 if (params != null) {
2865 _json["params"] = params;
2866 }
2867 if (schedule != null) {
2868 _json["schedule"] = schedule;
2869 }
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002870 if (state != null) {
2871 _json["state"] = state;
Martin Kustermann24901b32017-05-23 17:10:24 +02002872 }
2873 if (updateTime != null) {
2874 _json["updateTime"] = updateTime;
2875 }
Martin Kustermann8c5bbda2017-07-10 13:23:47 +02002876 if (userId != null) {
2877 _json["userId"] = userId;
2878 }
Martin Kustermann24901b32017-05-23 17:10:24 +02002879 return _json;
2880 }
2881}
2882
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002883/// Represents a user facing message for a particular data transfer run.
Martin Kustermann24901b32017-05-23 17:10:24 +02002884class TransferMessage {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002885 /// Message text.
Martin Kustermann24901b32017-05-23 17:10:24 +02002886 core.String messageText;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002887
2888 /// Time when message was logged.
Martin Kustermann24901b32017-05-23 17:10:24 +02002889 core.String messageTime;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002890
2891 /// Message severity.
2892 /// Possible string values are:
2893 /// - "MESSAGE_SEVERITY_UNSPECIFIED" : No severity specified.
2894 /// - "INFO" : Informational message.
2895 /// - "WARNING" : Warning message.
2896 /// - "ERROR" : Error message.
Martin Kustermann24901b32017-05-23 17:10:24 +02002897 core.String severity;
2898
2899 TransferMessage();
2900
2901 TransferMessage.fromJson(core.Map _json) {
2902 if (_json.containsKey("messageText")) {
2903 messageText = _json["messageText"];
2904 }
2905 if (_json.containsKey("messageTime")) {
2906 messageTime = _json["messageTime"];
2907 }
2908 if (_json.containsKey("severity")) {
2909 severity = _json["severity"];
2910 }
2911 }
2912
Martin Kustermann3953f0d2017-06-12 16:59:53 +02002913 core.Map<core.String, core.Object> toJson() {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002914 final core.Map<core.String, core.Object> _json =
2915 new core.Map<core.String, core.Object>();
Martin Kustermann24901b32017-05-23 17:10:24 +02002916 if (messageText != null) {
2917 _json["messageText"] = messageText;
2918 }
2919 if (messageTime != null) {
2920 _json["messageTime"] = messageTime;
2921 }
2922 if (severity != null) {
2923 _json["severity"] = severity;
2924 }
2925 return _json;
2926 }
2927}
2928
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002929/// Represents a data transfer run.
Martin Kustermannbe200482017-12-04 11:42:32 +01002930/// Next id: 24
Martin Kustermann24901b32017-05-23 17:10:24 +02002931class TransferRun {
Martin Kustermann0e130012017-10-05 15:54:21 +01002932 /// Output only. Data source id.
Martin Kustermann24901b32017-05-23 17:10:24 +02002933 core.String dataSourceId;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002934
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002935 /// The BigQuery target dataset id.
Martin Kustermann24901b32017-05-23 17:10:24 +02002936 core.String destinationDatasetId;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002937
Martin Kustermann0e130012017-10-05 15:54:21 +01002938 /// Output only. Time when transfer run ended.
2939 /// Parameter ignored by server for input requests.
Martin Kustermann24901b32017-05-23 17:10:24 +02002940 core.String endTime;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002941
Martin Kustermann2a131182017-11-13 13:50:07 +01002942 /// Status of the transfer run.
2943 Status errorStatus;
2944
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002945 /// The resource name of the transfer run.
2946 /// Transfer run names have the form
2947 /// `projects/{project_id}/locations/{location}/transferConfigs/{config_id}/runs/{run_id}`.
2948 /// The name is ignored when creating a transfer run.
Martin Kustermann24901b32017-05-23 17:10:24 +02002949 core.String name;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002950
2951 /// Data transfer specific parameters.
2952 ///
2953 /// The values for Object must be JSON objects. It can consist of `num`,
2954 /// `String`, `bool` and `null` as well as `Map` and `List` values.
Martin Kustermann24901b32017-05-23 17:10:24 +02002955 core.Map<core.String, core.Object> params;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002956
2957 /// For batch transfer runs, specifies the date and time that
2958 /// data should be ingested.
Martin Kustermann24901b32017-05-23 17:10:24 +02002959 core.String runTime;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002960
Martin Kustermann0e130012017-10-05 15:54:21 +01002961 /// Output only. Describes the schedule of this transfer run if it was
2962 /// created as part of a regular schedule. For batch transfer runs that are
2963 /// scheduled manually, this is empty.
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002964 /// NOTE: the system might choose to delay the schedule depending on the
2965 /// current load, so `schedule_time` doesn't always matches this.
Martin Kustermann24901b32017-05-23 17:10:24 +02002966 core.String schedule;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002967
2968 /// Minimum time after which a transfer run can be started.
Martin Kustermann24901b32017-05-23 17:10:24 +02002969 core.String scheduleTime;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002970
Martin Kustermann0e130012017-10-05 15:54:21 +01002971 /// Output only. Time when transfer run was started.
2972 /// Parameter ignored by server for input requests.
Martin Kustermann24901b32017-05-23 17:10:24 +02002973 core.String startTime;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002974
Martin Kustermann2a131182017-11-13 13:50:07 +01002975 /// Data transfer run state. Ignored for input requests.
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002976 /// Possible string values are:
2977 /// - "TRANSFER_STATE_UNSPECIFIED" : State placeholder.
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002978 /// - "PENDING" : Data transfer is scheduled and is waiting to be picked up by
2979 /// data transfer backend.
2980 /// - "RUNNING" : Data transfer is in progress.
2981 /// - "SUCCEEDED" : Data transfer completed successsfully.
2982 /// - "FAILED" : Data transfer failed.
2983 /// - "CANCELLED" : Data transfer is cancelled.
2984 core.String state;
2985
Martin Kustermann0e130012017-10-05 15:54:21 +01002986 /// Output only. Last time the data transfer run state was updated.
Martin Kustermann24901b32017-05-23 17:10:24 +02002987 core.String updateTime;
Martin Kustermann5eb85c12017-09-11 12:35:54 +02002988
Martin Kustermann0e130012017-10-05 15:54:21 +01002989 /// Output only. Unique ID of the user on whose behalf transfer is done.
2990 /// Applicable only to data sources that do not support service accounts.
2991 /// When set to 0, the data source service account credentials are used.
Martin Kustermannbe200482017-12-04 11:42:32 +01002992 /// May be negative. Note, that this identifier is not stable.
2993 /// It may change over time even for the same user.
Martin Kustermann8c5bbda2017-07-10 13:23:47 +02002994 core.String userId;
Martin Kustermann24901b32017-05-23 17:10:24 +02002995
2996 TransferRun();
2997
2998 TransferRun.fromJson(core.Map _json) {
2999 if (_json.containsKey("dataSourceId")) {
3000 dataSourceId = _json["dataSourceId"];
3001 }
3002 if (_json.containsKey("destinationDatasetId")) {
3003 destinationDatasetId = _json["destinationDatasetId"];
3004 }
3005 if (_json.containsKey("endTime")) {
3006 endTime = _json["endTime"];
3007 }
Martin Kustermann2a131182017-11-13 13:50:07 +01003008 if (_json.containsKey("errorStatus")) {
3009 errorStatus = new Status.fromJson(_json["errorStatus"]);
3010 }
Martin Kustermann24901b32017-05-23 17:10:24 +02003011 if (_json.containsKey("name")) {
3012 name = _json["name"];
3013 }
3014 if (_json.containsKey("params")) {
3015 params = _json["params"];
3016 }
3017 if (_json.containsKey("runTime")) {
3018 runTime = _json["runTime"];
3019 }
3020 if (_json.containsKey("schedule")) {
3021 schedule = _json["schedule"];
3022 }
3023 if (_json.containsKey("scheduleTime")) {
3024 scheduleTime = _json["scheduleTime"];
3025 }
3026 if (_json.containsKey("startTime")) {
3027 startTime = _json["startTime"];
3028 }
Martin Kustermann5eb85c12017-09-11 12:35:54 +02003029 if (_json.containsKey("state")) {
3030 state = _json["state"];
Martin Kustermann24901b32017-05-23 17:10:24 +02003031 }
3032 if (_json.containsKey("updateTime")) {
3033 updateTime = _json["updateTime"];
3034 }
Martin Kustermann8c5bbda2017-07-10 13:23:47 +02003035 if (_json.containsKey("userId")) {
3036 userId = _json["userId"];
3037 }
Martin Kustermann24901b32017-05-23 17:10:24 +02003038 }
3039
Martin Kustermann3953f0d2017-06-12 16:59:53 +02003040 core.Map<core.String, core.Object> toJson() {
Martin Kustermann5eb85c12017-09-11 12:35:54 +02003041 final core.Map<core.String, core.Object> _json =
3042 new core.Map<core.String, core.Object>();
Martin Kustermann24901b32017-05-23 17:10:24 +02003043 if (dataSourceId != null) {
3044 _json["dataSourceId"] = dataSourceId;
3045 }
3046 if (destinationDatasetId != null) {
3047 _json["destinationDatasetId"] = destinationDatasetId;
3048 }
3049 if (endTime != null) {
3050 _json["endTime"] = endTime;
3051 }
Martin Kustermann2a131182017-11-13 13:50:07 +01003052 if (errorStatus != null) {
3053 _json["errorStatus"] = (errorStatus).toJson();
3054 }
Martin Kustermann24901b32017-05-23 17:10:24 +02003055 if (name != null) {
3056 _json["name"] = name;
3057 }
3058 if (params != null) {
3059 _json["params"] = params;
3060 }
3061 if (runTime != null) {
3062 _json["runTime"] = runTime;
3063 }
3064 if (schedule != null) {
3065 _json["schedule"] = schedule;
3066 }
3067 if (scheduleTime != null) {
3068 _json["scheduleTime"] = scheduleTime;
3069 }
3070 if (startTime != null) {
3071 _json["startTime"] = startTime;
3072 }
Martin Kustermann5eb85c12017-09-11 12:35:54 +02003073 if (state != null) {
3074 _json["state"] = state;
Martin Kustermann24901b32017-05-23 17:10:24 +02003075 }
3076 if (updateTime != null) {
3077 _json["updateTime"] = updateTime;
3078 }
Martin Kustermann8c5bbda2017-07-10 13:23:47 +02003079 if (userId != null) {
3080 _json["userId"] = userId;
3081 }
Martin Kustermann24901b32017-05-23 17:10:24 +02003082 return _json;
3083 }
3084}