We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ac641e commit ca4d3b3Copy full SHA for ca4d3b3
1 file changed
compute/disks/createComputeHyperdiskPool.js
@@ -49,6 +49,9 @@ async function main(storagePoolName) {
49
const provisionedIops = 10000;
50
// The throughput in MBps to provision for the storage pool.
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';
55
56
async function callCreateComputeHyperdiskPool() {
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,
65
capacityProvisioningType,
66
zone,
67
});
0 commit comments