| 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.dns.v2beta1; | 3 library googleapis_beta.dns.v2beta1; |
| 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 1435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1446 * Unique identifier for the resource; defined by the server (output only) | 1446 * Unique identifier for the resource; defined by the server (output only) |
| 1447 */ | 1447 */ |
| 1448 core.String id; | 1448 core.String id; |
| 1449 /** | 1449 /** |
| 1450 * Identifies what kind of resource this is. Value: the fixed string | 1450 * Identifies what kind of resource this is. Value: the fixed string |
| 1451 * "dns#managedZone". | 1451 * "dns#managedZone". |
| 1452 */ | 1452 */ |
| 1453 core.String kind; | 1453 core.String kind; |
| 1454 /** | 1454 /** |
| 1455 * User assigned name for this resource. Must be unique within the project. | 1455 * User assigned name for this resource. Must be unique within the project. |
| 1456 * The name must be 1-32 characters long, must begin with a letter, end with a | 1456 * The name must be 1-63 characters long, must begin with a letter, end with a |
| 1457 * letter or digit, and only contain lowercase letters, digits or dashes. | 1457 * letter or digit, and only contain lowercase letters, digits or dashes. |
| 1458 */ | 1458 */ |
| 1459 core.String name; | 1459 core.String name; |
| 1460 /** | 1460 /** |
| 1461 * Optionally specifies the NameServerSet for this ManagedZone. A | 1461 * Optionally specifies the NameServerSet for this ManagedZone. A |
| 1462 * NameServerSet is a set of DNS name servers that all host the same | 1462 * NameServerSet is a set of DNS name servers that all host the same |
| 1463 * ManagedZones. Most users will leave this field unset. | 1463 * ManagedZones. Most users will leave this field unset. |
| 1464 */ | 1464 */ |
| 1465 core.String nameServerSet; | 1465 core.String nameServerSet; |
| 1466 /** | 1466 /** |
| (...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2188 } | 2188 } |
| 2189 | 2189 |
| 2190 core.Map toJson() { | 2190 core.Map toJson() { |
| 2191 var _json = new core.Map(); | 2191 var _json = new core.Map(); |
| 2192 if (operationId != null) { | 2192 if (operationId != null) { |
| 2193 _json["operationId"] = operationId; | 2193 _json["operationId"] = operationId; |
| 2194 } | 2194 } |
| 2195 return _json; | 2195 return _json; |
| 2196 } | 2196 } |
| 2197 } | 2197 } |
| OLD | NEW |