aboutsummaryrefslogtreecommitdiffstats
path: root/yt/yt_proto
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2024-02-16 15:05:56 +0300
committerInnokentii Mokin <innokentii@ydb.tech>2024-02-16 18:35:26 +0000
commitcd424968b328386acdfc8b7fb88b8ecebc2ad28c (patch)
treedc93ae51fa3baa49d1e3efa36398a9c273c7a885 /yt/yt_proto
parent5b279da70a9df21add84ae8cbaf309e7bb67f4c8 (diff)
downloadydb-cd424968b328386acdfc8b7fb88b8ecebc2ad28c.tar.gz
Intermediate changes
Diffstat (limited to 'yt/yt_proto')
-rw-r--r--yt/yt_proto/yt/client/bundle_controller/proto/bundle_controller_service.proto7
1 files changed, 7 insertions, 0 deletions
diff --git a/yt/yt_proto/yt/client/bundle_controller/proto/bundle_controller_service.proto b/yt/yt_proto/yt/client/bundle_controller/proto/bundle_controller_service.proto
index a88e8fd2ba..e650d899d0 100644
--- a/yt/yt_proto/yt/client/bundle_controller/proto/bundle_controller_service.proto
+++ b/yt/yt_proto/yt/client/bundle_controller/proto/bundle_controller_service.proto
@@ -61,6 +61,12 @@ message TBundleConfig
optional TInstanceResources tablet_node_resource_guarantee = 6;
}
+message TResourceQuota
+{
+ optional int32 vcpu = 1;
+ optional int64 memory = 2;
+}
+
message TReqGetBundleConfig
{
required string bundle_name = 1;
@@ -71,6 +77,7 @@ message TRspGetBundleConfig
optional string bundle_name = 1;
optional TBundleConfig bundle_config = 2;
optional TBundleConfigConstraints bundle_constraints = 3;
+ optional TResourceQuota resource_quota = 4;
}
message TReqSetBundleConfig