| 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.firebaserules.v1; | 3 library googleapis.firebaserules.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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 * Environments | releases/qa | releases/qa | 392 * Environments | releases/qa | releases/qa |
| 393 * Apps | releases/app1_qa | releases/app1/qa | 393 * Apps | releases/app1_qa | releases/app1/qa |
| 394 * Versions | releases/app1_v2_qa | releases/app1/v2/qa | 394 * Versions | releases/app1_v2_qa | releases/app1/v2/qa |
| 395 * | 395 * |
| 396 * The delimiter between the release name path elements can be almost anything | 396 * The delimiter between the release name path elements can be almost anything |
| 397 * and it should work equally well with the release name list filter, but in | 397 * and it should work equally well with the release name list filter, but in |
| 398 * many ways the structured paths provide a clearer picture of the | 398 * many ways the structured paths provide a clearer picture of the |
| 399 * relationship between `Release` instances. | 399 * relationship between `Release` instances. |
| 400 * | 400 * |
| 401 * Format: `projects/{project_id}/releases/{release_id}` | 401 * Format: `projects/{project_id}/releases/{release_id}` |
| 402 * | |
| 403 * Value must have pattern "^projects/[^/] * / releases/.*$". | 402 * Value must have pattern "^projects/[^/] * / releases/.*$". |
| 404 * | 403 * |
| 405 * Completes with a [Release]. | 404 * Completes with a [Release]. |
| 406 * | 405 * |
| 407 * Completes with a [commons.ApiRequestError] if the API endpoint returned an | 406 * Completes with a [commons.ApiRequestError] if the API endpoint returned an |
| 408 * error. | 407 * error. |
| 409 * | 408 * |
| 410 * If the used [http.Client] completes with an error when making a REST call, | 409 * If the used [http.Client] completes with an error when making a REST call, |
| 411 * this method will complete with the same error. | 410 * this method will complete with the same error. |
| 412 */ | 411 */ |
| (...skipping 653 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1066 } | 1065 } |
| 1067 | 1066 |
| 1068 core.Map toJson() { | 1067 core.Map toJson() { |
| 1069 var _json = new core.Map(); | 1068 var _json = new core.Map(); |
| 1070 if (issues != null) { | 1069 if (issues != null) { |
| 1071 _json["issues"] = issues.map((value) => (value).toJson()).toList(); | 1070 _json["issues"] = issues.map((value) => (value).toJson()).toList(); |
| 1072 } | 1071 } |
| 1073 return _json; | 1072 return _json; |
| 1074 } | 1073 } |
| 1075 } | 1074 } |
| OLD | NEW |