| 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"
|
|
|