//
//Сервис получения trunk-конфигурации для определенного города

// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// 	protoc-gen-go v1.30.0
// 	protoc        v4.23.1
// source: keyapis/device/v1/keyapis_device_trunk_config.proto

package keyapis_device_v1

import (
	_ "google.golang.org/genproto/googleapis/api/annotations"
	protoreflect "google.golang.org/protobuf/reflect/protoreflect"
	protoimpl "google.golang.org/protobuf/runtime/protoimpl"
	timestamppb "google.golang.org/protobuf/types/known/timestamppb"
	wrapperspb "google.golang.org/protobuf/types/known/wrapperspb"
	reflect "reflect"
	sync "sync"
)

const (
	// Verify that this generated code is sufficiently up-to-date.
	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
	// Verify that runtime/protoimpl is sufficiently up-to-date.
	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)

// Справочник типов значений сортировки.
// # Тип: byte
type TrunkConfigPaging_OrderByType int32

const (
	// Значение не указано
	TrunkConfigPaging_ORDER_BY_TYPE_UNKNOWN TrunkConfigPaging_OrderByType = 0
	// По идентификатору
	TrunkConfigPaging_ID TrunkConfigPaging_OrderByType = 1
	// Дата последнего изменения
	TrunkConfigPaging_CHANGED_AT TrunkConfigPaging_OrderByType = 2
	// Дата создания
	TrunkConfigPaging_CREATED_AT TrunkConfigPaging_OrderByType = 3
)

// Enum value maps for TrunkConfigPaging_OrderByType.
var (
	TrunkConfigPaging_OrderByType_name = map[int32]string{
		0: "ORDER_BY_TYPE_UNKNOWN",
		1: "ID",
		2: "CHANGED_AT",
		3: "CREATED_AT",
	}
	TrunkConfigPaging_OrderByType_value = map[string]int32{
		"ORDER_BY_TYPE_UNKNOWN": 0,
		"ID":                    1,
		"CHANGED_AT":            2,
		"CREATED_AT":            3,
	}
)

func (x TrunkConfigPaging_OrderByType) Enum() *TrunkConfigPaging_OrderByType {
	p := new(TrunkConfigPaging_OrderByType)
	*p = x
	return p
}

func (x TrunkConfigPaging_OrderByType) String() string {
	return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
}

func (TrunkConfigPaging_OrderByType) Descriptor() protoreflect.EnumDescriptor {
	return file_keyapis_device_v1_keyapis_device_trunk_config_proto_enumTypes[0].Descriptor()
}

func (TrunkConfigPaging_OrderByType) Type() protoreflect.EnumType {
	return &file_keyapis_device_v1_keyapis_device_trunk_config_proto_enumTypes[0]
}

func (x TrunkConfigPaging_OrderByType) Number() protoreflect.EnumNumber {
	return protoreflect.EnumNumber(x)
}

// Deprecated: Use TrunkConfigPaging_OrderByType.Descriptor instead.
func (TrunkConfigPaging_OrderByType) EnumDescriptor() ([]byte, []int) {
	return file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescGZIP(), []int{2, 0}
}

// Справочник типов направлений сортировки;
// # Тип: byte
type TrunkConfigPaging_DirectionType int32

const (
	// Значение не указано
	TrunkConfigPaging_DIRECTION_TYPE_UNKNOWN TrunkConfigPaging_DirectionType = 0
	// От большего к меньшему
	TrunkConfigPaging_DESC TrunkConfigPaging_DirectionType = 1
	// От меньшего к большему
	TrunkConfigPaging_ASC TrunkConfigPaging_DirectionType = 2
)

// Enum value maps for TrunkConfigPaging_DirectionType.
var (
	TrunkConfigPaging_DirectionType_name = map[int32]string{
		0: "DIRECTION_TYPE_UNKNOWN",
		1: "DESC",
		2: "ASC",
	}
	TrunkConfigPaging_DirectionType_value = map[string]int32{
		"DIRECTION_TYPE_UNKNOWN": 0,
		"DESC":                   1,
		"ASC":                    2,
	}
)

func (x TrunkConfigPaging_DirectionType) Enum() *TrunkConfigPaging_DirectionType {
	p := new(TrunkConfigPaging_DirectionType)
	*p = x
	return p
}

func (x TrunkConfigPaging_DirectionType) String() string {
	return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
}

func (TrunkConfigPaging_DirectionType) Descriptor() protoreflect.EnumDescriptor {
	return file_keyapis_device_v1_keyapis_device_trunk_config_proto_enumTypes[1].Descriptor()
}

func (TrunkConfigPaging_DirectionType) Type() protoreflect.EnumType {
	return &file_keyapis_device_v1_keyapis_device_trunk_config_proto_enumTypes[1]
}

func (x TrunkConfigPaging_DirectionType) Number() protoreflect.EnumNumber {
	return protoreflect.EnumNumber(x)
}

// Deprecated: Use TrunkConfigPaging_DirectionType.Descriptor instead.
func (TrunkConfigPaging_DirectionType) EnumDescriptor() ([]byte, []int) {
	return file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescGZIP(), []int{2, 1}
}

// Trunk-конфигурация.
// # Описание модели
type TrunkConfig struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Идентификатор.
	// # Тип: Guid
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// ОРПОН Города
	CityOrponId int64 `protobuf:"varint,2,opt,name=city_orpon_id,json=cityOrponId,proto3" json:"city_orpon_id,omitempty"`
	// Тип Trunk-аккаунта
	DeviceSipTrunkSipType Device_SipTrunk_SipType `protobuf:"varint,3,opt,name=device_sip_trunk_sip_type,json=deviceSipTrunkSipType,proto3,enum=keyapis.device.v1.Device_SipTrunk_SipType" json:"device_sip_trunk_sip_type,omitempty"`
	// IP-адрес.
	// # Диапазон: 7..15
	IpAddress string `protobuf:"bytes,4,opt,name=ip_address,json=ipAddress,proto3" json:"ip_address,omitempty"`
	// Порт.
	// # Диапазон: 0..65535
	Port int32 `protobuf:"varint,5,opt,name=port,proto3" json:"port,omitempty"`
	// Дата создания.
	// # Тип: DateTime
	CreatedAt *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	// Дата последнего изменения.
	// Заполняется и обновляется сервером.
	// Заполняется при создании и изменении.
	// Является версией объекта.
	// # Тип: DateTime
	ChangedAt *timestamppb.Timestamp `protobuf:"bytes,7,opt,name=changed_at,json=changedAt,proto3" json:"changed_at,omitempty"`
	// Дата удаления.
	// # Тип: DateTime?
	DeletedAt *timestamppb.Timestamp `protobuf:"bytes,8,opt,name=deleted_at,json=deletedAt,proto3" json:"deleted_at,omitempty"`
}

func (x *TrunkConfig) Reset() {
	*x = TrunkConfig{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[0]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *TrunkConfig) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*TrunkConfig) ProtoMessage() {}

func (x *TrunkConfig) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[0]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

// Deprecated: Use TrunkConfig.ProtoReflect.Descriptor instead.
func (*TrunkConfig) Descriptor() ([]byte, []int) {
	return file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescGZIP(), []int{0}
}

func (x *TrunkConfig) GetId() string {
	if x != nil {
		return x.Id
	}
	return ""
}

func (x *TrunkConfig) GetCityOrponId() int64 {
	if x != nil {
		return x.CityOrponId
	}
	return 0
}

func (x *TrunkConfig) GetDeviceSipTrunkSipType() Device_SipTrunk_SipType {
	if x != nil {
		return x.DeviceSipTrunkSipType
	}
	return Device_SipTrunk_SIP_TYPE_UNKNOWN
}

func (x *TrunkConfig) GetIpAddress() string {
	if x != nil {
		return x.IpAddress
	}
	return ""
}

func (x *TrunkConfig) GetPort() int32 {
	if x != nil {
		return x.Port
	}
	return 0
}

func (x *TrunkConfig) GetCreatedAt() *timestamppb.Timestamp {
	if x != nil {
		return x.CreatedAt
	}
	return nil
}

func (x *TrunkConfig) GetChangedAt() *timestamppb.Timestamp {
	if x != nil {
		return x.ChangedAt
	}
	return nil
}

func (x *TrunkConfig) GetDeletedAt() *timestamppb.Timestamp {
	if x != nil {
		return x.DeletedAt
	}
	return nil
}

// Фильтр для Trunk-конфигураций
type TrunkConfigFilter struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Фильтр по ОРПОН идентификаторам города
	CityOrponIds []int64 `protobuf:"varint,1,rep,packed,name=city_orpon_ids,json=cityOrponIds,proto3" json:"city_orpon_ids,omitempty"`
	// Фильтр по IP-адресам
	IpAddresses []string `protobuf:"bytes,2,rep,name=ip_addresses,json=ipAddresses,proto3" json:"ip_addresses,omitempty"`
	// Показывать удаленные
	ShowDeleted *wrapperspb.BoolValue `protobuf:"bytes,3,opt,name=show_deleted,json=showDeleted,proto3" json:"show_deleted,omitempty"`
}

func (x *TrunkConfigFilter) Reset() {
	*x = TrunkConfigFilter{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[1]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *TrunkConfigFilter) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*TrunkConfigFilter) ProtoMessage() {}

func (x *TrunkConfigFilter) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[1]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

// Deprecated: Use TrunkConfigFilter.ProtoReflect.Descriptor instead.
func (*TrunkConfigFilter) Descriptor() ([]byte, []int) {
	return file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescGZIP(), []int{1}
}

func (x *TrunkConfigFilter) GetCityOrponIds() []int64 {
	if x != nil {
		return x.CityOrponIds
	}
	return nil
}

func (x *TrunkConfigFilter) GetIpAddresses() []string {
	if x != nil {
		return x.IpAddresses
	}
	return nil
}

func (x *TrunkConfigFilter) GetShowDeleted() *wrapperspb.BoolValue {
	if x != nil {
		return x.ShowDeleted
	}
	return nil
}

// Постраничный вывод
type TrunkConfigPaging struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Тип значения сортировки.
	// Если значение не передано, то будет взято значение по умолчанию.
	// # По умолчанию: CHANGED_AT
	OrderByType TrunkConfigPaging_OrderByType `protobuf:"varint,1,opt,name=order_by_type,json=orderByType,proto3,enum=keyapis.device.v1.TrunkConfigPaging_OrderByType" json:"order_by_type,omitempty"`
	// Тип направления сортировки.
	// # По умолчанию: DESC
	DirectionType TrunkConfigPaging_DirectionType `protobuf:"varint,2,opt,name=direction_type,json=directionType,proto3,enum=keyapis.device.v1.TrunkConfigPaging_DirectionType" json:"direction_type,omitempty"`
	// Количество записей на страницу.
	// Если значение 0 (не передано), то будет взято значение по умолчанию.
	// # Диапазон: 0..100.
	// # По умолчанию: 20
	Limit int32 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
	// Сдвиг.
	// # Диапазон: 0..2147483647
	Offset int32 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset,omitempty"`
}

func (x *TrunkConfigPaging) Reset() {
	*x = TrunkConfigPaging{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[2]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *TrunkConfigPaging) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*TrunkConfigPaging) ProtoMessage() {}

func (x *TrunkConfigPaging) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[2]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

// Deprecated: Use TrunkConfigPaging.ProtoReflect.Descriptor instead.
func (*TrunkConfigPaging) Descriptor() ([]byte, []int) {
	return file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescGZIP(), []int{2}
}

func (x *TrunkConfigPaging) GetOrderByType() TrunkConfigPaging_OrderByType {
	if x != nil {
		return x.OrderByType
	}
	return TrunkConfigPaging_ORDER_BY_TYPE_UNKNOWN
}

func (x *TrunkConfigPaging) GetDirectionType() TrunkConfigPaging_DirectionType {
	if x != nil {
		return x.DirectionType
	}
	return TrunkConfigPaging_DIRECTION_TYPE_UNKNOWN
}

func (x *TrunkConfigPaging) GetLimit() int32 {
	if x != nil {
		return x.Limit
	}
	return 0
}

func (x *TrunkConfigPaging) GetOffset() int32 {
	if x != nil {
		return x.Offset
	}
	return 0
}

// Запрос сохранения Trunk-конфигурации по идентификатору
type PostTrunkConfigRequest struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Trunk-конфигурации
	Data *TrunkConfig `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
}

func (x *PostTrunkConfigRequest) Reset() {
	*x = PostTrunkConfigRequest{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[3]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *PostTrunkConfigRequest) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*PostTrunkConfigRequest) ProtoMessage() {}

func (x *PostTrunkConfigRequest) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[3]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

// Deprecated: Use PostTrunkConfigRequest.ProtoReflect.Descriptor instead.
func (*PostTrunkConfigRequest) Descriptor() ([]byte, []int) {
	return file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescGZIP(), []int{3}
}

func (x *PostTrunkConfigRequest) GetData() *TrunkConfig {
	if x != nil {
		return x.Data
	}
	return nil
}

// Ответ на запрос сохранения Trunk-конфигурации по идентификатору
type PostTrunkConfigResponse struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Тип результата
	//
	// Types that are assignable to Type:
	//
	//	*PostTrunkConfigResponse_Data
	//	*PostTrunkConfigResponse_Error_
	Type isPostTrunkConfigResponse_Type `protobuf_oneof:"type"`
}

func (x *PostTrunkConfigResponse) Reset() {
	*x = PostTrunkConfigResponse{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[4]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *PostTrunkConfigResponse) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*PostTrunkConfigResponse) ProtoMessage() {}

func (x *PostTrunkConfigResponse) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[4]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

// Deprecated: Use PostTrunkConfigResponse.ProtoReflect.Descriptor instead.
func (*PostTrunkConfigResponse) Descriptor() ([]byte, []int) {
	return file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescGZIP(), []int{4}
}

func (m *PostTrunkConfigResponse) GetType() isPostTrunkConfigResponse_Type {
	if m != nil {
		return m.Type
	}
	return nil
}

func (x *PostTrunkConfigResponse) GetData() *TrunkConfig {
	if x, ok := x.GetType().(*PostTrunkConfigResponse_Data); ok {
		return x.Data
	}
	return nil
}

func (x *PostTrunkConfigResponse) GetError() *PostTrunkConfigResponse_Error {
	if x, ok := x.GetType().(*PostTrunkConfigResponse_Error_); ok {
		return x.Error
	}
	return nil
}

type isPostTrunkConfigResponse_Type interface {
	isPostTrunkConfigResponse_Type()
}

type PostTrunkConfigResponse_Data struct {
	// Профиль шифрования
	Data *TrunkConfig `protobuf:"bytes,1,opt,name=data,proto3,oneof"`
}

type PostTrunkConfigResponse_Error_ struct {
	// Ошибка
	Error *PostTrunkConfigResponse_Error `protobuf:"bytes,2,opt,name=error,proto3,oneof"`
}

func (*PostTrunkConfigResponse_Data) isPostTrunkConfigResponse_Type() {}

func (*PostTrunkConfigResponse_Error_) isPostTrunkConfigResponse_Type() {}

// Запрос на получение Trunk-конфигурации
type GetTrunkConfigRequest struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Идентификатор трубки.
	// # Тип: Guid
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
}

func (x *GetTrunkConfigRequest) Reset() {
	*x = GetTrunkConfigRequest{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[5]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *GetTrunkConfigRequest) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*GetTrunkConfigRequest) ProtoMessage() {}

func (x *GetTrunkConfigRequest) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[5]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

// Deprecated: Use GetTrunkConfigRequest.ProtoReflect.Descriptor instead.
func (*GetTrunkConfigRequest) Descriptor() ([]byte, []int) {
	return file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescGZIP(), []int{5}
}

func (x *GetTrunkConfigRequest) GetId() string {
	if x != nil {
		return x.Id
	}
	return ""
}

// Ответ на запрос Trunk-конфигурации
type GetTrunkConfigResponse struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Тип результата
	//
	// Types that are assignable to Type:
	//
	//	*GetTrunkConfigResponse_Data
	//	*GetTrunkConfigResponse_Error_
	Type isGetTrunkConfigResponse_Type `protobuf_oneof:"type"`
}

func (x *GetTrunkConfigResponse) Reset() {
	*x = GetTrunkConfigResponse{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[6]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *GetTrunkConfigResponse) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*GetTrunkConfigResponse) ProtoMessage() {}

func (x *GetTrunkConfigResponse) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[6]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

// Deprecated: Use GetTrunkConfigResponse.ProtoReflect.Descriptor instead.
func (*GetTrunkConfigResponse) Descriptor() ([]byte, []int) {
	return file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescGZIP(), []int{6}
}

func (m *GetTrunkConfigResponse) GetType() isGetTrunkConfigResponse_Type {
	if m != nil {
		return m.Type
	}
	return nil
}

func (x *GetTrunkConfigResponse) GetData() *TrunkConfig {
	if x, ok := x.GetType().(*GetTrunkConfigResponse_Data); ok {
		return x.Data
	}
	return nil
}

func (x *GetTrunkConfigResponse) GetError() *GetTrunkConfigResponse_Error {
	if x, ok := x.GetType().(*GetTrunkConfigResponse_Error_); ok {
		return x.Error
	}
	return nil
}

type isGetTrunkConfigResponse_Type interface {
	isGetTrunkConfigResponse_Type()
}

type GetTrunkConfigResponse_Data struct {
	// Trunk-конфигурация
	Data *TrunkConfig `protobuf:"bytes,1,opt,name=data,proto3,oneof"`
}

type GetTrunkConfigResponse_Error_ struct {
	// Ошибка
	Error *GetTrunkConfigResponse_Error `protobuf:"bytes,2,opt,name=error,proto3,oneof"`
}

func (*GetTrunkConfigResponse_Data) isGetTrunkConfigResponse_Type() {}

func (*GetTrunkConfigResponse_Error_) isGetTrunkConfigResponse_Type() {}

// Запрос на получение списка Trunk-конфигураций
type GetTrunkConfigListRequest struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Фильтр
	Filter *TrunkConfigFilter `protobuf:"bytes,1,opt,name=filter,proto3" json:"filter,omitempty"`
	// Вариант разбиения на страницы
	//
	// Types that are assignable to Pagination:
	//
	//	*GetTrunkConfigListRequest_Paging
	Pagination isGetTrunkConfigListRequest_Pagination `protobuf_oneof:"pagination"`
}

func (x *GetTrunkConfigListRequest) Reset() {
	*x = GetTrunkConfigListRequest{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[7]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *GetTrunkConfigListRequest) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*GetTrunkConfigListRequest) ProtoMessage() {}

func (x *GetTrunkConfigListRequest) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[7]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

// Deprecated: Use GetTrunkConfigListRequest.ProtoReflect.Descriptor instead.
func (*GetTrunkConfigListRequest) Descriptor() ([]byte, []int) {
	return file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescGZIP(), []int{7}
}

func (x *GetTrunkConfigListRequest) GetFilter() *TrunkConfigFilter {
	if x != nil {
		return x.Filter
	}
	return nil
}

func (m *GetTrunkConfigListRequest) GetPagination() isGetTrunkConfigListRequest_Pagination {
	if m != nil {
		return m.Pagination
	}
	return nil
}

func (x *GetTrunkConfigListRequest) GetPaging() *TrunkConfigPaging {
	if x, ok := x.GetPagination().(*GetTrunkConfigListRequest_Paging); ok {
		return x.Paging
	}
	return nil
}

type isGetTrunkConfigListRequest_Pagination interface {
	isGetTrunkConfigListRequest_Pagination()
}

type GetTrunkConfigListRequest_Paging struct {
	// Стандартный постраничный вывод
	Paging *TrunkConfigPaging `protobuf:"bytes,2,opt,name=paging,proto3,oneof"`
}

func (*GetTrunkConfigListRequest_Paging) isGetTrunkConfigListRequest_Pagination() {}

// Ответ на запрос списка Trunk-конфигураций
type GetTrunkConfigListResponse struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Тип результата
	//
	// Types that are assignable to Type:
	//
	//	*GetTrunkConfigListResponse_Data
	//	*GetTrunkConfigListResponse_Error_
	Type isGetTrunkConfigListResponse_Type `protobuf_oneof:"type"`
}

func (x *GetTrunkConfigListResponse) Reset() {
	*x = GetTrunkConfigListResponse{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[8]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *GetTrunkConfigListResponse) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*GetTrunkConfigListResponse) ProtoMessage() {}

func (x *GetTrunkConfigListResponse) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[8]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

// Deprecated: Use GetTrunkConfigListResponse.ProtoReflect.Descriptor instead.
func (*GetTrunkConfigListResponse) Descriptor() ([]byte, []int) {
	return file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescGZIP(), []int{8}
}

func (m *GetTrunkConfigListResponse) GetType() isGetTrunkConfigListResponse_Type {
	if m != nil {
		return m.Type
	}
	return nil
}

func (x *GetTrunkConfigListResponse) GetData() *TrunkConfig {
	if x, ok := x.GetType().(*GetTrunkConfigListResponse_Data); ok {
		return x.Data
	}
	return nil
}

func (x *GetTrunkConfigListResponse) GetError() *GetTrunkConfigListResponse_Error {
	if x, ok := x.GetType().(*GetTrunkConfigListResponse_Error_); ok {
		return x.Error
	}
	return nil
}

type isGetTrunkConfigListResponse_Type interface {
	isGetTrunkConfigListResponse_Type()
}

type GetTrunkConfigListResponse_Data struct {
	// Trunk-конфигурация
	Data *TrunkConfig `protobuf:"bytes,1,opt,name=data,proto3,oneof"`
}

type GetTrunkConfigListResponse_Error_ struct {
	// Ошибка
	Error *GetTrunkConfigListResponse_Error `protobuf:"bytes,2,opt,name=error,proto3,oneof"`
}

func (*GetTrunkConfigListResponse_Data) isGetTrunkConfigListResponse_Type() {}

func (*GetTrunkConfigListResponse_Error_) isGetTrunkConfigListResponse_Type() {}

// Запрос на получение количества Trunk-конфигураций
type GetTrunkConfigCountRequest struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Фильтр
	Filter *TrunkConfigFilter `protobuf:"bytes,1,opt,name=filter,proto3" json:"filter,omitempty"`
}

func (x *GetTrunkConfigCountRequest) Reset() {
	*x = GetTrunkConfigCountRequest{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[9]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *GetTrunkConfigCountRequest) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*GetTrunkConfigCountRequest) ProtoMessage() {}

func (x *GetTrunkConfigCountRequest) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[9]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

// Deprecated: Use GetTrunkConfigCountRequest.ProtoReflect.Descriptor instead.
func (*GetTrunkConfigCountRequest) Descriptor() ([]byte, []int) {
	return file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescGZIP(), []int{9}
}

func (x *GetTrunkConfigCountRequest) GetFilter() *TrunkConfigFilter {
	if x != nil {
		return x.Filter
	}
	return nil
}

// Ответ на запрос количества Trunk-конфигураций
type GetTrunkConfigCountResponse struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Тип результата
	//
	// Types that are assignable to Type:
	//
	//	*GetTrunkConfigCountResponse_Data
	//	*GetTrunkConfigCountResponse_Error_
	Type isGetTrunkConfigCountResponse_Type `protobuf_oneof:"type"`
}

func (x *GetTrunkConfigCountResponse) Reset() {
	*x = GetTrunkConfigCountResponse{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[10]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *GetTrunkConfigCountResponse) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*GetTrunkConfigCountResponse) ProtoMessage() {}

func (x *GetTrunkConfigCountResponse) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[10]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

// Deprecated: Use GetTrunkConfigCountResponse.ProtoReflect.Descriptor instead.
func (*GetTrunkConfigCountResponse) Descriptor() ([]byte, []int) {
	return file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescGZIP(), []int{10}
}

func (m *GetTrunkConfigCountResponse) GetType() isGetTrunkConfigCountResponse_Type {
	if m != nil {
		return m.Type
	}
	return nil
}

func (x *GetTrunkConfigCountResponse) GetData() int32 {
	if x, ok := x.GetType().(*GetTrunkConfigCountResponse_Data); ok {
		return x.Data
	}
	return 0
}

func (x *GetTrunkConfigCountResponse) GetError() *GetTrunkConfigCountResponse_Error {
	if x, ok := x.GetType().(*GetTrunkConfigCountResponse_Error_); ok {
		return x.Error
	}
	return nil
}

type isGetTrunkConfigCountResponse_Type interface {
	isGetTrunkConfigCountResponse_Type()
}

type GetTrunkConfigCountResponse_Data struct {
	// Всего Trunk-конфигураций
	Data int32 `protobuf:"varint,1,opt,name=data,proto3,oneof"`
}

type GetTrunkConfigCountResponse_Error_ struct {
	// Ошибка
	Error *GetTrunkConfigCountResponse_Error `protobuf:"bytes,2,opt,name=error,proto3,oneof"`
}

func (*GetTrunkConfigCountResponse_Data) isGetTrunkConfigCountResponse_Type() {}

func (*GetTrunkConfigCountResponse_Error_) isGetTrunkConfigCountResponse_Type() {}

// Запрос удаления Trunk-конфигурации
type DeleteTrunkConfigRequest struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Идентификатор.
	// # Тип: Guid
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
}

func (x *DeleteTrunkConfigRequest) Reset() {
	*x = DeleteTrunkConfigRequest{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[11]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *DeleteTrunkConfigRequest) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*DeleteTrunkConfigRequest) ProtoMessage() {}

func (x *DeleteTrunkConfigRequest) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[11]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

// Deprecated: Use DeleteTrunkConfigRequest.ProtoReflect.Descriptor instead.
func (*DeleteTrunkConfigRequest) Descriptor() ([]byte, []int) {
	return file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescGZIP(), []int{11}
}

func (x *DeleteTrunkConfigRequest) GetId() string {
	if x != nil {
		return x.Id
	}
	return ""
}

// Ответ на запрос удаления Trunk-конфигурации
type DeleteTrunkConfigResponse struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Тип результата
	//
	// Types that are assignable to Type:
	//
	//	*DeleteTrunkConfigResponse_Error_
	Type isDeleteTrunkConfigResponse_Type `protobuf_oneof:"type"`
}

func (x *DeleteTrunkConfigResponse) Reset() {
	*x = DeleteTrunkConfigResponse{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[12]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *DeleteTrunkConfigResponse) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*DeleteTrunkConfigResponse) ProtoMessage() {}

func (x *DeleteTrunkConfigResponse) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[12]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

// Deprecated: Use DeleteTrunkConfigResponse.ProtoReflect.Descriptor instead.
func (*DeleteTrunkConfigResponse) Descriptor() ([]byte, []int) {
	return file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescGZIP(), []int{12}
}

func (m *DeleteTrunkConfigResponse) GetType() isDeleteTrunkConfigResponse_Type {
	if m != nil {
		return m.Type
	}
	return nil
}

func (x *DeleteTrunkConfigResponse) GetError() *DeleteTrunkConfigResponse_Error {
	if x, ok := x.GetType().(*DeleteTrunkConfigResponse_Error_); ok {
		return x.Error
	}
	return nil
}

type isDeleteTrunkConfigResponse_Type interface {
	isDeleteTrunkConfigResponse_Type()
}

type DeleteTrunkConfigResponse_Error_ struct {
	// Ошибка
	Error *DeleteTrunkConfigResponse_Error `protobuf:"bytes,1,opt,name=error,proto3,oneof"`
}

func (*DeleteTrunkConfigResponse_Error_) isDeleteTrunkConfigResponse_Type() {}

// Запрос разархивации Trunk-конфигурации по идентификатору
type PostTrunkConfigRestoreRequest struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Идентификатор.
	// # Тип: Guid
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
}

func (x *PostTrunkConfigRestoreRequest) Reset() {
	*x = PostTrunkConfigRestoreRequest{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[13]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *PostTrunkConfigRestoreRequest) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*PostTrunkConfigRestoreRequest) ProtoMessage() {}

func (x *PostTrunkConfigRestoreRequest) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[13]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

// Deprecated: Use PostTrunkConfigRestoreRequest.ProtoReflect.Descriptor instead.
func (*PostTrunkConfigRestoreRequest) Descriptor() ([]byte, []int) {
	return file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescGZIP(), []int{13}
}

func (x *PostTrunkConfigRestoreRequest) GetId() string {
	if x != nil {
		return x.Id
	}
	return ""
}

// Отвест на запрос разархивации Trunk-конфигурации по идентификатору
type PostTrunkConfigRestoreResponse struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Тип результата
	//
	// Types that are assignable to Type:
	//
	//	*PostTrunkConfigRestoreResponse_Error_
	Type isPostTrunkConfigRestoreResponse_Type `protobuf_oneof:"type"`
}

func (x *PostTrunkConfigRestoreResponse) Reset() {
	*x = PostTrunkConfigRestoreResponse{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[14]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *PostTrunkConfigRestoreResponse) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*PostTrunkConfigRestoreResponse) ProtoMessage() {}

func (x *PostTrunkConfigRestoreResponse) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[14]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

// Deprecated: Use PostTrunkConfigRestoreResponse.ProtoReflect.Descriptor instead.
func (*PostTrunkConfigRestoreResponse) Descriptor() ([]byte, []int) {
	return file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescGZIP(), []int{14}
}

func (m *PostTrunkConfigRestoreResponse) GetType() isPostTrunkConfigRestoreResponse_Type {
	if m != nil {
		return m.Type
	}
	return nil
}

func (x *PostTrunkConfigRestoreResponse) GetError() *PostTrunkConfigRestoreResponse_Error {
	if x, ok := x.GetType().(*PostTrunkConfigRestoreResponse_Error_); ok {
		return x.Error
	}
	return nil
}

type isPostTrunkConfigRestoreResponse_Type interface {
	isPostTrunkConfigRestoreResponse_Type()
}

type PostTrunkConfigRestoreResponse_Error_ struct {
	// Ошибка
	Error *PostTrunkConfigRestoreResponse_Error `protobuf:"bytes,1,opt,name=error,proto3,oneof"`
}

func (*PostTrunkConfigRestoreResponse_Error_) isPostTrunkConfigRestoreResponse_Type() {}

// Ошибка сохранения.
// Эти проверки выполняются при работе с базой данных и сторонними сервисами
type TrunkConfig_SavingError struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Причина ошибки
	//
	// Types that are assignable to Reason:
	//
	//	*TrunkConfig_SavingError_Conflict_
	Reason isTrunkConfig_SavingError_Reason `protobuf_oneof:"reason"`
}

func (x *TrunkConfig_SavingError) Reset() {
	*x = TrunkConfig_SavingError{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[15]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *TrunkConfig_SavingError) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*TrunkConfig_SavingError) ProtoMessage() {}

func (x *TrunkConfig_SavingError) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[15]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

// Deprecated: Use TrunkConfig_SavingError.ProtoReflect.Descriptor instead.
func (*TrunkConfig_SavingError) Descriptor() ([]byte, []int) {
	return file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescGZIP(), []int{0, 0}
}

func (m *TrunkConfig_SavingError) GetReason() isTrunkConfig_SavingError_Reason {
	if m != nil {
		return m.Reason
	}
	return nil
}

func (x *TrunkConfig_SavingError) GetConflict() *TrunkConfig_SavingError_Conflict {
	if x, ok := x.GetReason().(*TrunkConfig_SavingError_Conflict_); ok {
		return x.Conflict
	}
	return nil
}

type isTrunkConfig_SavingError_Reason interface {
	isTrunkConfig_SavingError_Reason()
}

type TrunkConfig_SavingError_Conflict_ struct {
	// Конфликт версий
	Conflict *TrunkConfig_SavingError_Conflict `protobuf:"bytes,1,opt,name=conflict,proto3,oneof"`
}

func (*TrunkConfig_SavingError_Conflict_) isTrunkConfig_SavingError_Reason() {}

// Конфликт версий.
// Причины:
// - В базе хранится другая версия строки, значения changed_at оличаются
type TrunkConfig_SavingError_Conflict struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields
}

func (x *TrunkConfig_SavingError_Conflict) Reset() {
	*x = TrunkConfig_SavingError_Conflict{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[16]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *TrunkConfig_SavingError_Conflict) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*TrunkConfig_SavingError_Conflict) ProtoMessage() {}

func (x *TrunkConfig_SavingError_Conflict) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[16]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

// Deprecated: Use TrunkConfig_SavingError_Conflict.ProtoReflect.Descriptor instead.
func (*TrunkConfig_SavingError_Conflict) Descriptor() ([]byte, []int) {
	return file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescGZIP(), []int{0, 0, 0}
}

// Ошибка запроса сохранения Trunk-конфигурации
type PostTrunkConfigResponse_Error struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Причина ошибки
	//
	// Types that are assignable to Reason:
	//
	//	*PostTrunkConfigResponse_Error_Validation
	//	*PostTrunkConfigResponse_Error_Saving
	Reason isPostTrunkConfigResponse_Error_Reason `protobuf_oneof:"reason"`
}

func (x *PostTrunkConfigResponse_Error) Reset() {
	*x = PostTrunkConfigResponse_Error{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[17]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *PostTrunkConfigResponse_Error) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*PostTrunkConfigResponse_Error) ProtoMessage() {}

func (x *PostTrunkConfigResponse_Error) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[17]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

// Deprecated: Use PostTrunkConfigResponse_Error.ProtoReflect.Descriptor instead.
func (*PostTrunkConfigResponse_Error) Descriptor() ([]byte, []int) {
	return file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescGZIP(), []int{4, 0}
}

func (m *PostTrunkConfigResponse_Error) GetReason() isPostTrunkConfigResponse_Error_Reason {
	if m != nil {
		return m.Reason
	}
	return nil
}

func (x *PostTrunkConfigResponse_Error) GetValidation() *ValidationError {
	if x, ok := x.GetReason().(*PostTrunkConfigResponse_Error_Validation); ok {
		return x.Validation
	}
	return nil
}

func (x *PostTrunkConfigResponse_Error) GetSaving() *TrunkConfig_SavingError {
	if x, ok := x.GetReason().(*PostTrunkConfigResponse_Error_Saving); ok {
		return x.Saving
	}
	return nil
}

type isPostTrunkConfigResponse_Error_Reason interface {
	isPostTrunkConfigResponse_Error_Reason()
}

type PostTrunkConfigResponse_Error_Validation struct {
	// Ошибка валидации
	Validation *ValidationError `protobuf:"bytes,1,opt,name=validation,proto3,oneof"`
}

type PostTrunkConfigResponse_Error_Saving struct {
	// Ошибка сохранения
	Saving *TrunkConfig_SavingError `protobuf:"bytes,2,opt,name=saving,proto3,oneof"`
}

func (*PostTrunkConfigResponse_Error_Validation) isPostTrunkConfigResponse_Error_Reason() {}

func (*PostTrunkConfigResponse_Error_Saving) isPostTrunkConfigResponse_Error_Reason() {}

// Ошибка запроса получения баннера
type GetTrunkConfigResponse_Error struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Причина ошибки
	//
	// Types that are assignable to Reason:
	//
	//	*GetTrunkConfigResponse_Error_Validation
	Reason isGetTrunkConfigResponse_Error_Reason `protobuf_oneof:"reason"`
}

func (x *GetTrunkConfigResponse_Error) Reset() {
	*x = GetTrunkConfigResponse_Error{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[18]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *GetTrunkConfigResponse_Error) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*GetTrunkConfigResponse_Error) ProtoMessage() {}

func (x *GetTrunkConfigResponse_Error) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[18]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

// Deprecated: Use GetTrunkConfigResponse_Error.ProtoReflect.Descriptor instead.
func (*GetTrunkConfigResponse_Error) Descriptor() ([]byte, []int) {
	return file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescGZIP(), []int{6, 0}
}

func (m *GetTrunkConfigResponse_Error) GetReason() isGetTrunkConfigResponse_Error_Reason {
	if m != nil {
		return m.Reason
	}
	return nil
}

func (x *GetTrunkConfigResponse_Error) GetValidation() *ValidationError {
	if x, ok := x.GetReason().(*GetTrunkConfigResponse_Error_Validation); ok {
		return x.Validation
	}
	return nil
}

type isGetTrunkConfigResponse_Error_Reason interface {
	isGetTrunkConfigResponse_Error_Reason()
}

type GetTrunkConfigResponse_Error_Validation struct {
	// Ошибка валидации
	Validation *ValidationError `protobuf:"bytes,1,opt,name=validation,proto3,oneof"`
}

func (*GetTrunkConfigResponse_Error_Validation) isGetTrunkConfigResponse_Error_Reason() {}

// Ошибка запроса получения списка Trunk-конфигураций
type GetTrunkConfigListResponse_Error struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Ошибка валидации
	ValidationError *ValidationError `protobuf:"bytes,1,opt,name=validation_error,json=validationError,proto3" json:"validation_error,omitempty"`
}

func (x *GetTrunkConfigListResponse_Error) Reset() {
	*x = GetTrunkConfigListResponse_Error{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[19]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *GetTrunkConfigListResponse_Error) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*GetTrunkConfigListResponse_Error) ProtoMessage() {}

func (x *GetTrunkConfigListResponse_Error) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[19]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

// Deprecated: Use GetTrunkConfigListResponse_Error.ProtoReflect.Descriptor instead.
func (*GetTrunkConfigListResponse_Error) Descriptor() ([]byte, []int) {
	return file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescGZIP(), []int{8, 0}
}

func (x *GetTrunkConfigListResponse_Error) GetValidationError() *ValidationError {
	if x != nil {
		return x.ValidationError
	}
	return nil
}

// Ошибка запроса получения количества Trunk-конфигураций
type GetTrunkConfigCountResponse_Error struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Ошибка валидации
	ValidationError *ValidationError `protobuf:"bytes,1,opt,name=validation_error,json=validationError,proto3" json:"validation_error,omitempty"`
}

func (x *GetTrunkConfigCountResponse_Error) Reset() {
	*x = GetTrunkConfigCountResponse_Error{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[20]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *GetTrunkConfigCountResponse_Error) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*GetTrunkConfigCountResponse_Error) ProtoMessage() {}

func (x *GetTrunkConfigCountResponse_Error) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[20]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

// Deprecated: Use GetTrunkConfigCountResponse_Error.ProtoReflect.Descriptor instead.
func (*GetTrunkConfigCountResponse_Error) Descriptor() ([]byte, []int) {
	return file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescGZIP(), []int{10, 0}
}

func (x *GetTrunkConfigCountResponse_Error) GetValidationError() *ValidationError {
	if x != nil {
		return x.ValidationError
	}
	return nil
}

// Ошибка запроса восстановления Trunk-конфигурации
type DeleteTrunkConfigResponse_Error struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Причина ошибки
	//
	// Types that are assignable to Reason:
	//
	//	*DeleteTrunkConfigResponse_Error_Validation
	Reason isDeleteTrunkConfigResponse_Error_Reason `protobuf_oneof:"reason"`
}

func (x *DeleteTrunkConfigResponse_Error) Reset() {
	*x = DeleteTrunkConfigResponse_Error{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[21]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *DeleteTrunkConfigResponse_Error) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*DeleteTrunkConfigResponse_Error) ProtoMessage() {}

func (x *DeleteTrunkConfigResponse_Error) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[21]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

// Deprecated: Use DeleteTrunkConfigResponse_Error.ProtoReflect.Descriptor instead.
func (*DeleteTrunkConfigResponse_Error) Descriptor() ([]byte, []int) {
	return file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescGZIP(), []int{12, 0}
}

func (m *DeleteTrunkConfigResponse_Error) GetReason() isDeleteTrunkConfigResponse_Error_Reason {
	if m != nil {
		return m.Reason
	}
	return nil
}

func (x *DeleteTrunkConfigResponse_Error) GetValidation() *ValidationError {
	if x, ok := x.GetReason().(*DeleteTrunkConfigResponse_Error_Validation); ok {
		return x.Validation
	}
	return nil
}

type isDeleteTrunkConfigResponse_Error_Reason interface {
	isDeleteTrunkConfigResponse_Error_Reason()
}

type DeleteTrunkConfigResponse_Error_Validation struct {
	// Ошибка валидации
	Validation *ValidationError `protobuf:"bytes,1,opt,name=validation,proto3,oneof"`
}

func (*DeleteTrunkConfigResponse_Error_Validation) isDeleteTrunkConfigResponse_Error_Reason() {}

// Ошибка запроса разархивации Trunk-конфигурации
type PostTrunkConfigRestoreResponse_Error struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Причина ошибки
	//
	// Types that are assignable to Reason:
	//
	//	*PostTrunkConfigRestoreResponse_Error_Validation
	Reason isPostTrunkConfigRestoreResponse_Error_Reason `protobuf_oneof:"reason"`
}

func (x *PostTrunkConfigRestoreResponse_Error) Reset() {
	*x = PostTrunkConfigRestoreResponse_Error{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[22]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *PostTrunkConfigRestoreResponse_Error) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*PostTrunkConfigRestoreResponse_Error) ProtoMessage() {}

func (x *PostTrunkConfigRestoreResponse_Error) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[22]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

// Deprecated: Use PostTrunkConfigRestoreResponse_Error.ProtoReflect.Descriptor instead.
func (*PostTrunkConfigRestoreResponse_Error) Descriptor() ([]byte, []int) {
	return file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescGZIP(), []int{14, 0}
}

func (m *PostTrunkConfigRestoreResponse_Error) GetReason() isPostTrunkConfigRestoreResponse_Error_Reason {
	if m != nil {
		return m.Reason
	}
	return nil
}

func (x *PostTrunkConfigRestoreResponse_Error) GetValidation() *ValidationError {
	if x, ok := x.GetReason().(*PostTrunkConfigRestoreResponse_Error_Validation); ok {
		return x.Validation
	}
	return nil
}

type isPostTrunkConfigRestoreResponse_Error_Reason interface {
	isPostTrunkConfigRestoreResponse_Error_Reason()
}

type PostTrunkConfigRestoreResponse_Error_Validation struct {
	// Ошибка валидации
	Validation *ValidationError `protobuf:"bytes,1,opt,name=validation,proto3,oneof"`
}

func (*PostTrunkConfigRestoreResponse_Error_Validation) isPostTrunkConfigRestoreResponse_Error_Reason() {
}

var File_keyapis_device_v1_keyapis_device_trunk_config_proto protoreflect.FileDescriptor

var file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDesc = []byte{
	0x0a, 0x33, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65,
	0x2f, 0x76, 0x31, 0x2f, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x5f, 0x64, 0x65, 0x76, 0x69,
	0x63, 0x65, 0x5f, 0x74, 0x72, 0x75, 0x6e, 0x6b, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e,
	0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x11, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64,
	0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
	0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73,
	0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
	0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76, 0x69, 0x6f,
	0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f,
	0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
	0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
	0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x77, 0x72, 0x61, 0x70, 0x70, 0x65,
	0x72, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x30, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69,
	0x73, 0x2f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2f, 0x76, 0x31, 0x2f, 0x6b, 0x65, 0x79, 0x61,
	0x70, 0x69, 0x73, 0x5f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x64, 0x65, 0x76, 0x69, 0x63,
	0x65, 0x5f, 0x76, 0x31, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xa1, 0x04, 0x0a, 0x0b, 0x54,
	0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
	0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x27, 0x0a, 0x0d, 0x63, 0x69,
	0x74, 0x79, 0x5f, 0x6f, 0x72, 0x70, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
	0x03, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0b, 0x63, 0x69, 0x74, 0x79, 0x4f, 0x72, 0x70, 0x6f,
	0x6e, 0x49, 0x64, 0x12, 0x69, 0x0a, 0x19, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x73, 0x69,
	0x70, 0x5f, 0x74, 0x72, 0x75, 0x6e, 0x6b, 0x5f, 0x73, 0x69, 0x70, 0x5f, 0x74, 0x79, 0x70, 0x65,
	0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2a, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73,
	0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x65, 0x76, 0x69, 0x63,
	0x65, 0x2e, 0x53, 0x69, 0x70, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x2e, 0x53, 0x69, 0x70, 0x54, 0x79,
	0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x15, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x53,
	0x69, 0x70, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x53, 0x69, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22,
	0x0a, 0x0a, 0x69, 0x70, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x04, 0x20, 0x01,
	0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x09, 0x69, 0x70, 0x41, 0x64, 0x64, 0x72, 0x65,
	0x73, 0x73, 0x12, 0x17, 0x0a, 0x04, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05,
	0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x04, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x3e, 0x0a, 0x0a, 0x63,
	0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32,
	0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
	0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x42, 0x03, 0xe0, 0x41, 0x03,
	0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x39, 0x0a, 0x0a, 0x63,
	0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32,
	0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
	0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x63, 0x68, 0x61,
	0x6e, 0x67, 0x65, 0x64, 0x41, 0x74, 0x12, 0x3e, 0x0a, 0x0a, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65,
	0x64, 0x5f, 0x61, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f,
	0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d,
	0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x09, 0x64, 0x65, 0x6c,
	0x65, 0x74, 0x65, 0x64, 0x41, 0x74, 0x1a, 0x76, 0x0a, 0x0b, 0x53, 0x61, 0x76, 0x69, 0x6e, 0x67,
	0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x51, 0x0a, 0x08, 0x63, 0x6f, 0x6e, 0x66, 0x6c, 0x69, 0x63,
	0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69,
	0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x72, 0x75, 0x6e,
	0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x53, 0x61, 0x76, 0x69, 0x6e, 0x67, 0x45, 0x72,
	0x72, 0x6f, 0x72, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x6c, 0x69, 0x63, 0x74, 0x48, 0x00, 0x52, 0x08,
	0x63, 0x6f, 0x6e, 0x66, 0x6c, 0x69, 0x63, 0x74, 0x1a, 0x0a, 0x0a, 0x08, 0x43, 0x6f, 0x6e, 0x66,
	0x6c, 0x69, 0x63, 0x74, 0x42, 0x08, 0x0a, 0x06, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x22, 0x9b,
	0x01, 0x0a, 0x11, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x46, 0x69,
	0x6c, 0x74, 0x65, 0x72, 0x12, 0x24, 0x0a, 0x0e, 0x63, 0x69, 0x74, 0x79, 0x5f, 0x6f, 0x72, 0x70,
	0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x03, 0x52, 0x0c, 0x63, 0x69,
	0x74, 0x79, 0x4f, 0x72, 0x70, 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x69, 0x70,
	0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09,
	0x52, 0x0b, 0x69, 0x70, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x65, 0x73, 0x12, 0x3d, 0x0a,
	0x0c, 0x73, 0x68, 0x6f, 0x77, 0x5f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x18, 0x03, 0x20,
	0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
	0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x42, 0x6f, 0x6f, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52,
	0x0b, 0x73, 0x68, 0x6f, 0x77, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x22, 0x84, 0x03, 0x0a,
	0x11, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x50, 0x61, 0x67, 0x69,
	0x6e, 0x67, 0x12, 0x54, 0x0a, 0x0d, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x62, 0x79, 0x5f, 0x74,
	0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x30, 0x2e, 0x6b, 0x65, 0x79, 0x61,
	0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x72,
	0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x2e,
	0x4f, 0x72, 0x64, 0x65, 0x72, 0x42, 0x79, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x6f, 0x72, 0x64,
	0x65, 0x72, 0x42, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x59, 0x0a, 0x0e, 0x64, 0x69, 0x72, 0x65,
	0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e,
	0x32, 0x32, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63,
	0x65, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
	0x50, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x2e, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
	0x54, 0x79, 0x70, 0x65, 0x52, 0x0d, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54,
	0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01,
	0x28, 0x05, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66,
	0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65,
	0x74, 0x22, 0x50, 0x0a, 0x0b, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x42, 0x79, 0x54, 0x79, 0x70, 0x65,
	0x12, 0x19, 0x0a, 0x15, 0x4f, 0x52, 0x44, 0x45, 0x52, 0x5f, 0x42, 0x59, 0x5f, 0x54, 0x59, 0x50,
	0x45, 0x5f, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x00, 0x12, 0x06, 0x0a, 0x02, 0x49,
	0x44, 0x10, 0x01, 0x12, 0x0e, 0x0a, 0x0a, 0x43, 0x48, 0x41, 0x4e, 0x47, 0x45, 0x44, 0x5f, 0x41,
	0x54, 0x10, 0x02, 0x12, 0x0e, 0x0a, 0x0a, 0x43, 0x52, 0x45, 0x41, 0x54, 0x45, 0x44, 0x5f, 0x41,
	0x54, 0x10, 0x03, 0x22, 0x3e, 0x0a, 0x0d, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
	0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x16, 0x44, 0x49, 0x52, 0x45, 0x43, 0x54, 0x49, 0x4f,
	0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x00,
	0x12, 0x08, 0x0a, 0x04, 0x44, 0x45, 0x53, 0x43, 0x10, 0x01, 0x12, 0x07, 0x0a, 0x03, 0x41, 0x53,
	0x43, 0x10, 0x02, 0x22, 0x51, 0x0a, 0x16, 0x50, 0x6f, 0x73, 0x74, 0x54, 0x72, 0x75, 0x6e, 0x6b,
	0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x37, 0x0a,
	0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x6b, 0x65,
	0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e,
	0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x42, 0x03, 0xe0, 0x41, 0x02,
	0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xc1, 0x02, 0x0a, 0x17, 0x50, 0x6f, 0x73, 0x74, 0x54,
	0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
	0x73, 0x65, 0x12, 0x34, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
	0x32, 0x1e, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63,
	0x65, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
	0x48, 0x00, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x48, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f,
	0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69,
	0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x6f, 0x73, 0x74,
	0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f,
	0x6e, 0x73, 0x65, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x05, 0x65, 0x72, 0x72,
	0x6f, 0x72, 0x1a, 0x9d, 0x01, 0x0a, 0x05, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x44, 0x0a, 0x0a,
	0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
	0x32, 0x22, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63,
	0x65, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45,
	0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0a, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69,
	0x6f, 0x6e, 0x12, 0x44, 0x0a, 0x06, 0x73, 0x61, 0x76, 0x69, 0x6e, 0x67, 0x18, 0x02, 0x20, 0x01,
	0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76,
	0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66,
	0x69, 0x67, 0x2e, 0x53, 0x61, 0x76, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00,
	0x52, 0x06, 0x73, 0x61, 0x76, 0x69, 0x6e, 0x67, 0x42, 0x08, 0x0a, 0x06, 0x72, 0x65, 0x61, 0x73,
	0x6f, 0x6e, 0x42, 0x06, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x2c, 0x0a, 0x15, 0x47, 0x65,
	0x74, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x75,
	0x65, 0x73, 0x74, 0x12, 0x13, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42,
	0x03, 0xe0, 0x41, 0x02, 0x52, 0x02, 0x69, 0x64, 0x22, 0xf8, 0x01, 0x0a, 0x16, 0x47, 0x65, 0x74,
	0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f,
	0x6e, 0x73, 0x65, 0x12, 0x34, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28,
	0x0b, 0x32, 0x1e, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69,
	0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69,
	0x67, 0x48, 0x00, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x47, 0x0a, 0x05, 0x65, 0x72, 0x72,
	0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70,
	0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
	0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f,
	0x6e, 0x73, 0x65, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x05, 0x65, 0x72, 0x72,
	0x6f, 0x72, 0x1a, 0x57, 0x0a, 0x05, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x44, 0x0a, 0x0a, 0x76,
	0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
	0x22, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65,
	0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72,
	0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0a, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f,
	0x6e, 0x42, 0x08, 0x0a, 0x06, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x42, 0x06, 0x0a, 0x04, 0x74,
	0x79, 0x70, 0x65, 0x22, 0xa7, 0x01, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x54, 0x72, 0x75, 0x6e, 0x6b,
	0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
	0x74, 0x12, 0x3c, 0x0a, 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28,
	0x0b, 0x32, 0x24, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69,
	0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69,
	0x67, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12,
	0x3e, 0x0a, 0x06, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
	0x24, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65,
	0x2e, 0x76, 0x31, 0x2e, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x50,
	0x61, 0x67, 0x69, 0x6e, 0x67, 0x48, 0x00, 0x52, 0x06, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x42,
	0x0c, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xff, 0x01,
	0x0a, 0x1a, 0x47, 0x65, 0x74, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
	0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x34, 0x0a, 0x04,
	0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x6b, 0x65, 0x79,
	0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x54,
	0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x48, 0x00, 0x52, 0x04, 0x64, 0x61,
	0x74, 0x61, 0x12, 0x4b, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28,
	0x0b, 0x32, 0x33, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69,
	0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f,
	0x6e, 0x66, 0x69, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
	0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x1a,
	0x56, 0x0a, 0x05, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x4d, 0x0a, 0x10, 0x76, 0x61, 0x6c, 0x69,
	0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01,
	0x28, 0x0b, 0x32, 0x22, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76,
	0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f,
	0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x0f, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69,
	0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x42, 0x06, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22,
	0x5a, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69,
	0x67, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3c, 0x0a,
	0x06, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e,
	0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76,
	0x31, 0x2e, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x46, 0x69, 0x6c,
	0x74, 0x65, 0x72, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x22, 0xe1, 0x01, 0x0a, 0x1b,
	0x47, 0x65, 0x74, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x43, 0x6f,
	0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x04, 0x64,
	0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x04, 0x64, 0x61, 0x74,
	0x61, 0x12, 0x4c, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
	0x32, 0x34, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63,
	0x65, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e,
	0x66, 0x69, 0x67, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
	0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x1a,
	0x56, 0x0a, 0x05, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x4d, 0x0a, 0x10, 0x76, 0x61, 0x6c, 0x69,
	0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01,
	0x28, 0x0b, 0x32, 0x22, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76,
	0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f,
	0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x0f, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69,
	0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x42, 0x06, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22,
	0x2f, 0x0a, 0x18, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f,
	0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x13, 0x0a, 0x02, 0x69,
	0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x02, 0x69, 0x64,
	0x22, 0xc8, 0x01, 0x0a, 0x19, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x72, 0x75, 0x6e, 0x6b,
	0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4a,
	0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e,
	0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76,
	0x31, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e,
	0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x45, 0x72, 0x72, 0x6f,
	0x72, 0x48, 0x00, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x1a, 0x57, 0x0a, 0x05, 0x45, 0x72,
	0x72, 0x6f, 0x72, 0x12, 0x44, 0x0a, 0x0a, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f,
	0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69,
	0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61, 0x6c, 0x69,
	0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0a, 0x76,
	0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x08, 0x0a, 0x06, 0x72, 0x65, 0x61,
	0x73, 0x6f, 0x6e, 0x42, 0x06, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x34, 0x0a, 0x1d, 0x50,
	0x6f, 0x73, 0x74, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65,
	0x73, 0x74, 0x6f, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x13, 0x0a, 0x02,
	0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x02, 0x69,
	0x64, 0x22, 0xd2, 0x01, 0x0a, 0x1e, 0x50, 0x6f, 0x73, 0x74, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43,
	0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x52, 0x65, 0x73, 0x70,
	0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4f, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20,
	0x01, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65,
	0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x6f, 0x73, 0x74, 0x54, 0x72, 0x75, 0x6e,
	0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x52, 0x65,
	0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x05,
	0x65, 0x72, 0x72, 0x6f, 0x72, 0x1a, 0x57, 0x0a, 0x05, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x44,
	0x0a, 0x0a, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01,
	0x28, 0x0b, 0x32, 0x22, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76,
	0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f,
	0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0a, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61,
	0x74, 0x69, 0x6f, 0x6e, 0x42, 0x08, 0x0a, 0x06, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x42, 0x06,
	0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x32, 0xfe, 0x07, 0x0a, 0x12, 0x54, 0x72, 0x75, 0x6e, 0x6b,
	0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x98, 0x01,
	0x0a, 0x0e, 0x47, 0x65, 0x74, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
	0x12, 0x28, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63,
	0x65, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e,
	0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x6b, 0x65, 0x79,
	0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x47,
	0x65, 0x74, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73,
	0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x31, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2b, 0x12, 0x29, 0x2f,
	0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2f,
	0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x74, 0x72, 0x75, 0x6e, 0x6b, 0x5f, 0x63, 0x6f, 0x6e,
	0x66, 0x69, 0x67, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x12, 0xa6, 0x01, 0x0a, 0x12, 0x47, 0x65, 0x74,
	0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12,
	0x2c, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65,
	0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66,
	0x69, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e,
	0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76,
	0x31, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
	0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x31, 0x82, 0xd3,
	0xe4, 0x93, 0x02, 0x2b, 0x12, 0x29, 0x2f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2f, 0x69, 0x6e,
	0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x74, 0x72,
	0x75, 0x6e, 0x6b, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x30,
	0x01, 0x12, 0xa8, 0x01, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f,
	0x6e, 0x66, 0x69, 0x67, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2d, 0x2e, 0x6b, 0x65, 0x79, 0x61,
	0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65,
	0x74, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x43, 0x6f, 0x75, 0x6e,
	0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70,
	0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
	0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x43, 0x6f, 0x75, 0x6e, 0x74,
	0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x32, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2c,
	0x12, 0x2a, 0x2f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e,
	0x61, 0x6c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x74, 0x72, 0x75, 0x6e, 0x6b, 0x5f,
	0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x99, 0x01, 0x0a,
	0x0f, 0x50, 0x6f, 0x73, 0x74, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
	0x12, 0x29, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63,
	0x65, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x6f, 0x73, 0x74, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f,
	0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x6b, 0x65,
	0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e,
	0x50, 0x6f, 0x73, 0x74, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52,
	0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x2f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x29, 0x3a,
	0x01, 0x2a, 0x22, 0x24, 0x2f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2f, 0x69, 0x6e, 0x74, 0x65,
	0x72, 0x6e, 0x61, 0x6c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x74, 0x72, 0x75, 0x6e,
	0x6b, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0xa1, 0x01, 0x0a, 0x11, 0x44, 0x65, 0x6c,
	0x65, 0x74, 0x65, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x2b,
	0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e,
	0x76, 0x31, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f,
	0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x6b, 0x65,
	0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e,
	0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69,
	0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x31, 0x82, 0xd3, 0xe4, 0x93, 0x02,
	0x2b, 0x2a, 0x29, 0x2f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72,
	0x6e, 0x61, 0x6c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x74, 0x72, 0x75, 0x6e, 0x6b,
	0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x12, 0xb8, 0x01, 0x0a,
	0x16, 0x50, 0x6f, 0x73, 0x74, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
	0x52, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x12, 0x30, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69,
	0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x6f, 0x73, 0x74,
	0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x74, 0x6f,
	0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e, 0x6b, 0x65, 0x79, 0x61,
	0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x6f,
	0x73, 0x74, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73,
	0x74, 0x6f, 0x72, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x39, 0x82, 0xd3,
	0xe4, 0x93, 0x02, 0x33, 0x22, 0x31, 0x2f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2f, 0x69, 0x6e,
	0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x74, 0x72,
	0x75, 0x6e, 0x6b, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2f, 0x72, 0x65, 0x73, 0x74, 0x6f,
	0x72, 0x65, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x42, 0x98, 0x01, 0x0a, 0x14, 0x72, 0x75, 0x2e, 0x6b,
	0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31,
	0x42, 0x14, 0x4b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x56,
	0x31, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x48, 0x03, 0x50, 0x00, 0x5a, 0x12, 0x2f, 0x6b, 0x65, 0x79,
	0x61, 0x70, 0x69, 0x73, 0x5f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x76, 0x31, 0xd8, 0x01,
	0x01, 0xf8, 0x01, 0x01, 0xa2, 0x02, 0x0d, 0x4b, 0x45, 0x59, 0x41, 0x50, 0x49, 0x53, 0x44, 0x49,
	0x41, 0x4c, 0x56, 0x31, 0xaa, 0x02, 0x11, 0x4b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x44,
	0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x11, 0x4b, 0x65, 0x79, 0x61, 0x70,
	0x69, 0x73, 0x5c, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5c, 0x56, 0x31, 0xea, 0x02, 0x13, 0x4b,
	0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x3a, 0x3a, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x3a, 0x3a,
	0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}

var (
	file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescOnce sync.Once
	file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescData = file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDesc
)

func file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescGZIP() []byte {
	file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescOnce.Do(func() {
		file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescData = protoimpl.X.CompressGZIP(file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescData)
	})
	return file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDescData
}

var file_keyapis_device_v1_keyapis_device_trunk_config_proto_enumTypes = make([]protoimpl.EnumInfo, 2)
var file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes = make([]protoimpl.MessageInfo, 23)
var file_keyapis_device_v1_keyapis_device_trunk_config_proto_goTypes = []interface{}{
	(TrunkConfigPaging_OrderByType)(0),           // 0: keyapis.device.v1.TrunkConfigPaging.OrderByType
	(TrunkConfigPaging_DirectionType)(0),         // 1: keyapis.device.v1.TrunkConfigPaging.DirectionType
	(*TrunkConfig)(nil),                          // 2: keyapis.device.v1.TrunkConfig
	(*TrunkConfigFilter)(nil),                    // 3: keyapis.device.v1.TrunkConfigFilter
	(*TrunkConfigPaging)(nil),                    // 4: keyapis.device.v1.TrunkConfigPaging
	(*PostTrunkConfigRequest)(nil),               // 5: keyapis.device.v1.PostTrunkConfigRequest
	(*PostTrunkConfigResponse)(nil),              // 6: keyapis.device.v1.PostTrunkConfigResponse
	(*GetTrunkConfigRequest)(nil),                // 7: keyapis.device.v1.GetTrunkConfigRequest
	(*GetTrunkConfigResponse)(nil),               // 8: keyapis.device.v1.GetTrunkConfigResponse
	(*GetTrunkConfigListRequest)(nil),            // 9: keyapis.device.v1.GetTrunkConfigListRequest
	(*GetTrunkConfigListResponse)(nil),           // 10: keyapis.device.v1.GetTrunkConfigListResponse
	(*GetTrunkConfigCountRequest)(nil),           // 11: keyapis.device.v1.GetTrunkConfigCountRequest
	(*GetTrunkConfigCountResponse)(nil),          // 12: keyapis.device.v1.GetTrunkConfigCountResponse
	(*DeleteTrunkConfigRequest)(nil),             // 13: keyapis.device.v1.DeleteTrunkConfigRequest
	(*DeleteTrunkConfigResponse)(nil),            // 14: keyapis.device.v1.DeleteTrunkConfigResponse
	(*PostTrunkConfigRestoreRequest)(nil),        // 15: keyapis.device.v1.PostTrunkConfigRestoreRequest
	(*PostTrunkConfigRestoreResponse)(nil),       // 16: keyapis.device.v1.PostTrunkConfigRestoreResponse
	(*TrunkConfig_SavingError)(nil),              // 17: keyapis.device.v1.TrunkConfig.SavingError
	(*TrunkConfig_SavingError_Conflict)(nil),     // 18: keyapis.device.v1.TrunkConfig.SavingError.Conflict
	(*PostTrunkConfigResponse_Error)(nil),        // 19: keyapis.device.v1.PostTrunkConfigResponse.Error
	(*GetTrunkConfigResponse_Error)(nil),         // 20: keyapis.device.v1.GetTrunkConfigResponse.Error
	(*GetTrunkConfigListResponse_Error)(nil),     // 21: keyapis.device.v1.GetTrunkConfigListResponse.Error
	(*GetTrunkConfigCountResponse_Error)(nil),    // 22: keyapis.device.v1.GetTrunkConfigCountResponse.Error
	(*DeleteTrunkConfigResponse_Error)(nil),      // 23: keyapis.device.v1.DeleteTrunkConfigResponse.Error
	(*PostTrunkConfigRestoreResponse_Error)(nil), // 24: keyapis.device.v1.PostTrunkConfigRestoreResponse.Error
	(Device_SipTrunk_SipType)(0),                 // 25: keyapis.device.v1.Device.SipTrunk.SipType
	(*timestamppb.Timestamp)(nil),                // 26: google.protobuf.Timestamp
	(*wrapperspb.BoolValue)(nil),                 // 27: google.protobuf.BoolValue
	(*ValidationError)(nil),                      // 28: keyapis.device.v1.ValidationError
}
var file_keyapis_device_v1_keyapis_device_trunk_config_proto_depIdxs = []int32{
	25, // 0: keyapis.device.v1.TrunkConfig.device_sip_trunk_sip_type:type_name -> keyapis.device.v1.Device.SipTrunk.SipType
	26, // 1: keyapis.device.v1.TrunkConfig.created_at:type_name -> google.protobuf.Timestamp
	26, // 2: keyapis.device.v1.TrunkConfig.changed_at:type_name -> google.protobuf.Timestamp
	26, // 3: keyapis.device.v1.TrunkConfig.deleted_at:type_name -> google.protobuf.Timestamp
	27, // 4: keyapis.device.v1.TrunkConfigFilter.show_deleted:type_name -> google.protobuf.BoolValue
	0,  // 5: keyapis.device.v1.TrunkConfigPaging.order_by_type:type_name -> keyapis.device.v1.TrunkConfigPaging.OrderByType
	1,  // 6: keyapis.device.v1.TrunkConfigPaging.direction_type:type_name -> keyapis.device.v1.TrunkConfigPaging.DirectionType
	2,  // 7: keyapis.device.v1.PostTrunkConfigRequest.data:type_name -> keyapis.device.v1.TrunkConfig
	2,  // 8: keyapis.device.v1.PostTrunkConfigResponse.data:type_name -> keyapis.device.v1.TrunkConfig
	19, // 9: keyapis.device.v1.PostTrunkConfigResponse.error:type_name -> keyapis.device.v1.PostTrunkConfigResponse.Error
	2,  // 10: keyapis.device.v1.GetTrunkConfigResponse.data:type_name -> keyapis.device.v1.TrunkConfig
	20, // 11: keyapis.device.v1.GetTrunkConfigResponse.error:type_name -> keyapis.device.v1.GetTrunkConfigResponse.Error
	3,  // 12: keyapis.device.v1.GetTrunkConfigListRequest.filter:type_name -> keyapis.device.v1.TrunkConfigFilter
	4,  // 13: keyapis.device.v1.GetTrunkConfigListRequest.paging:type_name -> keyapis.device.v1.TrunkConfigPaging
	2,  // 14: keyapis.device.v1.GetTrunkConfigListResponse.data:type_name -> keyapis.device.v1.TrunkConfig
	21, // 15: keyapis.device.v1.GetTrunkConfigListResponse.error:type_name -> keyapis.device.v1.GetTrunkConfigListResponse.Error
	3,  // 16: keyapis.device.v1.GetTrunkConfigCountRequest.filter:type_name -> keyapis.device.v1.TrunkConfigFilter
	22, // 17: keyapis.device.v1.GetTrunkConfigCountResponse.error:type_name -> keyapis.device.v1.GetTrunkConfigCountResponse.Error
	23, // 18: keyapis.device.v1.DeleteTrunkConfigResponse.error:type_name -> keyapis.device.v1.DeleteTrunkConfigResponse.Error
	24, // 19: keyapis.device.v1.PostTrunkConfigRestoreResponse.error:type_name -> keyapis.device.v1.PostTrunkConfigRestoreResponse.Error
	18, // 20: keyapis.device.v1.TrunkConfig.SavingError.conflict:type_name -> keyapis.device.v1.TrunkConfig.SavingError.Conflict
	28, // 21: keyapis.device.v1.PostTrunkConfigResponse.Error.validation:type_name -> keyapis.device.v1.ValidationError
	17, // 22: keyapis.device.v1.PostTrunkConfigResponse.Error.saving:type_name -> keyapis.device.v1.TrunkConfig.SavingError
	28, // 23: keyapis.device.v1.GetTrunkConfigResponse.Error.validation:type_name -> keyapis.device.v1.ValidationError
	28, // 24: keyapis.device.v1.GetTrunkConfigListResponse.Error.validation_error:type_name -> keyapis.device.v1.ValidationError
	28, // 25: keyapis.device.v1.GetTrunkConfigCountResponse.Error.validation_error:type_name -> keyapis.device.v1.ValidationError
	28, // 26: keyapis.device.v1.DeleteTrunkConfigResponse.Error.validation:type_name -> keyapis.device.v1.ValidationError
	28, // 27: keyapis.device.v1.PostTrunkConfigRestoreResponse.Error.validation:type_name -> keyapis.device.v1.ValidationError
	7,  // 28: keyapis.device.v1.TrunkConfigService.GetTrunkConfig:input_type -> keyapis.device.v1.GetTrunkConfigRequest
	9,  // 29: keyapis.device.v1.TrunkConfigService.GetTrunkConfigList:input_type -> keyapis.device.v1.GetTrunkConfigListRequest
	11, // 30: keyapis.device.v1.TrunkConfigService.GetTrunkConfigCount:input_type -> keyapis.device.v1.GetTrunkConfigCountRequest
	5,  // 31: keyapis.device.v1.TrunkConfigService.PostTrunkConfig:input_type -> keyapis.device.v1.PostTrunkConfigRequest
	13, // 32: keyapis.device.v1.TrunkConfigService.DeleteTrunkConfig:input_type -> keyapis.device.v1.DeleteTrunkConfigRequest
	15, // 33: keyapis.device.v1.TrunkConfigService.PostTrunkConfigRestore:input_type -> keyapis.device.v1.PostTrunkConfigRestoreRequest
	8,  // 34: keyapis.device.v1.TrunkConfigService.GetTrunkConfig:output_type -> keyapis.device.v1.GetTrunkConfigResponse
	10, // 35: keyapis.device.v1.TrunkConfigService.GetTrunkConfigList:output_type -> keyapis.device.v1.GetTrunkConfigListResponse
	12, // 36: keyapis.device.v1.TrunkConfigService.GetTrunkConfigCount:output_type -> keyapis.device.v1.GetTrunkConfigCountResponse
	6,  // 37: keyapis.device.v1.TrunkConfigService.PostTrunkConfig:output_type -> keyapis.device.v1.PostTrunkConfigResponse
	14, // 38: keyapis.device.v1.TrunkConfigService.DeleteTrunkConfig:output_type -> keyapis.device.v1.DeleteTrunkConfigResponse
	16, // 39: keyapis.device.v1.TrunkConfigService.PostTrunkConfigRestore:output_type -> keyapis.device.v1.PostTrunkConfigRestoreResponse
	34, // [34:40] is the sub-list for method output_type
	28, // [28:34] is the sub-list for method input_type
	28, // [28:28] is the sub-list for extension type_name
	28, // [28:28] is the sub-list for extension extendee
	0,  // [0:28] is the sub-list for field type_name
}

func init() { file_keyapis_device_v1_keyapis_device_trunk_config_proto_init() }
func file_keyapis_device_v1_keyapis_device_trunk_config_proto_init() {
	if File_keyapis_device_v1_keyapis_device_trunk_config_proto != nil {
		return
	}
	file_keyapis_device_v1_keyapis_device_device_v1_proto_init()
	if !protoimpl.UnsafeEnabled {
		file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*TrunkConfig); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*TrunkConfigFilter); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*TrunkConfigPaging); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*PostTrunkConfigRequest); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*PostTrunkConfigResponse); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*GetTrunkConfigRequest); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*GetTrunkConfigResponse); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*GetTrunkConfigListRequest); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*GetTrunkConfigListResponse); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*GetTrunkConfigCountRequest); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*GetTrunkConfigCountResponse); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*DeleteTrunkConfigRequest); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*DeleteTrunkConfigResponse); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*PostTrunkConfigRestoreRequest); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*PostTrunkConfigRestoreResponse); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*TrunkConfig_SavingError); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*TrunkConfig_SavingError_Conflict); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*PostTrunkConfigResponse_Error); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*GetTrunkConfigResponse_Error); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*GetTrunkConfigListResponse_Error); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*GetTrunkConfigCountResponse_Error); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*DeleteTrunkConfigResponse_Error); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*PostTrunkConfigRestoreResponse_Error); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
	}
	file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[4].OneofWrappers = []interface{}{
		(*PostTrunkConfigResponse_Data)(nil),
		(*PostTrunkConfigResponse_Error_)(nil),
	}
	file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[6].OneofWrappers = []interface{}{
		(*GetTrunkConfigResponse_Data)(nil),
		(*GetTrunkConfigResponse_Error_)(nil),
	}
	file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[7].OneofWrappers = []interface{}{
		(*GetTrunkConfigListRequest_Paging)(nil),
	}
	file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[8].OneofWrappers = []interface{}{
		(*GetTrunkConfigListResponse_Data)(nil),
		(*GetTrunkConfigListResponse_Error_)(nil),
	}
	file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[10].OneofWrappers = []interface{}{
		(*GetTrunkConfigCountResponse_Data)(nil),
		(*GetTrunkConfigCountResponse_Error_)(nil),
	}
	file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[12].OneofWrappers = []interface{}{
		(*DeleteTrunkConfigResponse_Error_)(nil),
	}
	file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[14].OneofWrappers = []interface{}{
		(*PostTrunkConfigRestoreResponse_Error_)(nil),
	}
	file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[15].OneofWrappers = []interface{}{
		(*TrunkConfig_SavingError_Conflict_)(nil),
	}
	file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[17].OneofWrappers = []interface{}{
		(*PostTrunkConfigResponse_Error_Validation)(nil),
		(*PostTrunkConfigResponse_Error_Saving)(nil),
	}
	file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[18].OneofWrappers = []interface{}{
		(*GetTrunkConfigResponse_Error_Validation)(nil),
	}
	file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[21].OneofWrappers = []interface{}{
		(*DeleteTrunkConfigResponse_Error_Validation)(nil),
	}
	file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes[22].OneofWrappers = []interface{}{
		(*PostTrunkConfigRestoreResponse_Error_Validation)(nil),
	}
	type x struct{}
	out := protoimpl.TypeBuilder{
		File: protoimpl.DescBuilder{
			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
			RawDescriptor: file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDesc,
			NumEnums:      2,
			NumMessages:   23,
			NumExtensions: 0,
			NumServices:   1,
		},
		GoTypes:           file_keyapis_device_v1_keyapis_device_trunk_config_proto_goTypes,
		DependencyIndexes: file_keyapis_device_v1_keyapis_device_trunk_config_proto_depIdxs,
		EnumInfos:         file_keyapis_device_v1_keyapis_device_trunk_config_proto_enumTypes,
		MessageInfos:      file_keyapis_device_v1_keyapis_device_trunk_config_proto_msgTypes,
	}.Build()
	File_keyapis_device_v1_keyapis_device_trunk_config_proto = out.File
	file_keyapis_device_v1_keyapis_device_trunk_config_proto_rawDesc = nil
	file_keyapis_device_v1_keyapis_device_trunk_config_proto_goTypes = nil
	file_keyapis_device_v1_keyapis_device_trunk_config_proto_depIdxs = nil
}
