ydb.public.api.protos.ydb_common.proto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ydb-sdk-jdbc-uberjar Show documentation
Show all versions of ydb-sdk-jdbc-uberjar Show documentation
JDBC client implementation over Table client, single jar
The newest version!
syntax = "proto3";
option cc_enable_arenas = true;
package Ydb;
option java_package = "com.yandex.ydb.common";
option java_outer_classname = "CommonProtos";
message FeatureFlag {
enum Status {
STATUS_UNSPECIFIED = 0;
ENABLED = 1;
DISABLED = 2;
}
}
message CostInfo {
// Total amount of request units (RU), consumed by the operation.
double consumed_units = 1;
}
message QuotaExceeded {
bool disk = 1;
}