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

Unified Diff: generated/googleapis/lib/compute/v1.dart

Issue 698403003: Api roll 5: 2014-11-05 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 6 years, 1 month 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
Index: generated/googleapis/lib/compute/v1.dart
diff --git a/generated/googleapis/lib/compute/v1.dart b/generated/googleapis/lib/compute/v1.dart
index 318bbd8afdb85131298326a4f65979b08b1dcbfb..70f212f560383a644bf5cf1e633e3e04f5dfccb7 100644
--- a/generated/googleapis/lib/compute/v1.dart
+++ b/generated/googleapis/lib/compute/v1.dart
@@ -8067,6 +8067,14 @@ class AttachedDisk {
/** Initialization parameters. */
AttachedDiskInitializeParams initializeParams;
+ /**
+ * Not documented yet.
+ * Possible string values are:
+ * - "NVME"
+ * - "SCSI"
+ */
+ core.String interface;
+
/** Type of the resource. */
core.String kind;
@@ -8112,6 +8120,9 @@ class AttachedDisk {
if (_json.containsKey("initializeParams")) {
initializeParams = new AttachedDiskInitializeParams.fromJson(_json["initializeParams"]);
}
+ if (_json.containsKey("interface")) {
+ interface = _json["interface"];
+ }
if (_json.containsKey("kind")) {
kind = _json["kind"];
}
@@ -8146,6 +8157,9 @@ class AttachedDisk {
if (initializeParams != null) {
_json["initializeParams"] = (initializeParams).toJson();
}
+ if (interface != null) {
+ _json["interface"] = interface;
+ }
if (kind != null) {
_json["kind"] = kind;
}
@@ -13284,6 +13298,7 @@ class Quota {
* - "IN_USE_ADDRESSES"
* - "KERNELS"
* - "KERNELS_TOTAL_GB"
+ * - "LOCAL_SSD_TOTAL_GB"
* - "NETWORKS"
* - "OPERATIONS"
* - "ROUTES"

Powered by Google App Engine
This is Rietveld 408576698