Update Project Regions
Updates project regions.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.regions.updateProjectRegions({
primaryRegion: 'nb-eu-germany',
additionalRegions: ['item-1'],
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Regions.UpdateProjectRegionsAsync(new UpdateProjectRegions
{
PrimaryRegion = "nb-eu-germany",
AdditionalRegions = new[] { "item-1" },
});from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.regions.update_project_regions(
primaryRegion="nb-eu-germany",
additionalRegions=["item-1"],
)In the dashboard
API reference
Last updated