From 799e87ff165b6f1c6ca5440add0382c8ecb70040 Mon Sep 17 00:00:00 2001 From: Romain Demeure Date: Wed, 26 Nov 2025 13:48:04 +0100 Subject: [PATCH] :sparkles: feat: add AccountId in project quotas table output --- oks_cli/project.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/oks_cli/project.py b/oks_cli/project.py index a92d5e0..c05bbf1 100644 --- a/oks_cli/project.py +++ b/oks_cli/project.py @@ -352,7 +352,8 @@ def project_get_quotas(ctx, project_name, output, profile): ["Collection", "QuotaCollection"], ["Description", "ShortDescription"], ["Max Value", "MaxValue"], - ["Used Value", "UsedValue"]]) + ["Used Value", "UsedValue"], + ["AccountId", "AccountId"]]) print_table(data["subregions"], [["Region", "RegionName"], ["Availability Zone", "SubregionName"], ["State", "State"]])