| OLD | NEW |
| 1 // This is a generated file (see the discoveryapis_generator project). | 1 // This is a generated file (see the discoveryapis_generator project). |
| 2 | 2 |
| 3 library googleapis.genomics.v1; | 3 library googleapis.genomics.v1; |
| 4 | 4 |
| 5 import 'dart:core' as core; | 5 import 'dart:core' as core; |
| 6 import 'dart:async' as async; | 6 import 'dart:async' as async; |
| 7 import 'dart:convert' as convert; | 7 import 'dart:convert' as convert; |
| 8 | 8 |
| 9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; | 9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; |
| 10 import 'package:http/http.dart' as http; | 10 import 'package:http/http.dart' as http; |
| (...skipping 1428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1439 return _response.then((data) => new Empty.fromJson(data)); | 1439 return _response.then((data) => new Empty.fromJson(data)); |
| 1440 } | 1440 } |
| 1441 | 1441 |
| 1442 /** | 1442 /** |
| 1443 * Exports a read group set to a BAM file in Google Cloud Storage. For the | 1443 * Exports a read group set to a BAM file in Google Cloud Storage. For the |
| 1444 * definitions of read group sets and other genomics resources, see | 1444 * definitions of read group sets and other genomics resources, see |
| 1445 * [Fundamentals of Google | 1445 * [Fundamentals of Google |
| 1446 * Genomics](https://cloud.google.com/genomics/fundamentals-of-google-genomics
) | 1446 * Genomics](https://cloud.google.com/genomics/fundamentals-of-google-genomics
) |
| 1447 * Note that currently there may be some differences between exported BAM | 1447 * Note that currently there may be some differences between exported BAM |
| 1448 * files and the original BAM file at the time of import. See | 1448 * files and the original BAM file at the time of import. See |
| 1449 * [ImportReadGroupSets](google.genomics.v1.ReadServiceV1.ImportReadGroupSets) | 1449 * ImportReadGroupSets for caveats. |
| 1450 * for caveats. | |
| 1451 * | 1450 * |
| 1452 * [request] - The metadata request object. | 1451 * [request] - The metadata request object. |
| 1453 * | 1452 * |
| 1454 * Request parameters: | 1453 * Request parameters: |
| 1455 * | 1454 * |
| 1456 * [readGroupSetId] - Required. The ID of the read group set to export. The | 1455 * [readGroupSetId] - Required. The ID of the read group set to export. The |
| 1457 * caller must have READ access to this read group set. | 1456 * caller must have READ access to this read group set. |
| 1458 * | 1457 * |
| 1459 * Completes with a [Operation]. | 1458 * Completes with a [Operation]. |
| 1460 * | 1459 * |
| (...skipping 5978 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7439 } | 7438 } |
| 7440 if (type != null) { | 7439 if (type != null) { |
| 7441 _json["type"] = type; | 7440 _json["type"] = type; |
| 7442 } | 7441 } |
| 7443 if (value != null) { | 7442 if (value != null) { |
| 7444 _json["value"] = value; | 7443 _json["value"] = value; |
| 7445 } | 7444 } |
| 7446 return _json; | 7445 return _json; |
| 7447 } | 7446 } |
| 7448 } | 7447 } |
| OLD | NEW |