in src/utilities.ts [62:67]
export function validateRegion(region: string) {
if (!SUPPORTED_REGIONS.includes(region)) {
const regionList = SUPPORTED_REGIONS.join(', ');
throw new Error(`Managed Blockchain is only available in the following regions: ${regionList}.`);
}
}