Get Allowed Flex Tiers
Returns the Flex tiers this account is entitled to pick.
An integration connects an external provider to this module. Configure the provider and its secrets in the dashboard; the API lets you list, create or update, enable, disable, set a default, and test integrations. This method returns the allowed flex tiers available in your project.
This method is on the Hub surface (norbix.hub.database) — call it from admin tooling or IaC.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.database.getAllowedFlexTiers();using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Database.GetAllowedFlexTiersAsync(new GetAllowedFlexTiers());from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.database.get_allowed_flex_tiers()c, _ := norbix.New(norbix.Options{})
ctx := context.Background()
var result map[string]any
err := c.Hub.Database.GetAllowedFlexTiers(ctx, nil, &result)import 'package:norbix/norbix_hub.dart';
final hub = NorbixHub();
final result = await hub.database.getAllowedFlexTiers();In the dashboard
Manage this visually in Norbix Cloud — see Database → Integrations.
API reference
Full request and response for this endpoint: Get Allowed Flex Tiers.
Last updated