| 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 684 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 695 * Unique identifier for the resource; defined by the server (output only) | 695 * Unique identifier for the resource; defined by the server (output only) |
| 696 */ | 696 */ |
| 697 core.String id; | 697 core.String id; |
| 698 /** | 698 /** |
| 699 * Identifies what kind of resource this is. Value: the fixed string | 699 * Identifies what kind of resource this is. Value: the fixed string |
| 700 * "dns#managedZone". | 700 * "dns#managedZone". |
| 701 */ | 701 */ |
| 702 core.String kind; | 702 core.String kind; |
| 703 /** | 703 /** |
| 704 * User assigned name for this resource. Must be unique within the project. | 704 * User assigned name for this resource. Must be unique within the project. |
| 705 * The name must be 1-32 characters long, must begin with a letter, end with a | 705 * The name must be 1-63 characters long, must begin with a letter, end with a |
| 706 * letter or digit, and only contain lowercase letters, digits or dashes. | 706 * letter or digit, and only contain lowercase letters, digits or dashes. |
| 707 */ | 707 */ |
| 708 core.String name; | 708 core.String name; |
| 709 /** | 709 /** |
| 710 * Optionally specifies the NameServerSet for this ManagedZone. A | 710 * Optionally specifies the NameServerSet for this ManagedZone. A |
| 711 * NameServerSet is a set of DNS name servers that all host the same | 711 * NameServerSet is a set of DNS name servers that all host the same |
| 712 * ManagedZones. Most users will leave this field unset. | 712 * ManagedZones. Most users will leave this field unset. |
| 713 */ | 713 */ |
| 714 core.String nameServerSet; | 714 core.String nameServerSet; |
| 715 /** | 715 /** |
| (...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1064 } | 1064 } |
| 1065 if (nextPageToken != null) { | 1065 if (nextPageToken != null) { |
| 1066 _json["nextPageToken"] = nextPageToken; | 1066 _json["nextPageToken"] = nextPageToken; |
| 1067 } | 1067 } |
| 1068 if (rrsets != null) { | 1068 if (rrsets != null) { |
| 1069 _json["rrsets"] = rrsets.map((value) => (value).toJson()).toList(); | 1069 _json["rrsets"] = rrsets.map((value) => (value).toJson()).toList(); |
| 1070 } | 1070 } |
| 1071 return _json; | 1071 return _json; |
| 1072 } | 1072 } |
| 1073 } | 1073 } |
| OLD | NEW |