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) {
49
49
const provisionedIops = 10000 ;
50
50
// The throughput in MBps to provision for the storage pool.
51
51
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' ;
52
55
53
56
async function callCreateComputeHyperdiskPool ( ) {
54
57
// Create a storagePool.
@@ -58,6 +61,7 @@ async function main(storagePoolName) {
58
61
poolProvisionedIops : provisionedIops ,
59
62
poolProvisionedThroughput : provisionedThroughput ,
60
63
storagePoolType,
64
+ performanceProvisioningType,
61
65
capacityProvisioningType,
62
66
zone,
63
67
} ) ;
You can’t perform that action at this time.
0 commit comments