Retrieve a list of load balancer flavors. When the include_prices query parameter is specified, the list shows
prices. A client in trial mode gets all price values as 0. If you get Pricing Error contact the support
GET
/
cloud
/
v1
/
lbflavors
/
{project_id}
/
{region_id}
Python
Copy
Ask AI
from gcore import Gcoreclient = Gcore( api_key="My API Key",)load_balancer_flavor_list = client.cloud.load_balancers.flavors.list( project_id=0, region_id=0,)print(load_balancer_flavor_list.count)