Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions compute/disks/createComputeHyperdiskPool.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ async function main(storagePoolName) {
const provisionedIops = 10000;
// The throughput in MBps to provision for the storage pool.
const provisionedThroughput = 1024;
// Optional: The performance provisioning type of the storage pool.
// The allowed values are advanced and standard. If not specified, the value advanced is used.
const performanceProvisioningType = 'advanced';

async function callCreateComputeHyperdiskPool() {
// Create a storagePool.
Expand All @@ -58,6 +61,7 @@ async function main(storagePoolName) {
poolProvisionedIops: provisionedIops,
poolProvisionedThroughput: provisionedThroughput,
storagePoolType,
performanceProvisioningType,
capacityProvisioningType,
zone,
});
Expand Down