package livekit
import (
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
reflect "reflect"
sync "sync"
unsafe "unsafe"
)
const (
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type AgentDB_Wire_QueryLang int32
const (
AgentDB_Wire_SQL AgentDB_Wire_QueryLang = 0
)
var (
AgentDB_Wire_QueryLang_name = map[int32]string{
0: "SQL",
}
AgentDB_Wire_QueryLang_value = map[string]int32{
"SQL": 0,
}
)
func (x AgentDB_Wire_QueryLang) Enum() *AgentDB_Wire_QueryLang {
p := new(AgentDB_Wire_QueryLang)
*p = x
return p
}
func (x AgentDB_Wire_QueryLang) String() string {
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
}
func (AgentDB_Wire_QueryLang) Descriptor() protoreflect.EnumDescriptor {
return file_livekit_agentdb_proto_enumTypes[0].Descriptor()
}
func (AgentDB_Wire_QueryLang) Type() protoreflect.EnumType {
return &file_livekit_agentdb_proto_enumTypes[0]
}
func (x AgentDB_Wire_QueryLang) Number() protoreflect.EnumNumber {
return protoreflect.EnumNumber(x)
}
func (AgentDB_Wire_QueryLang) EnumDescriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 10, 0}
}
type AgentDB_Wire_ValueType int32
const (
AgentDB_Wire_NULL AgentDB_Wire_ValueType = 0
AgentDB_Wire_INT AgentDB_Wire_ValueType = 1
AgentDB_Wire_DOUBLE AgentDB_Wire_ValueType = 2
AgentDB_Wire_TEXT AgentDB_Wire_ValueType = 3
AgentDB_Wire_BLOB AgentDB_Wire_ValueType = 4
)
var (
AgentDB_Wire_ValueType_name = map[int32]string{
0: "NULL",
1: "INT",
2: "DOUBLE",
3: "TEXT",
4: "BLOB",
}
AgentDB_Wire_ValueType_value = map[string]int32{
"NULL": 0,
"INT": 1,
"DOUBLE": 2,
"TEXT": 3,
"BLOB": 4,
}
)
func (x AgentDB_Wire_ValueType) Enum() *AgentDB_Wire_ValueType {
p := new(AgentDB_Wire_ValueType)
*p = x
return p
}
func (x AgentDB_Wire_ValueType) String() string {
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
}
func (AgentDB_Wire_ValueType) Descriptor() protoreflect.EnumDescriptor {
return file_livekit_agentdb_proto_enumTypes[1].Descriptor()
}
func (AgentDB_Wire_ValueType) Type() protoreflect.EnumType {
return &file_livekit_agentdb_proto_enumTypes[1]
}
func (x AgentDB_Wire_ValueType) Number() protoreflect.EnumNumber {
return protoreflect.EnumNumber(x)
}
func (AgentDB_Wire_ValueType) EnumDescriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 10, 1}
}
type AgentDB struct {
state protoimpl.MessageState `protogen:"open.v1"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB) Reset() {
*x = AgentDB{}
mi := &file_livekit_agentdb_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB) ProtoMessage() {}
func (x *AgentDB) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[0]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0}
}
type AgentDB_CreateRequest struct {
state protoimpl.MessageState `protogen:"open.v1"`
Region string `protobuf:"bytes,1,opt,name=region,proto3" json:"region,omitempty"`
TtlSeconds int64 `protobuf:"varint,2,opt,name=ttl_seconds,json=ttlSeconds,proto3" json:"ttl_seconds,omitempty"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_CreateRequest) Reset() {
*x = AgentDB_CreateRequest{}
mi := &file_livekit_agentdb_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_CreateRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_CreateRequest) ProtoMessage() {}
func (x *AgentDB_CreateRequest) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[1]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_CreateRequest) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 0}
}
func (x *AgentDB_CreateRequest) GetRegion() string {
if x != nil {
return x.Region
}
return ""
}
func (x *AgentDB_CreateRequest) GetTtlSeconds() int64 {
if x != nil {
return x.TtlSeconds
}
return 0
}
type AgentDB_CreateResponse struct {
state protoimpl.MessageState `protogen:"open.v1"`
DatabaseId string `protobuf:"bytes,1,opt,name=database_id,json=databaseId,proto3" json:"database_id,omitempty"` ExpiresAt int64 `protobuf:"varint,2,opt,name=expires_at,json=expiresAt,proto3" json:"expires_at,omitempty"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_CreateResponse) Reset() {
*x = AgentDB_CreateResponse{}
mi := &file_livekit_agentdb_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_CreateResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_CreateResponse) ProtoMessage() {}
func (x *AgentDB_CreateResponse) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[2]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_CreateResponse) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 1}
}
func (x *AgentDB_CreateResponse) GetDatabaseId() string {
if x != nil {
return x.DatabaseId
}
return ""
}
func (x *AgentDB_CreateResponse) GetExpiresAt() int64 {
if x != nil {
return x.ExpiresAt
}
return 0
}
type AgentDB_GetRequest struct {
state protoimpl.MessageState `protogen:"open.v1"`
DatabaseId string `protobuf:"bytes,1,opt,name=database_id,json=databaseId,proto3" json:"database_id,omitempty"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_GetRequest) Reset() {
*x = AgentDB_GetRequest{}
mi := &file_livekit_agentdb_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_GetRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_GetRequest) ProtoMessage() {}
func (x *AgentDB_GetRequest) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[3]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_GetRequest) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 2}
}
func (x *AgentDB_GetRequest) GetDatabaseId() string {
if x != nil {
return x.DatabaseId
}
return ""
}
type AgentDB_ListRequest struct {
state protoimpl.MessageState `protogen:"open.v1"`
PageSize int32 `protobuf:"varint,1,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` PageToken string `protobuf:"bytes,2,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_ListRequest) Reset() {
*x = AgentDB_ListRequest{}
mi := &file_livekit_agentdb_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_ListRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_ListRequest) ProtoMessage() {}
func (x *AgentDB_ListRequest) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[4]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_ListRequest) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 3}
}
func (x *AgentDB_ListRequest) GetPageSize() int32 {
if x != nil {
return x.PageSize
}
return 0
}
func (x *AgentDB_ListRequest) GetPageToken() string {
if x != nil {
return x.PageToken
}
return ""
}
type AgentDB_ListResponse struct {
state protoimpl.MessageState `protogen:"open.v1"`
Databases []*AgentDB_AgentDatabase `protobuf:"bytes,1,rep,name=databases,proto3" json:"databases,omitempty"`
NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_ListResponse) Reset() {
*x = AgentDB_ListResponse{}
mi := &file_livekit_agentdb_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_ListResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_ListResponse) ProtoMessage() {}
func (x *AgentDB_ListResponse) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[5]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_ListResponse) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 4}
}
func (x *AgentDB_ListResponse) GetDatabases() []*AgentDB_AgentDatabase {
if x != nil {
return x.Databases
}
return nil
}
func (x *AgentDB_ListResponse) GetNextPageToken() string {
if x != nil {
return x.NextPageToken
}
return ""
}
type AgentDB_AgentDatabase struct {
state protoimpl.MessageState `protogen:"open.v1"`
DatabaseId string `protobuf:"bytes,1,opt,name=database_id,json=databaseId,proto3" json:"database_id,omitempty"`
Region string `protobuf:"bytes,2,opt,name=region,proto3" json:"region,omitempty"`
CreatedAt int64 `protobuf:"varint,3,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
ExpiresAt int64 `protobuf:"varint,4,opt,name=expires_at,json=expiresAt,proto3" json:"expires_at,omitempty"`
Tip int64 `protobuf:"varint,5,opt,name=tip,proto3" json:"tip,omitempty"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_AgentDatabase) Reset() {
*x = AgentDB_AgentDatabase{}
mi := &file_livekit_agentdb_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_AgentDatabase) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_AgentDatabase) ProtoMessage() {}
func (x *AgentDB_AgentDatabase) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[6]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_AgentDatabase) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 5}
}
func (x *AgentDB_AgentDatabase) GetDatabaseId() string {
if x != nil {
return x.DatabaseId
}
return ""
}
func (x *AgentDB_AgentDatabase) GetRegion() string {
if x != nil {
return x.Region
}
return ""
}
func (x *AgentDB_AgentDatabase) GetCreatedAt() int64 {
if x != nil {
return x.CreatedAt
}
return 0
}
func (x *AgentDB_AgentDatabase) GetExpiresAt() int64 {
if x != nil {
return x.ExpiresAt
}
return 0
}
func (x *AgentDB_AgentDatabase) GetTip() int64 {
if x != nil {
return x.Tip
}
return 0
}
type AgentDB_DeleteRequest struct {
state protoimpl.MessageState `protogen:"open.v1"`
DatabaseId string `protobuf:"bytes,1,opt,name=database_id,json=databaseId,proto3" json:"database_id,omitempty"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_DeleteRequest) Reset() {
*x = AgentDB_DeleteRequest{}
mi := &file_livekit_agentdb_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_DeleteRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_DeleteRequest) ProtoMessage() {}
func (x *AgentDB_DeleteRequest) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[7]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_DeleteRequest) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 6}
}
func (x *AgentDB_DeleteRequest) GetDatabaseId() string {
if x != nil {
return x.DatabaseId
}
return ""
}
type AgentDB_DeleteResponse struct {
state protoimpl.MessageState `protogen:"open.v1"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_DeleteResponse) Reset() {
*x = AgentDB_DeleteResponse{}
mi := &file_livekit_agentdb_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_DeleteResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_DeleteResponse) ProtoMessage() {}
func (x *AgentDB_DeleteResponse) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[8]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_DeleteResponse) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 7}
}
type AgentDB_DumpRequest struct {
state protoimpl.MessageState `protogen:"open.v1"`
DatabaseId string `protobuf:"bytes,1,opt,name=database_id,json=databaseId,proto3" json:"database_id,omitempty"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_DumpRequest) Reset() {
*x = AgentDB_DumpRequest{}
mi := &file_livekit_agentdb_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_DumpRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_DumpRequest) ProtoMessage() {}
func (x *AgentDB_DumpRequest) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[9]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_DumpRequest) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 8}
}
func (x *AgentDB_DumpRequest) GetDatabaseId() string {
if x != nil {
return x.DatabaseId
}
return ""
}
type AgentDB_DumpResponse struct {
state protoimpl.MessageState `protogen:"open.v1"`
DownloadUrl string `protobuf:"bytes,1,opt,name=download_url,json=downloadUrl,proto3" json:"download_url,omitempty"` ExpiresAt int64 `protobuf:"varint,2,opt,name=expires_at,json=expiresAt,proto3" json:"expires_at,omitempty"` Tip int64 `protobuf:"varint,3,opt,name=tip,proto3" json:"tip,omitempty"` unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_DumpResponse) Reset() {
*x = AgentDB_DumpResponse{}
mi := &file_livekit_agentdb_proto_msgTypes[10]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_DumpResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_DumpResponse) ProtoMessage() {}
func (x *AgentDB_DumpResponse) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[10]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_DumpResponse) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 9}
}
func (x *AgentDB_DumpResponse) GetDownloadUrl() string {
if x != nil {
return x.DownloadUrl
}
return ""
}
func (x *AgentDB_DumpResponse) GetExpiresAt() int64 {
if x != nil {
return x.ExpiresAt
}
return 0
}
func (x *AgentDB_DumpResponse) GetTip() int64 {
if x != nil {
return x.Tip
}
return 0
}
type AgentDB_Wire struct {
state protoimpl.MessageState `protogen:"open.v1"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_Wire) Reset() {
*x = AgentDB_Wire{}
mi := &file_livekit_agentdb_proto_msgTypes[11]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_Wire) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_Wire) ProtoMessage() {}
func (x *AgentDB_Wire) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[11]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_Wire) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 10}
}
type AgentDB_Wire_ClientMessage struct {
state protoimpl.MessageState `protogen:"open.v1"`
RequestId uint32 `protobuf:"varint,1,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"`
Message isAgentDB_Wire_ClientMessage_Message `protobuf_oneof:"message"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_Wire_ClientMessage) Reset() {
*x = AgentDB_Wire_ClientMessage{}
mi := &file_livekit_agentdb_proto_msgTypes[12]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_Wire_ClientMessage) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_Wire_ClientMessage) ProtoMessage() {}
func (x *AgentDB_Wire_ClientMessage) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[12]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_Wire_ClientMessage) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 10, 0}
}
func (x *AgentDB_Wire_ClientMessage) GetRequestId() uint32 {
if x != nil {
return x.RequestId
}
return 0
}
func (x *AgentDB_Wire_ClientMessage) GetMessage() isAgentDB_Wire_ClientMessage_Message {
if x != nil {
return x.Message
}
return nil
}
func (x *AgentDB_Wire_ClientMessage) GetHello() *AgentDB_Wire_Hello {
if x != nil {
if x, ok := x.Message.(*AgentDB_Wire_ClientMessage_Hello); ok {
return x.Hello
}
}
return nil
}
func (x *AgentDB_Wire_ClientMessage) GetExec() *AgentDB_Wire_Statement {
if x != nil {
if x, ok := x.Message.(*AgentDB_Wire_ClientMessage_Exec); ok {
return x.Exec
}
}
return nil
}
func (x *AgentDB_Wire_ClientMessage) GetQuery() *AgentDB_Wire_Statement {
if x != nil {
if x, ok := x.Message.(*AgentDB_Wire_ClientMessage_Query); ok {
return x.Query
}
}
return nil
}
func (x *AgentDB_Wire_ClientMessage) GetBatch() *AgentDB_Wire_Batch {
if x != nil {
if x, ok := x.Message.(*AgentDB_Wire_ClientMessage_Batch); ok {
return x.Batch
}
}
return nil
}
func (x *AgentDB_Wire_ClientMessage) GetBegin() *AgentDB_Wire_Begin {
if x != nil {
if x, ok := x.Message.(*AgentDB_Wire_ClientMessage_Begin); ok {
return x.Begin
}
}
return nil
}
func (x *AgentDB_Wire_ClientMessage) GetCommit() *AgentDB_Wire_Commit {
if x != nil {
if x, ok := x.Message.(*AgentDB_Wire_ClientMessage_Commit); ok {
return x.Commit
}
}
return nil
}
func (x *AgentDB_Wire_ClientMessage) GetRollback() *AgentDB_Wire_Rollback {
if x != nil {
if x, ok := x.Message.(*AgentDB_Wire_ClientMessage_Rollback); ok {
return x.Rollback
}
}
return nil
}
func (x *AgentDB_Wire_ClientMessage) GetCancel() *AgentDB_Wire_Cancel {
if x != nil {
if x, ok := x.Message.(*AgentDB_Wire_ClientMessage_Cancel); ok {
return x.Cancel
}
}
return nil
}
func (x *AgentDB_Wire_ClientMessage) GetCredit() *AgentDB_Wire_Credit {
if x != nil {
if x, ok := x.Message.(*AgentDB_Wire_ClientMessage_Credit); ok {
return x.Credit
}
}
return nil
}
func (x *AgentDB_Wire_ClientMessage) GetPing() *AgentDB_Wire_Ping {
if x != nil {
if x, ok := x.Message.(*AgentDB_Wire_ClientMessage_Ping); ok {
return x.Ping
}
}
return nil
}
type isAgentDB_Wire_ClientMessage_Message interface {
isAgentDB_Wire_ClientMessage_Message()
}
type AgentDB_Wire_ClientMessage_Hello struct {
Hello *AgentDB_Wire_Hello `protobuf:"bytes,2,opt,name=hello,proto3,oneof"` }
type AgentDB_Wire_ClientMessage_Exec struct {
Exec *AgentDB_Wire_Statement `protobuf:"bytes,3,opt,name=exec,proto3,oneof"` }
type AgentDB_Wire_ClientMessage_Query struct {
Query *AgentDB_Wire_Statement `protobuf:"bytes,4,opt,name=query,proto3,oneof"` }
type AgentDB_Wire_ClientMessage_Batch struct {
Batch *AgentDB_Wire_Batch `protobuf:"bytes,5,opt,name=batch,proto3,oneof"`
}
type AgentDB_Wire_ClientMessage_Begin struct {
Begin *AgentDB_Wire_Begin `protobuf:"bytes,6,opt,name=begin,proto3,oneof"`
}
type AgentDB_Wire_ClientMessage_Commit struct {
Commit *AgentDB_Wire_Commit `protobuf:"bytes,7,opt,name=commit,proto3,oneof"`
}
type AgentDB_Wire_ClientMessage_Rollback struct {
Rollback *AgentDB_Wire_Rollback `protobuf:"bytes,8,opt,name=rollback,proto3,oneof"`
}
type AgentDB_Wire_ClientMessage_Cancel struct {
Cancel *AgentDB_Wire_Cancel `protobuf:"bytes,9,opt,name=cancel,proto3,oneof"`
}
type AgentDB_Wire_ClientMessage_Credit struct {
Credit *AgentDB_Wire_Credit `protobuf:"bytes,10,opt,name=credit,proto3,oneof"`
}
type AgentDB_Wire_ClientMessage_Ping struct {
Ping *AgentDB_Wire_Ping `protobuf:"bytes,11,opt,name=ping,proto3,oneof"`
}
func (*AgentDB_Wire_ClientMessage_Hello) isAgentDB_Wire_ClientMessage_Message() {}
func (*AgentDB_Wire_ClientMessage_Exec) isAgentDB_Wire_ClientMessage_Message() {}
func (*AgentDB_Wire_ClientMessage_Query) isAgentDB_Wire_ClientMessage_Message() {}
func (*AgentDB_Wire_ClientMessage_Batch) isAgentDB_Wire_ClientMessage_Message() {}
func (*AgentDB_Wire_ClientMessage_Begin) isAgentDB_Wire_ClientMessage_Message() {}
func (*AgentDB_Wire_ClientMessage_Commit) isAgentDB_Wire_ClientMessage_Message() {}
func (*AgentDB_Wire_ClientMessage_Rollback) isAgentDB_Wire_ClientMessage_Message() {}
func (*AgentDB_Wire_ClientMessage_Cancel) isAgentDB_Wire_ClientMessage_Message() {}
func (*AgentDB_Wire_ClientMessage_Credit) isAgentDB_Wire_ClientMessage_Message() {}
func (*AgentDB_Wire_ClientMessage_Ping) isAgentDB_Wire_ClientMessage_Message() {}
type AgentDB_Wire_ServerMessage struct {
state protoimpl.MessageState `protogen:"open.v1"`
RequestId uint32 `protobuf:"varint,1,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"`
Message isAgentDB_Wire_ServerMessage_Message `protobuf_oneof:"message"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_Wire_ServerMessage) Reset() {
*x = AgentDB_Wire_ServerMessage{}
mi := &file_livekit_agentdb_proto_msgTypes[13]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_Wire_ServerMessage) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_Wire_ServerMessage) ProtoMessage() {}
func (x *AgentDB_Wire_ServerMessage) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[13]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_Wire_ServerMessage) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 10, 1}
}
func (x *AgentDB_Wire_ServerMessage) GetRequestId() uint32 {
if x != nil {
return x.RequestId
}
return 0
}
func (x *AgentDB_Wire_ServerMessage) GetMessage() isAgentDB_Wire_ServerMessage_Message {
if x != nil {
return x.Message
}
return nil
}
func (x *AgentDB_Wire_ServerMessage) GetHelloOk() *AgentDB_Wire_HelloOk {
if x != nil {
if x, ok := x.Message.(*AgentDB_Wire_ServerMessage_HelloOk); ok {
return x.HelloOk
}
}
return nil
}
func (x *AgentDB_Wire_ServerMessage) GetColumns() *AgentDB_Wire_Columns {
if x != nil {
if x, ok := x.Message.(*AgentDB_Wire_ServerMessage_Columns); ok {
return x.Columns
}
}
return nil
}
func (x *AgentDB_Wire_ServerMessage) GetColumnBatch() *AgentDB_Wire_ColumnBatch {
if x != nil {
if x, ok := x.Message.(*AgentDB_Wire_ServerMessage_ColumnBatch); ok {
return x.ColumnBatch
}
}
return nil
}
func (x *AgentDB_Wire_ServerMessage) GetExecResult() *AgentDB_Wire_ExecResult {
if x != nil {
if x, ok := x.Message.(*AgentDB_Wire_ServerMessage_ExecResult); ok {
return x.ExecResult
}
}
return nil
}
func (x *AgentDB_Wire_ServerMessage) GetDone() *AgentDB_Wire_Done {
if x != nil {
if x, ok := x.Message.(*AgentDB_Wire_ServerMessage_Done); ok {
return x.Done
}
}
return nil
}
func (x *AgentDB_Wire_ServerMessage) GetError() *AgentDB_Wire_Error {
if x != nil {
if x, ok := x.Message.(*AgentDB_Wire_ServerMessage_Error); ok {
return x.Error
}
}
return nil
}
func (x *AgentDB_Wire_ServerMessage) GetPong() *AgentDB_Wire_Pong {
if x != nil {
if x, ok := x.Message.(*AgentDB_Wire_ServerMessage_Pong); ok {
return x.Pong
}
}
return nil
}
type isAgentDB_Wire_ServerMessage_Message interface {
isAgentDB_Wire_ServerMessage_Message()
}
type AgentDB_Wire_ServerMessage_HelloOk struct {
HelloOk *AgentDB_Wire_HelloOk `protobuf:"bytes,2,opt,name=hello_ok,json=helloOk,proto3,oneof"`
}
type AgentDB_Wire_ServerMessage_Columns struct {
Columns *AgentDB_Wire_Columns `protobuf:"bytes,3,opt,name=columns,proto3,oneof"`
}
type AgentDB_Wire_ServerMessage_ColumnBatch struct {
ColumnBatch *AgentDB_Wire_ColumnBatch `protobuf:"bytes,4,opt,name=column_batch,json=columnBatch,proto3,oneof"`
}
type AgentDB_Wire_ServerMessage_ExecResult struct {
ExecResult *AgentDB_Wire_ExecResult `protobuf:"bytes,5,opt,name=exec_result,json=execResult,proto3,oneof"`
}
type AgentDB_Wire_ServerMessage_Done struct {
Done *AgentDB_Wire_Done `protobuf:"bytes,6,opt,name=done,proto3,oneof"`
}
type AgentDB_Wire_ServerMessage_Error struct {
Error *AgentDB_Wire_Error `protobuf:"bytes,7,opt,name=error,proto3,oneof"`
}
type AgentDB_Wire_ServerMessage_Pong struct {
Pong *AgentDB_Wire_Pong `protobuf:"bytes,8,opt,name=pong,proto3,oneof"`
}
func (*AgentDB_Wire_ServerMessage_HelloOk) isAgentDB_Wire_ServerMessage_Message() {}
func (*AgentDB_Wire_ServerMessage_Columns) isAgentDB_Wire_ServerMessage_Message() {}
func (*AgentDB_Wire_ServerMessage_ColumnBatch) isAgentDB_Wire_ServerMessage_Message() {}
func (*AgentDB_Wire_ServerMessage_ExecResult) isAgentDB_Wire_ServerMessage_Message() {}
func (*AgentDB_Wire_ServerMessage_Done) isAgentDB_Wire_ServerMessage_Message() {}
func (*AgentDB_Wire_ServerMessage_Error) isAgentDB_Wire_ServerMessage_Message() {}
func (*AgentDB_Wire_ServerMessage_Pong) isAgentDB_Wire_ServerMessage_Message() {}
type AgentDB_Wire_Value struct {
state protoimpl.MessageState `protogen:"open.v1"`
Value isAgentDB_Wire_Value_Value `protobuf_oneof:"value"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_Wire_Value) Reset() {
*x = AgentDB_Wire_Value{}
mi := &file_livekit_agentdb_proto_msgTypes[14]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_Wire_Value) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_Wire_Value) ProtoMessage() {}
func (x *AgentDB_Wire_Value) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[14]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_Wire_Value) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 10, 2}
}
func (x *AgentDB_Wire_Value) GetValue() isAgentDB_Wire_Value_Value {
if x != nil {
return x.Value
}
return nil
}
func (x *AgentDB_Wire_Value) GetNullValue() bool {
if x != nil {
if x, ok := x.Value.(*AgentDB_Wire_Value_NullValue); ok {
return x.NullValue
}
}
return false
}
func (x *AgentDB_Wire_Value) GetIntValue() int64 {
if x != nil {
if x, ok := x.Value.(*AgentDB_Wire_Value_IntValue); ok {
return x.IntValue
}
}
return 0
}
func (x *AgentDB_Wire_Value) GetDoubleValue() float64 {
if x != nil {
if x, ok := x.Value.(*AgentDB_Wire_Value_DoubleValue); ok {
return x.DoubleValue
}
}
return 0
}
func (x *AgentDB_Wire_Value) GetTextValue() string {
if x != nil {
if x, ok := x.Value.(*AgentDB_Wire_Value_TextValue); ok {
return x.TextValue
}
}
return ""
}
func (x *AgentDB_Wire_Value) GetBlobValue() []byte {
if x != nil {
if x, ok := x.Value.(*AgentDB_Wire_Value_BlobValue); ok {
return x.BlobValue
}
}
return nil
}
type isAgentDB_Wire_Value_Value interface {
isAgentDB_Wire_Value_Value()
}
type AgentDB_Wire_Value_NullValue struct {
NullValue bool `protobuf:"varint,1,opt,name=null_value,json=nullValue,proto3,oneof"` }
type AgentDB_Wire_Value_IntValue struct {
IntValue int64 `protobuf:"varint,2,opt,name=int_value,json=intValue,proto3,oneof"`
}
type AgentDB_Wire_Value_DoubleValue struct {
DoubleValue float64 `protobuf:"fixed64,3,opt,name=double_value,json=doubleValue,proto3,oneof"`
}
type AgentDB_Wire_Value_TextValue struct {
TextValue string `protobuf:"bytes,4,opt,name=text_value,json=textValue,proto3,oneof"`
}
type AgentDB_Wire_Value_BlobValue struct {
BlobValue []byte `protobuf:"bytes,5,opt,name=blob_value,json=blobValue,proto3,oneof"`
}
func (*AgentDB_Wire_Value_NullValue) isAgentDB_Wire_Value_Value() {}
func (*AgentDB_Wire_Value_IntValue) isAgentDB_Wire_Value_Value() {}
func (*AgentDB_Wire_Value_DoubleValue) isAgentDB_Wire_Value_Value() {}
func (*AgentDB_Wire_Value_TextValue) isAgentDB_Wire_Value_Value() {}
func (*AgentDB_Wire_Value_BlobValue) isAgentDB_Wire_Value_Value() {}
type AgentDB_Wire_Statement struct {
state protoimpl.MessageState `protogen:"open.v1"`
Sql string `protobuf:"bytes,1,opt,name=sql,proto3" json:"sql,omitempty"`
Params []*AgentDB_Wire_Value `protobuf:"bytes,2,rep,name=params,proto3" json:"params,omitempty"` Lang AgentDB_Wire_QueryLang `protobuf:"varint,3,opt,name=lang,proto3,enum=livekit.AgentDB_Wire_QueryLang" json:"lang,omitempty"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_Wire_Statement) Reset() {
*x = AgentDB_Wire_Statement{}
mi := &file_livekit_agentdb_proto_msgTypes[15]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_Wire_Statement) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_Wire_Statement) ProtoMessage() {}
func (x *AgentDB_Wire_Statement) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[15]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_Wire_Statement) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 10, 3}
}
func (x *AgentDB_Wire_Statement) GetSql() string {
if x != nil {
return x.Sql
}
return ""
}
func (x *AgentDB_Wire_Statement) GetParams() []*AgentDB_Wire_Value {
if x != nil {
return x.Params
}
return nil
}
func (x *AgentDB_Wire_Statement) GetLang() AgentDB_Wire_QueryLang {
if x != nil {
return x.Lang
}
return AgentDB_Wire_SQL
}
type AgentDB_Wire_Batch struct {
state protoimpl.MessageState `protogen:"open.v1"`
Statements []*AgentDB_Wire_Statement `protobuf:"bytes,1,rep,name=statements,proto3" json:"statements,omitempty"` unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_Wire_Batch) Reset() {
*x = AgentDB_Wire_Batch{}
mi := &file_livekit_agentdb_proto_msgTypes[16]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_Wire_Batch) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_Wire_Batch) ProtoMessage() {}
func (x *AgentDB_Wire_Batch) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[16]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_Wire_Batch) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 10, 4}
}
func (x *AgentDB_Wire_Batch) GetStatements() []*AgentDB_Wire_Statement {
if x != nil {
return x.Statements
}
return nil
}
type AgentDB_Wire_Begin struct {
state protoimpl.MessageState `protogen:"open.v1"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_Wire_Begin) Reset() {
*x = AgentDB_Wire_Begin{}
mi := &file_livekit_agentdb_proto_msgTypes[17]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_Wire_Begin) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_Wire_Begin) ProtoMessage() {}
func (x *AgentDB_Wire_Begin) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[17]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_Wire_Begin) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 10, 5}
}
type AgentDB_Wire_Commit struct {
state protoimpl.MessageState `protogen:"open.v1"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_Wire_Commit) Reset() {
*x = AgentDB_Wire_Commit{}
mi := &file_livekit_agentdb_proto_msgTypes[18]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_Wire_Commit) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_Wire_Commit) ProtoMessage() {}
func (x *AgentDB_Wire_Commit) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[18]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_Wire_Commit) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 10, 6}
}
type AgentDB_Wire_Rollback struct {
state protoimpl.MessageState `protogen:"open.v1"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_Wire_Rollback) Reset() {
*x = AgentDB_Wire_Rollback{}
mi := &file_livekit_agentdb_proto_msgTypes[19]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_Wire_Rollback) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_Wire_Rollback) ProtoMessage() {}
func (x *AgentDB_Wire_Rollback) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[19]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_Wire_Rollback) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 10, 7}
}
type AgentDB_Wire_Cancel struct {
state protoimpl.MessageState `protogen:"open.v1"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_Wire_Cancel) Reset() {
*x = AgentDB_Wire_Cancel{}
mi := &file_livekit_agentdb_proto_msgTypes[20]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_Wire_Cancel) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_Wire_Cancel) ProtoMessage() {}
func (x *AgentDB_Wire_Cancel) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[20]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_Wire_Cancel) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 10, 8}
}
type AgentDB_Wire_Credit struct {
state protoimpl.MessageState `protogen:"open.v1"`
Batches uint32 `protobuf:"varint,1,opt,name=batches,proto3" json:"batches,omitempty"` unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_Wire_Credit) Reset() {
*x = AgentDB_Wire_Credit{}
mi := &file_livekit_agentdb_proto_msgTypes[21]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_Wire_Credit) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_Wire_Credit) ProtoMessage() {}
func (x *AgentDB_Wire_Credit) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[21]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_Wire_Credit) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 10, 9}
}
func (x *AgentDB_Wire_Credit) GetBatches() uint32 {
if x != nil {
return x.Batches
}
return 0
}
type AgentDB_Wire_Ping struct {
state protoimpl.MessageState `protogen:"open.v1"`
TimestampMs int64 `protobuf:"varint,1,opt,name=timestamp_ms,json=timestampMs,proto3" json:"timestamp_ms,omitempty"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_Wire_Ping) Reset() {
*x = AgentDB_Wire_Ping{}
mi := &file_livekit_agentdb_proto_msgTypes[22]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_Wire_Ping) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_Wire_Ping) ProtoMessage() {}
func (x *AgentDB_Wire_Ping) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[22]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_Wire_Ping) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 10, 10}
}
func (x *AgentDB_Wire_Ping) GetTimestampMs() int64 {
if x != nil {
return x.TimestampMs
}
return 0
}
type AgentDB_Wire_Pong struct {
state protoimpl.MessageState `protogen:"open.v1"`
LastPingTimestampMs int64 `protobuf:"varint,1,opt,name=last_ping_timestamp_ms,json=lastPingTimestampMs,proto3" json:"last_ping_timestamp_ms,omitempty"`
TimestampMs int64 `protobuf:"varint,2,opt,name=timestamp_ms,json=timestampMs,proto3" json:"timestamp_ms,omitempty"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_Wire_Pong) Reset() {
*x = AgentDB_Wire_Pong{}
mi := &file_livekit_agentdb_proto_msgTypes[23]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_Wire_Pong) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_Wire_Pong) ProtoMessage() {}
func (x *AgentDB_Wire_Pong) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[23]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_Wire_Pong) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 10, 11}
}
func (x *AgentDB_Wire_Pong) GetLastPingTimestampMs() int64 {
if x != nil {
return x.LastPingTimestampMs
}
return 0
}
func (x *AgentDB_Wire_Pong) GetTimestampMs() int64 {
if x != nil {
return x.TimestampMs
}
return 0
}
type AgentDB_Wire_Hello struct {
state protoimpl.MessageState `protogen:"open.v1"`
Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
DatabaseId string `protobuf:"bytes,2,opt,name=database_id,json=databaseId,proto3" json:"database_id,omitempty"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_Wire_Hello) Reset() {
*x = AgentDB_Wire_Hello{}
mi := &file_livekit_agentdb_proto_msgTypes[24]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_Wire_Hello) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_Wire_Hello) ProtoMessage() {}
func (x *AgentDB_Wire_Hello) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[24]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_Wire_Hello) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 10, 12}
}
func (x *AgentDB_Wire_Hello) GetToken() string {
if x != nil {
return x.Token
}
return ""
}
func (x *AgentDB_Wire_Hello) GetDatabaseId() string {
if x != nil {
return x.DatabaseId
}
return ""
}
type AgentDB_Wire_HelloOk struct {
state protoimpl.MessageState `protogen:"open.v1"`
Tip int64 `protobuf:"varint,1,opt,name=tip,proto3" json:"tip,omitempty"`
PingIntervalMs uint32 `protobuf:"varint,2,opt,name=ping_interval_ms,json=pingIntervalMs,proto3" json:"ping_interval_ms,omitempty"`
PingTimeoutMs uint32 `protobuf:"varint,3,opt,name=ping_timeout_ms,json=pingTimeoutMs,proto3" json:"ping_timeout_ms,omitempty"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_Wire_HelloOk) Reset() {
*x = AgentDB_Wire_HelloOk{}
mi := &file_livekit_agentdb_proto_msgTypes[25]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_Wire_HelloOk) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_Wire_HelloOk) ProtoMessage() {}
func (x *AgentDB_Wire_HelloOk) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[25]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_Wire_HelloOk) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 10, 13}
}
func (x *AgentDB_Wire_HelloOk) GetTip() int64 {
if x != nil {
return x.Tip
}
return 0
}
func (x *AgentDB_Wire_HelloOk) GetPingIntervalMs() uint32 {
if x != nil {
return x.PingIntervalMs
}
return 0
}
func (x *AgentDB_Wire_HelloOk) GetPingTimeoutMs() uint32 {
if x != nil {
return x.PingTimeoutMs
}
return 0
}
type AgentDB_Wire_Columns struct {
state protoimpl.MessageState `protogen:"open.v1"`
Names []string `protobuf:"bytes,1,rep,name=names,proto3" json:"names,omitempty"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_Wire_Columns) Reset() {
*x = AgentDB_Wire_Columns{}
mi := &file_livekit_agentdb_proto_msgTypes[26]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_Wire_Columns) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_Wire_Columns) ProtoMessage() {}
func (x *AgentDB_Wire_Columns) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[26]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_Wire_Columns) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 10, 14}
}
func (x *AgentDB_Wire_Columns) GetNames() []string {
if x != nil {
return x.Names
}
return nil
}
type AgentDB_Wire_Column struct {
state protoimpl.MessageState `protogen:"open.v1"`
Types []byte `protobuf:"bytes,1,opt,name=types,proto3" json:"types,omitempty"` Ints []int64 `protobuf:"zigzag64,2,rep,packed,name=ints,proto3" json:"ints,omitempty"`
Doubles []float64 `protobuf:"fixed64,3,rep,packed,name=doubles,proto3" json:"doubles,omitempty"`
TextData []byte `protobuf:"bytes,4,opt,name=text_data,json=textData,proto3" json:"text_data,omitempty"`
TextEnds []uint32 `protobuf:"varint,5,rep,packed,name=text_ends,json=textEnds,proto3" json:"text_ends,omitempty"`
BlobData []byte `protobuf:"bytes,6,opt,name=blob_data,json=blobData,proto3" json:"blob_data,omitempty"`
BlobEnds []uint32 `protobuf:"varint,7,rep,packed,name=blob_ends,json=blobEnds,proto3" json:"blob_ends,omitempty"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_Wire_Column) Reset() {
*x = AgentDB_Wire_Column{}
mi := &file_livekit_agentdb_proto_msgTypes[27]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_Wire_Column) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_Wire_Column) ProtoMessage() {}
func (x *AgentDB_Wire_Column) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[27]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_Wire_Column) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 10, 15}
}
func (x *AgentDB_Wire_Column) GetTypes() []byte {
if x != nil {
return x.Types
}
return nil
}
func (x *AgentDB_Wire_Column) GetInts() []int64 {
if x != nil {
return x.Ints
}
return nil
}
func (x *AgentDB_Wire_Column) GetDoubles() []float64 {
if x != nil {
return x.Doubles
}
return nil
}
func (x *AgentDB_Wire_Column) GetTextData() []byte {
if x != nil {
return x.TextData
}
return nil
}
func (x *AgentDB_Wire_Column) GetTextEnds() []uint32 {
if x != nil {
return x.TextEnds
}
return nil
}
func (x *AgentDB_Wire_Column) GetBlobData() []byte {
if x != nil {
return x.BlobData
}
return nil
}
func (x *AgentDB_Wire_Column) GetBlobEnds() []uint32 {
if x != nil {
return x.BlobEnds
}
return nil
}
type AgentDB_Wire_ColumnBatch struct {
state protoimpl.MessageState `protogen:"open.v1"`
Columns []*AgentDB_Wire_Column `protobuf:"bytes,1,rep,name=columns,proto3" json:"columns,omitempty"` Rows uint32 `protobuf:"varint,2,opt,name=rows,proto3" json:"rows,omitempty"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_Wire_ColumnBatch) Reset() {
*x = AgentDB_Wire_ColumnBatch{}
mi := &file_livekit_agentdb_proto_msgTypes[28]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_Wire_ColumnBatch) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_Wire_ColumnBatch) ProtoMessage() {}
func (x *AgentDB_Wire_ColumnBatch) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[28]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_Wire_ColumnBatch) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 10, 16}
}
func (x *AgentDB_Wire_ColumnBatch) GetColumns() []*AgentDB_Wire_Column {
if x != nil {
return x.Columns
}
return nil
}
func (x *AgentDB_Wire_ColumnBatch) GetRows() uint32 {
if x != nil {
return x.Rows
}
return 0
}
type AgentDB_Wire_ExecResult struct {
state protoimpl.MessageState `protogen:"open.v1"`
RowsAffected int64 `protobuf:"varint,1,opt,name=rows_affected,json=rowsAffected,proto3" json:"rows_affected,omitempty"`
LastInsertId int64 `protobuf:"varint,2,opt,name=last_insert_id,json=lastInsertId,proto3" json:"last_insert_id,omitempty"`
Tip int64 `protobuf:"varint,3,opt,name=tip,proto3" json:"tip,omitempty"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_Wire_ExecResult) Reset() {
*x = AgentDB_Wire_ExecResult{}
mi := &file_livekit_agentdb_proto_msgTypes[29]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_Wire_ExecResult) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_Wire_ExecResult) ProtoMessage() {}
func (x *AgentDB_Wire_ExecResult) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[29]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_Wire_ExecResult) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 10, 17}
}
func (x *AgentDB_Wire_ExecResult) GetRowsAffected() int64 {
if x != nil {
return x.RowsAffected
}
return 0
}
func (x *AgentDB_Wire_ExecResult) GetLastInsertId() int64 {
if x != nil {
return x.LastInsertId
}
return 0
}
func (x *AgentDB_Wire_ExecResult) GetTip() int64 {
if x != nil {
return x.Tip
}
return 0
}
type AgentDB_Wire_Done struct {
state protoimpl.MessageState `protogen:"open.v1"`
Tip int64 `protobuf:"varint,1,opt,name=tip,proto3" json:"tip,omitempty"` TotalRows uint64 `protobuf:"varint,2,opt,name=total_rows,json=totalRows,proto3" json:"total_rows,omitempty"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_Wire_Done) Reset() {
*x = AgentDB_Wire_Done{}
mi := &file_livekit_agentdb_proto_msgTypes[30]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_Wire_Done) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_Wire_Done) ProtoMessage() {}
func (x *AgentDB_Wire_Done) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[30]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_Wire_Done) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 10, 18}
}
func (x *AgentDB_Wire_Done) GetTip() int64 {
if x != nil {
return x.Tip
}
return 0
}
func (x *AgentDB_Wire_Done) GetTotalRows() uint64 {
if x != nil {
return x.TotalRows
}
return 0
}
type AgentDB_Wire_Error struct {
state protoimpl.MessageState `protogen:"open.v1"`
Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"` Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *AgentDB_Wire_Error) Reset() {
*x = AgentDB_Wire_Error{}
mi := &file_livekit_agentdb_proto_msgTypes[31]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *AgentDB_Wire_Error) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AgentDB_Wire_Error) ProtoMessage() {}
func (x *AgentDB_Wire_Error) ProtoReflect() protoreflect.Message {
mi := &file_livekit_agentdb_proto_msgTypes[31]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
func (*AgentDB_Wire_Error) Descriptor() ([]byte, []int) {
return file_livekit_agentdb_proto_rawDescGZIP(), []int{0, 10, 19}
}
func (x *AgentDB_Wire_Error) GetCode() string {
if x != nil {
return x.Code
}
return ""
}
func (x *AgentDB_Wire_Error) GetMessage() string {
if x != nil {
return x.Message
}
return ""
}
var File_livekit_agentdb_proto protoreflect.FileDescriptor
const file_livekit_agentdb_proto_rawDesc = "" +
"\n" +
"\x15livekit_agentdb.proto\x12\alivekit\"\xd8\x19\n" +
"\aAgentDB\x1aH\n" +
"\rCreateRequest\x12\x16\n" +
"\x06region\x18\x01 \x01(\tR\x06region\x12\x1f\n" +
"\vttl_seconds\x18\x02 \x01(\x03R\n" +
"ttlSeconds\x1aP\n" +
"\x0eCreateResponse\x12\x1f\n" +
"\vdatabase_id\x18\x01 \x01(\tR\n" +
"databaseId\x12\x1d\n" +
"\n" +
"expires_at\x18\x02 \x01(\x03R\texpiresAt\x1a-\n" +
"\n" +
"GetRequest\x12\x1f\n" +
"\vdatabase_id\x18\x01 \x01(\tR\n" +
"databaseId\x1aI\n" +
"\vListRequest\x12\x1b\n" +
"\tpage_size\x18\x01 \x01(\x05R\bpageSize\x12\x1d\n" +
"\n" +
"page_token\x18\x02 \x01(\tR\tpageToken\x1at\n" +
"\fListResponse\x12<\n" +
"\tdatabases\x18\x01 \x03(\v2\x1e.livekit.AgentDB.AgentDatabaseR\tdatabases\x12&\n" +
"\x0fnext_page_token\x18\x02 \x01(\tR\rnextPageToken\x1a\x98\x01\n" +
"\rAgentDatabase\x12\x1f\n" +
"\vdatabase_id\x18\x01 \x01(\tR\n" +
"databaseId\x12\x16\n" +
"\x06region\x18\x02 \x01(\tR\x06region\x12\x1d\n" +
"\n" +
"created_at\x18\x03 \x01(\x03R\tcreatedAt\x12\x1d\n" +
"\n" +
"expires_at\x18\x04 \x01(\x03R\texpiresAt\x12\x10\n" +
"\x03tip\x18\x05 \x01(\x03R\x03tip\x1a0\n" +
"\rDeleteRequest\x12\x1f\n" +
"\vdatabase_id\x18\x01 \x01(\tR\n" +
"databaseId\x1a\x10\n" +
"\x0eDeleteResponse\x1a.\n" +
"\vDumpRequest\x12\x1f\n" +
"\vdatabase_id\x18\x01 \x01(\tR\n" +
"databaseId\x1ab\n" +
"\fDumpResponse\x12!\n" +
"\fdownload_url\x18\x01 \x01(\tR\vdownloadUrl\x12\x1d\n" +
"\n" +
"expires_at\x18\x02 \x01(\x03R\texpiresAt\x12\x10\n" +
"\x03tip\x18\x03 \x01(\x03R\x03tip\x1a\xcd\x13\n" +
"\x04Wire\x1a\xe0\x04\n" +
"\rClientMessage\x12\x1d\n" +
"\n" +
"request_id\x18\x01 \x01(\rR\trequestId\x123\n" +
"\x05hello\x18\x02 \x01(\v2\x1b.livekit.AgentDB.Wire.HelloH\x00R\x05hello\x125\n" +
"\x04exec\x18\x03 \x01(\v2\x1f.livekit.AgentDB.Wire.StatementH\x00R\x04exec\x127\n" +
"\x05query\x18\x04 \x01(\v2\x1f.livekit.AgentDB.Wire.StatementH\x00R\x05query\x123\n" +
"\x05batch\x18\x05 \x01(\v2\x1b.livekit.AgentDB.Wire.BatchH\x00R\x05batch\x123\n" +
"\x05begin\x18\x06 \x01(\v2\x1b.livekit.AgentDB.Wire.BeginH\x00R\x05begin\x126\n" +
"\x06commit\x18\a \x01(\v2\x1c.livekit.AgentDB.Wire.CommitH\x00R\x06commit\x12<\n" +
"\brollback\x18\b \x01(\v2\x1e.livekit.AgentDB.Wire.RollbackH\x00R\brollback\x126\n" +
"\x06cancel\x18\t \x01(\v2\x1c.livekit.AgentDB.Wire.CancelH\x00R\x06cancel\x126\n" +
"\x06credit\x18\n" +
" \x01(\v2\x1c.livekit.AgentDB.Wire.CreditH\x00R\x06credit\x120\n" +
"\x04ping\x18\v \x01(\v2\x1a.livekit.AgentDB.Wire.PingH\x00R\x04pingB\t\n" +
"\amessage\x1a\xd6\x03\n" +
"\rServerMessage\x12\x1d\n" +
"\n" +
"request_id\x18\x01 \x01(\rR\trequestId\x12:\n" +
"\bhello_ok\x18\x02 \x01(\v2\x1d.livekit.AgentDB.Wire.HelloOkH\x00R\ahelloOk\x129\n" +
"\acolumns\x18\x03 \x01(\v2\x1d.livekit.AgentDB.Wire.ColumnsH\x00R\acolumns\x12F\n" +
"\fcolumn_batch\x18\x04 \x01(\v2!.livekit.AgentDB.Wire.ColumnBatchH\x00R\vcolumnBatch\x12C\n" +
"\vexec_result\x18\x05 \x01(\v2 .livekit.AgentDB.Wire.ExecResultH\x00R\n" +
"execResult\x120\n" +
"\x04done\x18\x06 \x01(\v2\x1a.livekit.AgentDB.Wire.DoneH\x00R\x04done\x123\n" +
"\x05error\x18\a \x01(\v2\x1b.livekit.AgentDB.Wire.ErrorH\x00R\x05error\x120\n" +
"\x04pong\x18\b \x01(\v2\x1a.livekit.AgentDB.Wire.PongH\x00R\x04pongB\t\n" +
"\amessage\x1a\xb7\x01\n" +
"\x05Value\x12\x1f\n" +
"\n" +
"null_value\x18\x01 \x01(\bH\x00R\tnullValue\x12\x1d\n" +
"\tint_value\x18\x02 \x01(\x03H\x00R\bintValue\x12#\n" +
"\fdouble_value\x18\x03 \x01(\x01H\x00R\vdoubleValue\x12\x1f\n" +
"\n" +
"text_value\x18\x04 \x01(\tH\x00R\ttextValue\x12\x1f\n" +
"\n" +
"blob_value\x18\x05 \x01(\fH\x00R\tblobValueB\a\n" +
"\x05value\x1a\x87\x01\n" +
"\tStatement\x12\x10\n" +
"\x03sql\x18\x01 \x01(\tR\x03sql\x123\n" +
"\x06params\x18\x02 \x03(\v2\x1b.livekit.AgentDB.Wire.ValueR\x06params\x123\n" +
"\x04lang\x18\x03 \x01(\x0e2\x1f.livekit.AgentDB.Wire.QueryLangR\x04lang\x1aH\n" +
"\x05Batch\x12?\n" +
"\n" +
"statements\x18\x01 \x03(\v2\x1f.livekit.AgentDB.Wire.StatementR\n" +
"statements\x1a\a\n" +
"\x05Begin\x1a\b\n" +
"\x06Commit\x1a\n" +
"\n" +
"\bRollback\x1a\b\n" +
"\x06Cancel\x1a\"\n" +
"\x06Credit\x12\x18\n" +
"\abatches\x18\x01 \x01(\rR\abatches\x1a)\n" +
"\x04Ping\x12!\n" +
"\ftimestamp_ms\x18\x01 \x01(\x03R\vtimestampMs\x1a^\n" +
"\x04Pong\x123\n" +
"\x16last_ping_timestamp_ms\x18\x01 \x01(\x03R\x13lastPingTimestampMs\x12!\n" +
"\ftimestamp_ms\x18\x02 \x01(\x03R\vtimestampMs\x1a>\n" +
"\x05Hello\x12\x14\n" +
"\x05token\x18\x01 \x01(\tR\x05token\x12\x1f\n" +
"\vdatabase_id\x18\x02 \x01(\tR\n" +
"databaseId\x1am\n" +
"\aHelloOk\x12\x10\n" +
"\x03tip\x18\x01 \x01(\x03R\x03tip\x12(\n" +
"\x10ping_interval_ms\x18\x02 \x01(\rR\x0epingIntervalMs\x12&\n" +
"\x0fping_timeout_ms\x18\x03 \x01(\rR\rpingTimeoutMs\x1a\x1f\n" +
"\aColumns\x12\x14\n" +
"\x05names\x18\x01 \x03(\tR\x05names\x1a\xc0\x01\n" +
"\x06Column\x12\x14\n" +
"\x05types\x18\x01 \x01(\fR\x05types\x12\x12\n" +
"\x04ints\x18\x02 \x03(\x12R\x04ints\x12\x18\n" +
"\adoubles\x18\x03 \x03(\x01R\adoubles\x12\x1b\n" +
"\ttext_data\x18\x04 \x01(\fR\btextData\x12\x1b\n" +
"\ttext_ends\x18\x05 \x03(\rR\btextEnds\x12\x1b\n" +
"\tblob_data\x18\x06 \x01(\fR\bblobData\x12\x1b\n" +
"\tblob_ends\x18\a \x03(\rR\bblobEnds\x1aY\n" +
"\vColumnBatch\x126\n" +
"\acolumns\x18\x01 \x03(\v2\x1c.livekit.AgentDB.Wire.ColumnR\acolumns\x12\x12\n" +
"\x04rows\x18\x02 \x01(\rR\x04rows\x1ai\n" +
"\n" +
"ExecResult\x12#\n" +
"\rrows_affected\x18\x01 \x01(\x03R\frowsAffected\x12$\n" +
"\x0elast_insert_id\x18\x02 \x01(\x03R\flastInsertId\x12\x10\n" +
"\x03tip\x18\x03 \x01(\x03R\x03tip\x1a7\n" +
"\x04Done\x12\x10\n" +
"\x03tip\x18\x01 \x01(\x03R\x03tip\x12\x1d\n" +
"\n" +
"total_rows\x18\x02 \x01(\x04R\ttotalRows\x1a5\n" +
"\x05Error\x12\x12\n" +
"\x04code\x18\x01 \x01(\tR\x04code\x12\x18\n" +
"\amessage\x18\x02 \x01(\tR\amessage\"\x1a\n" +
"\tQueryLang\x12\a\n" +
"\x03SQL\x10\x00\"\x04\b\x01\x10\x01\">\n" +
"\tValueType\x12\b\n" +
"\x04NULL\x10\x00\x12\a\n" +
"\x03INT\x10\x01\x12\n" +
"\n" +
"\x06DOUBLE\x10\x02\x12\b\n" +
"\x04TEXT\x10\x03\x12\b\n" +
"\x04BLOB\x10\x042\x9d\x03\n" +
"\x0eAgentDBService\x12Q\n" +
"\x0eCreateDatabase\x12\x1e.livekit.AgentDB.CreateRequest\x1a\x1f.livekit.AgentDB.CreateResponse\x12J\n" +
"\vGetDatabase\x12\x1b.livekit.AgentDB.GetRequest\x1a\x1e.livekit.AgentDB.AgentDatabase\x12L\n" +
"\rListDatabases\x12\x1c.livekit.AgentDB.ListRequest\x1a\x1d.livekit.AgentDB.ListResponse\x12Q\n" +
"\x0eDeleteDatabase\x12\x1e.livekit.AgentDB.DeleteRequest\x1a\x1f.livekit.AgentDB.DeleteResponse\x12K\n" +
"\fDumpDatabase\x12\x1c.livekit.AgentDB.DumpRequest\x1a\x1d.livekit.AgentDB.DumpResponseBFZ#github.com/livekit/protocol/livekit\xaa\x02\rLiveKit.Proto\xea\x02\x0eLiveKit::Protob\x06proto3"
var (
file_livekit_agentdb_proto_rawDescOnce sync.Once
file_livekit_agentdb_proto_rawDescData []byte
)
func file_livekit_agentdb_proto_rawDescGZIP() []byte {
file_livekit_agentdb_proto_rawDescOnce.Do(func() {
file_livekit_agentdb_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_livekit_agentdb_proto_rawDesc), len(file_livekit_agentdb_proto_rawDesc)))
})
return file_livekit_agentdb_proto_rawDescData
}
var file_livekit_agentdb_proto_enumTypes = make([]protoimpl.EnumInfo, 2)
var file_livekit_agentdb_proto_msgTypes = make([]protoimpl.MessageInfo, 32)
var file_livekit_agentdb_proto_goTypes = []any{
(AgentDB_Wire_QueryLang)(0), (AgentDB_Wire_ValueType)(0), (*AgentDB)(nil), (*AgentDB_CreateRequest)(nil), (*AgentDB_CreateResponse)(nil), (*AgentDB_GetRequest)(nil), (*AgentDB_ListRequest)(nil), (*AgentDB_ListResponse)(nil), (*AgentDB_AgentDatabase)(nil), (*AgentDB_DeleteRequest)(nil), (*AgentDB_DeleteResponse)(nil), (*AgentDB_DumpRequest)(nil), (*AgentDB_DumpResponse)(nil), (*AgentDB_Wire)(nil), (*AgentDB_Wire_ClientMessage)(nil), (*AgentDB_Wire_ServerMessage)(nil), (*AgentDB_Wire_Value)(nil), (*AgentDB_Wire_Statement)(nil), (*AgentDB_Wire_Batch)(nil), (*AgentDB_Wire_Begin)(nil), (*AgentDB_Wire_Commit)(nil), (*AgentDB_Wire_Rollback)(nil), (*AgentDB_Wire_Cancel)(nil), (*AgentDB_Wire_Credit)(nil), (*AgentDB_Wire_Ping)(nil), (*AgentDB_Wire_Pong)(nil), (*AgentDB_Wire_Hello)(nil), (*AgentDB_Wire_HelloOk)(nil), (*AgentDB_Wire_Columns)(nil), (*AgentDB_Wire_Column)(nil), (*AgentDB_Wire_ColumnBatch)(nil), (*AgentDB_Wire_ExecResult)(nil), (*AgentDB_Wire_Done)(nil), (*AgentDB_Wire_Error)(nil), }
var file_livekit_agentdb_proto_depIdxs = []int32{
8, 26, 17, 17, 18, 19, 20, 21, 22, 23, 24, 27, 28, 30, 31, 32, 33, 25, 16, 0, 17, 29, 3, 5, 6, 9, 11, 4, 8, 7, 10, 12, 27, 22, 22, 22, 0, }
func init() { file_livekit_agentdb_proto_init() }
func file_livekit_agentdb_proto_init() {
if File_livekit_agentdb_proto != nil {
return
}
file_livekit_agentdb_proto_msgTypes[12].OneofWrappers = []any{
(*AgentDB_Wire_ClientMessage_Hello)(nil),
(*AgentDB_Wire_ClientMessage_Exec)(nil),
(*AgentDB_Wire_ClientMessage_Query)(nil),
(*AgentDB_Wire_ClientMessage_Batch)(nil),
(*AgentDB_Wire_ClientMessage_Begin)(nil),
(*AgentDB_Wire_ClientMessage_Commit)(nil),
(*AgentDB_Wire_ClientMessage_Rollback)(nil),
(*AgentDB_Wire_ClientMessage_Cancel)(nil),
(*AgentDB_Wire_ClientMessage_Credit)(nil),
(*AgentDB_Wire_ClientMessage_Ping)(nil),
}
file_livekit_agentdb_proto_msgTypes[13].OneofWrappers = []any{
(*AgentDB_Wire_ServerMessage_HelloOk)(nil),
(*AgentDB_Wire_ServerMessage_Columns)(nil),
(*AgentDB_Wire_ServerMessage_ColumnBatch)(nil),
(*AgentDB_Wire_ServerMessage_ExecResult)(nil),
(*AgentDB_Wire_ServerMessage_Done)(nil),
(*AgentDB_Wire_ServerMessage_Error)(nil),
(*AgentDB_Wire_ServerMessage_Pong)(nil),
}
file_livekit_agentdb_proto_msgTypes[14].OneofWrappers = []any{
(*AgentDB_Wire_Value_NullValue)(nil),
(*AgentDB_Wire_Value_IntValue)(nil),
(*AgentDB_Wire_Value_DoubleValue)(nil),
(*AgentDB_Wire_Value_TextValue)(nil),
(*AgentDB_Wire_Value_BlobValue)(nil),
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: unsafe.Slice(unsafe.StringData(file_livekit_agentdb_proto_rawDesc), len(file_livekit_agentdb_proto_rawDesc)),
NumEnums: 2,
NumMessages: 32,
NumExtensions: 0,
NumServices: 1,
},
GoTypes: file_livekit_agentdb_proto_goTypes,
DependencyIndexes: file_livekit_agentdb_proto_depIdxs,
EnumInfos: file_livekit_agentdb_proto_enumTypes,
MessageInfos: file_livekit_agentdb_proto_msgTypes,
}.Build()
File_livekit_agentdb_proto = out.File
file_livekit_agentdb_proto_goTypes = nil
file_livekit_agentdb_proto_depIdxs = nil
}