| 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.container.v1; | 3 library googleapis.container.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 2657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2668 * | 2668 * |
| 2669 * Set to a | 2669 * Set to a |
| 2670 * [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing) | 2670 * [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing) |
| 2671 * notation (e.g. `10.96.0.0/14`) from the RFC-1918 private networks (e.g. | 2671 * notation (e.g. `10.96.0.0/14`) from the RFC-1918 private networks (e.g. |
| 2672 * `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`) to pick a specific range | 2672 * `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`) to pick a specific range |
| 2673 * to use. | 2673 * to use. |
| 2674 */ | 2674 */ |
| 2675 core.String servicesIpv4Cidr; | 2675 core.String servicesIpv4Cidr; |
| 2676 /** | 2676 /** |
| 2677 * A custom subnetwork name to be used if `create_subnetwork` is true. If | 2677 * A custom subnetwork name to be used if `create_subnetwork` is true. If |
| 2678 * this field is empty, then an automatic name will choosen for the new | 2678 * this field is empty, then an automatic name will be chosen for the new |
| 2679 * subnetwork. | 2679 * subnetwork. |
| 2680 */ | 2680 */ |
| 2681 core.String subnetworkName; | 2681 core.String subnetworkName; |
| 2682 /** Whether alias IPs will be used for pod IPs in the cluster. */ | 2682 /** Whether alias IPs will be used for pod IPs in the cluster. */ |
| 2683 core.bool useIpAliases; | 2683 core.bool useIpAliases; |
| 2684 | 2684 |
| 2685 IPAllocationPolicy(); | 2685 IPAllocationPolicy(); |
| 2686 | 2686 |
| 2687 IPAllocationPolicy.fromJson(core.Map _json) { | 2687 IPAllocationPolicy.fromJson(core.Map _json) { |
| 2688 if (_json.containsKey("clusterIpv4Cidr")) { | 2688 if (_json.containsKey("clusterIpv4Cidr")) { |
| (...skipping 1343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4032 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); | 4032 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
| 4033 if (imageType != null) { | 4033 if (imageType != null) { |
| 4034 _json["imageType"] = imageType; | 4034 _json["imageType"] = imageType; |
| 4035 } | 4035 } |
| 4036 if (nodeVersion != null) { | 4036 if (nodeVersion != null) { |
| 4037 _json["nodeVersion"] = nodeVersion; | 4037 _json["nodeVersion"] = nodeVersion; |
| 4038 } | 4038 } |
| 4039 return _json; | 4039 return _json; |
| 4040 } | 4040 } |
| 4041 } | 4041 } |
| OLD | NEW |