File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,9 @@ async function main(storagePoolName) {
4949 const provisionedIops = 10000 ;
5050 // The throughput in MBps to provision for the storage pool.
5151 const provisionedThroughput = 1024 ;
52+ // Optional: The performance provisioning type of the storage pool.
53+ // The allowed values are advanced and standard. If not specified, the value advanced is used.
54+ const performanceProvisioningType = 'advanced' ;
5255
5356 async function callCreateComputeHyperdiskPool ( ) {
5457 // Create a storagePool.
@@ -58,6 +61,7 @@ async function main(storagePoolName) {
5861 poolProvisionedIops : provisionedIops ,
5962 poolProvisionedThroughput : provisionedThroughput ,
6063 storagePoolType,
64+ performanceProvisioningType,
6165 capacityProvisioningType,
6266 zone,
6367 } ) ;
You can’t perform that action at this time.
0 commit comments