diff options
author | tsmax2004 <tsmax2004@yandex-team.com> | 2023-10-30 12:35:39 +0300 |
---|---|---|
committer | tsmax2004 <tsmax2004@yandex-team.com> | 2023-10-30 13:31:14 +0300 |
commit | 82a19ac4e4de08ae689d29000c763e8dfc2620ab (patch) | |
tree | 3d8dba6e19508fd515bcde10a0e95b713f476568 | |
parent | 0cf8d0e07d6704319164c0d27361556dfef8b005 (diff) | |
download | ydb-82a19ac4e4de08ae689d29000c763e8dfc2620ab.tar.gz |
YQ Connector:change ydb config for preprod
YQ Connector:change ydb config for preprod
-rw-r--r-- | ydb/core/fq/libs/config/protos/gateways.proto | 3 | ||||
-rw-r--r-- | ydb/core/protos/config.proto | 5 |
2 files changed, 5 insertions, 3 deletions
diff --git a/ydb/core/fq/libs/config/protos/gateways.proto b/ydb/core/fq/libs/config/protos/gateways.proto index 4323838c78..c1b0065d83 100644 --- a/ydb/core/fq/libs/config/protos/gateways.proto +++ b/ydb/core/fq/libs/config/protos/gateways.proto @@ -16,6 +16,7 @@ message TGatewaysConfig { NYql.TS3GatewayConfig S3 = 5; NYql.TSolomonGatewayConfig Solomon = 6; NYql.THttpGatewayConfig HttpGateway = 7; - NYql.TGenericConnectorConfig Connector = 8; + NYql.TGenericConnectorConfig Connector = 8 [deprecated=true]; NYql.TYqlCoreConfig YqlCore = 9; + NYql.TGenericGatewayConfig Generic = 10; } diff --git a/ydb/core/protos/config.proto b/ydb/core/protos/config.proto index 9235b59ed9..9142022f2a 100644 --- a/ydb/core/protos/config.proto +++ b/ydb/core/protos/config.proto @@ -1403,9 +1403,10 @@ message TQueryServiceConfig { optional NYql.TS3GatewayConfig S3 = 6; optional NYql.THttpGatewayConfig HttpGateway = 7; - optional NYql.TGenericConnectorConfig Connector = 8; - optional string MdbGateway = 9; + optional NYql.TGenericConnectorConfig Connector = 8 [deprecated=true]; + optional string MdbGateway = 9 [deprecated=true]; optional bool MdbTransformHost = 10; + optional NYql.TGenericGatewayConfig Generic = 11; } // Config describes immediate controls and allows |