| 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_beta.genomics.v1beta2; | 3 library googleapis_beta.genomics.v1beta2; |
| 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 768 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 779 return _response.then((data) => new CallSet.fromJson(data)); | 779 return _response.then((data) => new CallSet.fromJson(data)); |
| 780 } | 780 } |
| 781 | 781 |
| 782 /** | 782 /** |
| 783 * Updates a call set. This method supports patch semantics. | 783 * Updates a call set. This method supports patch semantics. |
| 784 * | 784 * |
| 785 * [request] - The metadata request object. | 785 * [request] - The metadata request object. |
| 786 * | 786 * |
| 787 * Request parameters: | 787 * Request parameters: |
| 788 * | 788 * |
| 789 * [callSetId] - The ID of the call set to be updated. | 789 * [callSetId] - Required. The ID of the call set to be updated. |
| 790 * | 790 * |
| 791 * Completes with a [CallSet]. | 791 * Completes with a [CallSet]. |
| 792 * | 792 * |
| 793 * Completes with a [commons.ApiRequestError] if the API endpoint returned an | 793 * Completes with a [commons.ApiRequestError] if the API endpoint returned an |
| 794 * error. | 794 * error. |
| 795 * | 795 * |
| 796 * If the used [http.Client] completes with an error when making a REST call, | 796 * If the used [http.Client] completes with an error when making a REST call, |
| 797 * this method will complete with the same error. | 797 * this method will complete with the same error. |
| 798 */ | 798 */ |
| 799 async.Future<CallSet> patch(CallSet request, core.String callSetId) { | 799 async.Future<CallSet> patch(CallSet request, core.String callSetId) { |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 864 return _response.then((data) => new SearchCallSetsResponse.fromJson(data)); | 864 return _response.then((data) => new SearchCallSetsResponse.fromJson(data)); |
| 865 } | 865 } |
| 866 | 866 |
| 867 /** | 867 /** |
| 868 * Updates a call set. | 868 * Updates a call set. |
| 869 * | 869 * |
| 870 * [request] - The metadata request object. | 870 * [request] - The metadata request object. |
| 871 * | 871 * |
| 872 * Request parameters: | 872 * Request parameters: |
| 873 * | 873 * |
| 874 * [callSetId] - The ID of the call set to be updated. | 874 * [callSetId] - Required. The ID of the call set to be updated. |
| 875 * | 875 * |
| 876 * Completes with a [CallSet]. | 876 * Completes with a [CallSet]. |
| 877 * | 877 * |
| 878 * Completes with a [commons.ApiRequestError] if the API endpoint returned an | 878 * Completes with a [commons.ApiRequestError] if the API endpoint returned an |
| 879 * error. | 879 * error. |
| 880 * | 880 * |
| 881 * If the used [http.Client] completes with an error when making a REST call, | 881 * If the used [http.Client] completes with an error when making a REST call, |
| 882 * this method will complete with the same error. | 882 * this method will complete with the same error. |
| 883 */ | 883 */ |
| 884 async.Future<CallSet> update(CallSet request, core.String callSetId) { | 884 async.Future<CallSet> update(CallSet request, core.String callSetId) { |
| (...skipping 6080 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6965 } | 6965 } |
| 6966 if (referenceBounds != null) { | 6966 if (referenceBounds != null) { |
| 6967 _json["referenceBounds"] = referenceBounds.map((value) => (value).toJson()
).toList(); | 6967 _json["referenceBounds"] = referenceBounds.map((value) => (value).toJson()
).toList(); |
| 6968 } | 6968 } |
| 6969 if (referenceSetId != null) { | 6969 if (referenceSetId != null) { |
| 6970 _json["referenceSetId"] = referenceSetId; | 6970 _json["referenceSetId"] = referenceSetId; |
| 6971 } | 6971 } |
| 6972 return _json; | 6972 return _json; |
| 6973 } | 6973 } |
| 6974 } | 6974 } |
| OLD | NEW |