@@ -30,6 +30,7 @@ type CreatePlanRequest struct {
Description string ` protobuf:"bytes,19,opt,name=description,proto3" json:"description,omitempty" ` // 套餐简介
ClusterId int64 ` protobuf:"varint,2,opt,name=clusterId,proto3" json:"clusterId,omitempty" ` // 集群ID
TrafficLimitJSON [ ] byte ` protobuf:"bytes,3,opt,name=trafficLimitJSON,proto3" json:"trafficLimitJSON,omitempty" ` // 流量限制
BandwidthLimitPerNodeJSON [ ] byte ` protobuf:"bytes,20,opt,name=bandwidthLimitPerNodeJSON,proto3" json:"bandwidthLimitPerNodeJSON,omitempty" ` // 单节点带宽限制
HasFullFeatures bool ` protobuf:"varint,18,opt,name=hasFullFeatures,proto3" json:"hasFullFeatures,omitempty" ` // 是否有所有权限
FeaturesJSON [ ] byte ` protobuf:"bytes,4,opt,name=featuresJSON,proto3" json:"featuresJSON,omitempty" ` // 权限列表,[code1, code2, ...]
PriceType string ` protobuf:"bytes,5,opt,name=priceType,proto3" json:"priceType,omitempty" ` // 价格类型: traffic, bandwidth, period
@@ -107,6 +108,13 @@ func (x *CreatePlanRequest) GetTrafficLimitJSON() []byte {
return nil
}
func ( x * CreatePlanRequest ) GetBandwidthLimitPerNodeJSON ( ) [ ] byte {
if x != nil {
return x . BandwidthLimitPerNodeJSON
}
return nil
}
func ( x * CreatePlanRequest ) GetHasFullFeatures ( ) bool {
if x != nil {
return x . HasFullFeatures
@@ -271,6 +279,7 @@ type UpdatePlanRequest struct {
IsOn bool ` protobuf:"varint,3,opt,name=isOn,proto3" json:"isOn,omitempty" ` // 是否启用
ClusterId int64 ` protobuf:"varint,4,opt,name=clusterId,proto3" json:"clusterId,omitempty" ` // 集群ID
TrafficLimitJSON [ ] byte ` protobuf:"bytes,5,opt,name=trafficLimitJSON,proto3" json:"trafficLimitJSON,omitempty" ` // 流量限制
BandwidthLimitPerNodeJSON [ ] byte ` protobuf:"bytes,22,opt,name=bandwidthLimitPerNodeJSON,proto3" json:"bandwidthLimitPerNodeJSON,omitempty" ` // 单节点带宽限制
HasFullFeatures bool ` protobuf:"varint,20,opt,name=hasFullFeatures,proto3" json:"hasFullFeatures,omitempty" ` // 是否有所有权限
FeaturesJSON [ ] byte ` protobuf:"bytes,6,opt,name=featuresJSON,proto3" json:"featuresJSON,omitempty" ` // 权限列表,[code1, code2, ...]
PriceType string ` protobuf:"bytes,7,opt,name=priceType,proto3" json:"priceType,omitempty" ` // 价格类型: traffic, bandwidth, period
@@ -362,6 +371,13 @@ func (x *UpdatePlanRequest) GetTrafficLimitJSON() []byte {
return nil
}
func ( x * UpdatePlanRequest ) GetBandwidthLimitPerNodeJSON ( ) [ ] byte {
if x != nil {
return x . BandwidthLimitPerNodeJSON
}
return nil
}
func ( x * UpdatePlanRequest ) GetHasFullFeatures ( ) bool {
if x != nil {
return x . HasFullFeatures
@@ -838,6 +854,92 @@ func (x *FindAllAvailablePlansResponse) GetPlans() []*Plan {
return nil
}
// 列出所有可用的套餐的基本信息
type FindAllAvailableBasicPlansRequest struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
}
func ( x * FindAllAvailableBasicPlansRequest ) Reset ( ) {
* x = FindAllAvailableBasicPlansRequest { }
if protoimpl . UnsafeEnabled {
mi := & file_service_plan_proto_msgTypes [ 11 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * FindAllAvailableBasicPlansRequest ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * FindAllAvailableBasicPlansRequest ) ProtoMessage ( ) { }
func ( x * FindAllAvailableBasicPlansRequest ) ProtoReflect ( ) protoreflect . Message {
mi := & file_service_plan_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 FindAllAvailableBasicPlansRequest.ProtoReflect.Descriptor instead.
func ( * FindAllAvailableBasicPlansRequest ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_service_plan_proto_rawDescGZIP ( ) , [ ] int { 11 }
}
type FindAllAvailableBasicPlansResponse struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
Plans [ ] * Plan ` protobuf:"bytes,1,rep,name=plans,proto3" json:"plans,omitempty" ` // 套餐列表
}
func ( x * FindAllAvailableBasicPlansResponse ) Reset ( ) {
* x = FindAllAvailableBasicPlansResponse { }
if protoimpl . UnsafeEnabled {
mi := & file_service_plan_proto_msgTypes [ 12 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * FindAllAvailableBasicPlansResponse ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * FindAllAvailableBasicPlansResponse ) ProtoMessage ( ) { }
func ( x * FindAllAvailableBasicPlansResponse ) ProtoReflect ( ) protoreflect . Message {
mi := & file_service_plan_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 FindAllAvailableBasicPlansResponse.ProtoReflect.Descriptor instead.
func ( * FindAllAvailableBasicPlansResponse ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_service_plan_proto_rawDescGZIP ( ) , [ ] int { 12 }
}
func ( x * FindAllAvailableBasicPlansResponse ) GetPlans ( ) [ ] * Plan {
if x != nil {
return x . Plans
}
return nil
}
// 对套餐进行排序
type SortPlansRequest struct {
state protoimpl . MessageState
@@ -850,7 +952,7 @@ type SortPlansRequest struct {
func ( x * SortPlansRequest ) Reset ( ) {
* x = SortPlansRequest { }
if protoimpl . UnsafeEnabled {
mi := & file_service_plan_proto_msgTypes [ 11 ]
mi := & file_service_plan_proto_msgTypes [ 13 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
@@ -863,7 +965,7 @@ func (x *SortPlansRequest) String() string {
func ( * SortPlansRequest ) ProtoMessage ( ) { }
func ( x * SortPlansRequest ) ProtoReflect ( ) protoreflect . Message {
mi := & file_service_plan_proto_msgTypes [ 11 ]
mi := & file_service_plan_proto_msgTypes [ 13 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
@@ -876,7 +978,7 @@ func (x *SortPlansRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use SortPlansRequest.ProtoReflect.Descriptor instead.
func ( * SortPlansRequest ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_service_plan_proto_rawDescGZIP ( ) , [ ] int { 11 }
return file_service_plan_proto_rawDescGZIP ( ) , [ ] int { 13 }
}
func ( x * SortPlansRequest ) GetPlanIds ( ) [ ] int64 {
@@ -893,7 +995,7 @@ var file_service_plan_proto_rawDesc = []byte{
0x72 , 0x6f , 0x74 , 0x6f , 0x12 , 0x02 , 0x70 , 0x62 , 0x1a , 0x17 , 0x6d , 0x6f , 0x64 , 0x65 , 0x6c , 0x73 ,
0x2f , 0x6d , 0x6f , 0x64 , 0x65 , 0x6c , 0x5f , 0x70 , 0x6c , 0x61 , 0x6e , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 ,
0x6f , 0x1a , 0x19 , 0x6d , 0x6f , 0x64 , 0x65 , 0x6c , 0x73 , 0x2f , 0x72 , 0x70 , 0x63 , 0x5f , 0x6d , 0x65 ,
0x73 , 0x73 , 0x61 , 0x67 , 0x65 , 0x73 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x22 , 0xa9 , 0x06 , 0x0a ,
0x73 , 0x73 , 0x61 , 0x67 , 0x65 , 0x73 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x22 , 0xe7 , 0x06 , 0x0a ,
0x11 , 0x43 , 0x72 , 0x65 , 0x61 , 0x74 , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 ,
0x73 , 0x74 , 0x12 , 0x12 , 0x0a , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 ,
0x52 , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 , 0x12 , 0x20 , 0x0a , 0x0b , 0x64 , 0x65 , 0x73 , 0x63 , 0x72 , 0x69 ,
@@ -903,169 +1005,190 @@ var file_service_plan_proto_rawDesc = []byte{
0x73 , 0x74 , 0x65 , 0x72 , 0x49 , 0x64 , 0x12 , 0x2a , 0x0a , 0x10 , 0x74 , 0x72 , 0x61 , 0x66 , 0x66 , 0x69 ,
0x63 , 0x4c , 0x69 , 0x6d , 0x69 , 0x74 , 0x4a , 0x53 , 0x4f , 0x4e , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x0c ,
0x52 , 0x10 , 0x74 , 0x72 , 0x61 , 0x66 , 0x66 , 0x69 , 0x63 , 0x4c , 0x69 , 0x6d , 0x69 , 0x74 , 0x4a , 0x53 ,
0x4f , 0x4e , 0x12 , 0x28 , 0x0a , 0x0f , 0x68 , 0x61 , 0x73 , 0x4 6 , 0x75 , 0x6c , 0x6c , 0x46 , 0x65 , 0x61 ,
0x74 , 0x75 , 0x72 , 0x65 , 0x73 , 0x18 , 0x1 2 , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x0f , 0x68 , 0x61 , 0x73 ,
0x46 , 0x75 , 0x6c , 0x6c , 0x46 , 0x6 5 , 0x6 1 , 0x74 , 0x75 , 0x72 , 0x65 , 0x73 , 0x12 , 0x22 , 0x0a , 0x0c ,
0x66 , 0x65 , 0x61 , 0x74 , 0x75 , 0x72 , 0x65 , 0x73 , 0x4a , 0x53 , 0x4f , 0x4e , 0x18 , 0x04 , 0x20 , 0x01 ,
0x28 , 0x0c , 0x52 , 0x0c , 0x66 , 0x65 , 0x61 , 0x7 4 , 0x75 , 0x72 , 0x65 , 0x73 , 0x4a , 0x53 , 0x4f , 0x4e ,
0x1 2 , 0x1c , 0x0a , 0x09 , 0x70 , 0x7 2 , 0x69 , 0x63 , 0x65 , 0x54 , 0x79 , 0x70 , 0x65 , 0x18 , 0x05 , 0x20 ,
0x01 , 0x28 , 0x09 , 0x52 , 0x09 , 0x70 , 0x72 , 0x69 , 0x63 , 0x65 , 0x54 , 0x79 , 0x7 0 , 0x65 , 0x12 , 0x2a ,
0x0a , 0x10 , 0x74 , 0x72 , 0x61 , 0x66 , 0x66 , 0x69 , 0x63 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x4a , 0x53 ,
0x4f , 0x4e , 0x18 , 0x0 6 , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x10 , 0x7 4 , 0x72 , 0x61 , 0x66 , 0x66 , 0x69 ,
0x63 , 0x5 0 , 0x72 , 0x69 , 0x63 , 0x65 , 0x4a , 0x53 , 0x4f , 0x4e , 0x12 , 0x2e , 0x0a , 0x1 2 , 0x62 , 0x61 ,
0x6e , 0x64 , 0x77 , 0x69 , 0x64 , 0x74 , 0x68 , 0x50 , 0x72 , 0x6 9 , 0x63 , 0x65 , 0x4a , 0x53 , 0x4f , 0x4e ,
0x18 , 0x0a , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x12 , 0x62 , 0x61 , 0x6e , 0x64 , 0x77 , 0x69 , 0x64 , 0x74 ,
0x68 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x4a , 0x53 , 0x4f , 0x4e , 0x12 , 0x22 , 0x0a , 0x0c , 0x6d , 0x6f ,
0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x18 , 0x07 , 0x20 , 0x01 , 0x28 , 0x02 ,
0x52 , 0x0c , 0x6d , 0x6f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x12 , 0x28 ,
0x0a , 0x0f , 0x73 , 0x65 , 0x61 , 0x73 , 0x6f , 0x6e , 0x61 , 0x6c , 0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 ,
0x65 , 0x18 , 0x08 , 0x20 , 0x01 , 0x28 , 0x02 , 0x52 , 0x0f , 0x73 , 0x65 , 0x61 , 0x73 , 0x6f , 0x6e , 0x61 ,
0x6c , 0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x12 , 0x20 , 0x0a , 0x0b , 0x79 , 0x65 , 0x61 , 0x72 ,
0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x18 , 0x09 , 0x20 , 0x01 , 0x28 , 0x02 , 0x52 , 0x0b , 0x79 ,
0x65 , 0x61 , 0x72 , 0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x12 , 0x22 , 0x0a , 0x0c , 0x74 , 0x6f ,
0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x73 , 0x18 , 0x0b , 0x20 , 0x01 , 0x28 , 0x05 ,
0x52 , 0x0c , 0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x73 , 0x12 , 0x3c ,
0x0a , 0x19 , 0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x4e , 0x61 , 0x6d ,
0x65 , 0x73 , 0x50 , 0x65 , 0x72 , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x18 , 0x0c , 0x20 , 0x01 , 0x28 ,
0x05 , 0x52 , 0x19 , 0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x4e , 0x61 ,
0x6d , 0x65 , 0x73 , 0x50 , 0x65 , 0x72 , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x12 , 0x2a , 0x0a , 0x10 ,
0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x4e , 0x61 , 0x6d , 0x65 , 0x73 ,
0x18 , 0x0d , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x10 , 0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 ,
0x76 , 0x65 , 0x72 , 0x4e , 0x61 , 0x6d , 0x65 , 0x73 , 0x12 , 0x24 , 0x0a , 0x0d , 0x64 , 0x61 , 0x69 , 0x6c ,
0x79 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x73 , 0x18 , 0x0e , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 ,
0x0d , 0x64 , 0x61 , 0x69 , 0x6c , 0x79 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x73 , 0x12 , 0x28 ,
0x0a , 0x0f , 0x6d , 0x6f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 ,
0x73 , 0x18 , 0x0f , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x0f , 0x6d , 0x6f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 ,
0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x73 , 0x12 , 0x3c , 0x0a , 0x19 , 0x64 , 0x61 , 0x69 , 0x6c ,
0x79 , 0x57 , 0x65 , 0x62 , 0x73 , 0x6f , 0x63 , 0x6b , 0x65 , 0x74 , 0x43 , 0x6f , 0x6e , 0x6e , 0x65 , 0x63 ,
0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x18 , 0x10 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x19 , 0x64 , 0x61 , 0x69 ,
0x6c , 0x79 , 0x57 , 0x65 , 0x62 , 0x73 , 0x6f , 0x63 , 0x6b , 0x65 , 0x74 , 0x43 , 0x6f , 0x6e , 0x6e , 0x65 ,
0x63 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x12 , 0x40 , 0x0a , 0x1b , 0x6d , 0x6f , 0x6e , 0x74 , 0x68 , 0x6c ,
0x79 , 0x57 , 0x65 , 0x62 , 0x73 , 0x6f , 0x63 , 0x6b , 0x65 , 0x74 , 0x43 , 0x6f , 0x6e , 0x6e , 0x65 , 0x63 ,
0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x18 , 0x11 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x1b , 0x6d , 0x6f , 0x6e ,
0x74 , 0x68 , 0x6c , 0x79 , 0x57 , 0x65 , 0x62 , 0x73 , 0x6f , 0x63 , 0x6b , 0x65 , 0x74 , 0x43 , 0x6f , 0x6e ,
0x6e , 0x65 , 0x63 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x22 , 0x2c , 0x0a , 0x12 , 0x43 , 0x72 , 0x65 , 0x61 ,
0x74 , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x16 ,
0x0a , 0x06 , 0x70 , 0x6c , 0x61 , 0x6e , 0x49 , 0x64 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x06 ,
0x70 , 0x6c , 0x61 , 0x6e , 0x49 , 0x64 , 0x22 , 0xd5 , 0x06 , 0x0a , 0x11 , 0x55 , 0x70 , 0x64 , 0x61 , 0x74 ,
0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x12 , 0x16 , 0x0a , 0x06 ,
0x70 , 0x6c , 0x61 , 0x6e , 0x49 , 0x64 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x06 , 0x70 , 0x6c ,
0x61 , 0x6e , 0x49 , 0x64 , 0x12 , 0x12 , 0x0a , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 ,
0x28 , 0x09 , 0x52 , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 , 0x12 , 0x20 , 0x0a , 0x0b , 0x64 , 0x65 , 0x73 , 0x63 ,
0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x18 , 0x15 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x0b , 0x64 ,
0x65 , 0x73 , 0x63 , 0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x12 , 0x12 , 0x0a , 0x04 , 0x69 , 0x73 ,
0x4f , 0x6e , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x04 , 0x69 , 0x73 , 0x4f , 0x6e , 0x12 , 0x1c ,
0x0a , 0x09 , 0x63 , 0x6c , 0x75 , 0x73 , 0x74 , 0x65 , 0x72 , 0x49 , 0x64 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 ,
0x03 , 0x52 , 0x09 , 0x63 , 0x6c , 0x75 , 0x73 , 0x74 , 0x65 , 0x72 , 0x49 , 0x64 , 0x12 , 0x2a , 0x0a , 0x10 ,
0x74 , 0x72 , 0x61 , 0x66 , 0x66 , 0x69 , 0x63 , 0x4c , 0x69 , 0x6d , 0x69 , 0x74 , 0x4a , 0x53 , 0x4f , 0x4e ,
0x18 , 0x05 , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x10 , 0x74 , 0x72 , 0x61 , 0x66 , 0x66 , 0x69 , 0x63 , 0x4c ,
0x69 , 0x6d , 0x69 , 0x74 , 0x4a , 0x53 , 0x4f , 0x4e , 0x12 , 0x28 , 0x0a , 0x0f , 0x68 , 0x61 , 0x73 , 0x46 ,
0x75 , 0x6c , 0x6c , 0x46 , 0x65 , 0x61 , 0x74 , 0x75 , 0x72 , 0x65 , 0x73 , 0x18 , 0x14 , 0x20 , 0x01 , 0x28 ,
0x08 , 0x52 , 0x0f , 0x68 , 0x61 , 0x73 , 0x46 , 0x75 , 0x6c , 0x6c , 0x46 , 0x65 , 0x61 , 0x74 , 0x75 , 0x72 ,
0x65 , 0x73 , 0x12 , 0x22 , 0x0a , 0x0c , 0x66 , 0x65 , 0x61 , 0x74 , 0x75 , 0x72 , 0x65 , 0x73 , 0x4a , 0x53 ,
0x4f , 0x4e , 0x18 , 0x06 , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x0c , 0x66 , 0x65 , 0x61 , 0x74 , 0x75 , 0x72 ,
0x65 , 0x73 , 0x4a , 0x53 , 0x4f , 0x4e , 0x12 , 0x1c , 0x0a , 0x09 , 0x70 , 0x72 , 0x69 , 0x63 , 0x65 , 0x54 ,
0x79 , 0x70 , 0x65 , 0x18 , 0x07 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x09 , 0x70 , 0x72 , 0x69 , 0x63 , 0x65 ,
0x54 , 0x79 , 0x70 , 0x65 , 0x12 , 0x2a , 0x0a , 0x10 , 0x74 , 0x72 , 0x61 , 0x66 , 0x66 , 0x69 , 0x63 , 0x50 ,
0x72 , 0x69 , 0x63 , 0x65 , 0x4a , 0x53 , 0x4f , 0x4e , 0x18 , 0x08 , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x10 ,
0x4f , 0x4e , 0x12 , 0x3c , 0x0a , 0x19 , 0x62 , 0x61 , 0x6e , 0x64 , 0x77 , 0x69 , 0x64 , 0x7 4 , 0x68 , 0x4c ,
0x69 , 0x6d , 0x69 , 0x74 , 0x50 , 0x65 , 0x7 2 , 0x4e , 0x6f , 0x64 , 0x65 , 0x4a , 0x53 , 0x4f , 0x4e , 0x18 ,
0x1 4 , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x19 , 0x62 , 0x61 , 0x6e , 0x64 , 0x77 , 0x69 , 0x64 , 0x74 , 0x68 ,
0x4c , 0x69 , 0x6d , 0x69 , 0x74 , 0x50 , 0x65 , 0x72 , 0x4e , 0x6f , 0x6 4 , 0x65 , 0x4a , 0x53 , 0x4f , 0x4e ,
0x1 2 , 0x28 , 0x0a , 0x0f , 0x68 , 0x61 , 0x73 , 0x46 , 0x75 , 0x6c , 0x6c , 0x46 , 0x65 , 0x61 , 0x7 4 , 0x75 ,
0x7 2 , 0x65 , 0x73 , 0x18 , 0x12 , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x0f , 0x68 , 0x61 , 0x73 , 0x46 , 0x75 ,
0x6c , 0x6c , 0x46 , 0x6 5 , 0x61 , 0x74 , 0x75 , 0x72 , 0x65 , 0x73 , 0x12 , 0x22 , 0x0a , 0x0c , 0x66 , 0x65 ,
0x61 , 0x74 , 0x75 , 0x72 , 0x65 , 0x73 , 0x4a , 0x53 , 0x4f , 0x4e , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x0c ,
0x52 , 0x0c , 0x66 , 0x65 , 0x61 , 0x74 , 0x75 , 0x72 , 0x6 5 , 0x73 , 0x4a , 0x53 , 0x4f , 0x4e , 0x12 , 0x1c ,
0x0a , 0x09 , 0x7 0 , 0x72 , 0x69 , 0x63 , 0x65 , 0x5 4 , 0x79 , 0x70 , 0x65 , 0x18 , 0x05 , 0x20 , 0x01 , 0x28 ,
0x09 , 0x52 , 0x09 , 0x70 , 0x72 , 0x69 , 0x63 , 0x6 5 , 0x54 , 0x7 9 , 0x70 , 0x65 , 0x12 , 0x2a , 0x0a , 0x10 ,
0x74 , 0x72 , 0x61 , 0x66 , 0x66 , 0x69 , 0x63 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x4a , 0x53 , 0x4f , 0x4e ,
0x12 , 0x2e , 0x0a , 0x12 , 0x6 2 , 0x61 , 0x6e , 0x64 , 0x77 , 0x69 , 0x64 , 0x74 , 0x68 , 0x50 , 0x72 , 0x69 ,
0x63 , 0x65 , 0x4a , 0x53 , 0x4f , 0x4e, 0x18 , 0x0c , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x12 , 0x62 , 0x61 ,
0x6e , 0x64 , 0x77, 0x69 , 0x64 , 0x74 , 0x68 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x4a , 0x53 , 0x4f , 0x4e ,
0x1 2 , 0x22 , 0x0a , 0x0c , 0x6d , 0x6f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x6 5 ,
0x18 , 0x0 9 , 0x20 , 0x01 , 0x28 , 0x02 , 0x52 , 0x0c , 0x6d , 0x6f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x50 ,
0x72 , 0x69 , 0x63 , 0x6 5 , 0x1 2 , 0x28 , 0x0a , 0x0f , 0x73 , 0x65 , 0x61 , 0x73 , 0x6f , 0x6e , 0x61 , 0x6 c ,
0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x18 , 0x0a , 0x20 , 0x01 , 0x28 , 0x0 2 , 0x5 2 , 0x0f , 0x73 ,
0x65 , 0x61 , 0x73 , 0x6f , 0x6e , 0x61 , 0x6c , 0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x12 , 0x20 ,
0x0a , 0x0b , 0x79 , 0x65 , 0x61 , 0x7 2 , 0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x18 , 0x0b , 0x20 ,
0x01 , 0x28 , 0x02 , 0x52 , 0x0b , 0x79 , 0x65 , 0x61 , 0x72 , 0x6c , 0x 79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 ,
0x12 , 0x2 2 , 0x0a , 0x0c , 0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x7 2 , 0x76 , 0x65 , 0x72 , 0x73 ,
0x18 , 0x0d , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x0c , 0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 ,
0x7 6 , 0x65 , 0x72 , 0x73 , 0x12 , 0x3c , 0x0a , 0x19 , 0x74 , 0x6f , 0x74 , 0x6 1 , 0x6c , 0x53 , 0x6 5 , 0x72 ,
0x76 , 0x65 , 0x72 , 0x4e , 0x61 , 0x6d , 0x65 , 0x73 , 0x50 , 0x65 , 0x72 , 0x5 3 , 0x65 , 0x72 , 0x76 , 0x65 ,
0x72 , 0x18 , 0x0e , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x19 , 0x7 4 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 ,
0x72 , 0x76 , 0x65 , 0x72 , 0x4e , 0x61 , 0x6d , 0x65 , 0x73 , 0x 50 , 0x65 , 0x72 , 0x53 , 0x65 , 0x72 , 0x76 ,
0x65 , 0x72 , 0x12 , 0x2a , 0x0a , 0x10 , 0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 ,
0x72 , 0x4e , 0x61 , 0x6d , 0x65 , 0x73 , 0x18 , 0x0f , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x10 , 0x74 , 0x6f ,
0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x4e , 0x61 , 0x6d , 0x65 , 0x73 , 0x12 , 0x24 ,
0x0a , 0x0d , 0x64 , 0x61 , 0x69 , 0x6c , 0x79 , 0x52 , 0x65 , 0x7 1 , 0x75 , 0x6 5 , 0x73 , 0x74 , 0x73 , 0x18 ,
0x10 , 0x20 , 0x0 1 , 0x28 , 0x03 , 0x52 , 0x 0d , 0x64 , 0x61 , 0x69 , 0x6c , 0x79 , 0x52 , 0x65 , 0x71 , 0x75 ,
0x65 , 0x73 , 0x74 , 0x73 , 0x12 , 0x28 , 0x0a , 0x0f , 0x6d , 0x6f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x52 ,
0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x73 , 0x18 , 0x11 , 0x20 , 0x01 , 0x28 , 0x03 , 0x5 2 , 0x0f , 0x6d ,
0x6f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x73 , 0x12 , 0x3c ,
0x0a , 0x19 , 0x64 , 0x61 , 0x69 , 0x6c , 0x79 , 0x57 , 0x65 , 0x62 , 0x73 , 0x6f , 0x63 , 0x6b , 0x6 5 , 0x74 ,
0x43 , 0x6f , 0x6e , 0x6e , 0x65 , 0x6 3 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x18 , 0x12 , 0x20 , 0x01 , 0x28 ,
0x03 , 0x52 , 0x19 , 0x64 , 0x61 , 0x69 , 0x6c , 0x79 , 0x57 , 0x 65 , 0x62 , 0x73 , 0x6f , 0x63 , 0x6b , 0x65 ,
0x74 , 0x43 , 0x6f , 0x6e , 0x6e , 0x65 , 0x63 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x12 , 0x40 , 0x0a , 0x1b ,
0x6d , 0x6f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x57, 0x65 , 0x62 , 0x73 , 0x6f , 0x63 , 0x6b , 0x65 , 0x74 ,
0x43 , 0x6f , 0x6e , 0x6e , 0x65 , 0x63 , 0x74 , 0x69 , 0x6 f , 0x6e , 0x73 , 0x18 , 0x13 , 0x20 , 0x01 , 0x28 ,
0x03 , 0x52 , 0x1b , 0x6d , 0x6f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x57 , 0x 65 , 0x62 , 0x73 , 0x6f , 0x63 ,
0x6b , 0x65 , 0x74 , 0x43 , 0x6f , 0x6e , 0x6e , 0x65 , 0x6 3 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x22 , 0x2b ,
0x0a , 0x11 , 0x44 , 0x65 , 0x6c , 0x65 , 0x74 , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x71 , 0x7 5 ,
0x65 , 0x73 , 0x74 , 0x12 , 0x1 6 , 0x0a , 0x06 , 0x70 , 0x6c , 0x6 1 , 0x6e , 0x49 , 0x64 , 0x18 , 0x01 , 0x20 ,
0x01 , 0x28 , 0x03 , 0x52 , 0x0 6 , 0x70 , 0x6c , 0x61 , 0x6e , 0x49 , 0x64 , 0x2 2 , 0x30 , 0x0a , 0x16 , 0x4 6 ,
0x69 , 0x6e , 0x64 , 0x45 , 0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 ,
0x7 1 , 0x75 , 0x65 , 0x73 , 0x74 , 0x12 , 0x16 , 0x0a , 0x06 , 0x70 , 0x6c , 0x61 , 0x6e , 0x49 , 0x64 , 0x18 ,
0x01 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x06 , 0x70 , 0x6c , 0x61 , 0x6e , 0x49 , 0x64 , 0x22 , 0x3 7 , 0x0a ,
0x17 , 0x4 6 , 0x6 9 , 0x6e , 0x64 , 0x45 , 0x6e , 0x6 1 , 0x6 2 , 0x6c , 0x6 5 , 0x64 , 0x5 0 , 0x6c , 0x61 , 0x6e ,
0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x1c , 0x0a , 0x04 , 0x7 0 , 0x6c , 0x61 , 0x6e ,
0x18 , 0x01 , 0x20 , 0x0 1 , 0x28 , 0x0b , 0x3 2 , 0x08 , 0x2e , 0x7 0 , 0x62 , 0x2e , 0x50 , 0x6c , 0x61 , 0x6e ,
0x52 , 0x0 4 , 0x70 , 0x6c , 0x61 , 0x6e , 0x22 , 0x1d , 0x0a , 0x1b , 0x43 , 0x6f , 0x75 , 0x6e , 0x74 , 0x41 ,
0x6c , 0x6c , 0x45 , 0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x52 , 0x65 ,
0x7 1 , 0x75 , 0x65 , 0x73 , 0x74 , 0x22 , 0x4 5 , 0x0a , 0x17 , 0x4c , 0x69 , 0x73 , 0x74 , 0x45 , 0x6e , 0x61 ,
0x62 , 0x6c , 0x6 5 , 0x64 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x7 3 , 0x74 ,
0x12 , 0x1 6 , 0x0a , 0x06 , 0x6f , 0x66 , 0x66 , 0x73 , 0x65 , 0x7 4 , 0x18 , 0x01 , 0x2 0 , 0x0 1 , 0x28 , 0x03 ,
0x52 , 0x06 , 0x6f , 0x66 , 0x66 , 0x73 , 0x65 , 0x74 , 0x12 , 0x12 , 0x0 a , 0x04 , 0x73 , 0x69 , 0x7a , 0x6 5 ,
0x18 , 0x02 , 0x20, 0x01 , 0x28 , 0x03 , 0x52 , 0x04 , 0x73 , 0x69 , 0x7a , 0x65 , 0x22 , 0x3a , 0x0a , 0x18 ,
0x4c , 0x69 , 0x73 , 0x74 , 0x45 , 0x6 e , 0x6 1 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 ,
0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x1e , 0x0a , 0x05 , 0x70 , 0x6c , 0x61 , 0x6e ,
0x7 3 , 0x18 , 0x01 , 0x20 , 0x03 , 0x28 , 0x0b , 0x3 2 , 0x08 , 0x2e , 0x70 , 0x62 , 0x2e , 0x50 , 0x6c , 0x61 ,
0x6e , 0x52 , 0x05 , 0x70 , 0x6 c , 0x61 , 0x6e , 0x73 , 0x22 , 0x1e , 0x0a , 0x1c , 0x46 , 0x69 , 0x6e , 0x64 ,
0x41 , 0x6c , 0x6c , 0x41 , 0x76 , 0x61 , 0x69 , 0x6c , 0x61 , 0x62 , 0x6c , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e ,
0x73 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x22 , 0x3f , 0x0a , 0x1d , 0x46 , 0x69 , 0x6e , 0x64 ,
0x4 1 , 0x6c , 0x6c , 0x41 , 0x7 6 , 0x61 , 0x69 , 0x6c , 0x61 , 0x62 , 0x6c , 0x65 , 0x50 , 0x6c , 0x6 1 , 0x6e ,
0x73 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x1e , 0x0a , 0x05 , 0x70 , 0x6c , 0x61 ,
0x6e , 0x73 , 0x1 8 , 0x01 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x08 , 0x2e , 0x70 , 0x62 , 0x2e , 0x50 , 0x6c ,
0x61 , 0x6 e , 0x5 2 , 0x05 , 0x7 0 , 0x6c , 0x61 , 0x6e , 0x73 , 0x22 , 0x2c , 0x0a , 0x10 , 0x53 , 0x6f , 0x72 ,
0x74 , 0x5 0 , 0x6c , 0x61 , 0x6e , 0x73 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x7 4 , 0x12 , 0x18 , 0x0a ,
0x07 , 0x70 , 0x6c , 0x6 1 , 0x6e , 0x49 , 0x64 , 0x73 , 0x18 , 0x01 , 0x20 , 0x03 , 0x28 , 0x03 , 0x52 , 0x07 ,
0x70 , 0x6c , 0x61 , 0x6 e , 0x49 , 0x64 , 0x73 , 0x32 , 0xaf , 0x04 , 0x0a , 0x0b , 0x50 , 0x6c , 0x61 , 0x6e ,
0x53 , 0x65 , 0x72 , 0x76 , 0x69 , 0x63 , 0x65 , 0x12 , 0x3b , 0x0a , 0x0a , 0x63 , 0x7 2 , 0x65 , 0x61 , 0x74 ,
0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x12 , 0x15 , 0x2e , 0x70 , 0x62 , 0x2e , 0x43 , 0x72 , 0x65 , 0x61 , 0x74 ,
0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x71 , 0x7 5 , 0x65 , 0x73 , 0x74 , 0x1a , 0x1 6 , 0x2e , 0x70 ,
0x62 , 0x2e , 0x43 , 0x72 , 0x65 , 0x61 , 0x74 , 0x65 , 0x50 , 0x6c , 0x61 , 0x6 e , 0x5 2 , 0x65 , 0x73 , 0x7 0 ,
0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x33 , 0x0a , 0x0a , 0x75 , 0x70 , 0x64 , 0x61 , 0x74 , 0x65 , 0x5 0 , 0x6c ,
0x61 , 0x6e , 0x1 2 , 0x15 , 0x2e , 0x70 , 0x62 , 0x2e , 0x55 , 0x70 , 0x64 , 0x61 , 0x74 , 0x65 , 0x50 , 0x6c ,
0x6 1 , 0x6e , 0x52 , 0x65 , 0x71 , 0x7 5 , 0x65 , 0x73 , 0x74 , 0x1a , 0x0e , 0x2e , 0x70 , 0x62 , 0x2e , 0x5 2 ,
0x50 , 0x4 3 , 0x53 , 0x75 , 0x63 , 0x63 , 0x65 , 0x73 , 0x73 , 0x1 2 , 0x33 , 0x0a , 0x0a , 0x64 , 0x65 , 0x6c ,
0x65 , 0x74 , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x12 , 0x15 , 0x2e , 0x70 , 0x6 2 , 0x2e , 0x44 , 0x65 , 0x6c ,
0x65 , 0x74 , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x7 1 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x0e ,
0x2e , 0x70 , 0x62 , 0x2e , 0x5 2 , 0x50 , 0x43 , 0x53 , 0x75 , 0x63 , 0x63 , 0x65 , 0x73 , 0x73 , 0x12 , 0x4a ,
0x0a , 0x0 f , 0x66 , 0x69 , 0x6e , 0x64 , 0x4 5 , 0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x5 0 , 0x6c , 0x6 1 ,
0x6e , 0x12 , 0x1a , 0x2e , 0x70 , 0x62 , 0x2e , 0x4 6 , 0x69 , 0x6e , 0x64 , 0x45 , 0x6e , 0x61 , 0x6 2 , 0x6c ,
0x65 , 0x64 , 0x5 0 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x71 , 0x7 5 , 0x65 , 0x73 , 0x74 , 0x1a , 0x1b , 0x2 e ,
0x70 , 0x62 , 0x2e , 0x46 , 0x69 , 0x6e , 0x64 , 0x4 5 , 0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x5 0 , 0x6c ,
0x6 1 , 0x6e , 0x52 , 0x6 5 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x4d , 0x0a , 0x14 , 0x63 , 0x6f ,
0x75 , 0x6e , 0x74 , 0x41 , 0x6c , 0x6c , 0x4 5 , 0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x61 ,
0x6e , 0x73 , 0x12 , 0x1 f , 0x2e , 0x70 , 0x62 , 0x2e , 0x43 , 0x6f , 0x75 , 0x6e , 0x74 , 0x41 , 0x6c , 0x6c ,
0x4 5 , 0x6e , 0x6 1 , 0x62 , 0x6c , 0x65 , 0x64 , 0x5 0 , 0x6c , 0x6 1 , 0x6e , 0x73 , 0x52 , 0x65 , 0x71 , 0x7 5 ,
0x65 , 0x73 , 0x74 , 0x1a , 0x14 , 0x2 e , 0x70 , 0x62 , 0x2e , 0x52 , 0x50 , 0x43 , 0x43 , 0x6f , 0x75 , 0x6e ,
0x74 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x4d , 0x0a , 0x10 , 0x6c , 0x69 , 0x73 ,
0x74 , 0x4 5 , 0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x6 1 , 0x6e , 0x73 , 0x12 , 0x1b , 0x2e ,
0x70 , 0x6 2 , 0x2e , 0x4c , 0x69 , 0x73 , 0x74 , 0x45 , 0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c ,
0x61 , 0x6e , 0x73 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x7 3 , 0x74 , 0x1a , 0x1c , 0x2e , 0x70 , 0x62 , 0x2e ,
0x4 c , 0x6 9 , 0x73 , 0x74 , 0x45 , 0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x6 1 , 0x6e , 0x73 ,
0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x5c , 0x0a , 0x15 , 0x66 , 0x69 , 0x6e , 0x64 ,
0x41 , 0x6c , 0x6c , 0x41 , 0x7 6 , 0x61 , 0x69 , 0x6c , 0x6 1 , 0x6 2 , 0x6c , 0x65 , 0x5 0 , 0x6c , 0x6 1 , 0x6e ,
0x73 , 0x12 , 0x20 , 0x2e , 0x70 , 0x62 , 0x2e , 0x46 , 0x69 , 0x6e , 0x64 , 0x41 , 0x6c , 0x6c , 0x41 , 0x7 6 ,
0x61 , 0x69 , 0x6c , 0x61 , 0x62 , 0x6c , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x52 , 0x65 , 0x71 , 0x75 ,
0x65 , 0x73 , 0x74 , 0x1a , 0x21 , 0x2e , 0x70 , 0x62 , 0x2e , 0x4 6 , 0x69 , 0x6e , 0x6 4 , 0x41 , 0x6c , 0x6c ,
0x41 , 0x7 6 , 0x61 , 0x69 , 0x6c , 0x61 , 0x62 , 0x6c , 0x65 , 0x5 0 , 0x6c , 0x61 , 0x6e , 0x7 3 , 0x52 , 0x65 ,
0x73 , 0x70 , 0x6f, 0x6e , 0x73 , 0x65 , 0x12 , 0x31 , 0x0a , 0x09 , 0x73 , 0x6f , 0x72 , 0x74 , 0x50 , 0x6c ,
0x61 , 0x6e , 0x73 , 0x12 , 0x14 , 0x2e , 0x70 , 0x62 , 0x2 e , 0x5 3 , 0x6f , 0x7 2 , 0x74 , 0x50 , 0x6c , 0x61 ,
0x6e , 0x73 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x0e , 0x2e , 0x70 , 0x62 , 0x2e , 0x5 2 ,
0x50 , 0x43 , 0x53 , 0x75 , 0x63 , 0x63 , 0x65 , 0x73 , 0x73 , 0x42 , 0x06 , 0x5a , 0x04 , 0x2e , 0x2f , 0x70 ,
0x62 , 0x62 , 0x06 , 0x70 , 0x7 2 , 0x6f , 0x7 4 , 0x6f , 0x33 ,
0x18 , 0x06 , 0x2 0 , 0x0 1 , 0x28 , 0x0c , 0x52 , 0x10 , 0x74 , 0x72 , 0x61 , 0x66 , 0x66 , 0x69 , 0x63 , 0x50 ,
0x72 , 0x69 , 0x63, 0x65 , 0x4a , 0x53 , 0x4f , 0x4e , 0x1 2 , 0x2e , 0x0a , 0x12 , 0x62 , 0x61 , 0x6e , 0x64 ,
0x77 , 0x69 , 0x64 , 0x74 , 0x68 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x4a , 0x53 , 0x4f , 0x4e , 0x18 , 0x0a ,
0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x12 , 0x62 , 0x61 , 0x6e , 0x64 , 0x77 , 0x69 , 0x64 , 0x74 , 0x68 , 0x50 ,
0x72 , 0x6 9 , 0x63 , 0x65 , 0x4a , 0x53 , 0x4f , 0x4e , 0x12 , 0x22 , 0x0a , 0x0c , 0x6d , 0x6f , 0x6e , 0x74 ,
0x68 , 0x6c , 0x79 , 0x50 , 0x7 2 , 0x69 , 0x63 , 0x65 , 0x18 , 0x07 , 0x20 , 0x01 , 0x28 , 0x02 , 0x52 , 0x0 c ,
0x6d , 0x6f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x1 2 , 0x28 , 0x0a , 0x0f ,
0x73 , 0x65, 0x61 , 0x73 , 0x6f , 0x6e , 0x61 , 0x6c , 0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x18 ,
0x08 , 0x2 0 , 0x01 , 0x28 , 0x02 , 0x5 2 , 0x0f , 0x73 , 0x6 5 , 0x61 , 0x73 , 0x6f , 0x6e , 0x6 1 , 0x6c , 0x6c ,
0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65, 0x12 , 0x20 , 0x0a , 0x0b , 0x79 , 0x65 , 0x61 , 0x72 , 0x6c , 0x79 ,
0x50 , 0x7 2 , 0x69 , 0x63 , 0x65 , 0x18 , 0x09 , 0x20 , 0x01 , 0x28 , 0x02 , 0x5 2 , 0x0b , 0x79 , 0x65 , 0x61 ,
0x72 , 0x6c , 0x79 , 0x5 0 , 0x7 2 , 0x69 , 0x63 , 0x65 , 0x12 , 0x22 , 0x0a , 0x0c , 0x74 , 0x6f , 0x74 , 0x61 ,
0x6c , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x73 , 0x18 , 0x0b , 0x20 , 0x0 1 , 0x28 , 0x0 5 , 0x52 , 0x0c ,
0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x7 3 , 0x12 , 0x3c , 0x0a , 0x19 ,
0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65, 0x72 , 0x76 , 0x65 , 0x72 , 0x4e , 0x61 , 0x6d , 0x65 , 0x73 ,
0x50 , 0x65 , 0x72 , 0x53 , 0x65 , 0x72 , 0x76, 0x65 , 0x72 , 0x18 , 0x0c , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 ,
0x19 , 0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x4e , 0x61 , 0x6d , 0x65 ,
0x73 , 0x50 , 0x65 , 0x72 , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x1 2 , 0x2a , 0x0a , 0x10 , 0x74 , 0x6f ,
0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x4e , 0x61 , 0x6d , 0x65 , 0x73 , 0x18 , 0x0d ,
0x2 0 , 0x01 , 0x28 , 0x05 , 0x52 , 0x10 , 0x74 , 0x6f , 0x74 , 0x6 1 , 0x6c , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 ,
0x72 , 0x4e , 0x6 1 , 0x6d , 0x65 , 0x73 , 0x12 , 0x24 , 0x0a , 0x 0d , 0x64 , 0x61 , 0x69 , 0x6c , 0x79 , 0x52 ,
0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x73 , 0x18 , 0x0e , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x0d , 0x64 ,
0x61 , 0x69 , 0x6c , 0x79 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x73 , 0x12 , 0x28 , 0x0a , 0x0f ,
0x6d , 0x6f, 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x73 , 0x18 ,
0x0f , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x0f , 0x6d , 0x6f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x52 , 0x65 ,
0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x7 3 , 0x12 , 0x3c , 0x0a , 0x19 , 0x64 , 0x6 1 , 0x69 , 0x6c , 0x79 , 0x57 ,
0x65 , 0x62 , 0x73 , 0x6f , 0x63 , 0x6b , 0x65, 0x74 , 0x43 , 0x6f , 0x6e , 0x6e , 0x65 , 0x63 , 0x74 , 0x69 ,
0x6f , 0x6e , 0x73 , 0x18 , 0x10 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x19 , 0x64 , 0x6 1 , 0x69 , 0x6c , 0x79 ,
0x57 , 0x65 , 0x62 , 0x73 , 0x6f , 0x63 , 0x6b , 0x65 , 0x74 , 0x43 , 0x6f , 0x6e , 0x6e , 0x65 , 0x63 , 0x74 ,
0x69 , 0x6f , 0x6e , 0x73 , 0x12 , 0x40 , 0x0a , 0x1b , 0x6d , 0x6 f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x57 ,
0x65 , 0x62 , 0x73 , 0x6f , 0x63, 0x6b , 0x65 , 0x74 , 0x43 , 0x6f , 0x6e , 0x6e , 0x65 , 0x63 , 0x74 , 0x69 ,
0x6f , 0x6e , 0x73 , 0x18 , 0x11 , 0x20 , 0x01 , 0x28 , 0x0 3 , 0x52 , 0x1b , 0x6d , 0x6f , 0x6e , 0x74 , 0x68 ,
0x6c , 0x79 , 0x57 , 0x65 , 0x62 , 0x73 , 0x6f , 0x63 , 0x6b , 0x65 , 0x74 , 0x43 , 0x6f , 0x6e , 0x6e , 0x6 5 ,
0x63 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x22 , 0x2c , 0x0a , 0x12 , 0x43 , 0x72 , 0x65 , 0x6 1 , 0x74 , 0x65 ,
0x5 0 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x1 2 , 0x16 , 0x0a , 0x0 6 ,
0x70 , 0x6c , 0x61 , 0x6e , 0x49 , 0x64 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x0 6 , 0x70 , 0x6c ,
0x6 1 , 0x6e , 0x49 , 0x64 , 0x22 , 0x93 , 0x07 , 0x0a , 0x11 , 0x55 , 0x70 , 0x64 , 0x61 , 0x7 4 , 0x65 , 0x50 ,
0x6c , 0x61 , 0x6e , 0x5 2 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x12 , 0x16 , 0x0a , 0x06 , 0x70 , 0x6c ,
0x6 1 , 0x6e , 0x4 9 , 0x64 , 0x18 , 0x01 , 0x20 , 0x0 1 , 0x28 , 0x03 , 0x52 , 0x0 6 , 0x7 0 , 0x6c , 0x61 , 0x6e ,
0x49 , 0x64 , 0x12 , 0x12 , 0x0a , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 , 0x18 , 0x02 , 0x2 0 , 0x01 , 0x28 , 0x09 ,
0x52 , 0x04 , 0x6e , 0x6 1 , 0x6d , 0x65 , 0x1 2 , 0x2 0 , 0x0a , 0x0b , 0x64 , 0x65 , 0x73 , 0x63 , 0x72 , 0x69 ,
0x70 , 0x7 4 , 0x69 , 0x6f , 0x6e , 0x18 , 0x15 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x0b , 0x64 , 0x65 , 0x73 ,
0x63 , 0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x12 , 0x12 , 0x0a , 0x04 , 0x69 , 0x73 , 0x4f , 0x6e ,
0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x04 , 0x69 , 0x73 , 0x4f , 0x6e , 0x12 , 0x1c , 0x0a , 0x09 ,
0x63 , 0x6c , 0x7 5 , 0x73 , 0x74 , 0x65 , 0x72 , 0x49 , 0x64 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x0 3 , 0x52 ,
0x09 , 0x63 , 0x6c , 0x75 , 0x73 , 0x74 , 0x65 , 0x72 , 0x49 , 0x6 4 , 0x12 , 0x2a , 0x0a , 0x10 , 0x74 , 0x72 ,
0x61 , 0x66 , 0x66 , 0x69 , 0x63 , 0x4c , 0x69 , 0x6d , 0x69 , 0x74 , 0x4 a , 0x53 , 0x4f , 0x4e , 0x18 , 0x0 5 ,
0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x10 , 0x74 , 0x72 , 0x61 , 0x66 , 0x66 , 0x69 , 0x63 , 0x4c , 0x69 , 0x6d ,
0x69 , 0x74 , 0x4a , 0x53 , 0x4f , 0x4 e , 0x12 , 0x3c , 0x0a , 0x19 , 0x62 , 0x61 , 0x6e , 0x64 , 0x77 , 0x69 ,
0x64 , 0x74 , 0x68 , 0x4c , 0x69 , 0x6d , 0x69 , 0x74 , 0x50 , 0x65 , 0x72 , 0x4e , 0x6f , 0x64 , 0x65 , 0x4a ,
0x5 3 , 0x4f , 0x4e , 0x18 , 0x16 , 0x20 , 0x01 , 0x28 , 0x0c , 0x5 2 , 0x19 , 0x62 , 0x61 , 0x6e , 0x64 , 0x77 ,
0x69 , 0x64 , 0x74 , 0x68 , 0x4 c , 0x69 , 0x6d , 0x69 , 0x74 , 0x50 , 0x65 , 0x72 , 0x4e , 0x6f , 0x64 , 0x65 ,
0x4a , 0x53 , 0x4f , 0x4e , 0x12 , 0x28 , 0x0a , 0x0f , 0x68 , 0x61 , 0x73 , 0x4 6 , 0x7 5 , 0x6c , 0x6c , 0x4 6 ,
0x65 , 0x61 , 0x74 , 0x75 , 0x72 , 0x65 , 0x73 , 0x18 , 0x14 , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x0f , 0x68 ,
0x6 1 , 0x73 , 0x4 6 , 0x75 , 0x6c , 0x6c , 0x4 6 , 0x65 , 0x61 , 0x74 , 0x75 , 0x72 , 0x6 5 , 0x73 , 0x12 , 0x22 ,
0x0a , 0x0c , 0x66 , 0x65 , 0x61 , 0x74 , 0x75 , 0x72 , 0x65 , 0x73 , 0x4a , 0x53 , 0x4f , 0x4e , 0x18 , 0x0 6 ,
0x20 , 0x01 , 0x2 8 , 0x0c , 0x5 2 , 0x0c , 0x66 , 0x65 , 0x61 , 0x74 , 0x75 , 0x72 , 0x65 , 0x73 , 0x4a , 0x53 ,
0x4f , 0x4 e , 0x1 2 , 0x1c , 0x0a , 0x09 , 0x70 , 0x72 , 0x69 , 0x63 , 0x65 , 0x54 , 0x79 , 0x70 , 0x65 , 0x18 ,
0x0 7 , 0x2 0 , 0x01 , 0x28 , 0x09 , 0x52 , 0x09 , 0x70 , 0x72 , 0x69 , 0x63 , 0x65 , 0x5 4 , 0x79 , 0x70 , 0x65 ,
0x12 , 0x2a , 0x0a , 0x10 , 0x74 , 0x72 , 0x61 , 0x66 , 0x66 , 0x69 , 0x63 , 0x5 0 , 0x7 2 , 0x69 , 0x63 , 0x65 ,
0x4a , 0x53 , 0x4f , 0x4 e , 0x18 , 0x08 , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x1 0 , 0x74 , 0x72 , 0x61 , 0x66 ,
0x66 , 0x69 , 0x63 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x4a , 0x53 , 0x4f , 0x4e , 0x1 2 , 0x2e , 0x0a , 0x12 ,
0x62 , 0x61 , 0x6e , 0x64 , 0x77 , 0x69 , 0x64 , 0x74 , 0x68 , 0x50 , 0x7 2 , 0x69 , 0x63 , 0x65 , 0x4a , 0x53 ,
0x4f , 0x4e , 0x18 , 0x0c , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x12 , 0x62 , 0x61 , 0x6e , 0x64 , 0x77 , 0x69 ,
0x64 , 0x74 , 0x68 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x4a , 0x53 , 0x4f , 0x4 e , 0x1 2 , 0x22 , 0x0a , 0x0c ,
0x6d , 0x6f, 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x5 0 , 0x72 , 0x69 , 0x63 , 0x65 , 0x18 , 0x09 , 0x2 0 , 0x01 ,
0x28 , 0x02 , 0x5 2 , 0x0c , 0x6d , 0x6f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 ,
0x12 , 0x28 , 0x0a , 0x0f , 0x73 , 0x6 5 , 0x61 , 0x73 , 0x6f , 0x6e , 0x61 , 0x6c , 0x6c , 0x79 , 0x50 , 0x7 2 ,
0x69 , 0x6 3 , 0x6 5 , 0x18 , 0x0a , 0x20 , 0x01 , 0x28 , 0x02 , 0x5 2 , 0x0f , 0x73 , 0x65 , 0x61 , 0x73 , 0x6f ,
0x6e , 0x61 , 0x6c , 0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x12 , 0x20 , 0x0a , 0x0b , 0x79 , 0x65 ,
0x61 , 0x72 , 0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x18 , 0x0b , 0x20 , 0x01 , 0x28 , 0x02 , 0x52 ,
0x0b , 0x79 , 0x65 , 0x61 , 0x7 2 , 0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x12 , 0x22 , 0x0a , 0x0c ,
0x74 , 0x6 f , 0x74 , 0x61 , 0x6c , 0x53 , 0x6 5 , 0x72 , 0x7 6 , 0x65 , 0x72 , 0x73 , 0x18 , 0x0d , 0x20 , 0x0 1 ,
0x28 , 0x05 , 0x52 , 0x0c , 0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x7 6 , 0x65 , 0x7 2 , 0x73 ,
0x12 , 0x3c , 0x0a , 0x19 , 0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x4 e ,
0x61 , 0x6d , 0x65 , 0x73 , 0x50 , 0x65 , 0x72 , 0x53 , 0x65 , 0x72 , 0x7 6 , 0x65 , 0x72 , 0x18 , 0x0e , 0x20 ,
0x0 1 , 0x28 , 0x0 5 , 0x52 , 0x19 , 0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 ,
0x4e , 0x61 , 0x6d , 0x65 , 0x73 , 0x50 , 0x6 5 , 0x72 , 0x53 , 0x65 , 0x72 , 0x7 6 , 0x65 , 0x72 , 0x12 , 0x2a ,
0x0a , 0x10 , 0x74 , 0x6 f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x4e , 0x61 , 0x6d ,
0x6 5 , 0x73 , 0x18 , 0x0f , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x10 , 0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 ,
0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x4 e , 0x61 , 0x6d , 0x65 , 0x73 , 0x12 , 0x2 4 , 0x0a , 0x0d , 0x64 , 0x61 ,
0x69 , 0x6c , 0x79 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x7 4 , 0x73 , 0x18 , 0x10 , 0x20 , 0x01 , 0x28 ,
0x03 , 0x52 , 0x0d , 0x64 , 0x61 , 0x69 , 0x6c , 0x79 , 0x52 , 0x65 , 0x7 1 , 0x75 , 0x65 , 0x73 , 0x74 , 0x73 ,
0x12 , 0x28 , 0x0a , 0x0f , 0x6d , 0x6f , 0x6e , 0x7 4 , 0x68 , 0x6c , 0x79 , 0x52 , 0x65 , 0x71 , 0x7 5 , 0x65 ,
0x73 , 0x74 , 0x73 , 0x18 , 0x11 , 0x20 , 0x01 , 0x28 , 0x0 3 , 0x52 , 0x0f , 0x6d , 0x6f , 0x6e , 0x74 , 0x68 ,
0x6 c , 0x7 9 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x73 , 0x12 , 0x3c , 0x0a , 0x19 , 0x64 , 0x61 ,
0x69 , 0x6c , 0x79 , 0x5 7 , 0x65 , 0x62 , 0x73 , 0x6f , 0x63 , 0x6b , 0x65 , 0x74 , 0x43 , 0x6f , 0x6e , 0x6e ,
0x65 , 0x63 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x18 , 0x12 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x19 , 0x64 ,
0x61 , 0x69 , 0x6c , 0x79 , 0x5 7 , 0x65 , 0x6 2 , 0x73 , 0x6f , 0x63 , 0x6b , 0x65 , 0x74 , 0x43 , 0x6f , 0x6e ,
0x6e , 0x65 , 0x63 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x12 , 0x40 , 0x0a , 0x1b , 0x6d , 0x6f , 0x6e , 0x74 ,
0x68 , 0x6c , 0x79 , 0x57 , 0x65 , 0x6 2 , 0x73 , 0x6f , 0x63 , 0x6b , 0x65 , 0x74 , 0x43 , 0x6f , 0x6e , 0x6e ,
0x65 , 0x63 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x18 , 0x13 , 0x2 0 , 0x01 , 0x28 , 0x0 3 , 0x52 , 0x1b , 0x6d ,
0x6f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x57 , 0x65 , 0x62 , 0x73 , 0x6f , 0x63 , 0x6b , 0x65 , 0x74 , 0x43 ,
0x6f , 0x6e , 0x6e , 0x65 , 0x63 , 0x74 , 0x69 , 0x6f , 0x6 e , 0x7 3 , 0x22 , 0x2b , 0x0a , 0x11 , 0x44 , 0x65 ,
0x6c , 0x65 , 0x74 , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x12 ,
0x16 , 0x0a , 0x06 , 0x70 , 0x6c , 0x61 , 0x6e , 0x49 , 0x64 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 ,
0x06 , 0x70 , 0x6c , 0x61 , 0x6e , 0x49 , 0x64 , 0x2 2 , 0x30 , 0x0a , 0x1 6 , 0x46 , 0x69 , 0x6e , 0x64 , 0x45 ,
0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 ,
0x74 , 0x12 , 0x16 , 0x0a , 0x06 , 0x70 , 0x6c , 0x61 , 0x6e , 0x49 , 0x64 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 ,
0x03 , 0x52 , 0x06 , 0x70 , 0x6c , 0x61 , 0x6e , 0x49 , 0x64 , 0x22 , 0x37 , 0x0a , 0x17 , 0x46 , 0x69 , 0x6e ,
0x64 , 0x45 , 0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x73 , 0x70 ,
0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x1c , 0x0a , 0x04 , 0x70 , 0x6c , 0x61 , 0x6e , 0x18 , 0x01 , 0x20 , 0x01 ,
0x28 , 0x0b , 0x32 , 0x08 , 0x2e , 0x70 , 0x62 , 0x2e , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x04 , 0x70 , 0x6c ,
0x61 , 0x6e , 0x22 , 0x1d , 0x0a , 0x1b , 0x43 , 0x6f , 0x75 , 0x6e , 0x74 , 0x41 , 0x6c , 0x6c , 0x45 , 0x6e ,
0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 ,
0x74 , 0x22 , 0x45 , 0x0a , 0x17 , 0x4c , 0x69 , 0x73 , 0x74 , 0x45 , 0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 ,
0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x12 , 0x16 , 0x0a , 0x06 ,
0x6f , 0x66 , 0x66 , 0x73 , 0x65 , 0x74 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x06 , 0x6f , 0x66 ,
0x66 , 0x73 , 0x65 , 0x74 , 0x12 , 0x12 , 0x0a , 0x04 , 0x73 , 0x69 , 0x7a , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 ,
0x28 , 0x03 , 0x52 , 0x04 , 0x73 , 0x69 , 0x7a , 0x65 , 0x22 , 0x3a , 0x0a , 0x18 , 0x4c , 0x69 , 0x73 , 0x74 ,
0x45 , 0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x52 , 0x65 , 0x73 , 0x70 ,
0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x1e , 0x0a , 0x05 , 0x70 , 0x6c , 0x61 , 0x6e , 0x73 , 0x18 , 0x01 , 0x20 ,
0x03 , 0x28 , 0x0b , 0x32 , 0x08 , 0x2e , 0x70 , 0x62 , 0x2e , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x05 , 0x70 ,
0x6c , 0x61 , 0x6e , 0x73 , 0x22 , 0x1e , 0x0a , 0x1c , 0x46 , 0x69 , 0x6e , 0x64 , 0x41 , 0x6c , 0x6c , 0x41 ,
0x76 , 0x61 , 0x69 , 0x6c , 0x61 , 0x62 , 0x6c , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x52 , 0x65 , 0x71 ,
0x75 , 0x65 , 0x73 , 0x74 , 0x22 , 0x3f , 0x0a , 0x1d , 0x46 , 0x69 , 0x6e , 0x64 , 0x41 , 0x6c , 0x6c , 0x41 ,
0x76 , 0x61 , 0x69 , 0x6c , 0x61 , 0x62 , 0x6c , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x52 , 0x65 , 0x73 ,
0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x1e , 0x0a , 0x05 , 0x70 , 0x6c , 0x61 , 0x6e , 0x73 , 0x18 , 0x01 ,
0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x08 , 0x2e , 0x70 , 0x62 , 0x2e , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x05 ,
0x70 , 0x6c , 0x61 , 0x6e , 0x73 , 0x22 , 0x23 , 0x0a , 0x21 , 0x46 , 0x69 , 0x6e , 0x64 , 0x41 , 0x6c , 0x6c ,
0x41 , 0x76 , 0x61 , 0x69 , 0x6c , 0x61 , 0x62 , 0x6c , 0x65 , 0x42 , 0x61 , 0x73 , 0x69 , 0x63 , 0x50 , 0x6c ,
0x61 , 0x6e , 0x73 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x22 , 0x44 , 0x0a , 0x22 , 0x46 , 0x69 ,
0x6e , 0x64 , 0x41 , 0x6c , 0x6c , 0x41 , 0x76 , 0x61 , 0x69 , 0x6c , 0x61 , 0x62 , 0x6c , 0x65 , 0x42 , 0x61 ,
0x73 , 0x69 , 0x63 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 ,
0x12 , 0x1e , 0x0a , 0x05 , 0x70 , 0x6c , 0x61 , 0x6e , 0x73 , 0x18 , 0x01 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 ,
0x08 , 0x2e , 0x70 , 0x62 , 0x2e , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x05 , 0x70 , 0x6c , 0x61 , 0x6e , 0x73 ,
0x22 , 0x2c , 0x0a , 0x10 , 0x53 , 0x6f , 0x72 , 0x74 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x52 , 0x65 , 0x71 ,
0x75 , 0x65 , 0x73 , 0x74 , 0x12 , 0x18 , 0x0a , 0x07 , 0x70 , 0x6c , 0x61 , 0x6e , 0x49 , 0x64 , 0x73 , 0x18 ,
0x01 , 0x20 , 0x03 , 0x28 , 0x03 , 0x52 , 0x07 , 0x70 , 0x6c , 0x61 , 0x6e , 0x49 , 0x64 , 0x73 , 0x32 , 0x9c ,
0x05 , 0x0a , 0x0b , 0x50 , 0x6c , 0x61 , 0x6e , 0x53 , 0x65 , 0x72 , 0x76 , 0x69 , 0x63 , 0x65 , 0x12 , 0x3b ,
0x0a , 0x0a , 0x63 , 0x72 , 0x65 , 0x61 , 0x74 , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x12 , 0x15 , 0x2e , 0x70 ,
0x62 , 0x2e , 0x43 , 0x72 , 0x65 , 0x61 , 0x74 , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x71 , 0x75 ,
0x65 , 0x73 , 0x74 , 0x1a , 0x16 , 0x2e , 0x70 , 0x62 , 0x2e , 0x43 , 0x72 , 0x65 , 0x61 , 0x74 , 0x65 , 0x50 ,
0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x33 , 0x0a , 0x0a , 0x75 ,
0x70 , 0x64 , 0x61 , 0x74 , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x12 , 0x15 , 0x2e , 0x70 , 0x62 , 0x2e , 0x55 ,
0x70 , 0x64 , 0x61 , 0x74 , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 ,
0x1a , 0x0e , 0x2e , 0x70 , 0x62 , 0x2e , 0x52 , 0x50 , 0x43 , 0x53 , 0x75 , 0x63 , 0x63 , 0x65 , 0x73 , 0x73 ,
0x12 , 0x33 , 0x0a , 0x0a , 0x64 , 0x65 , 0x6c , 0x65 , 0x74 , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x12 , 0x15 ,
0x2e , 0x70 , 0x62 , 0x2e , 0x44 , 0x65 , 0x6c , 0x65 , 0x74 , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 ,
0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x0e , 0x2e , 0x70 , 0x62 , 0x2e , 0x52 , 0x50 , 0x43 , 0x53 , 0x75 ,
0x63 , 0x63 , 0x65 , 0x73 , 0x73 , 0x12 , 0x4a , 0x0a , 0x0f , 0x66 , 0x69 , 0x6e , 0x64 , 0x45 , 0x6e , 0x61 ,
0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x61 , 0x6e , 0x12 , 0x1a , 0x2e , 0x70 , 0x62 , 0x2e , 0x46 , 0x69 ,
0x6e , 0x64 , 0x45 , 0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x71 ,
0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x1b , 0x2e , 0x70 , 0x62 , 0x2e , 0x46 , 0x69 , 0x6e , 0x64 , 0x45 , 0x6e ,
0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 ,
0x65 , 0x12 , 0x4d , 0x0a , 0x14 , 0x63 , 0x6f , 0x75 , 0x6e , 0x74 , 0x41 , 0x6c , 0x6c , 0x45 , 0x6e , 0x61 ,
0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x12 , 0x1f , 0x2e , 0x70 , 0x62 , 0x2e , 0x43 ,
0x6f , 0x75 , 0x6e , 0x74 , 0x41 , 0x6c , 0x6c , 0x45 , 0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c ,
0x61 , 0x6e , 0x73 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x14 , 0x2e , 0x70 , 0x62 , 0x2e ,
0x52 , 0x50 , 0x43 , 0x43 , 0x6f , 0x75 , 0x6e , 0x74 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 ,
0x12 , 0x4d , 0x0a , 0x10 , 0x6c , 0x69 , 0x73 , 0x74 , 0x45 , 0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 ,
0x6c , 0x61 , 0x6e , 0x73 , 0x12 , 0x1b , 0x2e , 0x70 , 0x62 , 0x2e , 0x4c , 0x69 , 0x73 , 0x74 , 0x45 , 0x6e ,
0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 ,
0x74 , 0x1a , 0x1c , 0x2e , 0x70 , 0x62 , 0x2e , 0x4c , 0x69 , 0x73 , 0x74 , 0x45 , 0x6e , 0x61 , 0x62 , 0x6c ,
0x65 , 0x64 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 ,
0x5c , 0x0a , 0x15 , 0x66 , 0x69 , 0x6e , 0x64 , 0x41 , 0x6c , 0x6c , 0x41 , 0x76 , 0x61 , 0x69 , 0x6c , 0x61 ,
0x62 , 0x6c , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x12 , 0x20 , 0x2e , 0x70 , 0x62 , 0x2e , 0x46 , 0x69 ,
0x6e , 0x64 , 0x41 , 0x6c , 0x6c , 0x41 , 0x76 , 0x61 , 0x69 , 0x6c , 0x61 , 0x62 , 0x6c , 0x65 , 0x50 , 0x6c ,
0x61 , 0x6e , 0x73 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x21 , 0x2e , 0x70 , 0x62 , 0x2e ,
0x46 , 0x69 , 0x6e , 0x64 , 0x41 , 0x6c , 0x6c , 0x41 , 0x76 , 0x61 , 0x69 , 0x6c , 0x61 , 0x62 , 0x6c , 0x65 ,
0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x6b , 0x0a ,
0x1a , 0x66 , 0x69 , 0x6e , 0x64 , 0x41 , 0x6c , 0x6c , 0x41 , 0x76 , 0x61 , 0x69 , 0x6c , 0x61 , 0x62 , 0x6c ,
0x65 , 0x42 , 0x61 , 0x73 , 0x69 , 0x63 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x12 , 0x25 , 0x2e , 0x70 , 0x62 ,
0x2e , 0x46 , 0x69 , 0x6e , 0x64 , 0x41 , 0x6c , 0x6c , 0x41 , 0x76 , 0x61 , 0x69 , 0x6c , 0x61 , 0x62 , 0x6c ,
0x65 , 0x42 , 0x61 , 0x73 , 0x69 , 0x63 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 ,
0x73 , 0x74 , 0x1a , 0x26 , 0x2e , 0x70 , 0x62 , 0x2e , 0x46 , 0x69 , 0x6e , 0x64 , 0x41 , 0x6c , 0x6c , 0x41 ,
0x76 , 0x61 , 0x69 , 0x6c , 0x61 , 0x62 , 0x6c , 0x65 , 0x42 , 0x61 , 0x73 , 0x69 , 0x63 , 0x50 , 0x6c , 0x61 ,
0x6e , 0x73 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x31 , 0x0a , 0x09 , 0x73 , 0x6f ,
0x72 , 0x74 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x12 , 0x14 , 0x2e , 0x70 , 0x62 , 0x2e , 0x53 , 0x6f , 0x72 ,
0x74 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x0e , 0x2e ,
0x70 , 0x62 , 0x2e , 0x52 , 0x50 , 0x43 , 0x53 , 0x75 , 0x63 , 0x63 , 0x65 , 0x73 , 0x73 , 0x42 , 0x06 , 0x5a ,
0x04 , 0x2e , 0x2f , 0x70 , 0x62 , 0x62 , 0x06 , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x33 ,
}
var (
@@ -1080,49 +1203,54 @@ func file_service_plan_proto_rawDescGZIP() []byte {
return file_service_plan_proto_rawDescData
}
var file_service_plan_proto_msgTypes = make ( [ ] protoimpl . MessageInfo , 12 )
var file_service_plan_proto_msgTypes = make ( [ ] protoimpl . MessageInfo , 14 )
var file_service_plan_proto_goTypes = [ ] interface { } {
( * CreatePlanRequest ) ( nil ) , // 0: pb.CreatePlanRequest
( * CreatePlanResponse ) ( nil ) , // 1: pb.CreatePlanResponse
( * UpdatePlanRequest ) ( nil ) , // 2: pb.UpdatePlanRequest
( * DeletePlanRequest ) ( nil ) , // 3: pb.DeletePlanRequest
( * FindEnabledPlanRequest ) ( nil ) , // 4: pb.FindEnabledPlanRequest
( * FindEnabledPlanResponse ) ( nil ) , // 5: pb.FindEnabledPlanResponse
( * CountAllEnabledPlansRequest ) ( nil ) , // 6: pb.CountAllEnabledPlansRequest
( * ListEnabledPlansRequest ) ( nil ) , // 7: pb.ListEnabledPlansRequest
( * ListEnabledPlansResponse ) ( nil ) , // 8: pb.ListEnabledPlansResponse
( * FindAllAvailablePlansRequest ) ( nil ) , // 9: pb.FindAllAvailablePlansRequest
( * FindAllAvailablePlansResponse ) ( nil ) , // 10: pb.FindAllAvailablePlansResponse
( * Sort PlansRequest) ( nil ) , // 11: pb.Sort PlansRequest
( * Plan ) ( nil ) , // 12: pb.Plan
( * RPCSucc ess ) ( nil ) , // 13: pb.RPCSucc ess
( * RPCCountResponse ) ( nil ) , // 14: pb.RPCCountResponse
( * CreatePlanRequest ) ( nil ) , // 0: pb.CreatePlanRequest
( * CreatePlanResponse ) ( nil ) , // 1: pb.CreatePlanResponse
( * UpdatePlanRequest ) ( nil ) , // 2: pb.UpdatePlanRequest
( * DeletePlanRequest ) ( nil ) , // 3: pb.DeletePlanRequest
( * FindEnabledPlanRequest ) ( nil ) , // 4: pb.FindEnabledPlanRequest
( * FindEnabledPlanResponse ) ( nil ) , // 5: pb.FindEnabledPlanResponse
( * CountAllEnabledPlansRequest ) ( nil ) , // 6: pb.CountAllEnabledPlansRequest
( * ListEnabledPlansRequest ) ( nil ) , // 7: pb.ListEnabledPlansRequest
( * ListEnabledPlansResponse ) ( nil ) , // 8: pb.ListEnabledPlansResponse
( * FindAllAvailablePlansRequest ) ( nil ) , // 9: pb.FindAllAvailablePlansRequest
( * FindAllAvailablePlansResponse ) ( nil ) , // 10: pb.FindAllAvailablePlansResponse
( * FindAllAvailableBasic PlansRequest) ( nil ) , // 11: pb.FindAllAvailableBasic PlansRequest
( * FindAllAvailableBasicPlansResponse ) ( nil ) , // 12: pb.FindAllAvailableBasicPlansResponse
( * SortPlansRequ est ) ( nil ) , // 13: pb.SortPlansRequ est
( * Plan ) ( nil ) , // 14: pb.Plan
( * RPCSuccess ) ( nil ) , // 15: pb.RPCSuccess
( * RPCCountResponse ) ( nil ) , // 16: pb.RPCCountResponse
}
var file_service_plan_proto_depIdxs = [ ] int32 {
12 , // 0: pb.FindEnabledPlanResponse.plan:type_name -> pb.Plan
12 , // 1: pb.ListEnabledPlansResponse.plans:type_name -> pb.Plan
12 , // 2: pb.FindAllAvailablePlansResponse.plans:type_name -> pb.Plan
0 , // 3: pb.PlanService.createPlan:input_type -> pb.CreatePlanRequest
2 , // 4: pb.PlanService.upd atePlan:input_type -> pb.Upd atePlanRequest
3 , // 5: pb.PlanService.dele tePlan:input_type -> pb.Dele tePlanRequest
4 , // 6: pb.PlanService.findEnabled Plan:input_type -> pb.FindEnabled PlanRequest
6 , // 7: pb.PlanService.countAll EnabledPlans :input_type -> pb.CountAll EnabledPlans Request
7 , // 8: pb.PlanService.list EnabledPlans:input_type -> pb.List EnabledPlansRequest
9 , // 9: pb.PlanService.findAllAvail ablePlans:input_type -> pb.FindAllAvail ablePlansRequest
11 , // 10: pb.PlanService.sort Plans:input_type -> pb.Sort PlansRequest
1 , // 11: pb.PlanService.createPlan:output_type -> pb.Create PlanResponse
13 , // 12: pb.PlanService.updatePlan:out put_type -> pb.RPCSucc ess
13 , // 13: pb.PlanService.dele tePlan:output_type -> pb.RPCSuccess
5 , // 14: pb.PlanService.findEnabled Plan:output_type -> pb.FindEnabledPlanResponse
14 , // 15: pb.PlanService.countAllEnabled Plans :output_type -> pb.RPCCountResponse
8 , // 16: pb.PlanService.list EnabledPlans :output_type -> pb.List EnabledPlans Response
10 , // 17: pb.PlanService.findAllAvail ablePlans:output_type -> pb.FindAllAvailablePlans Response
13 , // 18: pb.PlanService.sort Plans:output_type -> pb.RPCSuccess
11 , // [11:19] is the sub-list for method output_typ e
3 , // [3:11] is the sub-list for method input_typ e
3 , // [3:3] is the sub-list for extension type_name
3 , // [3:3 ] is the sub-list for extension extende e
0 , // [0: 3] is the sub-list for field type_nam e
14 , // 0: pb.FindEnabledPlanResponse.plan:type_name -> pb.Plan
14 , // 1: pb.ListEnabledPlansResponse.plans:type_name -> pb.Plan
14 , // 2: pb.FindAllAvailablePlansResponse.plans:type_name -> pb.Plan
14 , // 3: pb.FindAllAvailableBasicPlansResponse.plans:type_name -> pb.Plan
0 , // 4: pb.PlanService.cre atePlan:input_type -> pb.Cre atePlanRequest
2 , // 5: pb.PlanService.upda tePlan:input_type -> pb.Upda tePlanRequest
3 , // 6: pb.PlanService.delete Plan:input_type -> pb.Delete PlanRequest
4 , // 7: pb.PlanService.find EnabledPlan:input_type -> pb.Find EnabledPlanRequest
6 , // 8: pb.PlanService.countAll EnabledPlans:input_type -> pb.CountAll EnabledPlansRequest
7 , // 9: pb.PlanService.listEn abled Plans:input_type -> pb.ListEn abled PlansRequest
9 , // 10: pb.PlanService.findAllAvailable Plans:input_type -> pb.FindAllAvailable PlansRequest
11 , // 11: pb.PlanService.findAllAvailableBasicPlans:input_type -> pb.FindAllAvailableBasic Plans Request
13 , // 12: pb.PlanService.sortPlans:in put_type -> pb.SortPlansRequ est
1 , // 13: pb.PlanService.crea tePlan:output_type -> pb.CreatePlanResponse
1 5, // 14: pb.PlanService.update Plan:output_type -> pb.RPCSuccess
15 , // 15: pb.PlanService.delete Plan:output_type -> pb.RPCSuccess
5 , // 16: pb.PlanService.find EnabledPlan:output_type -> pb.Find EnabledPlanResponse
16 , // 17: pb.PlanService.countAllEn abled Plans:output_type -> pb.RPCCount Response
8 , // 18: pb.PlanService.listEnabled Plans:output_type -> pb.ListEnabledPlansResponse
10 , // 19: pb.PlanService.findAllAvailablePlans:output_type -> pb.FindAllAvailablePlansRespons e
12 , // 20: pb.PlanService.findAllAvailableBasicPlans:output_type -> pb.FindAllAvailableBasicPlansRespons e
15 , // 21: pb.PlanService.sortPlans:output_type -> pb.RPCSuccess
1 3, // [1 3:22 ] is the sub-list for method output_typ e
4 , // [4:1 3] is the sub-list for method input_typ e
4 , // [4:4] is the sub-list for extension type_name
4 , // [4:4] is the sub-list for extension extendee
0 , // [0:4] is the sub-list for field type_name
}
func init ( ) { file_service_plan_proto_init ( ) }
@@ -1266,6 +1394,30 @@ func file_service_plan_proto_init() {
}
}
file_service_plan_proto_msgTypes [ 11 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * FindAllAvailableBasicPlansRequest ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_service_plan_proto_msgTypes [ 12 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * FindAllAvailableBasicPlansResponse ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_service_plan_proto_msgTypes [ 13 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * SortPlansRequest ) ; i {
case 0 :
return & v . state
@@ -1284,7 +1436,7 @@ func file_service_plan_proto_init() {
GoPackagePath : reflect . TypeOf ( x { } ) . PkgPath ( ) ,
RawDescriptor : file_service_plan_proto_rawDesc ,
NumEnums : 0 ,
NumMessages : 12 ,
NumMessages : 14 ,
NumExtensions : 0 ,
NumServices : 1 ,
} ,