Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(459)

Side by Side Diff: generated/googleapis_beta/lib/container/v1beta1.dart

Issue 1268013003: Api-roll 21: 2015-08-04 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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.container.v1beta1; 3 library googleapis_beta.container.v1beta1;
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 470 matching lines...) Expand 10 before | Expand all | Expand 10 after
481 * cluster. Leave blank to pick up the latest stable release, or specify a 481 * cluster. Leave blank to pick up the latest stable release, or specify a
482 * version of the form "x.y.z". The Google Container Engine release notes 482 * version of the form "x.y.z". The Google Container Engine release notes
483 * lists the currently supported versions. If an incorrect version is 483 * lists the currently supported versions. If an incorrect version is
484 * specified, the server returns an error listing the currently supported 484 * specified, the server returns an error listing the currently supported
485 * versions. 485 * versions.
486 */ 486 */
487 core.String clusterApiVersion; 487 core.String clusterApiVersion;
488 /** 488 /**
489 * The IP address range of the container pods in this cluster, in CIDR 489 * The IP address range of the container pods in this cluster, in CIDR
490 * notation (e.g. 10.96.0.0/14). Leave blank to have one automatically chosen 490 * notation (e.g. 10.96.0.0/14). Leave blank to have one automatically chosen
491 * or specify a /14 block in 10.0.0.0/8 or 172.16.0.0/12. 491 * or specify a /14 block in 10.0.0.0/8.
492 */ 492 */
493 core.String containerIpv4Cidr; 493 core.String containerIpv4Cidr;
494 /** 494 /**
495 * [Output only] The time the cluster was created, in RFC3339 text format. 495 * [Output only] The time the cluster was created, in RFC3339 text format.
496 */ 496 */
497 core.String creationTimestamp; 497 core.String creationTimestamp;
498 /** An optional description of this cluster. */ 498 /** An optional description of this cluster. */
499 core.String description; 499 core.String description;
500 /** 500 /**
501 * Whether logs from the cluster should be made available via the Google Cloud 501 * Whether logs from the cluster should be made available via the Google Cloud
(...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after
1070 var _json = new core.Map(); 1070 var _json = new core.Map();
1071 if (email != null) { 1071 if (email != null) {
1072 _json["email"] = email; 1072 _json["email"] = email;
1073 } 1073 }
1074 if (scopes != null) { 1074 if (scopes != null) {
1075 _json["scopes"] = scopes; 1075 _json["scopes"] = scopes;
1076 } 1076 }
1077 return _json; 1077 return _json;
1078 } 1078 }
1079 } 1079 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698