diff options
author | Amelin Nikita <woodey@ydb.tech> | 2024-01-29 13:55:06 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-29 13:55:06 +0300 |
commit | d0f326edf0abdc128e2fc3de96d99c9460e94f7f (patch) | |
tree | 1e0bfd9229b4ba1257c433b5387a74b10185484f | |
parent | 11534d640707cdb1a451c33068f3a60771d26770 (diff) | |
download | ydb-d0f326edf0abdc128e2fc3de96d99c9460e94f7f.tar.gz |
YQ-2708 add IAM credentials to protobuf (#1340)
-rw-r--r-- | ydb/library/yql/providers/generic/connector/api/common/data_source.proto | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ydb/library/yql/providers/generic/connector/api/common/data_source.proto b/ydb/library/yql/providers/generic/connector/api/common/data_source.proto index b29eb7e16a..ecfb64665c 100644 --- a/ydb/library/yql/providers/generic/connector/api/common/data_source.proto +++ b/ydb/library/yql/providers/generic/connector/api/common/data_source.proto @@ -13,8 +13,14 @@ message TCredentials { string password = 2; } + message TToken { + string type = 1; + string value = 2; + } + oneof payload { TBasic basic = 1; + TToken token = 2; } } |