You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: google-cloud-clients/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AggregatedListVpnGatewaysHttpRequest.java
Copy file name to clipboardExpand all lines: google-cloud-clients/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AllocationSpecificSKUReservation.java
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -77,17 +77,17 @@ public List<String> getFieldMask() {
77
77
returnnull;
78
78
}
79
79
80
-
/** Specifies number of resources that are allocated. */
80
+
/** Specifies the number of resources that are allocated. */
81
81
publicStringgetCount() {
82
82
returncount;
83
83
}
84
84
85
-
/** [OutputOnly] Indicates how many resource are in use. */
85
+
/** [OutputOnly] Indicates how many instances are in use. */
86
86
publicStringgetInUseCount() {
87
87
returninUseCount;
88
88
}
89
89
90
-
/** The instance properties for this specific sku reservation. */
90
+
/** The instance properties for the reservation. */
Copy file name to clipboardExpand all lines: google-cloud-clients/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/AttachedDiskInitializeParams.java
+12-3Lines changed: 12 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -149,7 +149,10 @@ public String getDiskName() {
149
149
returndiskName;
150
150
}
151
151
152
-
/** Specifies the size of the disk in base-2 GB. */
152
+
/**
153
+
* Specifies the size of the disk in base-2 GB. If not specified, the disk will be the same size
154
+
* as the image (usually 10GB). If specified, the size must be equal to or larger than 10GB.
155
+
*/
153
156
publicStringgetDiskSizeGb() {
154
157
returndiskSizeGb;
155
158
}
@@ -353,12 +356,18 @@ public Builder setDiskName(String diskName) {
353
356
returnthis;
354
357
}
355
358
356
-
/** Specifies the size of the disk in base-2 GB. */
359
+
/**
360
+
* Specifies the size of the disk in base-2 GB. If not specified, the disk will be the same size
361
+
* as the image (usually 10GB). If specified, the size must be equal to or larger than 10GB.
362
+
*/
357
363
publicStringgetDiskSizeGb() {
358
364
returndiskSizeGb;
359
365
}
360
366
361
-
/** Specifies the size of the disk in base-2 GB. */
367
+
/**
368
+
* Specifies the size of the disk in base-2 GB. If not specified, the disk will be the same size
369
+
* as the image (usually 10GB). If specified, the size must be equal to or larger than 10GB.
0 commit comments