| 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.dns.v1; | 3 library googleapis.dns.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 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 558 /** | 558 /** |
| 559 * Unique identifier for the resource; defined by the server (output only). | 559 * Unique identifier for the resource; defined by the server (output only). |
| 560 */ | 560 */ |
| 561 core.String id; | 561 core.String id; |
| 562 /** | 562 /** |
| 563 * Identifies what kind of resource this is. Value: the fixed string | 563 * Identifies what kind of resource this is. Value: the fixed string |
| 564 * "dns#change". | 564 * "dns#change". |
| 565 */ | 565 */ |
| 566 core.String kind; | 566 core.String kind; |
| 567 /** | 567 /** |
| 568 * The time that this operation was started by the server. This is in RFC3339 | 568 * The time that this operation was started by the server (output only). This |
| 569 * text format. | 569 * is in RFC3339 text format. |
| 570 */ | 570 */ |
| 571 core.String startTime; | 571 core.String startTime; |
| 572 /** | 572 /** |
| 573 * Status of the operation (output only). | 573 * Status of the operation (output only). |
| 574 * Possible string values are: | 574 * Possible string values are: |
| 575 * - "done" | 575 * - "done" |
| 576 * - "pending" | 576 * - "pending" |
| 577 */ | 577 */ |
| 578 core.String status; | 578 core.String status; |
| 579 | 579 |
| (...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1067 } | 1067 } |
| 1068 if (nextPageToken != null) { | 1068 if (nextPageToken != null) { |
| 1069 _json["nextPageToken"] = nextPageToken; | 1069 _json["nextPageToken"] = nextPageToken; |
| 1070 } | 1070 } |
| 1071 if (rrsets != null) { | 1071 if (rrsets != null) { |
| 1072 _json["rrsets"] = rrsets.map((value) => (value).toJson()).toList(); | 1072 _json["rrsets"] = rrsets.map((value) => (value).toJson()).toList(); |
| 1073 } | 1073 } |
| 1074 return _json; | 1074 return _json; |
| 1075 } | 1075 } |
| 1076 } | 1076 } |
| OLD | NEW |