Skip to content

Commit ca4d3b3

Browse files
authored
improvemnt: extend compute_hyperdisk_pool_create (#3826)
1 parent 9ac641e commit ca4d3b3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

compute/disks/createComputeHyperdiskPool.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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
});

0 commit comments

Comments
 (0)