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

Unified Diff: generated/googleapis_beta/lib/container/v1beta1.dart

Issue 770773002: Api roll 7: 2014-12-01 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 6 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « generated/googleapis_beta/README.md ('k') | generated/googleapis_beta/lib/genomics/v1beta2.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis_beta/lib/container/v1beta1.dart
diff --git a/generated/googleapis_beta/lib/container/v1beta1.dart b/generated/googleapis_beta/lib/container/v1beta1.dart
index 7f4c9e594afbae8811c5e693583c482b82df4508..49c42f4c3cc56cb9810f78be33e06820ac010f71 100644
--- a/generated/googleapis_beta/lib/container/v1beta1.dart
+++ b/generated/googleapis_beta/lib/container/v1beta1.dart
@@ -538,6 +538,12 @@ class Cluster {
core.String name;
/**
+ * The name of the Google Compute Engine network to which the cluster is
+ * connected.
+ */
+ core.String network;
+
+ /**
* The machine type and image to use for all nodes in this cluster. See the
* descriptions of the child properties of nodeConfig.
*/
@@ -611,6 +617,9 @@ class Cluster {
if (_json.containsKey("name")) {
name = _json["name"];
}
+ if (_json.containsKey("network")) {
+ network = _json["network"];
+ }
if (_json.containsKey("nodeConfig")) {
nodeConfig = new NodeConfig.fromJson(_json["nodeConfig"]);
}
@@ -657,6 +666,9 @@ class Cluster {
if (name != null) {
_json["name"] = name;
}
+ if (network != null) {
+ _json["network"] = network;
+ }
if (nodeConfig != null) {
_json["nodeConfig"] = (nodeConfig).toJson();
}
@@ -900,6 +912,9 @@ class Operation {
*/
core.String operationType;
+ /** Server-defined URL for the resource. */
+ core.String selfLink;
+
/**
* The current status of the operation.
* Possible string values are:
@@ -934,6 +949,9 @@ class Operation {
if (_json.containsKey("operationType")) {
operationType = _json["operationType"];
}
+ if (_json.containsKey("selfLink")) {
+ selfLink = _json["selfLink"];
+ }
if (_json.containsKey("status")) {
status = _json["status"];
}
@@ -956,6 +974,9 @@ class Operation {
if (operationType != null) {
_json["operationType"] = operationType;
}
+ if (selfLink != null) {
+ _json["selfLink"] = selfLink;
+ }
if (status != null) {
_json["status"] = status;
}
« no previous file with comments | « generated/googleapis_beta/README.md ('k') | generated/googleapis_beta/lib/genomics/v1beta2.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698