You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'description' => 'You can force the update even if the quota has already been used and the reserved quota exceeds the new quota'
475
+
];
476
+
}
477
+
468
478
publicfunctionquotaSetLimitInstances(): array
469
479
{
470
-
return$this->quotaSetLimit('instances', 'The number of allowed instance cores for each tenant.');
480
+
return$this->quotaSetLimit('instances', 'The number of allowed instances for each tenant.');
481
+
}
482
+
483
+
publicfunctionquotaSetLimitCores(): array
484
+
{
485
+
return$this->quotaSetLimit('cores', 'The number of allowed instance cores for each tenant.');
486
+
}
487
+
488
+
publicfunctionquotaSetLimitFixedIps(): array
489
+
{
490
+
return$this->quotaSetLimit('fixed_ips', 'The number of allowed fixed IP addresses for each tenant. Must be equal to or greater than the number of allowed instances.');
491
+
}
492
+
493
+
publicfunctionquotaSetLimitFloatingIps(): array
494
+
{
495
+
return$this->quotaSetLimit('floating_ips', 'The number of allowed floating IP addresses for each tenant.');
0 commit comments