Skip to content

Commit c1a9ce2

Browse files
authored
fix: line length lint issue
1 parent 297d47c commit c1a9ce2

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

compute/cloud-client/src/main/java/compute/disks/CreateHyperdisk.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ public static void main(String[] args)
3636
// Name of the disk you want to create.
3737
String diskName = "YOUR_DISK_NAME";
3838
// The type of disk you want to create. This value uses the following format:
39-
// "zones/{zone}/diskTypes/(hyperdisk-balanced|hyperdisk-extreme|hyperdisk-throughput|hyperdisk-ml|hyperdisk-balanced-high-availability)".
39+
// "zones/{zone}/diskTypes/{disktype}".
40+
// disktype is one of hyperdisk-balanced, hyperdisk-extreme, hyperdisk-throughput
41+
// hyperdisk-ml, hyperdisk-balanced-high-availability
4042
// For example: "zones/us-west3-b/diskTypes/hyperdisk-balanced"
4143
String diskType = String.format("zones/%s/diskTypes/hyperdisk-balanced", zone);
4244
// Size of the new disk in gigabytes.

0 commit comments

Comments
 (0)