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
Description: `The amount of local SSD disks that will be attached to each master cluster node. Defaults to 0.`,
838
+
AtLeastOneOf: masterDiskConfigKeys,
839
+
ForceNew: true,
834
840
},
835
841
836
842
"boot_disk_size_gb": {
837
-
Type: schema.TypeInt,
838
-
Optional: true,
839
-
Computed: true,
840
-
Description: `Size of the primary disk attached to each node, specified in GB. The primary disk contains the boot volume and system libraries, and the smallest allowed disk size is 10GB. GCP will default to a predetermined computed value if not set (currently 500GB). Note: If SSDs are not attached, it also contains the HDFS data blocks and Hadoop working directories.`,
Description: `Size of the primary disk attached to each node, specified in GB. The primary disk contains the boot volume and system libraries, and the smallest allowed disk size is 10GB. GCP will default to a predetermined computed value if not set (currently 500GB). Note: If SSDs are not attached, it also contains the HDFS data blocks and Hadoop working directories.`,
847
+
AtLeastOneOf: masterDiskConfigKeys,
846
848
ForceNew: true,
847
849
ValidateFunc: validation.IntAtLeast(10),
848
850
},
849
851
850
852
"boot_disk_type": {
851
-
Type: schema.TypeString,
852
-
Optional: true,
853
-
Description: `The disk type of the primary disk attached to each node. Such as "pd-ssd" or "pd-standard". Defaults to "pd-standard".`,
Description: `The disk type of the primary disk attached to each node. Such as "pd-ssd" or "pd-standard". Defaults to "pd-standard".`,
856
+
AtLeastOneOf: masterDiskConfigKeys,
857
+
ForceNew: true,
858
+
Default: "pd-standard",
859
+
},
860
+
861
+
"local_ssd_interface": {
862
+
Type: schema.TypeString,
863
+
Optional: true,
864
+
Description: `Interface type of local SSDs (default is "scsi"). Valid values: "scsi" (Small Computer System Interface), "nvme" (Non-Volatile Memory Express).`,
Description: `The amount of local SSD disks that will be attached to each master cluster node. Defaults to 0.`,
983
+
AtLeastOneOf: workerDiskConfigKeys,
984
+
ForceNew: true,
983
985
},
984
986
985
987
"boot_disk_size_gb": {
986
-
Type: schema.TypeInt,
987
-
Optional: true,
988
-
Computed: true,
989
-
Description: `Size of the primary disk attached to each node, specified in GB. The primary disk contains the boot volume and system libraries, and the smallest allowed disk size is 10GB. GCP will default to a predetermined computed value if not set (currently 500GB). Note: If SSDs are not attached, it also contains the HDFS data blocks and Hadoop working directories.`,
Description: `Size of the primary disk attached to each node, specified in GB. The primary disk contains the boot volume and system libraries, and the smallest allowed disk size is 10GB. GCP will default to a predetermined computed value if not set (currently 500GB). Note: If SSDs are not attached, it also contains the HDFS data blocks and Hadoop working directories.`,
992
+
AtLeastOneOf: workerDiskConfigKeys,
995
993
ForceNew: true,
996
994
ValidateFunc: validation.IntAtLeast(10),
997
995
},
998
996
999
997
"boot_disk_type": {
1000
-
Type: schema.TypeString,
1001
-
Optional: true,
1002
-
Description: `The disk type of the primary disk attached to each node. Such as "pd-ssd" or "pd-standard". Defaults to "pd-standard".`,
Description: `The disk type of the primary disk attached to each node. Such as "pd-ssd" or "pd-standard". Defaults to "pd-standard".`,
1001
+
AtLeastOneOf: workerDiskConfigKeys,
1002
+
ForceNew: true,
1003
+
Default: "pd-standard",
1004
+
},
1005
+
1006
+
"local_ssd_interface": {
1007
+
Type: schema.TypeString,
1008
+
Optional: true,
1009
+
Description: `Interface type of local SSDs (default is "scsi"). Valid values: "scsi" (Small Computer System Interface), "nvme" (Non-Volatile Memory Express).`,
Description: `The disk type of the primary disk attached to each preemptible worker node. Such as "pd-ssd" or "pd-standard". Defaults to "pd-standard".`,
1134
1136
},
1137
+
1138
+
"local_ssd_interface": {
1139
+
Type: schema.TypeString,
1140
+
Optional: true,
1141
+
AtLeastOneOf: preemptibleWorkerDiskConfigKeys,
1142
+
ForceNew: true,
1143
+
Description: `Interface type of local SSDs (default is "scsi"). Valid values: "scsi" (Small Computer System Interface), "nvme" (Non-Volatile Memory Express).`,
1144
+
},
1135
1145
},
1136
1146
},
1137
1147
},
@@ -1616,6 +1626,13 @@ by Dataproc`,
1616
1626
ForceNew: true,
1617
1627
Default: "pd-standard",
1618
1628
},
1629
+
1630
+
"local_ssd_interface": {
1631
+
Type: schema.TypeString,
1632
+
Optional: true,
1633
+
Description: `Interface type of local SSDs (default is "scsi"). Valid values: "scsi" (Small Computer System Interface), "nvme" (Non-Volatile Memory Express).`,
0 commit comments